@aws-sdk/client-detective 3.1087.0 → 3.1088.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 (50) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Detective.d.ts +98 -122
  3. package/dist-types/ts3.4/DetectiveClient.d.ts +11 -38
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/AcceptInvitationCommand.d.ts +2 -2
  8. package/dist-types/ts3.4/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +4 -6
  9. package/dist-types/ts3.4/commands/BatchGetMembershipDatasourcesCommand.d.ts +4 -6
  10. package/dist-types/ts3.4/commands/CreateGraphCommand.d.ts +2 -4
  11. package/dist-types/ts3.4/commands/CreateMembersCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/DeleteGraphCommand.d.ts +2 -2
  13. package/dist-types/ts3.4/commands/DeleteMembersCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +4 -6
  15. package/dist-types/ts3.4/commands/DisableOrganizationAdminAccountCommand.d.ts +2 -3
  16. package/dist-types/ts3.4/commands/DisassociateMembershipCommand.d.ts +3 -4
  17. package/dist-types/ts3.4/commands/EnableOrganizationAdminAccountCommand.d.ts +4 -6
  18. package/dist-types/ts3.4/commands/GetInvestigationCommand.d.ts +4 -9
  19. package/dist-types/ts3.4/commands/GetMembersCommand.d.ts +3 -5
  20. package/dist-types/ts3.4/commands/ListDatasourcePackagesCommand.d.ts +5 -10
  21. package/dist-types/ts3.4/commands/ListGraphsCommand.d.ts +2 -4
  22. package/dist-types/ts3.4/commands/ListIndicatorsCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/ListInvestigationsCommand.d.ts +5 -10
  24. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +3 -8
  25. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +3 -5
  26. package/dist-types/ts3.4/commands/ListOrganizationAdminAccountsCommand.d.ts +3 -5
  27. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  28. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +2 -2
  29. package/dist-types/ts3.4/commands/StartInvestigationCommand.d.ts +5 -10
  30. package/dist-types/ts3.4/commands/StartMonitoringMemberCommand.d.ts +3 -4
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  33. package/dist-types/ts3.4/commands/UpdateDatasourcePackagesCommand.d.ts +4 -6
  34. package/dist-types/ts3.4/commands/UpdateInvestigationStateCommand.d.ts +4 -6
  35. package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +4 -6
  36. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  37. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  38. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  39. package/dist-types/ts3.4/models/enums.d.ts +3 -6
  40. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  42. package/dist-types/ts3.4/pagination/ListGraphsPaginator.d.ts +1 -4
  43. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +1 -4
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  48. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  50. package/package.json +38 -38
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListInvestigationsRequest,
4
- ListInvestigationsResponse,
5
- } from "../models/models_0";
2
+ import { ListInvestigationsRequest, ListInvestigationsResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListInvestigationsCommandInput
8
- extends ListInvestigationsRequest {}
4
+ export interface ListInvestigationsCommandInput extends ListInvestigationsRequest {}
9
5
  export interface ListInvestigationsCommandOutput
10
- extends ListInvestigationsResponse,
11
- __MetadataBearer {}
6
+ extends ListInvestigationsResponse, __MetadataBearer {}
12
7
  declare const ListInvestigationsCommand_base: {
13
8
  new (
14
- input: ListInvestigationsCommandInput
9
+ input: ListInvestigationsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListInvestigationsCommandInput,
17
12
  ListInvestigationsCommandOutput,
@@ -20,7 +15,7 @@ declare const ListInvestigationsCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListInvestigationsCommandInput
18
+ input: ListInvestigationsCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListInvestigationsCommandInput,
26
21
  ListInvestigationsCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListInvitationsRequest,
4
- ListInvitationsResponse,
5
- } from "../models/models_0";
2
+ import { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface ListInvitationsCommandInput extends ListInvitationsRequest {}
8
- export interface ListInvitationsCommandOutput
9
- extends ListInvitationsResponse,
10
- __MetadataBearer {}
5
+ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, __MetadataBearer {}
11
6
  declare const ListInvitationsCommand_base: {
12
7
  new (
13
- input: ListInvitationsCommandInput
8
+ input: ListInvitationsCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  ListInvitationsCommandInput,
16
11
  ListInvitationsCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { ListMembersRequest, ListMembersResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface ListMembersCommandInput extends ListMembersRequest {}
5
- export interface ListMembersCommandOutput
6
- extends ListMembersResponse,
7
- __MetadataBearer {}
5
+ export interface ListMembersCommandOutput extends ListMembersResponse, __MetadataBearer {}
8
6
  declare const ListMembersCommand_base: {
9
7
  new (
10
- input: ListMembersCommandInput
8
+ input: ListMembersCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  ListMembersCommandInput,
13
11
  ListMembersCommandOutput,
@@ -16,7 +14,7 @@ declare const ListMembersCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: ListMembersCommandInput
17
+ input: ListMembersCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  ListMembersCommandInput,
22
20
  ListMembersCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  ListOrganizationAdminAccountsResponse,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface ListOrganizationAdminAccountsCommandInput
8
- extends ListOrganizationAdminAccountsRequest {}
7
+ export interface ListOrganizationAdminAccountsCommandInput extends ListOrganizationAdminAccountsRequest {}
9
8
  export interface ListOrganizationAdminAccountsCommandOutput
10
- extends ListOrganizationAdminAccountsResponse,
11
- __MetadataBearer {}
9
+ extends ListOrganizationAdminAccountsResponse, __MetadataBearer {}
12
10
  declare const ListOrganizationAdminAccountsCommand_base: {
13
11
  new (
14
- input: ListOrganizationAdminAccountsCommandInput
12
+ input: ListOrganizationAdminAccountsCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  ListOrganizationAdminAccountsCommandInput,
17
15
  ListOrganizationAdminAccountsCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- ListTagsForResourceRequest,
4
- ListTagsForResourceResponse,
5
- } from "../models/models_0";
2
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface ListTagsForResourceCommandInput
8
- extends ListTagsForResourceRequest {}
4
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
9
5
  export interface ListTagsForResourceCommandOutput
10
- extends ListTagsForResourceResponse,
11
- __MetadataBearer {}
6
+ extends ListTagsForResourceResponse, __MetadataBearer {}
12
7
  declare const ListTagsForResourceCommand_base: {
13
8
  new (
14
- input: ListTagsForResourceCommandInput
9
+ input: ListTagsForResourceCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  ListTagsForResourceCommandInput,
17
12
  ListTagsForResourceCommandOutput,
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: ListTagsForResourceCommandInput
18
+ input: ListTagsForResourceCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  ListTagsForResourceCommandInput,
26
21
  ListTagsForResourceCommandOutput,
@@ -5,7 +5,7 @@ export interface RejectInvitationCommandInput extends RejectInvitationRequest {}
5
5
  export interface RejectInvitationCommandOutput extends __MetadataBearer {}
6
6
  declare const RejectInvitationCommand_base: {
7
7
  new (
8
- input: RejectInvitationCommandInput
8
+ input: RejectInvitationCommandInput,
9
9
  ): import("@smithy/core/client").CommandImpl<
10
10
  RejectInvitationCommandInput,
11
11
  RejectInvitationCommandOutput,
@@ -14,7 +14,7 @@ declare const RejectInvitationCommand_base: {
14
14
  import("..").ServiceOutputTypes
15
15
  >;
16
16
  new (
17
- input: RejectInvitationCommandInput
17
+ input: RejectInvitationCommandInput,
18
18
  ): import("@smithy/core/client").CommandImpl<
19
19
  RejectInvitationCommandInput,
20
20
  RejectInvitationCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- StartInvestigationRequest,
4
- StartInvestigationResponse,
5
- } from "../models/models_0";
2
+ import { StartInvestigationRequest, StartInvestigationResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface StartInvestigationCommandInput
8
- extends StartInvestigationRequest {}
4
+ export interface StartInvestigationCommandInput extends StartInvestigationRequest {}
9
5
  export interface StartInvestigationCommandOutput
10
- extends StartInvestigationResponse,
11
- __MetadataBearer {}
6
+ extends StartInvestigationResponse, __MetadataBearer {}
12
7
  declare const StartInvestigationCommand_base: {
13
8
  new (
14
- input: StartInvestigationCommandInput
9
+ input: StartInvestigationCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  StartInvestigationCommandInput,
17
12
  StartInvestigationCommandOutput,
@@ -20,7 +15,7 @@ declare const StartInvestigationCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: StartInvestigationCommandInput
18
+ input: StartInvestigationCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  StartInvestigationCommandInput,
26
21
  StartInvestigationCommandOutput,
@@ -1,12 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { StartMonitoringMemberRequest } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
- export interface StartMonitoringMemberCommandInput
5
- extends StartMonitoringMemberRequest {}
4
+ export interface StartMonitoringMemberCommandInput extends StartMonitoringMemberRequest {}
6
5
  export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {}
7
6
  declare const StartMonitoringMemberCommand_base: {
8
7
  new (
9
- input: StartMonitoringMemberCommandInput
8
+ input: StartMonitoringMemberCommandInput,
10
9
  ): import("@smithy/core/client").CommandImpl<
11
10
  StartMonitoringMemberCommandInput,
12
11
  StartMonitoringMemberCommandOutput,
@@ -15,7 +14,7 @@ declare const StartMonitoringMemberCommand_base: {
15
14
  import("..").ServiceOutputTypes
16
15
  >;
17
16
  new (
18
- input: StartMonitoringMemberCommandInput
17
+ input: StartMonitoringMemberCommandInput,
19
18
  ): import("@smithy/core/client").CommandImpl<
20
19
  StartMonitoringMemberCommandInput,
21
20
  StartMonitoringMemberCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
5
- export interface TagResourceCommandOutput
6
- extends TagResourceResponse,
7
- __MetadataBearer {}
5
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
8
6
  declare const TagResourceCommand_base: {
9
7
  new (
10
- input: TagResourceCommandInput
8
+ input: TagResourceCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  TagResourceCommandInput,
13
11
  TagResourceCommandOutput,
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: TagResourceCommandInput
17
+ input: TagResourceCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  TagResourceCommandInput,
22
20
  TagResourceCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- UntagResourceRequest,
4
- UntagResourceResponse,
5
- } from "../models/models_0";
2
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
8
- export interface UntagResourceCommandOutput
9
- extends UntagResourceResponse,
10
- __MetadataBearer {}
5
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
11
6
  declare const UntagResourceCommand_base: {
12
7
  new (
13
- input: UntagResourceCommandInput
8
+ input: UntagResourceCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  UntagResourceCommandInput,
16
11
  UntagResourceCommandOutput,
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: UntagResourceCommandInput
17
+ input: UntagResourceCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  UntagResourceCommandInput,
25
20
  UntagResourceCommandOutput,
@@ -1,13 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { UpdateDatasourcePackagesRequest } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
- export interface UpdateDatasourcePackagesCommandInput
5
- extends UpdateDatasourcePackagesRequest {}
6
- export interface UpdateDatasourcePackagesCommandOutput
7
- extends __MetadataBearer {}
4
+ export interface UpdateDatasourcePackagesCommandInput extends UpdateDatasourcePackagesRequest {}
5
+ export interface UpdateDatasourcePackagesCommandOutput extends __MetadataBearer {}
8
6
  declare const UpdateDatasourcePackagesCommand_base: {
9
7
  new (
10
- input: UpdateDatasourcePackagesCommandInput
8
+ input: UpdateDatasourcePackagesCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  UpdateDatasourcePackagesCommandInput,
13
11
  UpdateDatasourcePackagesCommandOutput,
@@ -16,7 +14,7 @@ declare const UpdateDatasourcePackagesCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: UpdateDatasourcePackagesCommandInput
17
+ input: UpdateDatasourcePackagesCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  UpdateDatasourcePackagesCommandInput,
22
20
  UpdateDatasourcePackagesCommandOutput,
@@ -1,13 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { UpdateInvestigationStateRequest } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
- export interface UpdateInvestigationStateCommandInput
5
- extends UpdateInvestigationStateRequest {}
6
- export interface UpdateInvestigationStateCommandOutput
7
- extends __MetadataBearer {}
4
+ export interface UpdateInvestigationStateCommandInput extends UpdateInvestigationStateRequest {}
5
+ export interface UpdateInvestigationStateCommandOutput extends __MetadataBearer {}
8
6
  declare const UpdateInvestigationStateCommand_base: {
9
7
  new (
10
- input: UpdateInvestigationStateCommandInput
8
+ input: UpdateInvestigationStateCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  UpdateInvestigationStateCommandInput,
13
11
  UpdateInvestigationStateCommandOutput,
@@ -16,7 +14,7 @@ declare const UpdateInvestigationStateCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: UpdateInvestigationStateCommandInput
17
+ input: UpdateInvestigationStateCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  UpdateInvestigationStateCommandInput,
22
20
  UpdateInvestigationStateCommandOutput,
@@ -1,13 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { UpdateOrganizationConfigurationRequest } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
- export interface UpdateOrganizationConfigurationCommandInput
5
- extends UpdateOrganizationConfigurationRequest {}
6
- export interface UpdateOrganizationConfigurationCommandOutput
7
- extends __MetadataBearer {}
4
+ export interface UpdateOrganizationConfigurationCommandInput extends UpdateOrganizationConfigurationRequest {}
5
+ export interface UpdateOrganizationConfigurationCommandOutput extends __MetadataBearer {}
8
6
  declare const UpdateOrganizationConfigurationCommand_base: {
9
7
  new (
10
- input: UpdateOrganizationConfigurationCommandInput
8
+ input: UpdateOrganizationConfigurationCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  UpdateOrganizationConfigurationCommandInput,
13
11
  UpdateOrganizationConfigurationCommandOutput,
@@ -16,7 +14,7 @@ declare const UpdateOrganizationConfigurationCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: UpdateOrganizationConfigurationCommandInput
17
+ input: UpdateOrganizationConfigurationCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  UpdateOrganizationConfigurationCommandInput,
22
20
  UpdateOrganizationConfigurationCommandOutput,
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
23
23
  defaultSigningName: string;
24
24
  };
25
25
  export declare const resolveClientEndpointParameters: <T>(
26
- options: T & ClientInputEndpointParameters
26
+ options: T & ClientInputEndpointParameters,
27
27
  ) => T & ClientResolvedEndpointParameters;
28
28
  export declare const commonParams: {
29
29
  readonly UseFIPS: {
@@ -4,5 +4,5 @@ export declare const defaultEndpointResolver: (
4
4
  endpointParams: EndpointParameters,
5
5
  context?: {
6
6
  logger?: Logger;
7
- }
7
+ },
8
8
  ) => EndpointV2;
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
3
3
  import { DefaultExtensionConfiguration } from "@smithy/types";
4
4
  import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
5
  export interface DetectiveExtensionConfiguration
6
- extends HttpHandlerExtensionConfiguration,
6
+ extends
7
+ HttpHandlerExtensionConfiguration,
7
8
  DefaultExtensionConfiguration,
8
9
  AwsRegionExtensionConfiguration,
9
10
  HttpAuthExtensionConfiguration {}
@@ -9,8 +9,7 @@ export declare const DatasourcePackage: {
9
9
  readonly DETECTIVE_CORE: "DETECTIVE_CORE";
10
10
  readonly EKS_AUDIT: "EKS_AUDIT";
11
11
  };
12
- export type DatasourcePackage =
13
- (typeof DatasourcePackage)[keyof typeof DatasourcePackage];
12
+ export type DatasourcePackage = (typeof DatasourcePackage)[keyof typeof DatasourcePackage];
14
13
  export declare const DatasourcePackageIngestState: {
15
14
  readonly DISABLED: "DISABLED";
16
15
  readonly STARTED: "STARTED";
@@ -22,14 +21,12 @@ export declare const MemberDisabledReason: {
22
21
  readonly VOLUME_TOO_HIGH: "VOLUME_TOO_HIGH";
23
22
  readonly VOLUME_UNKNOWN: "VOLUME_UNKNOWN";
24
23
  };
25
- export type MemberDisabledReason =
26
- (typeof MemberDisabledReason)[keyof typeof MemberDisabledReason];
24
+ export type MemberDisabledReason = (typeof MemberDisabledReason)[keyof typeof MemberDisabledReason];
27
25
  export declare const InvitationType: {
28
26
  readonly INVITATION: "INVITATION";
29
27
  readonly ORGANIZATION: "ORGANIZATION";
30
28
  };
31
- export type InvitationType =
32
- (typeof InvitationType)[keyof typeof InvitationType];
29
+ export type InvitationType = (typeof InvitationType)[keyof typeof InvitationType];
33
30
  export declare const MemberStatus: {
34
31
  readonly ACCEPTED_BUT_DISABLED: "ACCEPTED_BUT_DISABLED";
35
32
  readonly ENABLED: "ENABLED";
@@ -9,9 +9,7 @@ export declare class AccessDeniedException extends __BaseException {
9
9
  ErrorCodeReason?: string | undefined;
10
10
  SubErrorCode?: ErrorCode | undefined;
11
11
  SubErrorCodeReason?: string | undefined;
12
- constructor(
13
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
14
- );
12
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
13
  }
16
14
  export declare class ConflictException extends __BaseException {
17
15
  readonly name: "ConflictException";
@@ -23,17 +21,13 @@ export declare class InternalServerException extends __BaseException {
23
21
  readonly name: "InternalServerException";
24
22
  readonly $fault: "server";
25
23
  Message?: string | undefined;
26
- constructor(
27
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
28
- );
24
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
29
25
  }
30
26
  export declare class ResourceNotFoundException extends __BaseException {
31
27
  readonly name: "ResourceNotFoundException";
32
28
  readonly $fault: "client";
33
29
  Message?: string | undefined;
34
- constructor(
35
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
36
- );
30
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
37
31
  }
38
32
  export declare class ValidationException extends __BaseException {
39
33
  readonly name: "ValidationException";
@@ -41,24 +35,18 @@ export declare class ValidationException extends __BaseException {
41
35
  Message?: string | undefined;
42
36
  ErrorCode?: ErrorCode | undefined;
43
37
  ErrorCodeReason?: string | undefined;
44
- constructor(
45
- opts: __ExceptionOptionType<ValidationException, __BaseException>
46
- );
38
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
47
39
  }
48
40
  export declare class ServiceQuotaExceededException extends __BaseException {
49
41
  readonly name: "ServiceQuotaExceededException";
50
42
  readonly $fault: "client";
51
43
  Message?: string | undefined;
52
44
  Resources?: string[] | undefined;
53
- constructor(
54
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
55
- );
45
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
56
46
  }
57
47
  export declare class TooManyRequestsException extends __BaseException {
58
48
  readonly name: "TooManyRequestsException";
59
49
  readonly $fault: "client";
60
50
  Message?: string | undefined;
61
- constructor(
62
- opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
63
- );
51
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
64
52
  }
@@ -1,6 +1,5 @@
1
1
  import { PaginationConfiguration } from "@smithy/types";
2
2
  import { DetectiveClient } from "../DetectiveClient";
3
- export interface DetectivePaginationConfiguration
4
- extends PaginationConfiguration {
3
+ export interface DetectivePaginationConfiguration extends PaginationConfiguration {
5
4
  client: DetectiveClient;
6
5
  }
@@ -1,8 +1,5 @@
1
1
  import { Paginator } from "@smithy/types";
2
- import {
3
- ListGraphsCommandInput,
4
- ListGraphsCommandOutput,
5
- } from "../commands/ListGraphsCommand";
2
+ import { ListGraphsCommandInput, ListGraphsCommandOutput } from "../commands/ListGraphsCommand";
6
3
  import { DetectivePaginationConfiguration } from "./Interfaces";
7
4
  export declare const paginateListGraphs: (
8
5
  config: DetectivePaginationConfiguration,
@@ -1,8 +1,5 @@
1
1
  import { Paginator } from "@smithy/types";
2
- import {
3
- ListMembersCommandInput,
4
- ListMembersCommandOutput,
5
- } from "../commands/ListMembersCommand";
2
+ import { ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand";
6
3
  import { DetectivePaginationConfiguration } from "./Interfaces";
7
4
  export declare const paginateListMembers: (
8
5
  config: DetectivePaginationConfiguration,
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: DetectiveClientConfig) => {
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider:
10
10
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
- | ((
12
- _: unknown
13
- ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
12
  defaultUserAgentProvider: (
15
- config?: import("@aws-sdk/core/client").PreviouslyResolved
13
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
16
14
  ) => Promise<import("@smithy/types").UserAgent>;
17
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
18
16
  region: string | import("@smithy/types").Provider<any>;
19
- requestHandler:
20
- | import("@smithy/core/protocols").HttpHandler<any>
21
- | RequestHandler;
17
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
22
18
  retryMode: string | import("@smithy/types").Provider<string>;
23
19
  streamCollector: (
24
- stream:
25
- | import("stream").Readable
26
- | import("stream/web").ReadableStream
27
- | ReadableStream
28
- | Blob
20
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
29
21
  ) => Promise<Uint8Array>;
30
22
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
31
23
  (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: DetectiveClientConfig) => {
53
45
  logger: import("@smithy/types").Logger;
54
46
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- userAgentAppId?:
57
- | string
58
- | undefined
59
- | import("@smithy/types").Provider<string | undefined>;
60
- retryStrategy?:
61
- | import("@smithy/types").RetryStrategy
62
- | import("@smithy/types").RetryStrategyV2;
48
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
49
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
63
50
  endpoint?:
64
51
  | ((
65
52
  | string
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: DetectiveClientConfig) => {
81
68
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
82
69
  context?: {
83
70
  logger?: import("@smithy/types").Logger;
84
- }
71
+ },
85
72
  ) => import("@smithy/types").EndpointV2;
86
73
  tls?: boolean;
87
74
  serviceConfiguredEndpoint?: never;
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: DetectiveClientConfig) => {
94
81
  signer?:
95
82
  | import("@smithy/types").RequestSigner
96
83
  | ((
97
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
98
85
  ) => Promise<import("@smithy/types").RequestSigner>);
99
86
  signingEscapePath?: boolean;
100
87
  systemClockOffset?: number;
101
88
  signingRegion?: string;
102
89
  signerConstructor?: new (
103
90
  options: import("@smithy/signature-v4").SignatureV4Init &
104
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
105
92
  ) => import("@smithy/types").RequestSigner;
106
93
  };
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: DetectiveClientConfig) => {
10
10
  credentialDefaultProvider:
11
11
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
12
  | ((
13
- init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
14
14
  ) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
15
15
  defaultUserAgentProvider: (
16
- config?: import("@aws-sdk/core/client").PreviouslyResolved
16
+ config?: import("@aws-sdk/core/client").PreviouslyResolved,
17
17
  ) => Promise<import("@smithy/types").UserAgent>;
18
18
  maxAttempts: number | import("@smithy/types").Provider<number>;
19
19
  region: string | import("@smithy/types").Provider<string>;
20
- requestHandler:
21
- | RequestHandler
22
- | import("@smithy/core/protocols").HttpHandler<any>;
20
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
23
21
  retryMode: string | import("@smithy/types").Provider<string>;
24
22
  streamCollector: (
25
- stream:
26
- | import("stream").Readable
27
- | import("stream/web").ReadableStream
28
- | ReadableStream
29
- | Blob
23
+ stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
30
24
  ) => Promise<Uint8Array>;
31
25
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
26
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: DetectiveClientConfig) => {
53
47
  logger: import("@smithy/types").Logger;
54
48
  extensions: import("./runtimeExtensions").RuntimeExtension[];
55
49
  customUserAgent?: string | import("@smithy/types").UserAgent;
56
- retryStrategy?:
57
- | import("@smithy/types").RetryStrategy
58
- | import("@smithy/types").RetryStrategyV2;
50
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
59
51
  endpoint?:
60
52
  | ((
61
53
  | string
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: DetectiveClientConfig) => {
77
69
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
78
70
  context?: {
79
71
  logger?: import("@smithy/types").Logger;
80
- }
72
+ },
81
73
  ) => import("@smithy/types").EndpointV2;
82
74
  tls?: boolean;
83
75
  serviceConfiguredEndpoint?: never;
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: DetectiveClientConfig) => {
89
81
  signer?:
90
82
  | import("@smithy/types").RequestSigner
91
83
  | ((
92
- authScheme?: import("@smithy/types").AuthScheme
84
+ authScheme?: import("@smithy/types").AuthScheme,
93
85
  ) => Promise<import("@smithy/types").RequestSigner>);
94
86
  signingEscapePath?: boolean;
95
87
  systemClockOffset?: number;
96
88
  signingRegion?: string;
97
89
  signerConstructor?: new (
98
90
  options: import("@smithy/signature-v4").SignatureV4Init &
99
- import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ import("@smithy/signature-v4").SignatureV4CryptoInit,
100
92
  ) => import("@smithy/types").RequestSigner;
101
93
  };