@aws-sdk/client-detective 3.298.0 → 3.300.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.
Files changed (25) hide show
  1. package/dist-types/commands/AcceptInvitationCommand.d.ts +3 -0
  2. package/dist-types/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +6 -0
  3. package/dist-types/commands/BatchGetMembershipDatasourcesCommand.d.ts +5 -0
  4. package/dist-types/commands/CreateGraphCommand.d.ts +5 -0
  5. package/dist-types/commands/CreateMembersCommand.d.ts +11 -0
  6. package/dist-types/commands/DeleteGraphCommand.d.ts +3 -0
  7. package/dist-types/commands/DeleteMembersCommand.d.ts +6 -0
  8. package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +3 -0
  9. package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +1 -0
  10. package/dist-types/commands/DisassociateMembershipCommand.d.ts +3 -0
  11. package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +3 -0
  12. package/dist-types/commands/GetMembersCommand.d.ts +6 -0
  13. package/dist-types/commands/ListDatasourcePackagesCommand.d.ts +5 -0
  14. package/dist-types/commands/ListGraphsCommand.d.ts +4 -0
  15. package/dist-types/commands/ListInvitationsCommand.d.ts +4 -0
  16. package/dist-types/commands/ListMembersCommand.d.ts +5 -0
  17. package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +4 -0
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  19. package/dist-types/commands/RejectInvitationCommand.d.ts +3 -0
  20. package/dist-types/commands/StartMonitoringMemberCommand.d.ts +4 -0
  21. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  22. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  23. package/dist-types/commands/UpdateDatasourcePackagesCommand.d.ts +6 -0
  24. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +4 -0
  25. package/package.json +12 -12
@@ -29,6 +29,9 @@ 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 = {
33
+ * GraphArn: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new AcceptInvitationCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * GraphArn: "STRING_VALUE", // required
31
+ * AccountIds: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new BatchGetGraphMemberDatasourcesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,11 @@ 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
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * };
29
34
  * const command = new BatchGetMembershipDatasourcesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -41,6 +41,11 @@ 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: {
46
+ * "<keys>": "STRING_VALUE",
47
+ * },
48
+ * };
44
49
  * const command = new CreateGraphCommand(input);
45
50
  * const response = await client.send(command);
46
51
  * ```
@@ -57,6 +57,17 @@ 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 = {
61
+ * GraphArn: "STRING_VALUE", // required
62
+ * Message: "STRING_VALUE",
63
+ * DisableEmailNotification: true || false,
64
+ * Accounts: [ // required
65
+ * {
66
+ * AccountId: "STRING_VALUE", // required
67
+ * EmailAddress: "STRING_VALUE", // required
68
+ * },
69
+ * ],
70
+ * };
60
71
  * const command = new CreateMembersCommand(input);
61
72
  * const response = await client.send(command);
62
73
  * ```
@@ -30,6 +30,9 @@ 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 = {
34
+ * GraphArn: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeleteGraphCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -38,6 +38,12 @@ 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 = {
42
+ * GraphArn: "STRING_VALUE", // required
43
+ * AccountIds: [ // required
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * };
41
47
  * const command = new DeleteMembersCommand(input);
42
48
  * const response = await client.send(command);
43
49
  * ```
@@ -29,6 +29,9 @@ 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 = {
33
+ * GraphArn: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DescribeOrganizationConfigurationCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -30,6 +30,7 @@ export interface DisableOrganizationAdminAccountCommandOutput extends __Metadata
30
30
  * import { DetectiveClient, DisableOrganizationAdminAccountCommand } from "@aws-sdk/client-detective"; // ES Modules import
31
31
  * // const { DetectiveClient, DisableOrganizationAdminAccountCommand } = require("@aws-sdk/client-detective"); // CommonJS import
32
32
  * const client = new DetectiveClient(config);
33
+ * const input = {};
33
34
  * const command = new DisableOrganizationAdminAccountCommand(input);
34
35
  * const response = await client.send(command);
35
36
  * ```
@@ -32,6 +32,9 @@ 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 = {
36
+ * GraphArn: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new DisassociateMembershipCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -37,6 +37,9 @@ 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 = {
41
+ * AccountId: "STRING_VALUE", // required
42
+ * };
40
43
  * const command = new EnableOrganizationAdminAccountCommand(input);
41
44
  * const response = await client.send(command);
42
45
  * ```
@@ -27,6 +27,12 @@ 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 = {
31
+ * GraphArn: "STRING_VALUE", // required
32
+ * AccountIds: [ // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
30
36
  * const command = new GetMembersCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -26,6 +26,11 @@ 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 = {
30
+ * GraphArn: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListDatasourcePackagesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -29,6 +29,10 @@ 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 = {
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
32
36
  * const command = new ListGraphsCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -31,6 +31,10 @@ 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 = {
35
+ * NextToken: "STRING_VALUE",
36
+ * MaxResults: Number("int"),
37
+ * };
34
38
  * const command = new ListInvitationsCommand(input);
35
39
  * const response = await client.send(command);
36
40
  * ```
@@ -31,6 +31,11 @@ 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 = {
35
+ * GraphArn: "STRING_VALUE", // required
36
+ * NextToken: "STRING_VALUE",
37
+ * MaxResults: Number("int"),
38
+ * };
34
39
  * const command = new ListMembersCommand(input);
35
40
  * const response = await client.send(command);
36
41
  * ```
@@ -27,6 +27,10 @@ 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 = {
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
30
34
  * const command = new ListOrganizationAdminAccountsCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,9 @@ 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 = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -32,6 +32,9 @@ 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 = {
36
+ * GraphArn: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new RejectInvitationCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -38,6 +38,10 @@ 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 = {
42
+ * GraphArn: "STRING_VALUE", // required
43
+ * AccountId: "STRING_VALUE", // required
44
+ * };
41
45
  * const command = new StartMonitoringMemberCommand(input);
42
46
  * const response = await client.send(command);
43
47
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * Tags: { // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = {
30
+ * GraphArn: "STRING_VALUE", // required
31
+ * DatasourcePackages: [ // required
32
+ * "DETECTIVE_CORE" || "EKS_AUDIT",
33
+ * ],
34
+ * };
29
35
  * const command = new UpdateDatasourcePackagesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -28,6 +28,10 @@ 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 = {
32
+ * GraphArn: "STRING_VALUE", // required
33
+ * AutoEnable: true || false,
34
+ * };
31
35
  * const command = new UpdateOrganizationConfigurationCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
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.298.0",
4
+ "version": "3.300.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,23 +21,23 @@
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.298.0",
25
- "@aws-sdk/config-resolver": "3.296.0",
26
- "@aws-sdk/credential-provider-node": "3.298.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.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",
30
30
  "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-endpoint": "3.299.0",
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.296.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
39
+ "@aws-sdk/middleware-user-agent": "3.299.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.296.0",
54
- "@aws-sdk/util-user-agent-node": "3.296.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },