@aws-sdk/client-imagebuilder 3.289.0 → 3.292.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/commands/CancelImageCreationCommand.d.ts +29 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +39 -0
- package/dist-types/commands/CreateContainerRecipeCommand.d.ts +38 -0
- package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +39 -0
- package/dist-types/commands/CreateImageCommand.d.ts +32 -0
- package/dist-types/commands/CreateImagePipelineCommand.d.ts +35 -0
- package/dist-types/commands/CreateImageRecipeCommand.d.ts +38 -0
- package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +25 -0
- package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +25 -0
- package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +25 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +25 -0
- package/dist-types/commands/DeleteImagePipelineCommand.d.ts +25 -0
- package/dist-types/commands/DeleteImageRecipeCommand.d.ts +25 -0
- package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +25 -0
- package/dist-types/commands/GetComponentCommand.d.ts +21 -0
- package/dist-types/commands/GetComponentPolicyCommand.d.ts +19 -0
- package/dist-types/commands/GetContainerRecipeCommand.d.ts +21 -0
- package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +19 -0
- package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +21 -0
- package/dist-types/commands/GetImageCommand.d.ts +21 -0
- package/dist-types/commands/GetImagePipelineCommand.d.ts +21 -0
- package/dist-types/commands/GetImagePolicyCommand.d.ts +19 -0
- package/dist-types/commands/GetImageRecipeCommand.d.ts +21 -0
- package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +19 -0
- package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +21 -0
- package/dist-types/commands/ImportComponentCommand.d.ts +36 -0
- package/dist-types/commands/ImportVmImageCommand.d.ts +12 -0
- package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +24 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +24 -0
- package/dist-types/commands/ListContainerRecipesCommand.d.ts +24 -0
- package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +24 -0
- package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +24 -0
- package/dist-types/commands/ListImagePackagesCommand.d.ts +27 -0
- package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +27 -0
- package/dist-types/commands/ListImagePipelinesCommand.d.ts +24 -0
- package/dist-types/commands/ListImageRecipesCommand.d.ts +24 -0
- package/dist-types/commands/ListImagesCommand.d.ts +24 -0
- package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +24 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/PutComponentPolicyCommand.d.ts +27 -0
- package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +27 -0
- package/dist-types/commands/PutImagePolicyCommand.d.ts +27 -0
- package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +27 -0
- package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +32 -0
- package/dist-types/commands/TagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +33 -0
- package/dist-types/commands/UpdateImagePipelineCommand.d.ts +29 -0
- package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +29 -0
- package/package.json +35 -40
|
@@ -29,6 +29,27 @@ export interface GetContainerRecipeCommandOutput extends GetContainerRecipeRespo
|
|
|
29
29
|
* @see {@link GetContainerRecipeCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
44
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceException} (server fault)
|
|
47
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class GetContainerRecipeCommand extends $Command<GetContainerRecipeCommandInput, GetContainerRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
55
|
readonly input: GetContainerRecipeCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface GetContainerRecipePolicyCommandOutput extends GetContainerRecip
|
|
|
29
29
|
* @see {@link GetContainerRecipePolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>At least one of the resources referenced by your request does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceException} (server fault)
|
|
45
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class GetContainerRecipePolicyCommand extends $Command<GetContainerRecipePolicyCommandInput, GetContainerRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
53
|
readonly input: GetContainerRecipePolicyCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface GetDistributionConfigurationCommandOutput extends GetDistributi
|
|
|
29
29
|
* @see {@link GetDistributionConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
44
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceException} (server fault)
|
|
47
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class GetDistributionConfigurationCommand extends $Command<GetDistributionConfigurationCommandInput, GetDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
55
|
readonly input: GetDistributionConfigurationCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface GetImageCommandOutput extends GetImageResponse, __MetadataBeare
|
|
|
29
29
|
* @see {@link GetImageCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
44
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceException} (server fault)
|
|
47
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class GetImageCommand extends $Command<GetImageCommandInput, GetImageCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
55
|
readonly input: GetImageCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse,
|
|
|
29
29
|
* @see {@link GetImagePipelineCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
44
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceException} (server fault)
|
|
47
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class GetImagePipelineCommand extends $Command<GetImagePipelineCommandInput, GetImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
55
|
readonly input: GetImagePipelineCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __M
|
|
|
29
29
|
* @see {@link GetImagePolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>At least one of the resources referenced by your request does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceException} (server fault)
|
|
45
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class GetImagePolicyCommand extends $Command<GetImagePolicyCommandInput, GetImagePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
53
|
readonly input: GetImagePolicyCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __M
|
|
|
29
29
|
* @see {@link GetImageRecipeCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
44
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceException} (server fault)
|
|
47
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class GetImageRecipeCommand extends $Command<GetImageRecipeCommandInput, GetImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
55
|
readonly input: GetImageRecipeCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyR
|
|
|
29
29
|
* @see {@link GetImageRecipePolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
36
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>At least one of the resources referenced by your request does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceException} (server fault)
|
|
45
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class GetImageRecipePolicyCommand extends $Command<GetImageRecipePolicyCommandInput, GetImageRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
53
|
readonly input: GetImageRecipePolicyCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface GetInfrastructureConfigurationCommandOutput extends GetInfrastr
|
|
|
29
29
|
* @see {@link GetInfrastructureConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
44
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceException} (server fault)
|
|
47
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class GetInfrastructureConfigurationCommand extends $Command<GetInfrastructureConfigurationCommandInput, GetInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
55
|
readonly input: GetInfrastructureConfigurationCommandInput;
|
|
@@ -29,6 +29,42 @@ export interface ImportComponentCommandOutput extends ImportComponentResponse, _
|
|
|
29
29
|
* @see {@link ImportComponentCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link IdempotentParameterMismatchException} (client fault)
|
|
44
|
+
* <p>You have specified a client token for an operation using parameter values that differ from
|
|
45
|
+
* a previous request that used the same client token.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidParameterCombinationException} (client fault)
|
|
48
|
+
* <p>You have specified two or more mutually exclusive parameters. Review the error message for
|
|
49
|
+
* details.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
52
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InvalidVersionNumberException} (client fault)
|
|
55
|
+
* <p>Your version number is out of bounds or does not follow the required syntax.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
58
|
+
* <p>The resource that you are trying to operate on is currently in use. Review the message
|
|
59
|
+
* details and retry later.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ServiceException} (server fault)
|
|
62
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
65
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
32
68
|
*/
|
|
33
69
|
export declare class ImportComponentCommand extends $Command<ImportComponentCommandInput, ImportComponentCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
70
|
readonly input: ImportComponentCommandInput;
|
|
@@ -37,6 +37,18 @@ export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __Met
|
|
|
37
37
|
* @see {@link ImportVmImageCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link ClientException} (client fault)
|
|
41
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
42
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
43
|
+
* invalid resource identifier.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceException} (server fault)
|
|
46
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
40
52
|
*/
|
|
41
53
|
export declare class ImportVmImageCommand extends $Command<ImportVmImageCommandInput, ImportVmImageCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
42
54
|
readonly input: ImportVmImageCommandInput;
|
|
@@ -38,6 +38,30 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu
|
|
|
38
38
|
* @see {@link ListComponentBuildVersionsCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
42
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ClientException} (client fault)
|
|
45
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
46
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
47
|
+
* invalid resource identifier.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
50
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
53
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
56
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ServiceException} (server fault)
|
|
59
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
62
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
41
65
|
*/
|
|
42
66
|
export declare class ListComponentBuildVersionsCommand extends $Command<ListComponentBuildVersionsCommandInput, ListComponentBuildVersionsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
43
67
|
readonly input: ListComponentBuildVersionsCommandInput;
|
|
@@ -40,6 +40,30 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
40
40
|
* @see {@link ListComponentsCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
44
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ClientException} (client fault)
|
|
47
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
48
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
49
|
+
* invalid resource identifier.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
52
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
55
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
58
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ServiceException} (server fault)
|
|
61
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
64
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
43
67
|
*/
|
|
44
68
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
45
69
|
readonly input: ListComponentsCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface ListContainerRecipesCommandOutput extends ListContainerRecipesR
|
|
|
29
29
|
* @see {@link ListContainerRecipesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
44
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
47
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceException} (server fault)
|
|
50
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class ListContainerRecipesCommand extends $Command<ListContainerRecipesCommandInput, ListContainerRecipesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
58
|
readonly input: ListContainerRecipesCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface ListDistributionConfigurationsCommandOutput extends ListDistrib
|
|
|
29
29
|
* @see {@link ListDistributionConfigurationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
44
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
47
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceException} (server fault)
|
|
50
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class ListDistributionConfigurationsCommand extends $Command<ListDistributionConfigurationsCommandInput, ListDistributionConfigurationsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
58
|
readonly input: ListDistributionConfigurationsCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface ListImageBuildVersionsCommandOutput extends ListImageBuildVersi
|
|
|
29
29
|
* @see {@link ListImageBuildVersionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
44
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
47
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceException} (server fault)
|
|
50
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class ListImageBuildVersionsCommand extends $Command<ListImageBuildVersionsCommandInput, ListImageBuildVersionsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
58
|
readonly input: ListImageBuildVersionsCommandInput;
|
|
@@ -29,6 +29,33 @@ export interface ListImagePackagesCommandOutput extends ListImagePackagesRespons
|
|
|
29
29
|
* @see {@link ListImagePackagesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
44
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
47
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>At least one of the resources referenced by your request does not exist.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceException} (server fault)
|
|
53
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
56
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
32
59
|
*/
|
|
33
60
|
export declare class ListImagePackagesCommand extends $Command<ListImagePackagesCommandInput, ListImagePackagesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
61
|
readonly input: ListImagePackagesCommandInput;
|
|
@@ -29,6 +29,33 @@ export interface ListImagePipelineImagesCommandOutput extends ListImagePipelineI
|
|
|
29
29
|
* @see {@link ListImagePipelineImagesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
44
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
47
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>At least one of the resources referenced by your request does not exist.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceException} (server fault)
|
|
53
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
56
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
32
59
|
*/
|
|
33
60
|
export declare class ListImagePipelineImagesCommand extends $Command<ListImagePipelineImagesCommandInput, ListImagePipelineImagesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
61
|
readonly input: ListImagePipelineImagesCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface ListImagePipelinesCommandOutput extends ListImagePipelinesRespo
|
|
|
29
29
|
* @see {@link ListImagePipelinesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
44
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
47
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceException} (server fault)
|
|
50
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class ListImagePipelinesCommand extends $Command<ListImagePipelinesCommandInput, ListImagePipelinesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
58
|
readonly input: ListImagePipelinesCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface ListImageRecipesCommandOutput extends ListImageRecipesResponse,
|
|
|
29
29
|
* @see {@link ListImageRecipesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
33
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ClientException} (client fault)
|
|
36
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
37
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
38
|
+
* invalid resource identifier.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
44
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
47
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceException} (server fault)
|
|
50
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class ListImageRecipesCommand extends $Command<ListImageRecipesCommandInput, ListImageRecipesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
34
58
|
readonly input: ListImageRecipesCommandInput;
|
|
@@ -30,6 +30,30 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB
|
|
|
30
30
|
* @see {@link ListImagesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link CallRateLimitExceededException} (client fault)
|
|
34
|
+
* <p>You have exceeded the permitted request rate for the specific operation.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ClientException} (client fault)
|
|
37
|
+
* <p>These errors are usually caused by a client action, such as using an action or resource on
|
|
38
|
+
* behalf of a user that doesn't have permissions to use the action or resource, or specifying an
|
|
39
|
+
* invalid resource identifier.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
42
|
+
* <p>You are not authorized to perform the requested operation.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidPaginationTokenException} (client fault)
|
|
45
|
+
* <p>You have provided an invalid pagination token in your request.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
48
|
+
* <p>You have made a request for an action that is not supported by the service.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceException} (server fault)
|
|
51
|
+
* <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
|
+
* <p>The service is unable to process your request at this time.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
33
57
|
*/
|
|
34
58
|
export declare class ListImagesCommand extends $Command<ListImagesCommandInput, ListImagesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
35
59
|
readonly input: ListImagesCommandInput;
|