@aws-sdk/client-detective 3.300.0 → 3.301.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AcceptInvitationCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetMembershipDatasourcesCommand.d.ts +2 -2
- package/dist-types/commands/CreateGraphCommand.d.ts +2 -2
- package/dist-types/commands/CreateMembersCommand.d.ts +3 -3
- package/dist-types/commands/DeleteGraphCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMembersCommand.d.ts +2 -2
- package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateMembershipCommand.d.ts +1 -1
- package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/GetMembersCommand.d.ts +2 -2
- package/dist-types/commands/ListDatasourcePackagesCommand.d.ts +1 -1
- package/dist-types/commands/ListGraphsCommand.d.ts +1 -1
- package/dist-types/commands/ListInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/ListMembersCommand.d.ts +1 -1
- package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RejectInvitationCommand.d.ts +1 -1
- package/dist-types/commands/StartMonitoringMemberCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDatasourcePackagesCommand.d.ts +2 -2
- package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -29,7 +29,7 @@ export interface AcceptInvitationCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { DetectiveClient, AcceptInvitationCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
30
30
|
* // const { DetectiveClient, AcceptInvitationCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
31
31
|
* const client = new DetectiveClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // AcceptInvitationRequest
|
|
33
33
|
* GraphArn: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new AcceptInvitationCommand(input);
|
|
@@ -26,9 +26,9 @@ export interface BatchGetGraphMemberDatasourcesCommandOutput extends BatchGetGra
|
|
|
26
26
|
* import { DetectiveClient, BatchGetGraphMemberDatasourcesCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
27
27
|
* // const { DetectiveClient, BatchGetGraphMemberDatasourcesCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
28
28
|
* const client = new DetectiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // BatchGetGraphMemberDatasourcesRequest
|
|
30
30
|
* GraphArn: "STRING_VALUE", // required
|
|
31
|
-
* AccountIds: [ // required
|
|
31
|
+
* AccountIds: [ // AccountIdExtendedList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,8 +26,8 @@ export interface BatchGetMembershipDatasourcesCommandOutput extends BatchGetMemb
|
|
|
26
26
|
* import { DetectiveClient, BatchGetMembershipDatasourcesCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
27
27
|
* // const { DetectiveClient, BatchGetMembershipDatasourcesCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
28
28
|
* const client = new DetectiveClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* GraphArns: [ // required
|
|
29
|
+
* const input = { // BatchGetMembershipDatasourcesRequest
|
|
30
|
+
* GraphArns: [ // GraphArnList // required
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -41,8 +41,8 @@ export interface CreateGraphCommandOutput extends CreateGraphResponse, __Metadat
|
|
|
41
41
|
* import { DetectiveClient, CreateGraphCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
42
42
|
* // const { DetectiveClient, CreateGraphCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
43
43
|
* const client = new DetectiveClient(config);
|
|
44
|
-
* const input = {
|
|
45
|
-
* Tags: {
|
|
44
|
+
* const input = { // CreateGraphRequest
|
|
45
|
+
* Tags: { // TagMap
|
|
46
46
|
* "<keys>": "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* };
|
|
@@ -57,12 +57,12 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met
|
|
|
57
57
|
* import { DetectiveClient, CreateMembersCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
58
58
|
* // const { DetectiveClient, CreateMembersCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
59
59
|
* const client = new DetectiveClient(config);
|
|
60
|
-
* const input = {
|
|
60
|
+
* const input = { // CreateMembersRequest
|
|
61
61
|
* GraphArn: "STRING_VALUE", // required
|
|
62
62
|
* Message: "STRING_VALUE",
|
|
63
63
|
* DisableEmailNotification: true || false,
|
|
64
|
-
* Accounts: [ // required
|
|
65
|
-
* {
|
|
64
|
+
* Accounts: [ // AccountList // required
|
|
65
|
+
* { // Account
|
|
66
66
|
* AccountId: "STRING_VALUE", // required
|
|
67
67
|
* EmailAddress: "STRING_VALUE", // required
|
|
68
68
|
* },
|
|
@@ -30,7 +30,7 @@ export interface DeleteGraphCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* import { DetectiveClient, DeleteGraphCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
31
31
|
* // const { DetectiveClient, DeleteGraphCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
32
32
|
* const client = new DetectiveClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteGraphRequest
|
|
34
34
|
* GraphArn: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteGraphCommand(input);
|
|
@@ -38,9 +38,9 @@ export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __Met
|
|
|
38
38
|
* import { DetectiveClient, DeleteMembersCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
39
39
|
* // const { DetectiveClient, DeleteMembersCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
40
40
|
* const client = new DetectiveClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // DeleteMembersRequest
|
|
42
42
|
* GraphArn: "STRING_VALUE", // required
|
|
43
|
-
* AccountIds: [ // required
|
|
43
|
+
* AccountIds: [ // AccountIdList // required
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
46
|
* };
|
|
@@ -29,7 +29,7 @@ export interface DescribeOrganizationConfigurationCommandOutput extends Describe
|
|
|
29
29
|
* import { DetectiveClient, DescribeOrganizationConfigurationCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
30
30
|
* // const { DetectiveClient, DescribeOrganizationConfigurationCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
31
31
|
* const client = new DetectiveClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribeOrganizationConfigurationRequest
|
|
33
33
|
* GraphArn: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeOrganizationConfigurationCommand(input);
|
|
@@ -32,7 +32,7 @@ export interface DisassociateMembershipCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* import { DetectiveClient, DisassociateMembershipCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
33
33
|
* // const { DetectiveClient, DisassociateMembershipCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
34
34
|
* const client = new DetectiveClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // DisassociateMembershipRequest
|
|
36
36
|
* GraphArn: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DisassociateMembershipCommand(input);
|
|
@@ -37,7 +37,7 @@ export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataB
|
|
|
37
37
|
* import { DetectiveClient, EnableOrganizationAdminAccountCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
38
38
|
* // const { DetectiveClient, EnableOrganizationAdminAccountCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
39
39
|
* const client = new DetectiveClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // EnableOrganizationAdminAccountRequest
|
|
41
41
|
* AccountId: "STRING_VALUE", // required
|
|
42
42
|
* };
|
|
43
43
|
* const command = new EnableOrganizationAdminAccountCommand(input);
|
|
@@ -27,9 +27,9 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB
|
|
|
27
27
|
* import { DetectiveClient, GetMembersCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
28
28
|
* // const { DetectiveClient, GetMembersCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
29
29
|
* const client = new DetectiveClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetMembersRequest
|
|
31
31
|
* GraphArn: "STRING_VALUE", // required
|
|
32
|
-
* AccountIds: [ // required
|
|
32
|
+
* AccountIds: [ // AccountIdList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListDatasourcePackagesCommandOutput extends ListDatasourcePacka
|
|
|
26
26
|
* import { DetectiveClient, ListDatasourcePackagesCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
27
27
|
* // const { DetectiveClient, ListDatasourcePackagesCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
28
28
|
* const client = new DetectiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDatasourcePackagesRequest
|
|
30
30
|
* GraphArn: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ export interface ListGraphsCommandOutput extends ListGraphsResponse, __MetadataB
|
|
|
29
29
|
* import { DetectiveClient, ListGraphsCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
30
30
|
* // const { DetectiveClient, ListGraphsCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
31
31
|
* const client = new DetectiveClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListGraphsRequest
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
35
|
* };
|
|
@@ -31,7 +31,7 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _
|
|
|
31
31
|
* import { DetectiveClient, ListInvitationsCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
32
32
|
* // const { DetectiveClient, ListInvitationsCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
33
33
|
* const client = new DetectiveClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListInvitationsRequest
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* MaxResults: Number("int"),
|
|
37
37
|
* };
|
|
@@ -31,7 +31,7 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat
|
|
|
31
31
|
* import { DetectiveClient, ListMembersCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
32
32
|
* // const { DetectiveClient, ListMembersCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
33
33
|
* const client = new DetectiveClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListMembersRequest
|
|
35
35
|
* GraphArn: "STRING_VALUE", // required
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
37
|
* MaxResults: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganiza
|
|
|
27
27
|
* import { DetectiveClient, ListOrganizationAdminAccountsCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
28
28
|
* // const { DetectiveClient, ListOrganizationAdminAccountsCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
29
29
|
* const client = new DetectiveClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListOrganizationAdminAccountsRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { DetectiveClient, ListTagsForResourceCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
27
27
|
* // const { DetectiveClient, ListTagsForResourceCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
28
28
|
* const client = new DetectiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -32,7 +32,7 @@ export interface RejectInvitationCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* import { DetectiveClient, RejectInvitationCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
33
33
|
* // const { DetectiveClient, RejectInvitationCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
34
34
|
* const client = new DetectiveClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // RejectInvitationRequest
|
|
36
36
|
* GraphArn: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new RejectInvitationCommand(input);
|
|
@@ -38,7 +38,7 @@ export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {
|
|
|
38
38
|
* import { DetectiveClient, StartMonitoringMemberCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
39
39
|
* // const { DetectiveClient, StartMonitoringMemberCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
40
40
|
* const client = new DetectiveClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // StartMonitoringMemberRequest
|
|
42
42
|
* GraphArn: "STRING_VALUE", // required
|
|
43
43
|
* AccountId: "STRING_VALUE", // required
|
|
44
44
|
* };
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { DetectiveClient, TagResourceCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
27
27
|
* // const { DetectiveClient, TagResourceCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
28
28
|
* const client = new DetectiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: { // required
|
|
31
|
+
* Tags: { // TagMap // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { DetectiveClient, UntagResourceCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
27
27
|
* // const { DetectiveClient, UntagResourceCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
28
28
|
* const client = new DetectiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UpdateDatasourcePackagesCommandOutput extends __MetadataBearer
|
|
|
26
26
|
* import { DetectiveClient, UpdateDatasourcePackagesCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
27
27
|
* // const { DetectiveClient, UpdateDatasourcePackagesCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
28
28
|
* const client = new DetectiveClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateDatasourcePackagesRequest
|
|
30
30
|
* GraphArn: "STRING_VALUE", // required
|
|
31
|
-
* DatasourcePackages: [ // required
|
|
31
|
+
* DatasourcePackages: [ // DatasourcePackageList // required
|
|
32
32
|
* "DETECTIVE_CORE" || "EKS_AUDIT",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -28,7 +28,7 @@ export interface UpdateOrganizationConfigurationCommandOutput extends __Metadata
|
|
|
28
28
|
* import { DetectiveClient, UpdateOrganizationConfigurationCommand } from "@aws-sdk/client-detective"; // ES Modules import
|
|
29
29
|
* // const { DetectiveClient, UpdateOrganizationConfigurationCommand } = require("@aws-sdk/client-detective"); // CommonJS import
|
|
30
30
|
* const client = new DetectiveClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateOrganizationConfigurationRequest
|
|
32
32
|
* GraphArn: "STRING_VALUE", // required
|
|
33
33
|
* AutoEnable: true || false,
|
|
34
34
|
* };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-detective",
|
|
3
3
|
"description": "AWS SDK for JavaScript Detective Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|