@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,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 { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_0";
5
- export interface ListOrganizationAdminAccountsCommandInput extends ListOrganizationAdminAccountsRequest {
6
- }
7
- export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganizationAdminAccountsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListOrganizationAdminAccountsCommand extends $Command<ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: ListOrganizationAdminAccountsCommandInput;
12
- constructor(input: ListOrganizationAdminAccountsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput>;
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
+ ListOrganizationAdminAccountsRequest,
15
+ ListOrganizationAdminAccountsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListOrganizationAdminAccountsCommandInput
18
+ extends ListOrganizationAdminAccountsRequest {}
19
+ export interface ListOrganizationAdminAccountsCommandOutput
20
+ extends ListOrganizationAdminAccountsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListOrganizationAdminAccountsCommand extends $Command<
24
+ ListOrganizationAdminAccountsCommandInput,
25
+ ListOrganizationAdminAccountsCommandOutput,
26
+ DetectiveClientResolvedConfig
27
+ > {
28
+ readonly input: ListOrganizationAdminAccountsCommandInput;
29
+ constructor(input: ListOrganizationAdminAccountsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DetectiveClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListOrganizationAdminAccountsCommandInput,
37
+ ListOrganizationAdminAccountsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ DetectiveClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DetectiveClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { RejectInvitationRequest } from "../models/models_0";
5
- export interface RejectInvitationCommandInput extends RejectInvitationRequest {
6
- }
7
- export interface RejectInvitationCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class RejectInvitationCommand extends $Command<RejectInvitationCommandInput, RejectInvitationCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: RejectInvitationCommandInput;
12
- constructor(input: RejectInvitationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RejectInvitationCommandInput, RejectInvitationCommandOutput>;
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 { RejectInvitationRequest } from "../models/models_0";
14
+ export interface RejectInvitationCommandInput extends RejectInvitationRequest {}
15
+ export interface RejectInvitationCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class RejectInvitationCommand extends $Command<
18
+ RejectInvitationCommandInput,
19
+ RejectInvitationCommandOutput,
20
+ DetectiveClientResolvedConfig
21
+ > {
22
+ readonly input: RejectInvitationCommandInput;
23
+ constructor(input: RejectInvitationCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: DetectiveClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<RejectInvitationCommandInput, RejectInvitationCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { StartMonitoringMemberRequest } from "../models/models_0";
5
- export interface StartMonitoringMemberCommandInput extends StartMonitoringMemberRequest {
6
- }
7
- export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class StartMonitoringMemberCommand extends $Command<StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: StartMonitoringMemberCommandInput;
12
- constructor(input: StartMonitoringMemberCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput>;
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 { StartMonitoringMemberRequest } from "../models/models_0";
14
+ export interface StartMonitoringMemberCommandInput
15
+ extends StartMonitoringMemberRequest {}
16
+ export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class StartMonitoringMemberCommand extends $Command<
19
+ StartMonitoringMemberCommandInput,
20
+ StartMonitoringMemberCommandOutput,
21
+ DetectiveClientResolvedConfig
22
+ > {
23
+ readonly input: StartMonitoringMemberCommandInput;
24
+ constructor(input: StartMonitoringMemberCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: DetectiveClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ StartMonitoringMemberCommandInput,
32
+ StartMonitoringMemberCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ DetectiveClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: DetectiveClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ DetectiveClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: DetectiveClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { UpdateDatasourcePackagesRequest } from "../models/models_0";
5
- export interface UpdateDatasourcePackagesCommandInput extends UpdateDatasourcePackagesRequest {
6
- }
7
- export interface UpdateDatasourcePackagesCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateDatasourcePackagesCommand extends $Command<UpdateDatasourcePackagesCommandInput, UpdateDatasourcePackagesCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: UpdateDatasourcePackagesCommandInput;
12
- constructor(input: UpdateDatasourcePackagesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDatasourcePackagesCommandInput, UpdateDatasourcePackagesCommandOutput>;
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 { UpdateDatasourcePackagesRequest } from "../models/models_0";
14
+ export interface UpdateDatasourcePackagesCommandInput
15
+ extends UpdateDatasourcePackagesRequest {}
16
+ export interface UpdateDatasourcePackagesCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class UpdateDatasourcePackagesCommand extends $Command<
20
+ UpdateDatasourcePackagesCommandInput,
21
+ UpdateDatasourcePackagesCommandOutput,
22
+ DetectiveClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateDatasourcePackagesCommandInput;
25
+ constructor(input: UpdateDatasourcePackagesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: DetectiveClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ UpdateDatasourcePackagesCommandInput,
33
+ UpdateDatasourcePackagesCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { UpdateOrganizationConfigurationRequest } from "../models/models_0";
5
- export interface UpdateOrganizationConfigurationCommandInput extends UpdateOrganizationConfigurationRequest {
6
- }
7
- export interface UpdateOrganizationConfigurationCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateOrganizationConfigurationCommand extends $Command<UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput, DetectiveClientResolvedConfig> {
11
- readonly input: UpdateOrganizationConfigurationCommandInput;
12
- constructor(input: UpdateOrganizationConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput>;
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 { UpdateOrganizationConfigurationRequest } from "../models/models_0";
14
+ export interface UpdateOrganizationConfigurationCommandInput
15
+ extends UpdateOrganizationConfigurationRequest {}
16
+ export interface UpdateOrganizationConfigurationCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class UpdateOrganizationConfigurationCommand extends $Command<
20
+ UpdateOrganizationConfigurationCommandInput,
21
+ UpdateOrganizationConfigurationCommandOutput,
22
+ DetectiveClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateOrganizationConfigurationCommandInput;
25
+ constructor(input: UpdateOrganizationConfigurationCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: DetectiveClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ UpdateOrganizationConfigurationCommandInput,
33
+ UpdateOrganizationConfigurationCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,24 +1,24 @@
1
- export * from "./AcceptInvitationCommand";
2
- export * from "./BatchGetGraphMemberDatasourcesCommand";
3
- export * from "./BatchGetMembershipDatasourcesCommand";
4
- export * from "./CreateGraphCommand";
5
- export * from "./CreateMembersCommand";
6
- export * from "./DeleteGraphCommand";
7
- export * from "./DeleteMembersCommand";
8
- export * from "./DescribeOrganizationConfigurationCommand";
9
- export * from "./DisableOrganizationAdminAccountCommand";
10
- export * from "./DisassociateMembershipCommand";
11
- export * from "./EnableOrganizationAdminAccountCommand";
12
- export * from "./GetMembersCommand";
13
- export * from "./ListDatasourcePackagesCommand";
14
- export * from "./ListGraphsCommand";
15
- export * from "./ListInvitationsCommand";
16
- export * from "./ListMembersCommand";
17
- export * from "./ListOrganizationAdminAccountsCommand";
18
- export * from "./ListTagsForResourceCommand";
19
- export * from "./RejectInvitationCommand";
20
- export * from "./StartMonitoringMemberCommand";
21
- export * from "./TagResourceCommand";
22
- export * from "./UntagResourceCommand";
23
- export * from "./UpdateDatasourcePackagesCommand";
24
- export * from "./UpdateOrganizationConfigurationCommand";
1
+ export * from "./AcceptInvitationCommand";
2
+ export * from "./BatchGetGraphMemberDatasourcesCommand";
3
+ export * from "./BatchGetMembershipDatasourcesCommand";
4
+ export * from "./CreateGraphCommand";
5
+ export * from "./CreateMembersCommand";
6
+ export * from "./DeleteGraphCommand";
7
+ export * from "./DeleteMembersCommand";
8
+ export * from "./DescribeOrganizationConfigurationCommand";
9
+ export * from "./DisableOrganizationAdminAccountCommand";
10
+ export * from "./DisassociateMembershipCommand";
11
+ export * from "./EnableOrganizationAdminAccountCommand";
12
+ export * from "./GetMembersCommand";
13
+ export * from "./ListDatasourcePackagesCommand";
14
+ export * from "./ListGraphsCommand";
15
+ export * from "./ListInvitationsCommand";
16
+ export * from "./ListMembersCommand";
17
+ export * from "./ListOrganizationAdminAccountsCommand";
18
+ export * from "./ListTagsForResourceCommand";
19
+ export * from "./RejectInvitationCommand";
20
+ export * from "./StartMonitoringMemberCommand";
21
+ export * from "./TagResourceCommand";
22
+ export * from "./UntagResourceCommand";
23
+ export * from "./UpdateDatasourcePackagesCommand";
24
+ export * from "./UpdateOrganizationConfigurationCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Detective";
2
- export * from "./DetectiveClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { DetectiveServiceException } from "./models/DetectiveServiceException";
1
+ export * from "./Detective";
2
+ export * from "./DetectiveClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { DetectiveServiceException } from "./models/DetectiveServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class DetectiveServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class DetectiveServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";