@aws-sdk/client-detective 3.169.0 → 3.170.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 (46) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Detective.d.ts +442 -125
  3. package/dist-types/ts3.4/DetectiveClient.d.ts +273 -97
  4. package/dist-types/ts3.4/commands/AcceptInvitationCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/BatchGetMembershipDatasourcesCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateGraphCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/CreateMembersCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteGraphCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteMembersCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DisableOrganizationAdminAccountCommand.d.ts +35 -16
  13. package/dist-types/ts3.4/commands/DisassociateMembershipCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/EnableOrganizationAdminAccountCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetMembersCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ListDatasourcePackagesCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListGraphsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListOrganizationAdminAccountsCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/StartMonitoringMemberCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/UpdateDatasourcePackagesCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +37 -17
  28. package/dist-types/ts3.4/commands/index.d.ts +24 -24
  29. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  30. package/dist-types/ts3.4/index.d.ts +6 -6
  31. package/dist-types/ts3.4/models/DetectiveServiceException.d.ts +8 -6
  32. package/dist-types/ts3.4/models/index.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +543 -485
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  35. package/dist-types/ts3.4/pagination/ListDatasourcePackagesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListGraphsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListInvitationsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListOrganizationAdminAccountsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  46. package/package.json +34 -34
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { DeleteGraphRequest } from "../models/models_0";
5
- export interface DeleteGraphCommandInput extends DeleteGraphRequest {
6
- }
7
- export interface DeleteGraphCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteGraphCommand extends $Command<DeleteGraphCommandInput, DeleteGraphCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: DeleteGraphCommandInput;
12
- constructor(input: DeleteGraphCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGraphCommandInput, DeleteGraphCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import { DeleteGraphRequest } from "../models/models_0";
14
+ export interface DeleteGraphCommandInput extends DeleteGraphRequest {}
15
+ export interface DeleteGraphCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class DeleteGraphCommand extends $Command<
18
+ DeleteGraphCommandInput,
19
+ DeleteGraphCommandOutput,
20
+ DetectiveClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteGraphCommandInput;
23
+ constructor(input: DeleteGraphCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: DetectiveClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteGraphCommandInput, DeleteGraphCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { DeleteMembersRequest, DeleteMembersResponse } from "../models/models_0";
5
- export interface DeleteMembersCommandInput extends DeleteMembersRequest {
6
- }
7
- export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteMembersCommand extends $Command<DeleteMembersCommandInput, DeleteMembersCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: DeleteMembersCommandInput;
12
- constructor(input: DeleteMembersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMembersCommandInput, DeleteMembersCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import {
14
+ DeleteMembersRequest,
15
+ DeleteMembersResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteMembersCommandInput extends DeleteMembersRequest {}
18
+ export interface DeleteMembersCommandOutput
19
+ extends DeleteMembersResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteMembersCommand extends $Command<
23
+ DeleteMembersCommandInput,
24
+ DeleteMembersCommandOutput,
25
+ DetectiveClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteMembersCommandInput;
28
+ constructor(input: DeleteMembersCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: DetectiveClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteMembersCommandInput, DeleteMembersCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { DescribeOrganizationConfigurationRequest, DescribeOrganizationConfigurationResponse } from "../models/models_0";
5
- export interface DescribeOrganizationConfigurationCommandInput extends DescribeOrganizationConfigurationRequest {
6
- }
7
- export interface DescribeOrganizationConfigurationCommandOutput extends DescribeOrganizationConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeOrganizationConfigurationCommand extends $Command<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: DescribeOrganizationConfigurationCommandInput;
12
- constructor(input: DescribeOrganizationConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import {
14
+ DescribeOrganizationConfigurationRequest,
15
+ DescribeOrganizationConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeOrganizationConfigurationCommandInput
18
+ extends DescribeOrganizationConfigurationRequest {}
19
+ export interface DescribeOrganizationConfigurationCommandOutput
20
+ extends DescribeOrganizationConfigurationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeOrganizationConfigurationCommand extends $Command<
24
+ DescribeOrganizationConfigurationCommandInput,
25
+ DescribeOrganizationConfigurationCommandOutput,
26
+ DetectiveClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeOrganizationConfigurationCommandInput;
29
+ constructor(input: DescribeOrganizationConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DetectiveClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeOrganizationConfigurationCommandInput,
37
+ DescribeOrganizationConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,16 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- export interface DisableOrganizationAdminAccountCommandInput {
5
- }
6
- export interface DisableOrganizationAdminAccountCommandOutput extends __MetadataBearer {
7
- }
8
-
9
- export declare class DisableOrganizationAdminAccountCommand extends $Command<DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput, DetectiveClientResolvedConfig> {
10
- readonly input: DisableOrganizationAdminAccountCommandInput;
11
- constructor(input: DisableOrganizationAdminAccountCommandInput);
12
-
13
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput>;
14
- private serialize;
15
- private deserialize;
16
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ export interface DisableOrganizationAdminAccountCommandInput {}
14
+ export interface DisableOrganizationAdminAccountCommandOutput
15
+ extends __MetadataBearer {}
16
+
17
+ export declare class DisableOrganizationAdminAccountCommand extends $Command<
18
+ DisableOrganizationAdminAccountCommandInput,
19
+ DisableOrganizationAdminAccountCommandOutput,
20
+ DetectiveClientResolvedConfig
21
+ > {
22
+ readonly input: DisableOrganizationAdminAccountCommandInput;
23
+ constructor(input: DisableOrganizationAdminAccountCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: DetectiveClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<
30
+ DisableOrganizationAdminAccountCommandInput,
31
+ DisableOrganizationAdminAccountCommandOutput
32
+ >;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { DisassociateMembershipRequest } from "../models/models_0";
5
- export interface DisassociateMembershipCommandInput extends DisassociateMembershipRequest {
6
- }
7
- export interface DisassociateMembershipCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DisassociateMembershipCommand extends $Command<DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: DisassociateMembershipCommandInput;
12
- constructor(input: DisassociateMembershipCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import { DisassociateMembershipRequest } from "../models/models_0";
14
+ export interface DisassociateMembershipCommandInput
15
+ extends DisassociateMembershipRequest {}
16
+ export interface DisassociateMembershipCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class DisassociateMembershipCommand extends $Command<
19
+ DisassociateMembershipCommandInput,
20
+ DisassociateMembershipCommandOutput,
21
+ DetectiveClientResolvedConfig
22
+ > {
23
+ readonly input: DisassociateMembershipCommandInput;
24
+ constructor(input: DisassociateMembershipCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: DetectiveClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ DisassociateMembershipCommandInput,
32
+ DisassociateMembershipCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { EnableOrganizationAdminAccountRequest } from "../models/models_0";
5
- export interface EnableOrganizationAdminAccountCommandInput extends EnableOrganizationAdminAccountRequest {
6
- }
7
- export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class EnableOrganizationAdminAccountCommand extends $Command<EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: EnableOrganizationAdminAccountCommandInput;
12
- constructor(input: EnableOrganizationAdminAccountCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import { EnableOrganizationAdminAccountRequest } from "../models/models_0";
14
+ export interface EnableOrganizationAdminAccountCommandInput
15
+ extends EnableOrganizationAdminAccountRequest {}
16
+ export interface EnableOrganizationAdminAccountCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class EnableOrganizationAdminAccountCommand extends $Command<
20
+ EnableOrganizationAdminAccountCommandInput,
21
+ EnableOrganizationAdminAccountCommandOutput,
22
+ DetectiveClientResolvedConfig
23
+ > {
24
+ readonly input: EnableOrganizationAdminAccountCommandInput;
25
+ constructor(input: EnableOrganizationAdminAccountCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: DetectiveClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ EnableOrganizationAdminAccountCommandInput,
33
+ EnableOrganizationAdminAccountCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { GetMembersRequest, GetMembersResponse } from "../models/models_0";
5
- export interface GetMembersCommandInput extends GetMembersRequest {
6
- }
7
- export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetMembersCommand extends $Command<GetMembersCommandInput, GetMembersCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: GetMembersCommandInput;
12
- constructor(input: GetMembersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMembersCommandInput, GetMembersCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import { GetMembersRequest, GetMembersResponse } from "../models/models_0";
14
+ export interface GetMembersCommandInput extends GetMembersRequest {}
15
+ export interface GetMembersCommandOutput
16
+ extends GetMembersResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetMembersCommand extends $Command<
20
+ GetMembersCommandInput,
21
+ GetMembersCommandOutput,
22
+ DetectiveClientResolvedConfig
23
+ > {
24
+ readonly input: GetMembersCommandInput;
25
+ constructor(input: GetMembersCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: DetectiveClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetMembersCommandInput, GetMembersCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { ListDatasourcePackagesRequest, ListDatasourcePackagesResponse } from "../models/models_0";
5
- export interface ListDatasourcePackagesCommandInput extends ListDatasourcePackagesRequest {
6
- }
7
- export interface ListDatasourcePackagesCommandOutput extends ListDatasourcePackagesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListDatasourcePackagesCommand extends $Command<ListDatasourcePackagesCommandInput, ListDatasourcePackagesCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: ListDatasourcePackagesCommandInput;
12
- constructor(input: ListDatasourcePackagesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatasourcePackagesCommandInput, ListDatasourcePackagesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import {
14
+ ListDatasourcePackagesRequest,
15
+ ListDatasourcePackagesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListDatasourcePackagesCommandInput
18
+ extends ListDatasourcePackagesRequest {}
19
+ export interface ListDatasourcePackagesCommandOutput
20
+ extends ListDatasourcePackagesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListDatasourcePackagesCommand extends $Command<
24
+ ListDatasourcePackagesCommandInput,
25
+ ListDatasourcePackagesCommandOutput,
26
+ DetectiveClientResolvedConfig
27
+ > {
28
+ readonly input: ListDatasourcePackagesCommandInput;
29
+ constructor(input: ListDatasourcePackagesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DetectiveClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListDatasourcePackagesCommandInput,
37
+ ListDatasourcePackagesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { ListGraphsRequest, ListGraphsResponse } from "../models/models_0";
5
- export interface ListGraphsCommandInput extends ListGraphsRequest {
6
- }
7
- export interface ListGraphsCommandOutput extends ListGraphsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListGraphsCommand extends $Command<ListGraphsCommandInput, ListGraphsCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: ListGraphsCommandInput;
12
- constructor(input: ListGraphsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGraphsCommandInput, ListGraphsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import { ListGraphsRequest, ListGraphsResponse } from "../models/models_0";
14
+ export interface ListGraphsCommandInput extends ListGraphsRequest {}
15
+ export interface ListGraphsCommandOutput
16
+ extends ListGraphsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListGraphsCommand extends $Command<
20
+ ListGraphsCommandInput,
21
+ ListGraphsCommandOutput,
22
+ DetectiveClientResolvedConfig
23
+ > {
24
+ readonly input: ListGraphsCommandInput;
25
+ constructor(input: ListGraphsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: DetectiveClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListGraphsCommandInput, ListGraphsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_0";
5
- export interface ListInvitationsCommandInput extends ListInvitationsRequest {
6
- }
7
- export interface ListInvitationsCommandOutput extends ListInvitationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: ListInvitationsCommandInput;
12
- constructor(input: ListInvitationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInvitationsCommandInput, ListInvitationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import {
14
+ ListInvitationsRequest,
15
+ ListInvitationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListInvitationsCommandInput extends ListInvitationsRequest {}
18
+ export interface ListInvitationsCommandOutput
19
+ extends ListInvitationsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListInvitationsCommand extends $Command<
23
+ ListInvitationsCommandInput,
24
+ ListInvitationsCommandOutput,
25
+ DetectiveClientResolvedConfig
26
+ > {
27
+ readonly input: ListInvitationsCommandInput;
28
+ constructor(input: ListInvitationsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: DetectiveClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListInvitationsCommandInput, ListInvitationsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
4
- import { ListMembersRequest, ListMembersResponse } from "../models/models_0";
5
- export interface ListMembersCommandInput extends ListMembersRequest {
6
- }
7
- export interface ListMembersCommandOutput extends ListMembersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: ListMembersCommandInput;
12
- constructor(input: ListMembersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMembersCommandInput, ListMembersCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DetectiveClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../DetectiveClient";
13
+ import { ListMembersRequest, ListMembersResponse } from "../models/models_0";
14
+ export interface ListMembersCommandInput extends ListMembersRequest {}
15
+ export interface ListMembersCommandOutput
16
+ extends ListMembersResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListMembersCommand extends $Command<
20
+ ListMembersCommandInput,
21
+ ListMembersCommandOutput,
22
+ DetectiveClientResolvedConfig
23
+ > {
24
+ readonly input: ListMembersCommandInput;
25
+ constructor(input: ListMembersCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: DetectiveClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListMembersCommandInput, ListMembersCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }