@aws-sdk/client-detective 3.295.0 → 3.297.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 (35) hide show
  1. package/dist-types/Detective.d.ts +25 -0
  2. package/dist-types/DetectiveClient.d.ts +24 -4
  3. package/dist-types/commands/AcceptInvitationCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +16 -0
  5. package/dist-types/commands/BatchGetMembershipDatasourcesCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateGraphCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateMembersCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteGraphCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteMembersCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +16 -0
  11. package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +16 -0
  12. package/dist-types/commands/DisassociateMembershipCommand.d.ts +16 -0
  13. package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +16 -0
  14. package/dist-types/commands/GetMembersCommand.d.ts +16 -0
  15. package/dist-types/commands/ListDatasourcePackagesCommand.d.ts +16 -0
  16. package/dist-types/commands/ListGraphsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListInvitationsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListMembersCommand.d.ts +16 -0
  19. package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  21. package/dist-types/commands/RejectInvitationCommand.d.ts +16 -0
  22. package/dist-types/commands/StartMonitoringMemberCommand.d.ts +16 -0
  23. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UpdateDatasourcePackagesCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +16 -0
  27. package/dist-types/models/DetectiveServiceException.d.ts +2 -0
  28. package/dist-types/models/models_0.d.ts +149 -0
  29. package/dist-types/pagination/Interfaces.d.ts +3 -0
  30. package/dist-types/pagination/ListDatasourcePackagesPaginator.d.ts +3 -0
  31. package/dist-types/pagination/ListGraphsPaginator.d.ts +3 -0
  32. package/dist-types/pagination/ListInvitationsPaginator.d.ts +3 -0
  33. package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
  34. package/dist-types/pagination/ListOrganizationAdminAccountsPaginator.d.ts +3 -0
  35. package/package.json +29 -29
@@ -1,5 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { DetectiveServiceException as __BaseException } from "./DetectiveServiceException";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface AcceptInvitationRequest {
4
7
  /**
5
8
  * <p>The ARN of the behavior graph that the member account is accepting the invitation
@@ -8,12 +11,16 @@ export interface AcceptInvitationRequest {
8
11
  */
9
12
  GraphArn: string | undefined;
10
13
  }
14
+ /**
15
+ * @public
16
+ */
11
17
  export declare enum ErrorCode {
12
18
  InternalError = "INTERNAL_ERROR",
13
19
  InvalidGraphArn = "INVALID_GRAPH_ARN",
14
20
  InvalidRequestBody = "INVALID_REQUEST_BODY"
15
21
  }
16
22
  /**
23
+ * @public
17
24
  * <p>The request issuer does not have permission to access this resource or perform this
18
25
  * operation.</p>
19
26
  */
@@ -43,6 +50,7 @@ export declare class AccessDeniedException extends __BaseException {
43
50
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
44
51
  }
45
52
  /**
53
+ * @public
46
54
  * <p>The request attempted an invalid action.</p>
47
55
  */
48
56
  export declare class ConflictException extends __BaseException {
@@ -55,6 +63,7 @@ export declare class ConflictException extends __BaseException {
55
63
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
56
64
  }
57
65
  /**
66
+ * @public
58
67
  * <p>The request was valid but failed because of a problem with the service.</p>
59
68
  */
60
69
  export declare class InternalServerException extends __BaseException {
@@ -67,6 +76,7 @@ export declare class InternalServerException extends __BaseException {
67
76
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
68
77
  }
69
78
  /**
79
+ * @public
70
80
  * <p>The request refers to a nonexistent resource.</p>
71
81
  */
72
82
  export declare class ResourceNotFoundException extends __BaseException {
@@ -79,6 +89,7 @@ export declare class ResourceNotFoundException extends __BaseException {
79
89
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
80
90
  }
81
91
  /**
92
+ * @public
82
93
  * <p>The request parameters are invalid.</p>
83
94
  */
84
95
  export declare class ValidationException extends __BaseException {
@@ -99,6 +110,7 @@ export declare class ValidationException extends __BaseException {
99
110
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
100
111
  }
101
112
  /**
113
+ * @public
102
114
  * <p>An Amazon Web Services account that is the administrator account of or a member of a
103
115
  * behavior graph.</p>
104
116
  */
@@ -114,6 +126,7 @@ export interface Account {
114
126
  EmailAddress: string | undefined;
115
127
  }
116
128
  /**
129
+ * @public
117
130
  * <p>Information about the Detective administrator account for an
118
131
  * organization.</p>
119
132
  */
@@ -134,6 +147,9 @@ export interface Administrator {
134
147
  */
135
148
  DelegationTime?: Date;
136
149
  }
150
+ /**
151
+ * @public
152
+ */
137
153
  export interface BatchGetGraphMemberDatasourcesRequest {
138
154
  /**
139
155
  * <p>The ARN of the behavior graph.</p>
@@ -145,16 +161,23 @@ export interface BatchGetGraphMemberDatasourcesRequest {
145
161
  */
146
162
  AccountIds: string[] | undefined;
147
163
  }
164
+ /**
165
+ * @public
166
+ */
148
167
  export declare enum DatasourcePackage {
149
168
  DETECTIVE_CORE = "DETECTIVE_CORE",
150
169
  EKS_AUDIT = "EKS_AUDIT"
151
170
  }
171
+ /**
172
+ * @public
173
+ */
152
174
  export declare enum DatasourcePackageIngestState {
153
175
  DISABLED = "DISABLED",
154
176
  STARTED = "STARTED",
155
177
  STOPPED = "STOPPED"
156
178
  }
157
179
  /**
180
+ * @public
158
181
  * <p>Details on when data collection began for a source package.</p>
159
182
  */
160
183
  export interface TimestampForCollection {
@@ -165,6 +188,7 @@ export interface TimestampForCollection {
165
188
  Timestamp?: Date;
166
189
  }
167
190
  /**
191
+ * @public
168
192
  * <p>Details on data source packages for members of the behavior graph.</p>
169
193
  */
170
194
  export interface MembershipDatasources {
@@ -182,6 +206,7 @@ export interface MembershipDatasources {
182
206
  DatasourcePackageIngestHistory?: Record<string, Record<string, TimestampForCollection>>;
183
207
  }
184
208
  /**
209
+ * @public
185
210
  * <p>A member account that was included in a request but for which the request could not be
186
211
  * processed.</p>
187
212
  */
@@ -196,6 +221,9 @@ export interface UnprocessedAccount {
196
221
  */
197
222
  Reason?: string;
198
223
  }
224
+ /**
225
+ * @public
226
+ */
199
227
  export interface BatchGetGraphMemberDatasourcesResponse {
200
228
  /**
201
229
  * <p>Details on the status of data source packages for members of the behavior graph.</p>
@@ -206,6 +234,9 @@ export interface BatchGetGraphMemberDatasourcesResponse {
206
234
  */
207
235
  UnprocessedAccounts?: UnprocessedAccount[];
208
236
  }
237
+ /**
238
+ * @public
239
+ */
209
240
  export interface BatchGetMembershipDatasourcesRequest {
210
241
  /**
211
242
  * <p>The ARN of the behavior graph.</p>
@@ -213,6 +244,7 @@ export interface BatchGetMembershipDatasourcesRequest {
213
244
  GraphArns: string[] | undefined;
214
245
  }
215
246
  /**
247
+ * @public
216
248
  * <p>Behavior graphs that could not be processed in the request.</p>
217
249
  */
218
250
  export interface UnprocessedGraph {
@@ -226,6 +258,9 @@ export interface UnprocessedGraph {
226
258
  */
227
259
  Reason?: string;
228
260
  }
261
+ /**
262
+ * @public
263
+ */
229
264
  export interface BatchGetMembershipDatasourcesResponse {
230
265
  /**
231
266
  * <p>Details on the data source package history for an member of the behavior graph.</p>
@@ -236,6 +271,9 @@ export interface BatchGetMembershipDatasourcesResponse {
236
271
  */
237
272
  UnprocessedGraphs?: UnprocessedGraph[];
238
273
  }
274
+ /**
275
+ * @public
276
+ */
239
277
  export interface CreateGraphRequest {
240
278
  /**
241
279
  * <p>The tags to assign to the new behavior graph. You can add up to 50 tags. For each tag,
@@ -244,6 +282,9 @@ export interface CreateGraphRequest {
244
282
  */
245
283
  Tags?: Record<string, string>;
246
284
  }
285
+ /**
286
+ * @public
287
+ */
247
288
  export interface CreateGraphResponse {
248
289
  /**
249
290
  * <p>The ARN of the new behavior graph.</p>
@@ -251,6 +292,7 @@ export interface CreateGraphResponse {
251
292
  GraphArn?: string;
252
293
  }
253
294
  /**
295
+ * @public
254
296
  * <p>This request cannot be completed for one of the following reasons.</p>
255
297
  * <ul>
256
298
  * <li>
@@ -281,6 +323,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
281
323
  */
282
324
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
283
325
  }
326
+ /**
327
+ * @public
328
+ */
284
329
  export interface CreateMembersRequest {
285
330
  /**
286
331
  * <p>The ARN of the behavior graph.</p>
@@ -308,14 +353,23 @@ export interface CreateMembersRequest {
308
353
  */
309
354
  Accounts: Account[] | undefined;
310
355
  }
356
+ /**
357
+ * @public
358
+ */
311
359
  export declare enum MemberDisabledReason {
312
360
  VOLUME_TOO_HIGH = "VOLUME_TOO_HIGH",
313
361
  VOLUME_UNKNOWN = "VOLUME_UNKNOWN"
314
362
  }
363
+ /**
364
+ * @public
365
+ */
315
366
  export declare enum InvitationType {
316
367
  INVITATION = "INVITATION",
317
368
  ORGANIZATION = "ORGANIZATION"
318
369
  }
370
+ /**
371
+ * @public
372
+ */
319
373
  export declare enum MemberStatus {
320
374
  ACCEPTED_BUT_DISABLED = "ACCEPTED_BUT_DISABLED",
321
375
  ENABLED = "ENABLED",
@@ -324,6 +378,7 @@ export declare enum MemberStatus {
324
378
  VERIFICATION_IN_PROGRESS = "VERIFICATION_IN_PROGRESS"
325
379
  }
326
380
  /**
381
+ * @public
327
382
  * <p>Information on the usage of a data source package in the behavior graph.</p>
328
383
  */
329
384
  export interface DatasourcePackageUsageInfo {
@@ -338,6 +393,7 @@ export interface DatasourcePackageUsageInfo {
338
393
  VolumeUsageUpdateTime?: Date;
339
394
  }
340
395
  /**
396
+ * @public
341
397
  * <p>Details about a member account in a behavior graph.</p>
342
398
  */
343
399
  export interface MemberDetail {
@@ -489,6 +545,9 @@ export interface MemberDetail {
489
545
  */
490
546
  DatasourcePackageIngestStates?: Record<string, DatasourcePackageIngestState | string>;
491
547
  }
548
+ /**
549
+ * @public
550
+ */
492
551
  export interface CreateMembersResponse {
493
552
  /**
494
553
  * <p>The set of member account invitation or enablement requests that Detective was
@@ -504,12 +563,18 @@ export interface CreateMembersResponse {
504
563
  */
505
564
  UnprocessedAccounts?: UnprocessedAccount[];
506
565
  }
566
+ /**
567
+ * @public
568
+ */
507
569
  export interface DeleteGraphRequest {
508
570
  /**
509
571
  * <p>The ARN of the behavior graph to disable.</p>
510
572
  */
511
573
  GraphArn: string | undefined;
512
574
  }
575
+ /**
576
+ * @public
577
+ */
513
578
  export interface DeleteMembersRequest {
514
579
  /**
515
580
  * <p>The ARN of the behavior graph to remove members from.</p>
@@ -521,6 +586,9 @@ export interface DeleteMembersRequest {
521
586
  */
522
587
  AccountIds: string[] | undefined;
523
588
  }
589
+ /**
590
+ * @public
591
+ */
524
592
  export interface DeleteMembersResponse {
525
593
  /**
526
594
  * <p>The list of Amazon Web Services account identifiers for the member accounts that Detective successfully removed from the behavior graph.</p>
@@ -533,12 +601,18 @@ export interface DeleteMembersResponse {
533
601
  */
534
602
  UnprocessedAccounts?: UnprocessedAccount[];
535
603
  }
604
+ /**
605
+ * @public
606
+ */
536
607
  export interface DescribeOrganizationConfigurationRequest {
537
608
  /**
538
609
  * <p>The ARN of the organization behavior graph.</p>
539
610
  */
540
611
  GraphArn: string | undefined;
541
612
  }
613
+ /**
614
+ * @public
615
+ */
542
616
  export interface DescribeOrganizationConfigurationResponse {
543
617
  /**
544
618
  * <p>Indicates whether to automatically enable new organization accounts as member accounts
@@ -547,6 +621,7 @@ export interface DescribeOrganizationConfigurationResponse {
547
621
  AutoEnable?: boolean;
548
622
  }
549
623
  /**
624
+ * @public
550
625
  * <p>The request cannot be completed because too many other requests are occurring at the
551
626
  * same time.</p>
552
627
  */
@@ -559,6 +634,9 @@ export declare class TooManyRequestsException extends __BaseException {
559
634
  */
560
635
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
561
636
  }
637
+ /**
638
+ * @public
639
+ */
562
640
  export interface DisassociateMembershipRequest {
563
641
  /**
564
642
  * <p>The ARN of the behavior graph to remove the member account from.</p>
@@ -567,12 +645,18 @@ export interface DisassociateMembershipRequest {
567
645
  */
568
646
  GraphArn: string | undefined;
569
647
  }
648
+ /**
649
+ * @public
650
+ */
570
651
  export interface EnableOrganizationAdminAccountRequest {
571
652
  /**
572
653
  * <p>The Amazon Web Services account identifier of the account to designate as the Detective administrator account for the organization.</p>
573
654
  */
574
655
  AccountId: string | undefined;
575
656
  }
657
+ /**
658
+ * @public
659
+ */
576
660
  export interface GetMembersRequest {
577
661
  /**
578
662
  * <p>The ARN of the behavior graph for which to request the member details.</p>
@@ -587,6 +671,9 @@ export interface GetMembersRequest {
587
671
  */
588
672
  AccountIds: string[] | undefined;
589
673
  }
674
+ /**
675
+ * @public
676
+ */
590
677
  export interface GetMembersResponse {
591
678
  /**
592
679
  * <p>The member account details that Detective is returning in response to the
@@ -600,6 +687,9 @@ export interface GetMembersResponse {
600
687
  */
601
688
  UnprocessedAccounts?: UnprocessedAccount[];
602
689
  }
690
+ /**
691
+ * @public
692
+ */
603
693
  export interface ListDatasourcePackagesRequest {
604
694
  /**
605
695
  * <p>The ARN of the behavior graph.</p>
@@ -617,6 +707,7 @@ export interface ListDatasourcePackagesRequest {
617
707
  MaxResults?: number;
618
708
  }
619
709
  /**
710
+ * @public
620
711
  * <p>Details about the data source packages ingested by your behavior graph.</p>
621
712
  */
622
713
  export interface DatasourcePackageIngestDetail {
@@ -629,6 +720,9 @@ export interface DatasourcePackageIngestDetail {
629
720
  */
630
721
  LastIngestStateChange?: Record<string, TimestampForCollection>;
631
722
  }
723
+ /**
724
+ * @public
725
+ */
632
726
  export interface ListDatasourcePackagesResponse {
633
727
  /**
634
728
  * <p>Details on the data source packages active in the behavior graph.</p>
@@ -641,6 +735,9 @@ export interface ListDatasourcePackagesResponse {
641
735
  */
642
736
  NextToken?: string;
643
737
  }
738
+ /**
739
+ * @public
740
+ */
644
741
  export interface ListGraphsRequest {
645
742
  /**
646
743
  * <p>For requests to get the next page of results, the pagination token that was returned
@@ -655,6 +752,7 @@ export interface ListGraphsRequest {
655
752
  MaxResults?: number;
656
753
  }
657
754
  /**
755
+ * @public
658
756
  * <p>A behavior graph in Detective.</p>
659
757
  */
660
758
  export interface Graph {
@@ -668,6 +766,9 @@ export interface Graph {
668
766
  */
669
767
  CreatedTime?: Date;
670
768
  }
769
+ /**
770
+ * @public
771
+ */
671
772
  export interface ListGraphsResponse {
672
773
  /**
673
774
  * <p>A list of behavior graphs that the account is an administrator account for.</p>
@@ -679,6 +780,9 @@ export interface ListGraphsResponse {
679
780
  */
680
781
  NextToken?: string;
681
782
  }
783
+ /**
784
+ * @public
785
+ */
682
786
  export interface ListInvitationsRequest {
683
787
  /**
684
788
  * <p>For requests to retrieve the next page of results, the pagination token that was
@@ -693,6 +797,9 @@ export interface ListInvitationsRequest {
693
797
  */
694
798
  MaxResults?: number;
695
799
  }
800
+ /**
801
+ * @public
802
+ */
696
803
  export interface ListInvitationsResponse {
697
804
  /**
698
805
  * <p>The list of behavior graphs for which the member account has open or accepted
@@ -705,6 +812,9 @@ export interface ListInvitationsResponse {
705
812
  */
706
813
  NextToken?: string;
707
814
  }
815
+ /**
816
+ * @public
817
+ */
708
818
  export interface ListMembersRequest {
709
819
  /**
710
820
  * <p>The ARN of the behavior graph for which to retrieve the list of member accounts.</p>
@@ -722,6 +832,9 @@ export interface ListMembersRequest {
722
832
  */
723
833
  MaxResults?: number;
724
834
  }
835
+ /**
836
+ * @public
837
+ */
725
838
  export interface ListMembersResponse {
726
839
  /**
727
840
  * <p>The list of member accounts in the behavior graph.</p>
@@ -739,6 +852,9 @@ export interface ListMembersResponse {
739
852
  */
740
853
  NextToken?: string;
741
854
  }
855
+ /**
856
+ * @public
857
+ */
742
858
  export interface ListOrganizationAdminAccountsRequest {
743
859
  /**
744
860
  * <p>For requests to get the next page of results, the pagination token that was returned
@@ -751,6 +867,9 @@ export interface ListOrganizationAdminAccountsRequest {
751
867
  */
752
868
  MaxResults?: number;
753
869
  }
870
+ /**
871
+ * @public
872
+ */
754
873
  export interface ListOrganizationAdminAccountsResponse {
755
874
  /**
756
875
  * <p>The list of Detective administrator accounts.</p>
@@ -762,12 +881,18 @@ export interface ListOrganizationAdminAccountsResponse {
762
881
  */
763
882
  NextToken?: string;
764
883
  }
884
+ /**
885
+ * @public
886
+ */
765
887
  export interface ListTagsForResourceRequest {
766
888
  /**
767
889
  * <p>The ARN of the behavior graph for which to retrieve the tag values.</p>
768
890
  */
769
891
  ResourceArn: string | undefined;
770
892
  }
893
+ /**
894
+ * @public
895
+ */
771
896
  export interface ListTagsForResourceResponse {
772
897
  /**
773
898
  * <p>The tag values that are assigned to the behavior graph. The request returns up to 50 tag
@@ -775,6 +900,9 @@ export interface ListTagsForResourceResponse {
775
900
  */
776
901
  Tags?: Record<string, string>;
777
902
  }
903
+ /**
904
+ * @public
905
+ */
778
906
  export interface RejectInvitationRequest {
779
907
  /**
780
908
  * <p>The ARN of the behavior graph to reject the invitation to.</p>
@@ -783,6 +911,9 @@ export interface RejectInvitationRequest {
783
911
  */
784
912
  GraphArn: string | undefined;
785
913
  }
914
+ /**
915
+ * @public
916
+ */
786
917
  export interface StartMonitoringMemberRequest {
787
918
  /**
788
919
  * <p>The ARN of the behavior graph.</p>
@@ -795,6 +926,9 @@ export interface StartMonitoringMemberRequest {
795
926
  */
796
927
  AccountId: string | undefined;
797
928
  }
929
+ /**
930
+ * @public
931
+ */
798
932
  export interface TagResourceRequest {
799
933
  /**
800
934
  * <p>The ARN of the behavior graph to assign the tags to.</p>
@@ -807,8 +941,14 @@ export interface TagResourceRequest {
807
941
  */
808
942
  Tags: Record<string, string> | undefined;
809
943
  }
944
+ /**
945
+ * @public
946
+ */
810
947
  export interface TagResourceResponse {
811
948
  }
949
+ /**
950
+ * @public
951
+ */
812
952
  export interface UntagResourceRequest {
813
953
  /**
814
954
  * <p>The ARN of the behavior graph to remove the tags from.</p>
@@ -820,8 +960,14 @@ export interface UntagResourceRequest {
820
960
  */
821
961
  TagKeys: string[] | undefined;
822
962
  }
963
+ /**
964
+ * @public
965
+ */
823
966
  export interface UntagResourceResponse {
824
967
  }
968
+ /**
969
+ * @public
970
+ */
825
971
  export interface UpdateDatasourcePackagesRequest {
826
972
  /**
827
973
  * <p>The ARN of the behavior graph.</p>
@@ -832,6 +978,9 @@ export interface UpdateDatasourcePackagesRequest {
832
978
  */
833
979
  DatasourcePackages: (DatasourcePackage | string)[] | undefined;
834
980
  }
981
+ /**
982
+ * @public
983
+ */
835
984
  export interface UpdateOrganizationConfigurationRequest {
836
985
  /**
837
986
  * <p>The ARN of the organization behavior graph.</p>
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { DetectiveClient } from "../DetectiveClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface DetectivePaginationConfiguration extends PaginationConfiguration {
4
7
  client: DetectiveClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListDatasourcePackagesCommandInput, ListDatasourcePackagesCommandOutput } from "../commands/ListDatasourcePackagesCommand";
3
3
  import { DetectivePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListDatasourcePackages(config: DetectivePaginationConfiguration, input: ListDatasourcePackagesCommandInput, ...additionalArguments: any): Paginator<ListDatasourcePackagesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListGraphsCommandInput, ListGraphsCommandOutput } from "../commands/ListGraphsCommand";
3
3
  import { DetectivePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListGraphs(config: DetectivePaginationConfiguration, input: ListGraphsCommandInput, ...additionalArguments: any): Paginator<ListGraphsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "../commands/ListInvitationsCommand";
3
3
  import { DetectivePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListInvitations(config: DetectivePaginationConfiguration, input: ListInvitationsCommandInput, ...additionalArguments: any): Paginator<ListInvitationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand";
3
3
  import { DetectivePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListMembers(config: DetectivePaginationConfiguration, input: ListMembersCommandInput, ...additionalArguments: any): Paginator<ListMembersCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput } from "../commands/ListOrganizationAdminAccountsCommand";
3
3
  import { DetectivePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListOrganizationAdminAccounts(config: DetectivePaginationConfiguration, input: ListOrganizationAdminAccountsCommandInput, ...additionalArguments: any): Paginator<ListOrganizationAdminAccountsCommandOutput>;
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.295.0",
4
+ "version": "3.297.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",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.295.0",
24
- "@aws-sdk/config-resolver": "3.295.0",
25
- "@aws-sdk/credential-provider-node": "3.295.0",
26
- "@aws-sdk/fetch-http-handler": "3.295.0",
27
- "@aws-sdk/hash-node": "3.295.0",
28
- "@aws-sdk/invalid-dependency": "3.295.0",
29
- "@aws-sdk/middleware-content-length": "3.295.0",
30
- "@aws-sdk/middleware-endpoint": "3.295.0",
31
- "@aws-sdk/middleware-host-header": "3.295.0",
32
- "@aws-sdk/middleware-logger": "3.295.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.295.0",
34
- "@aws-sdk/middleware-retry": "3.295.0",
35
- "@aws-sdk/middleware-serde": "3.295.0",
36
- "@aws-sdk/middleware-signing": "3.295.0",
37
- "@aws-sdk/middleware-stack": "3.295.0",
38
- "@aws-sdk/middleware-user-agent": "3.295.0",
39
- "@aws-sdk/node-config-provider": "3.295.0",
40
- "@aws-sdk/node-http-handler": "3.295.0",
41
- "@aws-sdk/protocol-http": "3.295.0",
42
- "@aws-sdk/smithy-client": "3.295.0",
43
- "@aws-sdk/types": "3.295.0",
44
- "@aws-sdk/url-parser": "3.295.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
+ "@aws-sdk/config-resolver": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
+ "@aws-sdk/fetch-http-handler": "3.296.0",
27
+ "@aws-sdk/hash-node": "3.296.0",
28
+ "@aws-sdk/invalid-dependency": "3.296.0",
29
+ "@aws-sdk/middleware-content-length": "3.296.0",
30
+ "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-host-header": "3.296.0",
32
+ "@aws-sdk/middleware-logger": "3.296.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.296.0",
34
+ "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-serde": "3.296.0",
36
+ "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-stack": "3.296.0",
38
+ "@aws-sdk/middleware-user-agent": "3.296.0",
39
+ "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-http-handler": "3.296.0",
41
+ "@aws-sdk/protocol-http": "3.296.0",
42
+ "@aws-sdk/smithy-client": "3.296.0",
43
+ "@aws-sdk/types": "3.296.0",
44
+ "@aws-sdk/url-parser": "3.296.0",
45
45
  "@aws-sdk/util-base64": "3.295.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.295.0",
47
47
  "@aws-sdk/util-body-length-node": "3.295.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.295.0",
50
- "@aws-sdk/util-endpoints": "3.295.0",
51
- "@aws-sdk/util-retry": "3.295.0",
52
- "@aws-sdk/util-user-agent-browser": "3.295.0",
53
- "@aws-sdk/util-user-agent-node": "3.295.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.296.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-endpoints": "3.296.0",
51
+ "@aws-sdk/util-retry": "3.296.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.296.0",
53
+ "@aws-sdk/util-user-agent-node": "3.296.0",
54
54
  "@aws-sdk/util-utf8": "3.295.0",
55
55
  "tslib": "^2.5.0"
56
56
  },