@aws-sdk/client-detective 3.321.1 → 3.326.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 +4 -0
  2. package/dist-types/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +24 -0
  3. package/dist-types/commands/BatchGetMembershipDatasourcesCommand.d.ts +24 -0
  4. package/dist-types/commands/CreateGraphCommand.d.ts +6 -0
  5. package/dist-types/commands/CreateMembersCommand.d.ts +38 -0
  6. package/dist-types/commands/DeleteGraphCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteMembersCommand.d.ts +14 -0
  8. package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +6 -0
  9. package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +4 -0
  10. package/dist-types/commands/DisassociateMembershipCommand.d.ts +4 -0
  11. package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +4 -0
  12. package/dist-types/commands/GetMembersCommand.d.ts +38 -0
  13. package/dist-types/commands/ListDatasourcePackagesCommand.d.ts +16 -0
  14. package/dist-types/commands/ListGraphsCommand.d.ts +12 -0
  15. package/dist-types/commands/ListInvitationsCommand.d.ts +33 -0
  16. package/dist-types/commands/ListMembersCommand.d.ts +33 -0
  17. package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +13 -0
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  19. package/dist-types/commands/RejectInvitationCommand.d.ts +4 -0
  20. package/dist-types/commands/StartMonitoringMemberCommand.d.ts +4 -0
  21. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  22. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  23. package/dist-types/commands/UpdateDatasourcePackagesCommand.d.ts +4 -0
  24. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +4 -0
  25. package/package.json +16 -16
