@aws-sdk/client-imagebuilder 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.
- package/dist-types/Imagebuilder.d.ts +51 -0
- package/dist-types/ImagebuilderClient.d.ts +24 -4
- package/dist-types/commands/CancelImageCreationCommand.d.ts +16 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
- package/dist-types/commands/CreateContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageCommand.d.ts +16 -0
- package/dist-types/commands/CreateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetImageCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ImportComponentCommand.d.ts +16 -0
- package/dist-types/commands/ImportVmImageCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListContainerRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePipelinesCommand.d.ts +16 -0
- package/dist-types/commands/ListImageRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutComponentPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutImagePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/StartImagePipelineExecutionCommand.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/UpdateDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/models/ImagebuilderServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +403 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListComponentBuildVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContainerRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDistributionConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImageBuildVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePipelineImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePipelinesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImageRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInfrastructureConfigurationsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetComponentPolicyRequest, GetComponentPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetComponentPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetComponentPolicyCommandInput extends GetComponentPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetComponentPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetComponentPolicyCommandOutput extends GetComponentPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets a component policy.</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 GetComponentPolicyCommandOutput extends GetComponentPolicyRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetComponentPolicyCommandInput - {@link GetComponentPolicyCommandInput}
|
|
34
|
+
* @returns {@link GetComponentPolicyCommandOutput}
|
|
28
35
|
* @see {@link GetComponentPolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetComponentPolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetComponentPolicyCommandOutput extends GetComponentPolicyRespo
|
|
|
52
59
|
export declare class GetComponentPolicyCommand extends $Command<GetComponentPolicyCommandInput, GetComponentPolicyCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
53
60
|
readonly input: GetComponentPolicyCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetComponentPolicyCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComponentPolicyCommandInput, GetComponentPolicyCommandOutput>;
|
|
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 { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetContainerRecipeRequest, GetContainerRecipeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetContainerRecipeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetContainerRecipeCommandInput extends GetContainerRecipeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetContainerRecipeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetContainerRecipeCommandOutput extends GetContainerRecipeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a container recipe.</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 GetContainerRecipeCommandOutput extends GetContainerRecipeRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetContainerRecipeCommandInput - {@link GetContainerRecipeCommandInput}
|
|
34
|
+
* @returns {@link GetContainerRecipeCommandOutput}
|
|
28
35
|
* @see {@link GetContainerRecipeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetContainerRecipeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetContainerRecipeCommandOutput extends GetContainerRecipeRespo
|
|
|
54
61
|
export declare class GetContainerRecipeCommand extends $Command<GetContainerRecipeCommandInput, GetContainerRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
55
62
|
readonly input: GetContainerRecipeCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetContainerRecipeCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContainerRecipeCommandInput, GetContainerRecipeCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetContainerRecipePolicyRequest, GetContainerRecipePolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetContainerRecipePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetContainerRecipePolicyCommandInput extends GetContainerRecipePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetContainerRecipePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetContainerRecipePolicyCommandOutput extends GetContainerRecipePolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the policy for a container recipe.</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 GetContainerRecipePolicyCommandOutput extends GetContainerRecip
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetContainerRecipePolicyCommandInput - {@link GetContainerRecipePolicyCommandInput}
|
|
34
|
+
* @returns {@link GetContainerRecipePolicyCommandOutput}
|
|
28
35
|
* @see {@link GetContainerRecipePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetContainerRecipePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetContainerRecipePolicyCommandOutput extends GetContainerRecip
|
|
|
52
59
|
export declare class GetContainerRecipePolicyCommand extends $Command<GetContainerRecipePolicyCommandInput, GetContainerRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
53
60
|
readonly input: GetContainerRecipePolicyCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetContainerRecipePolicyCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContainerRecipePolicyCommandInput, GetContainerRecipePolicyCommandOutput>;
|
|
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 { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetDistributionConfigurationRequest, GetDistributionConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDistributionConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDistributionConfigurationCommandInput extends GetDistributionConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDistributionConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDistributionConfigurationCommandOutput extends GetDistributionConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets a distribution configuration.</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 GetDistributionConfigurationCommandOutput extends GetDistributi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDistributionConfigurationCommandInput - {@link GetDistributionConfigurationCommandInput}
|
|
34
|
+
* @returns {@link GetDistributionConfigurationCommandOutput}
|
|
28
35
|
* @see {@link GetDistributionConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDistributionConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetDistributionConfigurationCommandOutput extends GetDistributi
|
|
|
54
61
|
export declare class GetDistributionConfigurationCommand extends $Command<GetDistributionConfigurationCommandInput, GetDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
55
62
|
readonly input: GetDistributionConfigurationCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetDistributionConfigurationCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDistributionConfigurationCommandInput, GetDistributionConfigurationCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetImageRequest, GetImageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetImageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetImageCommandInput extends GetImageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetImageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetImageCommandOutput extends GetImageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets an image.</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 GetImageCommandOutput extends GetImageResponse, __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetImageCommandInput - {@link GetImageCommandInput}
|
|
34
|
+
* @returns {@link GetImageCommandOutput}
|
|
28
35
|
* @see {@link GetImageCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetImageCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetImageCommandOutput extends GetImageResponse, __MetadataBeare
|
|
|
54
61
|
export declare class GetImageCommand extends $Command<GetImageCommandInput, GetImageCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
55
62
|
readonly input: GetImageCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetImageCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetImageCommandInput, GetImageCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetImagePipelineRequest, GetImagePipelineResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetImagePipelineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetImagePipelineCommandInput extends GetImagePipelineRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetImagePipelineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets an image pipeline.</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 GetImagePipelineCommandOutput extends GetImagePipelineResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetImagePipelineCommandInput - {@link GetImagePipelineCommandInput}
|
|
34
|
+
* @returns {@link GetImagePipelineCommandOutput}
|
|
28
35
|
* @see {@link GetImagePipelineCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetImagePipelineCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse,
|
|
|
54
61
|
export declare class GetImagePipelineCommand extends $Command<GetImagePipelineCommandInput, GetImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
55
62
|
readonly input: GetImagePipelineCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetImagePipelineCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetImagePipelineCommandInput, GetImagePipelineCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetImagePolicyRequest, GetImagePolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetImagePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetImagePolicyCommandInput extends GetImagePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetImagePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets an image policy.</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 GetImagePolicyCommandOutput extends GetImagePolicyResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetImagePolicyCommandInput - {@link GetImagePolicyCommandInput}
|
|
34
|
+
* @returns {@link GetImagePolicyCommandOutput}
|
|
28
35
|
* @see {@link GetImagePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetImagePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __M
|
|
|
52
59
|
export declare class GetImagePolicyCommand extends $Command<GetImagePolicyCommandInput, GetImagePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
53
60
|
readonly input: GetImagePolicyCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetImagePolicyCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetImagePolicyCommandInput, GetImagePolicyCommandOutput>;
|
|
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 { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetImageRecipeRequest, GetImageRecipeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetImageRecipeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetImageRecipeCommandInput extends GetImageRecipeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetImageRecipeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets an image recipe.</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 GetImageRecipeCommandOutput extends GetImageRecipeResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetImageRecipeCommandInput - {@link GetImageRecipeCommandInput}
|
|
34
|
+
* @returns {@link GetImageRecipeCommandOutput}
|
|
28
35
|
* @see {@link GetImageRecipeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetImageRecipeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __M
|
|
|
54
61
|
export declare class GetImageRecipeCommand extends $Command<GetImageRecipeCommandInput, GetImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
55
62
|
readonly input: GetImageRecipeCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetImageRecipeCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetImageRecipeCommandInput, GetImageRecipeCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetImageRecipePolicyRequest, GetImageRecipePolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetImageRecipePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetImageRecipePolicyCommandInput extends GetImageRecipePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetImageRecipePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets an image recipe policy.</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 GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetImageRecipePolicyCommandInput - {@link GetImageRecipePolicyCommandInput}
|
|
34
|
+
* @returns {@link GetImageRecipePolicyCommandOutput}
|
|
28
35
|
* @see {@link GetImageRecipePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetImageRecipePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyR
|
|
|
52
59
|
export declare class GetImageRecipePolicyCommand extends $Command<GetImageRecipePolicyCommandInput, GetImageRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
53
60
|
readonly input: GetImageRecipePolicyCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetImageRecipePolicyCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetImageRecipePolicyCommandInput, GetImageRecipePolicyCommandOutput>;
|
|
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 { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { GetInfrastructureConfigurationRequest, GetInfrastructureConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetInfrastructureConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetInfrastructureConfigurationCommandInput extends GetInfrastructureConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetInfrastructureConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetInfrastructureConfigurationCommandOutput extends GetInfrastructureConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Gets an infrastructure configuration.</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 GetInfrastructureConfigurationCommandOutput extends GetInfrastr
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetInfrastructureConfigurationCommandInput - {@link GetInfrastructureConfigurationCommandInput}
|
|
34
|
+
* @returns {@link GetInfrastructureConfigurationCommandOutput}
|
|
28
35
|
* @see {@link GetInfrastructureConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetInfrastructureConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetInfrastructureConfigurationCommandOutput extends GetInfrastr
|
|
|
54
61
|
export declare class GetInfrastructureConfigurationCommand extends $Command<GetInfrastructureConfigurationCommandInput, GetInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
55
62
|
readonly input: GetInfrastructureConfigurationCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetInfrastructureConfigurationCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInfrastructureConfigurationCommandInput, GetInfrastructureConfigurationCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { ImportComponentRequest, ImportComponentResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ImportComponentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ImportComponentCommandInput extends ImportComponentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ImportComponentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ImportComponentCommandOutput extends ImportComponentResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Imports a component and transforms its data into a component document.</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 ImportComponentCommandOutput extends ImportComponentResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ImportComponentCommandInput - {@link ImportComponentCommandInput}
|
|
34
|
+
* @returns {@link ImportComponentCommandOutput}
|
|
28
35
|
* @see {@link ImportComponentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ImportComponentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface ImportComponentCommandOutput extends ImportComponentResponse, _
|
|
|
69
76
|
export declare class ImportComponentCommand extends $Command<ImportComponentCommandInput, ImportComponentCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
70
77
|
readonly input: ImportComponentCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: ImportComponentCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportComponentCommandInput, ImportComponentCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { ImportVmImageRequest, ImportVmImageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ImportVmImageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ImportVmImageCommandInput extends ImportVmImageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ImportVmImageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>When you export your virtual machine (VM) from its virtualization environment,
|
|
18
23
|
* that process creates a set of one or more disk container files that act as
|
|
19
24
|
* snapshots of your VM’s environment, settings, and data. The Amazon EC2 API
|
|
@@ -33,6 +38,8 @@ export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __Met
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param ImportVmImageCommandInput - {@link ImportVmImageCommandInput}
|
|
42
|
+
* @returns {@link ImportVmImageCommandOutput}
|
|
36
43
|
* @see {@link ImportVmImageCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link ImportVmImageCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __Met
|
|
|
53
60
|
export declare class ImportVmImageCommand extends $Command<ImportVmImageCommandInput, ImportVmImageCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
54
61
|
readonly input: ImportVmImageCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ImportVmImageCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportVmImageCommandInput, ImportVmImageCommandOutput>;
|
|
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 { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
|
|
5
5
|
import { ListComponentBuildVersionsRequest, ListComponentBuildVersionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListComponentBuildVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListComponentBuildVersionsCommandInput extends ListComponentBuildVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListComponentBuildVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListComponentBuildVersionsCommandOutput extends ListComponentBuildVersionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns the list of component build versions for the specified semantic version.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>The semantic version has four nodes: <major>.<minor>.<patch>/<build>.
|
|
@@ -34,6 +39,8 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param ListComponentBuildVersionsCommandInput - {@link ListComponentBuildVersionsCommandInput}
|
|
43
|
+
* @returns {@link ListComponentBuildVersionsCommandOutput}
|
|
37
44
|
* @see {@link ListComponentBuildVersionsCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link ListComponentBuildVersionsCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu
|
|
|
66
73
|
export declare class ListComponentBuildVersionsCommand extends $Command<ListComponentBuildVersionsCommandInput, ListComponentBuildVersionsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
67
74
|
readonly input: ListComponentBuildVersionsCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: ListComponentBuildVersionsCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentBuildVersionsCommandInput, ListComponentBuildVersionsCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|