@aws-sdk/client-inspector2 3.295.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.
Files changed (47) hide show
  1. package/dist-types/Inspector2.d.ts +33 -0
  2. package/dist-types/Inspector2Client.d.ts +24 -4
  3. package/dist-types/commands/AssociateMemberCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchGetAccountStatusCommand.d.ts +16 -0
  5. package/dist-types/commands/BatchGetFreeTrialInfoCommand.d.ts +16 -0
  6. package/dist-types/commands/CancelFindingsReportCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateFilterCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateFindingsReportCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteFilterCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +16 -0
  11. package/dist-types/commands/DisableCommand.d.ts +16 -0
  12. package/dist-types/commands/DisableDelegatedAdminAccountCommand.d.ts +16 -0
  13. package/dist-types/commands/DisassociateMemberCommand.d.ts +16 -0
  14. package/dist-types/commands/EnableCommand.d.ts +16 -0
  15. package/dist-types/commands/EnableDelegatedAdminAccountCommand.d.ts +16 -0
  16. package/dist-types/commands/GetConfigurationCommand.d.ts +16 -0
  17. package/dist-types/commands/GetDelegatedAdminAccountCommand.d.ts +16 -0
  18. package/dist-types/commands/GetFindingsReportStatusCommand.d.ts +16 -0
  19. package/dist-types/commands/GetMemberCommand.d.ts +16 -0
  20. package/dist-types/commands/ListAccountPermissionsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListCoverageCommand.d.ts +16 -0
  22. package/dist-types/commands/ListCoverageStatisticsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListDelegatedAdminAccountsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListFiltersCommand.d.ts +16 -0
  25. package/dist-types/commands/ListFindingAggregationsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListFindingsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListMembersCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/ListUsageTotalsCommand.d.ts +16 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateConfigurationCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateFilterCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +16 -0
  35. package/dist-types/models/Inspector2ServiceException.d.ts +2 -0
  36. package/dist-types/models/models_0.d.ts +463 -0
  37. package/dist-types/pagination/Interfaces.d.ts +3 -0
  38. package/dist-types/pagination/ListAccountPermissionsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListCoveragePaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListCoverageStatisticsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListDelegatedAdminAccountsPaginator.d.ts +3 -0
  42. package/dist-types/pagination/ListFiltersPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListFindingAggregationsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListFindingsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListUsageTotalsPaginator.d.ts +3 -0
  47. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { DeleteFilterRequest, DeleteFilterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteFilterCommand}.
8
10
  */
9
11
  export interface DeleteFilterCommandInput extends DeleteFilterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteFilterCommand}.
13
17
  */
14
18
  export interface DeleteFilterCommandOutput extends DeleteFilterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a filter resource.</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 DeleteFilterCommandOutput extends DeleteFilterResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteFilterCommandInput - {@link DeleteFilterCommandInput}