@@ -34,6 +34,8 @@ export interface AcceptInvitationCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new AcceptInvitationCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param AcceptInvitationCommandInput - {@link AcceptInvitationCommandInput}
@@ -58,6 +60,8 @@ export interface AcceptInvitationCommandOutput extends __MetadataBearer {
58
60
  * @throws {@link ValidationException} (client fault)
59
61
  * <p>The request parameters are invalid.</p>
60
62
  *
63
+ * @throws {@link DetectiveServiceException}
64
+ * <p>Base exception class for all service exceptions from Detective service.</p>
61
65
  *
62
66
  */
63
67
  export declare class AcceptInvitationCommand extends $Command<AcceptInvitationCommandInput, AcceptInvitationCommandOutput, DetectiveClientResolvedConfig> {
@@ -34,6 +34,28 @@ export interface BatchGetGraphMemberDatasourcesCommandOutput extends BatchGetGra
34
34
  * };
35
35
  * const command = new BatchGetGraphMemberDatasourcesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // BatchGetGraphMemberDatasourcesResponse
38
+ * // MemberDatasources: [ // MembershipDatasourcesList
39
+ * // { // MembershipDatasources
40
+ * // AccountId: "STRING_VALUE",
41
+ * // GraphArn: "STRING_VALUE",
42
+ * // DatasourcePackageIngestHistory: { // DatasourcePackageIngestHistory
43
+ * // "<keys>": { // LastIngestStateChangeDates
44
+ * // "<keys>": { // TimestampForCollection
45
+ * // Timestamp: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // },
48
+ * // },
49
+ * // },
50
+ * // ],
51
+ * // UnprocessedAccounts: [ // UnprocessedAccountList
52
+ * // { // UnprocessedAccount
53
+ * // AccountId: "STRING_VALUE",
54
+ * // Reason: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // };
58
+ *
37
59
  * ```
38
60
  *
39
61
  * @param BatchGetGraphMemberDatasourcesCommandInput - {@link BatchGetGraphMemberDatasourcesCommandInput}
@@ -55,6 +77,8 @@ export interface BatchGetGraphMemberDatasourcesCommandOutput extends BatchGetGra
55
77
  * @throws {@link ValidationException} (client fault)
56
78
  * <p>The request parameters are invalid.</p>
57
79
  *
80
+ * @throws {@link DetectiveServiceException}
81
+ * <p>Base exception class for all service exceptions from Detective service.</p>
58
82
  *
59
83
  */
60
84
  export declare class BatchGetGraphMemberDatasourcesCommand extends $Command<BatchGetGraphMemberDatasourcesCommandInput, BatchGetGraphMemberDatasourcesCommandOutput, DetectiveClientResolvedConfig> {
@@ -33,6 +33,28 @@ export interface BatchGetMembershipDatasourcesCommandOutput extends BatchGetMemb
33
33
  * };
34
34
  * const command = new BatchGetMembershipDatasourcesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // BatchGetMembershipDatasourcesResponse
37
+ * // MembershipDatasources: [ // MembershipDatasourcesList
38
+ * // { // MembershipDatasources
39
+ * // AccountId: "STRING_VALUE",
40
+ * // GraphArn: "STRING_VALUE",
41
+ * // DatasourcePackageIngestHistory: { // DatasourcePackageIngestHistory
42
+ * // "<keys>": { // LastIngestStateChangeDates
43
+ * // "<keys>": { // TimestampForCollection
44
+ * // Timestamp: new Date("TIMESTAMP"),
45
+ * // },
46
+ * // },
47
+ * // },
48
+ * // },
49
+ * // ],
50
+ * // UnprocessedGraphs: [ // UnprocessedGraphList
51
+ * // { // UnprocessedGraph
52
+ * // GraphArn: "STRING_VALUE",
53
+ * // Reason: "STRING_VALUE",
54
+ * // },
55
+ * // ],
56
+ * // };
57
+ *
36
58
  * ```
37
59
  *
38
60
  * @param BatchGetMembershipDatasourcesCommandInput - {@link BatchGetMembershipDatasourcesCommandInput}
@@ -54,6 +76,8 @@ export interface BatchGetMembershipDatasourcesCommandOutput extends BatchGetMemb
54
76
  * @throws {@link ValidationException} (client fault)
55
77
  * <p>The request parameters are invalid.</p>
56
78
  *
79
+ * @throws {@link DetectiveServiceException}
80
+ * <p>Base exception class for all service exceptions from Detective service.</p>
57
81
  *
58
82
  */
59
83
  export declare class BatchGetMembershipDatasourcesCommand extends $Command<BatchGetMembershipDatasourcesCommandInput, BatchGetMembershipDatasourcesCommandOutput, DetectiveClientResolvedConfig> {
@@ -48,6 +48,10 @@ export interface CreateGraphCommandOutput extends CreateGraphResponse, __Metadat
48
48
  * };
49
49
  * const command = new CreateGraphCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // CreateGraphResponse
52
+ * // GraphArn: "STRING_VALUE",
53
+ * // };
54
+ *
51
55
  * ```
52
56
  *
53
57
  * @param CreateGraphCommandInput - {@link CreateGraphCommandInput}
@@ -84,6 +88,8 @@ export interface CreateGraphCommandOutput extends CreateGraphResponse, __Metadat
84
88
  * </li>
85
89
  * </ul>
86
90
  *
91
+ * @throws {@link DetectiveServiceException}
92
+ * <p>Base exception class for all service exceptions from Detective service.</p>
87
93
  *
88
94
  */
89
95
  export declare class CreateGraphCommand extends $Command<CreateGraphCommandInput, CreateGraphCommandOutput, DetectiveClientResolvedConfig> {
@@ -70,6 +70,42 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met
70
70
  * };
71
71
  * const command = new CreateMembersCommand(input);
72
72
  * const response = await client.send(command);
73
+ * // { // CreateMembersResponse
74
+ * // Members: [ // MemberDetailList
75
+ * // { // MemberDetail
76
+ * // AccountId: "STRING_VALUE",
77
+ * // EmailAddress: "STRING_VALUE",
78
+ * // GraphArn: "STRING_VALUE",
79
+ * // MasterId: "STRING_VALUE",
80
+ * // AdministratorId: "STRING_VALUE",
81
+ * // Status: "INVITED" || "VERIFICATION_IN_PROGRESS" || "VERIFICATION_FAILED" || "ENABLED" || "ACCEPTED_BUT_DISABLED",
82
+ * // DisabledReason: "VOLUME_TOO_HIGH" || "VOLUME_UNKNOWN",
83
+ * // InvitedTime: new Date("TIMESTAMP"),
84
+ * // UpdatedTime: new Date("TIMESTAMP"),
85
+ * // VolumeUsageInBytes: Number("long"),
86
+ * // VolumeUsageUpdatedTime: new Date("TIMESTAMP"),
87
+ * // PercentOfGraphUtilization: Number("double"),
88
+ * // PercentOfGraphUtilizationUpdatedTime: new Date("TIMESTAMP"),
89
+ * // InvitationType: "INVITATION" || "ORGANIZATION",
90
+ * // VolumeUsageByDatasourcePackage: { // VolumeUsageByDatasourcePackage
91
+ * // "<keys>": { // DatasourcePackageUsageInfo
92
+ * // VolumeUsageInBytes: Number("long"),
93
+ * // VolumeUsageUpdateTime: new Date("TIMESTAMP"),
94
+ * // },
95
+ * // },
96
+ * // DatasourcePackageIngestStates: { // DatasourcePackageIngestStates
97
+ * // "<keys>": "STARTED" || "STOPPED" || "DISABLED",
98
+ * // },
99
+ * // },
100
+ * // ],
101
+ * // UnprocessedAccounts: [ // UnprocessedAccountList
102
+ * // { // UnprocessedAccount
103
+ * // AccountId: "STRING_VALUE",
104
+ * // Reason: "STRING_VALUE",
105
+ * // },
106
+ * // ],
107
+ * // };
108
+ *
73
109
  * ```
74
110
  *
75
111
  * @param CreateMembersCommandInput - {@link CreateMembersCommandInput}
@@ -109,6 +145,8 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met
109
145
  * @throws {@link ValidationException} (client fault)
110
146
  * <p>The request parameters are invalid.</p>
111
147
  *
148
+ * @throws {@link DetectiveServiceException}
149
+ * <p>Base exception class for all service exceptions from Detective service.</p>
112
150
  *
113
151
  */
114
152
  export declare class CreateMembersCommand extends $Command<CreateMembersCommandInput, CreateMembersCommandOutput, DetectiveClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface DeleteGraphCommandOutput extends __MetadataBearer {
35
35
  * };
36
36
  * const command = new DeleteGraphCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param DeleteGraphCommandInput - {@link DeleteGraphCommandInput}
@@ -56,6 +58,8 @@ export interface DeleteGraphCommandOutput extends __MetadataBearer {
56
58
  * @throws {@link ValidationException} (client fault)
57
59
  * <p>The request parameters are invalid.</p>
58
60
  *
61
+ * @throws {@link DetectiveServiceException}
62
+ * <p>Base exception class for all service exceptions from Detective service.</p>
59
63
  *
60
64
  */
61
65
  export declare class DeleteGraphCommand extends $Command<DeleteGraphCommandInput, DeleteGraphCommandOutput, DetectiveClientResolvedConfig> {
@@ -46,6 +46,18 @@ export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __Met
46
46
  * };
47
47
  * const command = new DeleteMembersCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // { // DeleteMembersResponse
50
+ * // AccountIds: [ // AccountIdList
51
+ * // "STRING_VALUE",
52
+ * // ],
53
+ * // UnprocessedAccounts: [ // UnprocessedAccountList
54
+ * // { // UnprocessedAccount
55
+ * // AccountId: "STRING_VALUE",
56
+ * // Reason: "STRING_VALUE",
57
+ * // },
58
+ * // ],
59
+ * // };
60
+ *
49
61
  * ```
50
62
  *
51
63
  * @param DeleteMembersCommandInput - {@link DeleteMembersCommandInput}
@@ -70,6 +82,8 @@ export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __Met
70
82
  * @throws {@link ValidationException} (client fault)
71
83
  * <p>The request parameters are invalid.</p>
72
84
  *
85
+ * @throws {@link DetectiveServiceException}
86
+ * <p>Base exception class for all service exceptions from Detective service.</p>
73
87
  *
74
88
  */
75
89
  export declare class DeleteMembersCommand extends $Command<DeleteMembersCommandInput, DeleteMembersCommandOutput, DetectiveClientResolvedConfig> {
@@ -34,6 +34,10 @@ export interface DescribeOrganizationConfigurationCommandOutput extends Describe
34
34
  * };
35
35
  * const command = new DescribeOrganizationConfigurationCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeOrganizationConfigurationResponse
38
+ * // AutoEnable: true || false,
39
+ * // };
40
+ *
37
41
  * ```
38
42
  *
39
43
  * @param DescribeOrganizationConfigurationCommandInput - {@link DescribeOrganizationConfigurationCommandInput}
@@ -56,6 +60,8 @@ export interface DescribeOrganizationConfigurationCommandOutput extends Describe
56
60
  * @throws {@link ValidationException} (client fault)
57
61
  * <p>The request parameters are invalid.</p>
58
62
  *
63
+ * @throws {@link DetectiveServiceException}
64
+ * <p>Base exception class for all service exceptions from Detective service.</p>
59
65
  *
60
66
  */
61
67
  export declare class DescribeOrganizationConfigurationCommand extends $Command<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput, DetectiveClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DisableOrganizationAdminAccountCommandOutput extends __Metadata
33
33
  * const input = {};
34
34
  * const command = new DisableOrganizationAdminAccountCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DisableOrganizationAdminAccountCommandInput - {@link DisableOrganizationAdminAccountCommandInput}
@@ -55,6 +57,8 @@ export interface DisableOrganizationAdminAccountCommandOutput extends __Metadata
55
57
  * @throws {@link ValidationException} (client fault)
56
58
  * <p>The request parameters are invalid.</p>
57
59
  *
60
+ * @throws {@link DetectiveServiceException}
61
+ * <p>Base exception class for all service exceptions from Detective service.</p>
58
62
  *
59
63
  */
60
64
  export declare class DisableOrganizationAdminAccountCommand extends $Command<DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput, DetectiveClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface DisassociateMembershipCommandOutput extends __MetadataBearer {
37
37
  * };
38
38
  * const command = new DisassociateMembershipCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param DisassociateMembershipCommandInput - {@link DisassociateMembershipCommandInput}
@@ -61,6 +63,8 @@ export interface DisassociateMembershipCommandOutput extends __MetadataBearer {
61
63
  * @throws {@link ValidationException} (client fault)
62
64
  * <p>The request parameters are invalid.</p>
63
65
  *
66
+ * @throws {@link DetectiveServiceException}
67
+ * <p>Base exception class for all service exceptions from Detective service.</p>
64
68
  *
65
69
  */
66
70
  export declare class DisassociateMembershipCommand extends $Command<DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput, DetectiveClientResolvedConfig> {
@@ -42,6 +42,8 @@ export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataB
42
42
  * };
43
43
  * const command = new EnableOrganizationAdminAccountCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // {};
46
+ *
45
47
  * ```
46
48
  *
47
49
  * @param EnableOrganizationAdminAccountCommandInput - {@link EnableOrganizationAdminAccountCommandInput}
@@ -64,6 +66,8 @@ export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataB
64
66
  * @throws {@link ValidationException} (client fault)
65
67
  * <p>The request parameters are invalid.</p>
66
68
  *
69
+ * @throws {@link DetectiveServiceException}
70
+ * <p>Base exception class for all service exceptions from Detective service.</p>
67
71
  *
68
72
  */
69
73
  export declare class EnableOrganizationAdminAccountCommand extends $Command<EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput, DetectiveClientResolvedConfig> {
@@ -35,6 +35,42 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB
35
35
  * };
36
36
  * const command = new GetMembersCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // GetMembersResponse
39
+ * // MemberDetails: [ // MemberDetailList
40
+ * // { // MemberDetail
41
+ * // AccountId: "STRING_VALUE",
42
+ * // EmailAddress: "STRING_VALUE",
43
+ * // GraphArn: "STRING_VALUE",
44
+ * // MasterId: "STRING_VALUE",
45
+ * // AdministratorId: "STRING_VALUE",
46
+ * // Status: "INVITED" || "VERIFICATION_IN_PROGRESS" || "VERIFICATION_FAILED" || "ENABLED" || "ACCEPTED_BUT_DISABLED",
47
+ * // DisabledReason: "VOLUME_TOO_HIGH" || "VOLUME_UNKNOWN",
48
+ * // InvitedTime: new Date("TIMESTAMP"),
49
+ * // UpdatedTime: new Date("TIMESTAMP"),
50
+ * // VolumeUsageInBytes: Number("long"),
51
+ * // VolumeUsageUpdatedTime: new Date("TIMESTAMP"),
52
+ * // PercentOfGraphUtilization: Number("double"),
53
+ * // PercentOfGraphUtilizationUpdatedTime: new Date("TIMESTAMP"),
54
+ * // InvitationType: "INVITATION" || "ORGANIZATION",
55
+ * // VolumeUsageByDatasourcePackage: { // VolumeUsageByDatasourcePackage
56
+ * // "<keys>": { // DatasourcePackageUsageInfo
57
+ * // VolumeUsageInBytes: Number("long"),
58
+ * // VolumeUsageUpdateTime: new Date("TIMESTAMP"),
59
+ * // },
60
+ * // },
61
+ * // DatasourcePackageIngestStates: { // DatasourcePackageIngestStates
62
+ * // "<keys>": "STARTED" || "STOPPED" || "DISABLED",
63
+ * // },
64
+ * // },
65
+ * // ],
66
+ * // UnprocessedAccounts: [ // UnprocessedAccountList
67
+ * // { // UnprocessedAccount
68
+ * // AccountId: "STRING_VALUE",
69
+ * // Reason: "STRING_VALUE",
70
+ * // },
71
+ * // ],
72
+ * // };
73
+ *
38
74
  * ```
39
75
  *
40
76
  * @param GetMembersCommandInput - {@link GetMembersCommandInput}
@@ -56,6 +92,8 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB
56
92
  * @throws {@link ValidationException} (client fault)
57
93
  * <p>The request parameters are invalid.</p>
58
94
  *
95
+ * @throws {@link DetectiveServiceException}
96
+ * <p>Base exception class for all service exceptions from Detective service.</p>
59
97
  *
60
98
  */
61
99
  export declare class GetMembersCommand extends $Command<GetMembersCommandInput, GetMembersCommandOutput, DetectiveClientResolvedConfig> {
@@ -33,6 +33,20 @@ export interface ListDatasourcePackagesCommandOutput extends ListDatasourcePacka
33
33
  * };
34
34
  * const command = new ListDatasourcePackagesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListDatasourcePackagesResponse
37
+ * // DatasourcePackages: { // DatasourcePackageIngestDetails
38
+ * // "<keys>": { // DatasourcePackageIngestDetail
39
+ * // DatasourcePackageIngestState: "STARTED" || "STOPPED" || "DISABLED",
40
+ * // LastIngestStateChange: { // LastIngestStateChangeDates
41
+ * // "<keys>": { // TimestampForCollection
42
+ * // Timestamp: new Date("TIMESTAMP"),
43
+ * // },
44
+ * // },
45
+ * // },
46
+ * // },
47
+ * // NextToken: "STRING_VALUE",
48
+ * // };
49
+ *
36
50
  * ```
37
51
  *
38
52
  * @param ListDatasourcePackagesCommandInput - {@link ListDatasourcePackagesCommandInput}
@@ -54,6 +68,8 @@ export interface ListDatasourcePackagesCommandOutput extends ListDatasourcePacka
54
68
  * @throws {@link ValidationException} (client fault)
55
69
  * <p>The request parameters are invalid.</p>
56
70
  *
71
+ * @throws {@link DetectiveServiceException}
72
+ * <p>Base exception class for all service exceptions from Detective service.</p>
57
73
  *
58
74
  */
59
75
  export declare class ListDatasourcePackagesCommand extends $Command<ListDatasourcePackagesCommandInput, ListDatasourcePackagesCommandOutput, DetectiveClientResolvedConfig> {
@@ -35,6 +35,16 @@ export interface ListGraphsCommandOutput extends ListGraphsResponse, __MetadataB
35
35
  * };
36
36
  * const command = new ListGraphsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListGraphsResponse
39
+ * // GraphList: [ // GraphList
40
+ * // { // Graph
41
+ * // Arn: "STRING_VALUE",
42
+ * // CreatedTime: new Date("TIMESTAMP"),
43
+ * // },
44
+ * // ],
45
+ * // NextToken: "STRING_VALUE",
46
+ * // };
47
+ *
38
48
  * ```
39
49
  *
40
50
  * @param ListGraphsCommandInput - {@link ListGraphsCommandInput}
@@ -53,6 +63,8 @@ export interface ListGraphsCommandOutput extends ListGraphsResponse, __MetadataB
53
63
  * @throws {@link ValidationException} (client fault)
54
64
  * <p>The request parameters are invalid.</p>
55
65
  *
66
+ * @throws {@link DetectiveServiceException}
67
+ * <p>Base exception class for all service exceptions from Detective service.</p>
56
68
  *
57
69
  */
58
70
  export declare class ListGraphsCommand extends $Command<ListGraphsCommandInput, ListGraphsCommandOutput, DetectiveClientResolvedConfig> {
@@ -37,6 +37,37 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _
37
37
  * };
38
38
  * const command = new ListInvitationsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListInvitationsResponse
41
+ * // Invitations: [ // MemberDetailList
42
+ * // { // MemberDetail
43
+ * // AccountId: "STRING_VALUE",
44
+ * // EmailAddress: "STRING_VALUE",
45
+ * // GraphArn: "STRING_VALUE",
46
+ * // MasterId: "STRING_VALUE",
47
+ * // AdministratorId: "STRING_VALUE",
48
+ * // Status: "INVITED" || "VERIFICATION_IN_PROGRESS" || "VERIFICATION_FAILED" || "ENABLED" || "ACCEPTED_BUT_DISABLED",
49
+ * // DisabledReason: "VOLUME_TOO_HIGH" || "VOLUME_UNKNOWN",
50
+ * // InvitedTime: new Date("TIMESTAMP"),
51
+ * // UpdatedTime: new Date("TIMESTAMP"),
52
+ * // VolumeUsageInBytes: Number("long"),
53
+ * // VolumeUsageUpdatedTime: new Date("TIMESTAMP"),
54
+ * // PercentOfGraphUtilization: Number("double"),
55
+ * // PercentOfGraphUtilizationUpdatedTime: new Date("TIMESTAMP"),
56
+ * // InvitationType: "INVITATION" || "ORGANIZATION",
57
+ * // VolumeUsageByDatasourcePackage: { // VolumeUsageByDatasourcePackage
58
+ * // "<keys>": { // DatasourcePackageUsageInfo
59
+ * // VolumeUsageInBytes: Number("long"),
60
+ * // VolumeUsageUpdateTime: new Date("TIMESTAMP"),
61
+ * // },
62
+ * // },
63
+ * // DatasourcePackageIngestStates: { // DatasourcePackageIngestStates
64
+ * // "<keys>": "STARTED" || "STOPPED" || "DISABLED",
65
+ * // },
66
+ * // },
67
+ * // ],
68
+ * // NextToken: "STRING_VALUE",
69
+ * // };
70
+ *
40
71
  * ```
41
72
  *
42
73
  * @param ListInvitationsCommandInput - {@link ListInvitationsCommandInput}
@@ -55,6 +86,8 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _
55
86
  * @throws {@link ValidationException} (client fault)
56
87
  * <p>The request parameters are invalid.</p>
57
88
  *
89
+ * @throws {@link DetectiveServiceException}
90
+ * <p>Base exception class for all service exceptions from Detective service.</p>
58
91
  *
59
92
  */
60
93
  export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, DetectiveClientResolvedConfig> {
@@ -38,6 +38,37 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat
38
38
  * };
39
39
  * const command = new ListMembersCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // ListMembersResponse
42
+ * // MemberDetails: [ // MemberDetailList
43
+ * // { // MemberDetail
44
+ * // AccountId: "STRING_VALUE",
45
+ * // EmailAddress: "STRING_VALUE",
46
+ * // GraphArn: "STRING_VALUE",
47
+ * // MasterId: "STRING_VALUE",
48
+ * // AdministratorId: "STRING_VALUE",
49
+ * // Status: "INVITED" || "VERIFICATION_IN_PROGRESS" || "VERIFICATION_FAILED" || "ENABLED" || "ACCEPTED_BUT_DISABLED",
50
+ * // DisabledReason: "VOLUME_TOO_HIGH" || "VOLUME_UNKNOWN",
51
+ * // InvitedTime: new Date("TIMESTAMP"),
52
+ * // UpdatedTime: new Date("TIMESTAMP"),
53
+ * // VolumeUsageInBytes: Number("long"),
54
+ * // VolumeUsageUpdatedTime: new Date("TIMESTAMP"),
55
+ * // PercentOfGraphUtilization: Number("double"),
56
+ * // PercentOfGraphUtilizationUpdatedTime: new Date("TIMESTAMP"),
57
+ * // InvitationType: "INVITATION" || "ORGANIZATION",
58
+ * // VolumeUsageByDatasourcePackage: { // VolumeUsageByDatasourcePackage
59
+ * // "<keys>": { // DatasourcePackageUsageInfo
60
+ * // VolumeUsageInBytes: Number("long"),
61
+ * // VolumeUsageUpdateTime: new Date("TIMESTAMP"),
62
+ * // },
63
+ * // },
64
+ * // DatasourcePackageIngestStates: { // DatasourcePackageIngestStates
65
+ * // "<keys>": "STARTED" || "STOPPED" || "DISABLED",
66
+ * // },
67
+ * // },
68
+ * // ],
69
+ * // NextToken: "STRING_VALUE",
70
+ * // };
71
+ *
41
72
  * ```
42
73
  *
43
74
  * @param ListMembersCommandInput - {@link ListMembersCommandInput}
@@ -59,6 +90,8 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat
59
90
  * @throws {@link ValidationException} (client fault)
60
91
  * <p>The request parameters are invalid.</p>
61
92
  *
93
+ * @throws {@link DetectiveServiceException}
94
+ * <p>Base exception class for all service exceptions from Detective service.</p>
62
95
  *
63
96
  */
64
97
  export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, DetectiveClientResolvedConfig> {
@@ -33,6 +33,17 @@ export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganiza
33
33
  * };
34
34
  * const command = new ListOrganizationAdminAccountsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListOrganizationAdminAccountsResponse
37
+ * // Administrators: [ // AdministratorList
38
+ * // { // Administrator
39
+ * // AccountId: "STRING_VALUE",
40
+ * // GraphArn: "STRING_VALUE",
41
+ * // DelegationTime: new Date("TIMESTAMP"),
42
+ * // },
43
+ * // ],
44
+ * // NextToken: "STRING_VALUE",
45
+ * // };
46
+ *
36
47
  * ```
37
48
  *
38
49
  * @param ListOrganizationAdminAccountsCommandInput - {@link ListOrganizationAdminAccountsCommandInput}
@@ -55,6 +66,8 @@ export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganiza
55
66
  * @throws {@link ValidationException} (client fault)
56
67
  * <p>The request parameters are invalid.</p>
57
68
  *
69
+ * @throws {@link DetectiveServiceException}
70
+ * <p>Base exception class for all service exceptions from Detective service.</p>
58
71
  *
59
72
  */
60
73
  export declare class ListOrganizationAdminAccountsCommand extends $Command<ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput, DetectiveClientResolvedConfig> {
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListTagsForResourceResponse
35
+ * // Tags: { // TagMap
36
+ * // "<keys>": "STRING_VALUE",
37
+ * // },
38
+ * // };
39
+ *
34
40
  * ```
35
41
  *
36
42
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -52,6 +58,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
52
58
  * @throws {@link ValidationException} (client fault)
53
59
  * <p>The request parameters are invalid.</p>
54
60
  *
61
+ * @throws {@link DetectiveServiceException}
62
+ * <p>Base exception class for all service exceptions from Detective service.</p>
55
63
  *
56
64
  */
57
65
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DetectiveClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface RejectInvitationCommandOutput extends __MetadataBearer {
37
37
  * };
38
38
  * const command = new RejectInvitationCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param RejectInvitationCommandInput - {@link RejectInvitationCommandInput}
@@ -61,6 +63,8 @@ export interface RejectInvitationCommandOutput extends __MetadataBearer {
61
63
  * @throws {@link ValidationException} (client fault)
62
64
  * <p>The request parameters are invalid.</p>
63
65
  *
66
+ * @throws {@link DetectiveServiceException}
67
+ * <p>Base exception class for all service exceptions from Detective service.</p>
64
68
  *
65
69
  */
66
70
  export declare class RejectInvitationCommand extends $Command<RejectInvitationCommandInput, RejectInvitationCommandOutput, DetectiveClientResolvedConfig> {
@@ -44,6 +44,8 @@ export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {
44
44
  * };
45
45
  * const command = new StartMonitoringMemberCommand(input);
46
46
  * const response = await client.send(command);
47
+ * // {};
48
+ *
47
49
  * ```
48
50
  *
49
51
  * @param StartMonitoringMemberCommandInput - {@link StartMonitoringMemberCommandInput}
@@ -86,6 +88,8 @@ export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {
86
88
  * @throws {@link ValidationException} (client fault)
87
89
  * <p>The request parameters are invalid.</p>
88
90
  *
91
+ * @throws {@link DetectiveServiceException}
92
+ * <p>Base exception class for all service exceptions from Detective service.</p>
89
93
  *
90
94
  */
91
95
  export declare class StartMonitoringMemberCommand extends $Command<StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput, DetectiveClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
34
34
  * };
35
35
  * const command = new TagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -55,6 +57,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
55
57
  * @throws {@link ValidationException} (client fault)
56
58
  * <p>The request parameters are invalid.</p>
57
59
  *
60
+ * @throws {@link DetectiveServiceException}
61
+ * <p>Base exception class for all service exceptions from Detective service.</p>
58
62
  *
59
63
  */
60
64
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DetectiveClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -55,6 +57,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
55
57
  * @throws {@link ValidationException} (client fault)
56
58
  * <p>The request parameters are invalid.</p>
57
59
  *
60
+ * @throws {@link DetectiveServiceException}
61
+ * <p>Base exception class for all service exceptions from Detective service.</p>
58
62
  *
59
63
  */
60
64
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DetectiveClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UpdateDatasourcePackagesCommandOutput extends __MetadataBearer
34
34
  * };
35
35
  * const command = new UpdateDatasourcePackagesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UpdateDatasourcePackagesCommandInput - {@link UpdateDatasourcePackagesCommandInput}
@@ -73,6 +75,8 @@ export interface UpdateDatasourcePackagesCommandOutput extends __MetadataBearer
73
75
  * @throws {@link ValidationException} (client fault)
74
76
  * <p>The request parameters are invalid.</p>
75
77
  *
78
+ * @throws {@link DetectiveServiceException}
79
+ * <p>Base exception class for all service exceptions from Detective service.</p>
76
80
  *
77
81
  */
78
82
  export declare class UpdateDatasourcePackagesCommand extends $Command<UpdateDatasourcePackagesCommandInput, UpdateDatasourcePackagesCommandOutput, DetectiveClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UpdateOrganizationConfigurationCommandOutput extends __Metadata
34
34
  * };
35
35
  * const command = new UpdateOrganizationConfigurationCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UpdateOrganizationConfigurationCommandInput - {@link UpdateOrganizationConfigurationCommandInput}
@@ -56,6 +58,8 @@ export interface UpdateOrganizationConfigurationCommandOutput extends __Metadata
56
58
  * @throws {@link ValidationException} (client fault)
57
59
  * <p>The request parameters are invalid.</p>
58
60
  *
61
+ * @throws {@link DetectiveServiceException}
62
+ * <p>Base exception class for all service exceptions from Detective service.</p>
59
63
  *
60
64
  */
61
65
  export declare class UpdateOrganizationConfigurationCommand extends $Command<UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput, DetectiveClientResolvedConfig> {
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.321.1",
4
+ "version": "3.326.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,33 +21,33 @@
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.321.1",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.321.1",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
30
- "@aws-sdk/middleware-content-length": "3.310.0",
31
- "@aws-sdk/middleware-endpoint": "3.310.0",
32
- "@aws-sdk/middleware-host-header": "3.310.0",
33
- "@aws-sdk/middleware-logger": "3.310.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
- "@aws-sdk/middleware-retry": "3.310.0",
36
- "@aws-sdk/middleware-serde": "3.310.0",
37
- "@aws-sdk/middleware-signing": "3.310.0",
38
- "@aws-sdk/middleware-stack": "3.310.0",
39
- "@aws-sdk/middleware-user-agent": "3.319.0",
30
+ "@aws-sdk/middleware-content-length": "3.325.0",
31
+ "@aws-sdk/middleware-endpoint": "3.325.0",
32
+ "@aws-sdk/middleware-host-header": "3.325.0",
33
+ "@aws-sdk/middleware-logger": "3.325.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.325.0",
36
+ "@aws-sdk/middleware-serde": "3.325.0",
37
+ "@aws-sdk/middleware-signing": "3.325.0",
38
+ "@aws-sdk/middleware-stack": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.325.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.316.0",
43
+ "@aws-sdk/smithy-client": "3.325.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
51
  "@aws-sdk/util-endpoints": "3.319.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",