@aws-sdk/client-detective 3.296.0 → 3.297.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/dist-types/Detective.d.ts +25 -0
- package/dist-types/DetectiveClient.d.ts +24 -4
- package/dist-types/commands/AcceptInvitationCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetMembershipDatasourcesCommand.d.ts +16 -0
- package/dist-types/commands/CreateGraphCommand.d.ts +16 -0
- package/dist-types/commands/CreateMembersCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGraphCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMembersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateMembershipCommand.d.ts +16 -0
- package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/GetMembersCommand.d.ts +16 -0
- package/dist-types/commands/ListDatasourcePackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListGraphsCommand.d.ts +16 -0
- package/dist-types/commands/ListInvitationsCommand.d.ts +16 -0
- package/dist-types/commands/ListMembersCommand.d.ts +16 -0
- package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RejectInvitationCommand.d.ts +16 -0
- package/dist-types/commands/StartMonitoringMemberCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDatasourcePackagesCommand.d.ts +16 -0
- package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +16 -0
- package/dist-types/models/DetectiveServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +149 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDatasourcePackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGraphsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInvitationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOrganizationAdminAccountsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { DescribeOrganizationConfigurationRequest, DescribeOrganizationConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeOrganizationConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeOrganizationConfigurationCommandInput extends DescribeOrganizationConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeOrganizationConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeOrganizationConfigurationCommandOutput extends DescribeOrganizationConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the configuration for the organization behavior graph.
|
|
18
23
|
* Currently indicates whether to automatically enable new organization accounts as member
|
|
19
24
|
* accounts.</p>
|
|
@@ -28,6 +33,8 @@ export interface DescribeOrganizationConfigurationCommandOutput extends Describe
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DescribeOrganizationConfigurationCommandInput - {@link DescribeOrganizationConfigurationCommandInput}
|
|
37
|
+
* @returns {@link DescribeOrganizationConfigurationCommandOutput}
|
|
31
38
|
* @see {@link DescribeOrganizationConfigurationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DescribeOrganizationConfigurationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeOrganizationConfigurationCommandOutput extends Describe
|
|
|
51
58
|
export declare class DescribeOrganizationConfigurationCommand extends $Command<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput, DetectiveClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeOrganizationConfigurationCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeOrganizationConfigurationCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -3,16 +3,21 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
/**
|
|
6
|
+
* @public
|
|
7
|
+
*
|
|
6
8
|
* The input for {@link DisableOrganizationAdminAccountCommand}.
|
|
7
9
|
*/
|
|
8
10
|
export interface DisableOrganizationAdminAccountCommandInput {
|
|
9
11
|
}
|
|
10
12
|
/**
|
|
13
|
+
* @public
|
|
14
|
+
*
|
|
11
15
|
* The output of {@link DisableOrganizationAdminAccountCommand}.
|
|
12
16
|
*/
|
|
13
17
|
export interface DisableOrganizationAdminAccountCommandOutput extends __MetadataBearer {
|
|
14
18
|
}
|
|
15
19
|
/**
|
|
20
|
+
* @public
|
|
16
21
|
* <p>Removes the Detective administrator account in the current Region. Deletes the
|
|
17
22
|
* organization behavior graph.</p>
|
|
18
23
|
* <p>Can only be called by the organization management account.</p>
|
|
@@ -29,6 +34,8 @@ export interface DisableOrganizationAdminAccountCommandOutput extends __Metadata
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DisableOrganizationAdminAccountCommandInput - {@link DisableOrganizationAdminAccountCommandInput}
|
|
38
|
+
* @returns {@link DisableOrganizationAdminAccountCommandOutput}
|
|
32
39
|
* @see {@link DisableOrganizationAdminAccountCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DisableOrganizationAdminAccountCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DisableOrganizationAdminAccountCommandOutput extends __Metadata
|
|
|
52
59
|
export declare class DisableOrganizationAdminAccountCommand extends $Command<DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput, DetectiveClientResolvedConfig> {
|
|
53
60
|
readonly input: DisableOrganizationAdminAccountCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DisableOrganizationAdminAccountCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { DisassociateMembershipRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateMembershipCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateMembershipCommandInput extends DisassociateMembershipRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateMembershipCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateMembershipCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the member account from the specified behavior graph. This operation can only be
|
|
18
23
|
* called by an invited member account that has the <code>ENABLED</code> status.</p>
|
|
19
24
|
* <p>
|
|
@@ -31,6 +36,8 @@ export interface DisassociateMembershipCommandOutput extends __MetadataBearer {
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param DisassociateMembershipCommandInput - {@link DisassociateMembershipCommandInput}
|
|
40
|
+
* @returns {@link DisassociateMembershipCommandOutput}
|
|
34
41
|
* @see {@link DisassociateMembershipCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link DisassociateMembershipCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface DisassociateMembershipCommandOutput extends __MetadataBearer {
|
|
|
56
63
|
export declare class DisassociateMembershipCommand extends $Command<DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput, DetectiveClientResolvedConfig> {
|
|
57
64
|
readonly input: DisassociateMembershipCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: DisassociateMembershipCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { EnableOrganizationAdminAccountRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link EnableOrganizationAdminAccountCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface EnableOrganizationAdminAccountCommandInput extends EnableOrganizationAdminAccountRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link EnableOrganizationAdminAccountCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Designates the Detective administrator account for the organization in the
|
|
18
23
|
* current Region.</p>
|
|
19
24
|
* <p>If the account does not have Detective enabled, then enables Detective
|
|
@@ -36,6 +41,8 @@ export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataB
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param EnableOrganizationAdminAccountCommandInput - {@link EnableOrganizationAdminAccountCommandInput}
|
|
45
|
+
* @returns {@link EnableOrganizationAdminAccountCommandOutput}
|
|
39
46
|
* @see {@link EnableOrganizationAdminAccountCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link EnableOrganizationAdminAccountCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface EnableOrganizationAdminAccountCommandOutput extends __MetadataB
|
|
|
59
66
|
export declare class EnableOrganizationAdminAccountCommand extends $Command<EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput, DetectiveClientResolvedConfig> {
|
|
60
67
|
readonly input: EnableOrganizationAdminAccountCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: EnableOrganizationAdminAccountCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { GetMembersRequest, GetMembersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMembersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMembersCommandInput extends GetMembersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMembersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the membership details for specified member accounts for a behavior
|
|
18
23
|
* graph.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetMembersCommandInput - {@link GetMembersCommandInput}
|
|
35
|
+
* @returns {@link GetMembersCommandOutput}
|
|
29
36
|
* @see {@link GetMembersCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetMembersCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface GetMembersCommandOutput extends GetMembersResponse, __MetadataB
|
|
|
48
55
|
export declare class GetMembersCommand extends $Command<GetMembersCommandInput, GetMembersCommandOutput, DetectiveClientResolvedConfig> {
|
|
49
56
|
readonly input: GetMembersCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: GetMembersCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMembersCommandInput, GetMembersCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { ListDatasourcePackagesRequest, ListDatasourcePackagesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDatasourcePackagesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDatasourcePackagesCommandInput extends ListDatasourcePackagesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDatasourcePackagesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDatasourcePackagesCommandOutput extends ListDatasourcePackagesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists data source packages in the behavior graph.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListDatasourcePackagesCommandOutput extends ListDatasourcePacka
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListDatasourcePackagesCommandInput - {@link ListDatasourcePackagesCommandInput}
|
|
34
|
+
* @returns {@link ListDatasourcePackagesCommandOutput}
|
|
28
35
|
* @see {@link ListDatasourcePackagesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListDatasourcePackagesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListDatasourcePackagesCommandOutput extends ListDatasourcePacka
|
|
|
47
54
|
export declare class ListDatasourcePackagesCommand extends $Command<ListDatasourcePackagesCommandInput, ListDatasourcePackagesCommandOutput, DetectiveClientResolvedConfig> {
|
|
48
55
|
readonly input: ListDatasourcePackagesCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListDatasourcePackagesCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatasourcePackagesCommandInput, ListDatasourcePackagesCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { ListGraphsRequest, ListGraphsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListGraphsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListGraphsCommandInput extends ListGraphsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListGraphsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListGraphsCommandOutput extends ListGraphsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the list of behavior graphs that the calling account is an administrator account
|
|
18
23
|
* of. This operation can only be called by an administrator account.</p>
|
|
19
24
|
* <p>Because an account can currently only be the administrator of one behavior graph within
|
|
@@ -28,6 +33,8 @@ export interface ListGraphsCommandOutput extends ListGraphsResponse, __MetadataB
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListGraphsCommandInput - {@link ListGraphsCommandInput}
|
|
37
|
+
* @returns {@link ListGraphsCommandOutput}
|
|
31
38
|
* @see {@link ListGraphsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListGraphsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListGraphsCommandOutput extends ListGraphsResponse, __MetadataB
|
|
|
47
54
|
export declare class ListGraphsCommand extends $Command<ListGraphsCommandInput, ListGraphsCommandOutput, DetectiveClientResolvedConfig> {
|
|
48
55
|
readonly input: ListGraphsCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListGraphsCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGraphsCommandInput, ListGraphsCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListInvitationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListInvitationsCommandInput extends ListInvitationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListInvitationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListInvitationsCommandOutput extends ListInvitationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the list of open and accepted behavior graph invitations for the member
|
|
18
23
|
* account. This operation can only be called by an invited member account.</p>
|
|
19
24
|
* <p>Open invitations are invitations that the member account has not responded to.</p>
|
|
@@ -30,6 +35,8 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ListInvitationsCommandInput - {@link ListInvitationsCommandInput}
|
|
39
|
+
* @returns {@link ListInvitationsCommandOutput}
|
|
33
40
|
* @see {@link ListInvitationsCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ListInvitationsCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListInvitationsCommandOutput extends ListInvitationsResponse, _
|
|
|
49
56
|
export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, DetectiveClientResolvedConfig> {
|
|
50
57
|
readonly input: ListInvitationsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListInvitationsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInvitationsCommandInput, ListInvitationsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { ListMembersRequest, ListMembersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListMembersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListMembersCommandInput extends ListMembersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListMembersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListMembersCommandOutput extends ListMembersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the list of member accounts for a behavior graph.</p>
|
|
18
23
|
* <p>For invited accounts, the results do not include member accounts that were removed from
|
|
19
24
|
* the behavior graph.</p>
|
|
@@ -30,6 +35,8 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ListMembersCommandInput - {@link ListMembersCommandInput}
|
|
39
|
+
* @returns {@link ListMembersCommandOutput}
|
|
33
40
|
* @see {@link ListMembersCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ListMembersCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListMembersCommandOutput extends ListMembersResponse, __Metadat
|
|
|
52
59
|
export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, DetectiveClientResolvedConfig> {
|
|
53
60
|
readonly input: ListMembersCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListMembersCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMembersCommandInput, ListMembersCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListOrganizationAdminAccountsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListOrganizationAdminAccountsCommandInput extends ListOrganizationAdminAccountsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListOrganizationAdminAccountsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganizationAdminAccountsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the Detective administrator account for an
|
|
18
23
|
* organization. Can only be called by the organization management account.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganiza
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListOrganizationAdminAccountsCommandInput - {@link ListOrganizationAdminAccountsCommandInput}
|
|
35
|
+
* @returns {@link ListOrganizationAdminAccountsCommandOutput}
|
|
29
36
|
* @see {@link ListOrganizationAdminAccountsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListOrganizationAdminAccountsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListOrganizationAdminAccountsCommandOutput extends ListOrganiza
|
|
|
49
56
|
export declare class ListOrganizationAdminAccountsCommand extends $Command<ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput, DetectiveClientResolvedConfig> {
|
|
50
57
|
readonly input: ListOrganizationAdminAccountsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListOrganizationAdminAccountsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the tag values that are assigned to a behavior graph.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
47
54
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DetectiveClientResolvedConfig> {
|
|
48
55
|
readonly input: ListTagsForResourceCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListTagsForResourceCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { RejectInvitationRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RejectInvitationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RejectInvitationCommandInput extends RejectInvitationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RejectInvitationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RejectInvitationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Rejects an invitation to contribute the account data to a behavior graph. This operation
|
|
18
23
|
* must be called by an invited member account that has the <code>INVITED</code>
|
|
19
24
|
* status.</p>
|
|
@@ -31,6 +36,8 @@ export interface RejectInvitationCommandOutput extends __MetadataBearer {
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param RejectInvitationCommandInput - {@link RejectInvitationCommandInput}
|
|
40
|
+
* @returns {@link RejectInvitationCommandOutput}
|
|
34
41
|
* @see {@link RejectInvitationCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link RejectInvitationCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface RejectInvitationCommandOutput extends __MetadataBearer {
|
|
|
56
63
|
export declare class RejectInvitationCommand extends $Command<RejectInvitationCommandInput, RejectInvitationCommandOutput, DetectiveClientResolvedConfig> {
|
|
57
64
|
readonly input: RejectInvitationCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: RejectInvitationCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RejectInvitationCommandInput, RejectInvitationCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { StartMonitoringMemberRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartMonitoringMemberCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartMonitoringMemberCommandInput extends StartMonitoringMemberRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartMonitoringMemberCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sends a request to enable data ingest for a member account that has a status of
|
|
18
23
|
* <code>ACCEPTED_BUT_DISABLED</code>.</p>
|
|
19
24
|
* <p>For valid member accounts, the status is updated as follows.</p>
|
|
@@ -37,6 +42,8 @@ export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param StartMonitoringMemberCommandInput - {@link StartMonitoringMemberCommandInput}
|
|
46
|
+
* @returns {@link StartMonitoringMemberCommandOutput}
|
|
40
47
|
* @see {@link StartMonitoringMemberCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link StartMonitoringMemberCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -80,11 +87,20 @@ export interface StartMonitoringMemberCommandOutput extends __MetadataBearer {
|
|
|
80
87
|
export declare class StartMonitoringMemberCommand extends $Command<StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput, DetectiveClientResolvedConfig> {
|
|
81
88
|
readonly input: StartMonitoringMemberCommandInput;
|
|
82
89
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
83
93
|
constructor(input: StartMonitoringMemberCommandInput);
|
|
84
94
|
/**
|
|
85
95
|
* @internal
|
|
86
96
|
*/
|
|
87
97
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
88
101
|
private serialize;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
89
105
|
private deserialize;
|
|
90
106
|
}
|