@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Detective.d.ts +442 -125
- package/dist-types/ts3.4/DetectiveClient.d.ts +273 -97
- package/dist-types/ts3.4/commands/AcceptInvitationCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/BatchGetMembershipDatasourcesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateGraphCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateMembersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteGraphCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteMembersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisableOrganizationAdminAccountCommand.d.ts +35 -16
- package/dist-types/ts3.4/commands/DisassociateMembershipCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/EnableOrganizationAdminAccountCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetMembersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDatasourcePackagesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGraphsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListOrganizationAdminAccountsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartMonitoringMemberCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDatasourcePackagesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +24 -24
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/DetectiveServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +543 -485
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDatasourcePackagesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGraphsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListInvitationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOrganizationAdminAccountsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|