@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,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 { 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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
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 { 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
|
+
}
|