34
+ * @returns {@link DeleteFilterCommandOutput}
28
35
  * @see {@link DeleteFilterCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteFilterCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -50,11 +57,20 @@ export interface DeleteFilterCommandOutput extends DeleteFilterResponse, __Metad
50
57
  export declare class DeleteFilterCommand extends $Command<DeleteFilterCommandInput, DeleteFilterCommandOutput, Inspector2ClientResolvedConfig> {
51
58
  readonly input: DeleteFilterCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: DeleteFilterCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFilterCommandInput, DeleteFilterCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
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>Describe Amazon Inspector configuration settings for an Amazon Web Services organization.</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 DescribeOrganizationConfigurationCommandOutput extends Describe
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeOrganizationConfigurationCommandInput - {@link DescribeOrganizationConfigurationCommandInput}
34
+ * @returns {@link DescribeOrganizationConfigurationCommandOutput}
28
35
  * @see {@link DescribeOrganizationConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeOrganizationConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -47,11 +54,20 @@ export interface DescribeOrganizationConfigurationCommandOutput extends Describe
47
54
  export declare class DescribeOrganizationConfigurationCommand extends $Command<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput, Inspector2ClientResolvedConfig> {
48
55
  readonly input: DescribeOrganizationConfigurationCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: DescribeOrganizationConfigurationCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput>;
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 { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { DisableRequest, DisableResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisableCommand}.
8
10
  */
9
11
  export interface DisableCommandInput extends DisableRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisableCommand}.
13
17
  */
14
18
  export interface DisableCommandOutput extends DisableResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Disables Amazon Inspector scans for one or more Amazon Web Services accounts. Disabling all scan types in an account
18
23
  * disables the Amazon Inspector service.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DisableCommandOutput extends DisableResponse, __MetadataBearer
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DisableCommandInput - {@link DisableCommandInput}
35
+ * @returns {@link DisableCommandOutput}
29
36
  * @see {@link DisableCommandInput} for command's `input` shape.
30
37
  * @see {@link DisableCommandOutput} for command's `response` shape.
31
38
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -51,11 +58,20 @@ export interface DisableCommandOutput extends DisableResponse, __MetadataBearer
51
58
  export declare class DisableCommand extends $Command<DisableCommandInput, DisableCommandOutput, Inspector2ClientResolvedConfig> {
52
59
  readonly input: DisableCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: DisableCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableCommandInput, DisableCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { DisableDelegatedAdminAccountRequest, DisableDelegatedAdminAccountResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisableDelegatedAdminAccountCommand}.
8
10
  */
9
11
  export interface DisableDelegatedAdminAccountCommandInput extends DisableDelegatedAdminAccountRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisableDelegatedAdminAccountCommand}.
13
17
  */
14
18
  export interface DisableDelegatedAdminAccountCommandOutput extends DisableDelegatedAdminAccountResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Disables the Amazon Inspector delegated administrator for your organization.</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 DisableDelegatedAdminAccountCommandOutput extends DisableDelega
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DisableDelegatedAdminAccountCommandInput - {@link DisableDelegatedAdminAccountCommandInput}
34
+ * @returns {@link DisableDelegatedAdminAccountCommandOutput}
28
35
  * @see {@link DisableDelegatedAdminAccountCommandInput} for command's `input` shape.
29
36
  * @see {@link DisableDelegatedAdminAccountCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -53,11 +60,20 @@ export interface DisableDelegatedAdminAccountCommandOutput extends DisableDelega
53
60
  export declare class DisableDelegatedAdminAccountCommand extends $Command<DisableDelegatedAdminAccountCommandInput, DisableDelegatedAdminAccountCommandOutput, Inspector2ClientResolvedConfig> {
54
61
  readonly input: DisableDelegatedAdminAccountCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: DisableDelegatedAdminAccountCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableDelegatedAdminAccountCommandInput, DisableDelegatedAdminAccountCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { DisassociateMemberRequest, DisassociateMemberResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisassociateMemberCommand}.
8
10
  */
9
11
  export interface DisassociateMemberCommandInput extends DisassociateMemberRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisassociateMemberCommand}.
13
17
  */
14
18
  export interface DisassociateMemberCommandOutput extends DisassociateMemberResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Disassociates a member account from an Amazon Inspector delegated administrator.</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 DisassociateMemberCommandOutput extends DisassociateMemberRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DisassociateMemberCommandInput - {@link DisassociateMemberCommandInput}
34
+ * @returns {@link DisassociateMemberCommandOutput}
28
35
  * @see {@link DisassociateMemberCommandInput} for command's `input` shape.
29
36
  * @see {@link DisassociateMemberCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -47,11 +54,20 @@ export interface DisassociateMemberCommandOutput extends DisassociateMemberRespo
47
54
  export declare class DisassociateMemberCommand extends $Command<DisassociateMemberCommandInput, DisassociateMemberCommandOutput, Inspector2ClientResolvedConfig> {
48
55
  readonly input: DisassociateMemberCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: DisassociateMemberCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateMemberCommandInput, DisassociateMemberCommandOutput>;
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 { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { EnableRequest, EnableResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link EnableCommand}.
8
10
  */
9
11
  export interface EnableCommandInput extends EnableRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link EnableCommand}.
13
17
  */
14
18
  export interface EnableCommandOutput extends EnableResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Enables Amazon Inspector scans for one or more Amazon Web Services accounts.</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 EnableCommandOutput extends EnableResponse, __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param EnableCommandInput - {@link EnableCommandInput}
34
+ * @returns {@link EnableCommandOutput}
28
35
  * @see {@link EnableCommandInput} for command's `input` shape.
29
36
  * @see {@link EnableCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -50,11 +57,20 @@ export interface EnableCommandOutput extends EnableResponse, __MetadataBearer {
50
57
  export declare class EnableCommand extends $Command<EnableCommandInput, EnableCommandOutput, Inspector2ClientResolvedConfig> {
51
58
  readonly input: EnableCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: EnableCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableCommandInput, EnableCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { EnableDelegatedAdminAccountRequest, EnableDelegatedAdminAccountResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link EnableDelegatedAdminAccountCommand}.
8
10
  */
9
11
  export interface EnableDelegatedAdminAccountCommandInput extends EnableDelegatedAdminAccountRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link EnableDelegatedAdminAccountCommand}.
13
17
  */
14
18
  export interface EnableDelegatedAdminAccountCommandOutput extends EnableDelegatedAdminAccountResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Enables the Amazon Inspector delegated administrator for your Organizations organization.</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 EnableDelegatedAdminAccountCommandOutput extends EnableDelegate
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param EnableDelegatedAdminAccountCommandInput - {@link EnableDelegatedAdminAccountCommandInput}
34
+ * @returns {@link EnableDelegatedAdminAccountCommandOutput}
28
35
  * @see {@link EnableDelegatedAdminAccountCommandInput} for command's `input` shape.
29
36
  * @see {@link EnableDelegatedAdminAccountCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -53,11 +60,20 @@ export interface EnableDelegatedAdminAccountCommandOutput extends EnableDelegate
53
60
  export declare class EnableDelegatedAdminAccountCommand extends $Command<EnableDelegatedAdminAccountCommandInput, EnableDelegatedAdminAccountCommandOutput, Inspector2ClientResolvedConfig> {
54
61
  readonly input: EnableDelegatedAdminAccountCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: EnableDelegatedAdminAccountCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableDelegatedAdminAccountCommandInput, EnableDelegatedAdminAccountCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { GetConfigurationRequest, GetConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetConfigurationCommand}.
8
10
  */
9
11
  export interface GetConfigurationCommandInput extends GetConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetConfigurationCommand}.
13
17
  */
14
18
  export interface GetConfigurationCommandOutput extends GetConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves setting configurations for Inspector scans.</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 GetConfigurationCommandOutput extends GetConfigurationResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetConfigurationCommandInput - {@link GetConfigurationCommandInput}
34
+ * @returns {@link GetConfigurationCommandOutput}
28
35
  * @see {@link GetConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link GetConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -43,11 +50,20 @@ export interface GetConfigurationCommandOutput extends GetConfigurationResponse,
43
50
  export declare class GetConfigurationCommand extends $Command<GetConfigurationCommandInput, GetConfigurationCommandOutput, Inspector2ClientResolvedConfig> {
44
51
  readonly input: GetConfigurationCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: GetConfigurationCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConfigurationCommandInput, GetConfigurationCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { GetDelegatedAdminAccountRequest, GetDelegatedAdminAccountResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetDelegatedAdminAccountCommand}.
8
10
  */
9
11
  export interface GetDelegatedAdminAccountCommandInput extends GetDelegatedAdminAccountRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetDelegatedAdminAccountCommand}.
13
17
  */
14
18
  export interface GetDelegatedAdminAccountCommandOutput extends GetDelegatedAdminAccountResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about the Amazon Inspector delegated administrator for your
18
23
  * organization.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetDelegatedAdminAccountCommandOutput extends GetDelegatedAdmin
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetDelegatedAdminAccountCommandInput - {@link GetDelegatedAdminAccountCommandInput}
35
+ * @returns {@link GetDelegatedAdminAccountCommandOutput}
29
36
  * @see {@link GetDelegatedAdminAccountCommandInput} for command's `input` shape.
30
37
  * @see {@link GetDelegatedAdminAccountCommandOutput} for command's `response` shape.
31
38
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -51,11 +58,20 @@ export interface GetDelegatedAdminAccountCommandOutput extends GetDelegatedAdmin
51
58
  export declare class GetDelegatedAdminAccountCommand extends $Command<GetDelegatedAdminAccountCommandInput, GetDelegatedAdminAccountCommandOutput, Inspector2ClientResolvedConfig> {
52
59
  readonly input: GetDelegatedAdminAccountCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: GetDelegatedAdminAccountCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDelegatedAdminAccountCommandInput, GetDelegatedAdminAccountCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { GetFindingsReportStatusRequest, GetFindingsReportStatusResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetFindingsReportStatusCommand}.
8
10
  */
9
11
  export interface GetFindingsReportStatusCommandInput extends GetFindingsReportStatusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetFindingsReportStatusCommand}.
13
17
  */
14
18
  export interface GetFindingsReportStatusCommandOutput extends GetFindingsReportStatusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets the status of a findings report.</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 GetFindingsReportStatusCommandOutput extends GetFindingsReportS
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetFindingsReportStatusCommandInput - {@link GetFindingsReportStatusCommandInput}
34
+ * @returns {@link GetFindingsReportStatusCommandOutput}
28
35
  * @see {@link GetFindingsReportStatusCommandInput} for command's `input` shape.
29
36
  * @see {@link GetFindingsReportStatusCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -50,11 +57,20 @@ export interface GetFindingsReportStatusCommandOutput extends GetFindingsReportS
50
57
  export declare class GetFindingsReportStatusCommand extends $Command<GetFindingsReportStatusCommandInput, GetFindingsReportStatusCommandOutput, Inspector2ClientResolvedConfig> {
51
58
  readonly input: GetFindingsReportStatusCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: GetFindingsReportStatusCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFindingsReportStatusCommandInput, GetFindingsReportStatusCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { GetMemberRequest, GetMemberResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetMemberCommand}.
8
10
  */
9
11
  export interface GetMemberCommandInput extends GetMemberRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetMemberCommand}.
13
17
  */
14
18
  export interface GetMemberCommandOutput extends GetMemberResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets member information for your organization.</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 GetMemberCommandOutput extends GetMemberResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetMemberCommandInput - {@link GetMemberCommandInput}
34
+ * @returns {@link GetMemberCommandOutput}
28
35
  * @see {@link GetMemberCommandInput} for command's `input` shape.
29
36
  * @see {@link GetMemberCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -50,11 +57,20 @@ export interface GetMemberCommandOutput extends GetMemberResponse, __MetadataBea
50
57
  export declare class GetMemberCommand extends $Command<GetMemberCommandInput, GetMemberCommandOutput, Inspector2ClientResolvedConfig> {
51
58
  readonly input: GetMemberCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: GetMemberCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMemberCommandInput, GetMemberCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { ListAccountPermissionsRequest, ListAccountPermissionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAccountPermissionsCommand}.
8
10
  */
9
11
  export interface ListAccountPermissionsCommandInput extends ListAccountPermissionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAccountPermissionsCommand}.
13
17
  */
14
18
  export interface ListAccountPermissionsCommandOutput extends ListAccountPermissionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the permissions an account has to configure Amazon Inspector.</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 ListAccountPermissionsCommandOutput extends ListAccountPermissi
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListAccountPermissionsCommandInput - {@link ListAccountPermissionsCommandInput}
34
+ * @returns {@link ListAccountPermissionsCommandOutput}
28
35
  * @see {@link ListAccountPermissionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListAccountPermissionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -47,11 +54,20 @@ export interface ListAccountPermissionsCommandOutput extends ListAccountPermissi
47
54
  export declare class ListAccountPermissionsCommand extends $Command<ListAccountPermissionsCommandInput, ListAccountPermissionsCommandOutput, Inspector2ClientResolvedConfig> {
48
55
  readonly input: ListAccountPermissionsCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: ListAccountPermissionsCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccountPermissionsCommandInput, ListAccountPermissionsCommandOutput>;
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 { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client";
5
5
  import { ListCoverageRequest, ListCoverageResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListCoverageCommand}.
8
10
  */
9
11
  export interface ListCoverageCommandInput extends ListCoverageRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListCoverageCommand}.
13
17
  */
14
18
  export interface ListCoverageCommandOutput extends ListCoverageResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists coverage details for you environment.</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 ListCoverageCommandOutput extends ListCoverageResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListCoverageCommandInput - {@link ListCoverageCommandInput}
34
+ * @returns {@link ListCoverageCommandOutput}
28
35
  * @see {@link ListCoverageCommandInput} for command's `input` shape.
29
36
  * @see {@link ListCoverageCommandOutput} for command's `response` shape.
30
37
  * @see {@link Inspector2ClientResolvedConfig | config} for Inspector2Client's `config` shape.
@@ -44,11 +51,20 @@ export interface ListCoverageCommandOutput extends ListCoverageResponse, __Metad
44
51
  export declare class ListCoverageCommand extends $Command<ListCoverageCommandInput, ListCoverageCommandOutput, Inspector2ClientResolvedConfig> {
45
52
  readonly input: ListCoverageCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListCoverageCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Inspector2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCoverageCommandInput, ListCoverageCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }