@aws-sdk/client-imagebuilder 3.289.0 → 3.290.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 (51) hide show
  1. package/dist-types/commands/CancelImageCreationCommand.d.ts +29 -0
  2. package/dist-types/commands/CreateComponentCommand.d.ts +39 -0
  3. package/dist-types/commands/CreateContainerRecipeCommand.d.ts +38 -0
  4. package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +39 -0
  5. package/dist-types/commands/CreateImageCommand.d.ts +32 -0
  6. package/dist-types/commands/CreateImagePipelineCommand.d.ts +35 -0
  7. package/dist-types/commands/CreateImageRecipeCommand.d.ts +38 -0
  8. package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +35 -0
  9. package/dist-types/commands/DeleteComponentCommand.d.ts +25 -0
  10. package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +25 -0
  11. package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +25 -0
  12. package/dist-types/commands/DeleteImageCommand.d.ts +25 -0
  13. package/dist-types/commands/DeleteImagePipelineCommand.d.ts +25 -0
  14. package/dist-types/commands/DeleteImageRecipeCommand.d.ts +25 -0
  15. package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +25 -0
  16. package/dist-types/commands/GetComponentCommand.d.ts +21 -0
  17. package/dist-types/commands/GetComponentPolicyCommand.d.ts +19 -0
  18. package/dist-types/commands/GetContainerRecipeCommand.d.ts +21 -0
  19. package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +19 -0
  20. package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +21 -0
  21. package/dist-types/commands/GetImageCommand.d.ts +21 -0
  22. package/dist-types/commands/GetImagePipelineCommand.d.ts +21 -0
  23. package/dist-types/commands/GetImagePolicyCommand.d.ts +19 -0
  24. package/dist-types/commands/GetImageRecipeCommand.d.ts +21 -0
  25. package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +19 -0
  26. package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +21 -0
  27. package/dist-types/commands/ImportComponentCommand.d.ts +36 -0
  28. package/dist-types/commands/ImportVmImageCommand.d.ts +12 -0
  29. package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +24 -0
  30. package/dist-types/commands/ListComponentsCommand.d.ts +24 -0
  31. package/dist-types/commands/ListContainerRecipesCommand.d.ts +24 -0
  32. package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +24 -0
  33. package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +24 -0
  34. package/dist-types/commands/ListImagePackagesCommand.d.ts +27 -0
  35. package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +27 -0
  36. package/dist-types/commands/ListImagePipelinesCommand.d.ts +24 -0
  37. package/dist-types/commands/ListImageRecipesCommand.d.ts +24 -0
  38. package/dist-types/commands/ListImagesCommand.d.ts +24 -0
  39. package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +24 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  41. package/dist-types/commands/PutComponentPolicyCommand.d.ts +27 -0
  42. package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +27 -0
  43. package/dist-types/commands/PutImagePolicyCommand.d.ts +27 -0
  44. package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +27 -0
  45. package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +32 -0
  46. package/dist-types/commands/TagResourceCommand.d.ts +11 -0
  47. package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
  48. package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +33 -0
  49. package/dist-types/commands/UpdateImagePipelineCommand.d.ts +29 -0
  50. package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +29 -0
  51. package/package.json +29 -29
@@ -30,6 +30,35 @@ export interface CancelImageCreationCommandOutput extends CancelImageCreationRes
30
30
  * @see {@link CancelImageCreationCommandOutput} 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 IdempotentParameterMismatchException} (client fault)
45
+ * <p>You have specified a client token for an operation using parameter values that differ from
46
+ * a previous request that used the same client token.</p>
47
+ *
48
+ * @throws {@link InvalidRequestException} (client fault)
49
+ * <p>You have made a request for an action that is not supported by the service.</p>
50
+ *
51
+ * @throws {@link ResourceInUseException} (client fault)
52
+ * <p>The resource that you are trying to operate on is currently in use. Review the message
53
+ * details and retry later.</p>
54
+ *
55
+ * @throws {@link ServiceException} (server fault)
56
+ * <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
57
+ *
58
+ * @throws {@link ServiceUnavailableException} (server fault)
59
+ * <p>The service is unable to process your request at this time.</p>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class CancelImageCreationCommand extends $Command<CancelImageCreationCommandInput, CancelImageCreationCommandOutput, ImagebuilderClientResolvedConfig> {
35
64
  readonly input: CancelImageCreationCommandInput;
@@ -40,6 +40,45 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
40
40
  * @see {@link CreateComponentCommandOutput} 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 IdempotentParameterMismatchException} (client fault)
55
+ * <p>You have specified a client token for an operation using parameter values that differ from
56
+ * a previous request that used the same client token.</p>
57
+ *
58
+ * @throws {@link InvalidParameterCombinationException} (client fault)
59
+ * <p>You have specified two or more mutually exclusive parameters. Review the error message for
60
+ * details.</p>
61
+ *
62
+ * @throws {@link InvalidRequestException} (client fault)
63
+ * <p>You have made a request for an action that is not supported by the service.</p>
64
+ *
65
+ * @throws {@link InvalidVersionNumberException} (client fault)
66
+ * <p>Your version number is out of bounds or does not follow the required syntax.</p>
67
+ *
68
+ * @throws {@link ResourceInUseException} (client fault)
69
+ * <p>The resource that you are trying to operate on is currently in use. Review the message
70
+ * details and retry later.</p>
71
+ *
72
+ * @throws {@link ServiceException} (server fault)
73
+ * <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
74
+ *
75
+ * @throws {@link ServiceQuotaExceededException} (client fault)
76
+ * <p>You have exceeded the number of permitted resources or operations for this service. For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and quotas</a>.</p>
77
+ *
78
+ * @throws {@link ServiceUnavailableException} (server fault)
79
+ * <p>The service is unable to process your request at this time.</p>
80
+ *
81
+ *
43
82
  */
44
83
  export declare class CreateComponentCommand extends $Command<CreateComponentCommandInput, CreateComponentCommandOutput, ImagebuilderClientResolvedConfig> {
45
84
  readonly input: CreateComponentCommandInput;
@@ -29,6 +29,44 @@ export interface CreateContainerRecipeCommandOutput extends CreateContainerRecip
29
29
  * @see {@link CreateContainerRecipeCommandOutput} 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 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 InvalidVersionNumberException} (client fault)
51
+ * <p>Your version number is out of bounds or does not follow the required syntax.</p>
52
+ *
53
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
54
+ * <p>The resource that you are trying to create already exists.</p>
55
+ *
56
+ * @throws {@link ResourceInUseException} (client fault)
57
+ * <p>The resource that you are trying to operate on is currently in use. Review the message
58
+ * details and retry later.</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 ServiceQuotaExceededException} (client fault)
64
+ * <p>You have exceeded the number of permitted resources or operations for this service. For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and quotas</a>.</p>
65
+ *
66
+ * @throws {@link ServiceUnavailableException} (server fault)
67
+ * <p>The service is unable to process your request at this time.</p>
68
+ *
69
+ *
32
70
  */
33
71
  export declare class CreateContainerRecipeCommand extends $Command<CreateContainerRecipeCommandInput, CreateContainerRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
34
72
  readonly input: CreateContainerRecipeCommandInput;
@@ -30,6 +30,45 @@ export interface CreateDistributionConfigurationCommandOutput extends CreateDist
30
30
  * @see {@link CreateDistributionConfigurationCommandOutput} 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 IdempotentParameterMismatchException} (client fault)
45
+ * <p>You have specified a client token for an operation using parameter values that differ from
46
+ * a previous request that used the same client token.</p>
47
+ *
48
+ * @throws {@link InvalidParameterCombinationException} (client fault)
49
+ * <p>You have specified two or more mutually exclusive parameters. Review the error message for
50
+ * details.</p>
51
+ *
52
+ * @throws {@link InvalidRequestException} (client fault)
53
+ * <p>You have made a request for an action that is not supported by the service.</p>
54
+ *
55
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
56
+ * <p>The resource that you are trying to create already exists.</p>
57
+ *
58
+ * @throws {@link ResourceInUseException} (client fault)
59
+ * <p>The resource that you are trying to operate on is currently in use. Review the message
60
+ * details and retry later.</p>
61
+ *
62
+ * @throws {@link ServiceException} (server fault)
63
+ * <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
64
+ *
65
+ * @throws {@link ServiceQuotaExceededException} (client fault)
66
+ * <p>You have exceeded the number of permitted resources or operations for this service. For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and quotas</a>.</p>
67
+ *
68
+ * @throws {@link ServiceUnavailableException} (server fault)
69
+ * <p>The service is unable to process your request at this time.</p>
70
+ *
71
+ *
33
72
  */
34
73
  export declare class CreateDistributionConfigurationCommand extends $Command<CreateDistributionConfigurationCommandInput, CreateDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
35
74
  readonly input: CreateDistributionConfigurationCommandInput;
@@ -31,6 +31,38 @@ export interface CreateImageCommandOutput extends CreateImageResponse, __Metadat
31
31
  * @see {@link CreateImageCommandOutput} for command's `response` shape.
32
32
  * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
33
33
  *
34
+ * @throws {@link CallRateLimitExceededException} (client fault)
35
+ * <p>You have exceeded the permitted request rate for the specific operation.</p>
36
+ *
37
+ * @throws {@link ClientException} (client fault)
38
+ * <p>These errors are usually caused by a client action, such as using an action or resource on
39
+ * behalf of a user that doesn't have permissions to use the action or resource, or specifying an
40
+ * invalid resource identifier.</p>
41
+ *
42
+ * @throws {@link ForbiddenException} (client fault)
43
+ * <p>You are not authorized to perform the requested operation.</p>
44
+ *
45
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
46
+ * <p>You have specified a client token for an operation using parameter values that differ from
47
+ * a previous request that used the same client token.</p>
48
+ *
49
+ * @throws {@link InvalidRequestException} (client fault)
50
+ * <p>You have made a request for an action that is not supported by the service.</p>
51
+ *
52
+ * @throws {@link ResourceInUseException} (client fault)
53
+ * <p>The resource that you are trying to operate on is currently in use. Review the message
54
+ * details and retry later.</p>
55
+ *
56
+ * @throws {@link ServiceException} (server fault)
57
+ * <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
58
+ *
59
+ * @throws {@link ServiceQuotaExceededException} (client fault)
60
+ * <p>You have exceeded the number of permitted resources or operations for this service. For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and quotas</a>.</p>
61
+ *
62
+ * @throws {@link ServiceUnavailableException} (server fault)
63
+ * <p>The service is unable to process your request at this time.</p>
64
+ *
65
+ *
34
66
  */
35
67
  export declare class CreateImageCommand extends $Command<CreateImageCommandInput, CreateImageCommandOutput, ImagebuilderClientResolvedConfig> {
36
68
  readonly input: CreateImageCommandInput;
@@ -30,6 +30,41 @@ export interface CreateImagePipelineCommandOutput extends CreateImagePipelineRes
30
30
  * @see {@link CreateImagePipelineCommandOutput} 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 IdempotentParameterMismatchException} (client fault)
45
+ * <p>You have specified a client token for an operation using parameter values that differ from
46
+ * a previous request that used the same client token.</p>
47
+ *
48
+ * @throws {@link InvalidRequestException} (client fault)
49
+ * <p>You have made a request for an action that is not supported by the service.</p>
50
+ *
51
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
52
+ * <p>The resource that you are trying to create already exists.</p>
53
+ *
54
+ * @throws {@link ResourceInUseException} (client fault)
55
+ * <p>The resource that you are trying to operate on is currently in use. Review the message
56
+ * details and retry later.</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 ServiceQuotaExceededException} (client fault)
62
+ * <p>You have exceeded the number of permitted resources or operations for this service. For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and quotas</a>.</p>
63
+ *
64
+ * @throws {@link ServiceUnavailableException} (server fault)
65
+ * <p>The service is unable to process your request at this time.</p>
66
+ *
67
+ *
33
68
  */
34
69
  export declare class CreateImagePipelineCommand extends $Command<CreateImagePipelineCommandInput, CreateImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
35
70
  readonly input: CreateImagePipelineCommandInput;
@@ -30,6 +30,44 @@ export interface CreateImageRecipeCommandOutput extends CreateImageRecipeRespons
30
30
  * @see {@link CreateImageRecipeCommandOutput} 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 IdempotentParameterMismatchException} (client fault)
45
+ * <p>You have specified a client token for an operation using parameter values that differ from
46
+ * a previous request that used the same client token.</p>
47
+ *
48
+ * @throws {@link InvalidRequestException} (client fault)
49
+ * <p>You have made a request for an action that is not supported by the service.</p>
50
+ *
51
+ * @throws {@link InvalidVersionNumberException} (client fault)
52
+ * <p>Your version number is out of bounds or does not follow the required syntax.</p>
53
+ *
54
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
55
+ * <p>The resource that you are trying to create already exists.</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 ServiceQuotaExceededException} (client fault)
65
+ * <p>You have exceeded the number of permitted resources or operations for this service. For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and quotas</a>.</p>
66
+ *
67
+ * @throws {@link ServiceUnavailableException} (server fault)
68
+ * <p>The service is unable to process your request at this time.</p>
69
+ *
70
+ *
33
71
  */
34
72
  export declare class CreateImageRecipeCommand extends $Command<CreateImageRecipeCommandInput, CreateImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
35
73
  readonly input: CreateImageRecipeCommandInput;
@@ -30,6 +30,41 @@ export interface CreateInfrastructureConfigurationCommandOutput extends CreateIn
30
30
  * @see {@link CreateInfrastructureConfigurationCommandOutput} 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 IdempotentParameterMismatchException} (client fault)
45
+ * <p>You have specified a client token for an operation using parameter values that differ from
46
+ * a previous request that used the same client token.</p>
47
+ *
48
+ * @throws {@link InvalidRequestException} (client fault)
49
+ * <p>You have made a request for an action that is not supported by the service.</p>
50
+ *
51
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
52
+ * <p>The resource that you are trying to create already exists.</p>
53
+ *
54
+ * @throws {@link ResourceInUseException} (client fault)
55
+ * <p>The resource that you are trying to operate on is currently in use. Review the message
56
+ * details and retry later.</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 ServiceQuotaExceededException} (client fault)
62
+ * <p>You have exceeded the number of permitted resources or operations for this service. For service quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder">EC2 Image Builder endpoints and quotas</a>.</p>
63
+ *
64
+ * @throws {@link ServiceUnavailableException} (server fault)
65
+ * <p>The service is unable to process your request at this time.</p>
66
+ *
67
+ *
33
68
  */
34
69
  export declare class CreateInfrastructureConfigurationCommand extends $Command<CreateInfrastructureConfigurationCommandInput, CreateInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
35
70
  readonly input: CreateInfrastructureConfigurationCommandInput;
@@ -29,6 +29,31 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
29
29
  * @see {@link DeleteComponentCommandOutput} 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 ResourceDependencyException} (client fault)
47
+ * <p>You have attempted to mutate or delete a resource with a dependency that prohibits this
48
+ * action. See the error message for more details.</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
+ *
32
57
  */
33
58
  export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, ImagebuilderClientResolvedConfig> {
34
59
  readonly input: DeleteComponentCommandInput;
@@ -29,6 +29,31 @@ export interface DeleteContainerRecipeCommandOutput extends DeleteContainerRecip
29
29
  * @see {@link DeleteContainerRecipeCommandOutput} 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 ResourceDependencyException} (client fault)
47
+ * <p>You have attempted to mutate or delete a resource with a dependency that prohibits this
48
+ * action. See the error message for more details.</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
+ *
32
57
  */
33
58
  export declare class DeleteContainerRecipeCommand extends $Command<DeleteContainerRecipeCommandInput, DeleteContainerRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
34
59
  readonly input: DeleteContainerRecipeCommandInput;
@@ -29,6 +29,31 @@ export interface DeleteDistributionConfigurationCommandOutput extends DeleteDist
29
29
  * @see {@link DeleteDistributionConfigurationCommandOutput} 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 ResourceDependencyException} (client fault)
47
+ * <p>You have attempted to mutate or delete a resource with a dependency that prohibits this
48
+ * action. See the error message for more details.</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
+ *
32
57
  */
33
58
  export declare class DeleteDistributionConfigurationCommand extends $Command<DeleteDistributionConfigurationCommandInput, DeleteDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
34
59
  readonly input: DeleteDistributionConfigurationCommandInput;
@@ -49,6 +49,31 @@ export interface DeleteImageCommandOutput extends DeleteImageResponse, __Metadat
49
49
  * @see {@link DeleteImageCommandOutput} for command's `response` shape.
50
50
  * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
51
51
  *
52
+ * @throws {@link CallRateLimitExceededException} (client fault)
53
+ * <p>You have exceeded the permitted request rate for the specific operation.</p>
54
+ *
55
+ * @throws {@link ClientException} (client fault)
56
+ * <p>These errors are usually caused by a client action, such as using an action or resource on
57
+ * behalf of a user that doesn't have permissions to use the action or resource, or specifying an
58
+ * invalid resource identifier.</p>
59
+ *
60
+ * @throws {@link ForbiddenException} (client fault)
61
+ * <p>You are not authorized to perform the requested operation.</p>
62
+ *
63
+ * @throws {@link InvalidRequestException} (client fault)
64
+ * <p>You have made a request for an action that is not supported by the service.</p>
65
+ *
66
+ * @throws {@link ResourceDependencyException} (client fault)
67
+ * <p>You have attempted to mutate or delete a resource with a dependency that prohibits this
68
+ * action. See the error message for more details.</p>
69
+ *
70
+ * @throws {@link ServiceException} (server fault)
71
+ * <p>This exception is thrown when the service encounters an unrecoverable exception.</p>
72
+ *
73
+ * @throws {@link ServiceUnavailableException} (server fault)
74
+ * <p>The service is unable to process your request at this time.</p>
75
+ *
76
+ *
52
77
  */
53
78
  export declare class DeleteImageCommand extends $Command<DeleteImageCommandInput, DeleteImageCommandOutput, ImagebuilderClientResolvedConfig> {
54
79
  readonly input: DeleteImageCommandInput;
@@ -29,6 +29,31 @@ export interface DeleteImagePipelineCommandOutput extends DeleteImagePipelineRes
29
29
  * @see {@link DeleteImagePipelineCommandOutput} 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 ResourceDependencyException} (client fault)
47
+ * <p>You have attempted to mutate or delete a resource with a dependency that prohibits this
48
+ * action. See the error message for more details.</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
+ *
32
57
  */
33
58
  export declare class DeleteImagePipelineCommand extends $Command<DeleteImagePipelineCommandInput, DeleteImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
34
59
  readonly input: DeleteImagePipelineCommandInput;
@@ -29,6 +29,31 @@ export interface DeleteImageRecipeCommandOutput extends DeleteImageRecipeRespons
29
29
  * @see {@link DeleteImageRecipeCommandOutput} 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 ResourceDependencyException} (client fault)
47
+ * <p>You have attempted to mutate or delete a resource with a dependency that prohibits this
48
+ * action. See the error message for more details.</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
+ *
32
57
  */
33
58
  export declare class DeleteImageRecipeCommand extends $Command<DeleteImageRecipeCommandInput, DeleteImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
34
59
  readonly input: DeleteImageRecipeCommandInput;
@@ -29,6 +29,31 @@ export interface DeleteInfrastructureConfigurationCommandOutput extends DeleteIn
29
29
  * @see {@link DeleteInfrastructureConfigurationCommandOutput} 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 ResourceDependencyException} (client fault)
47
+ * <p>You have attempted to mutate or delete a resource with a dependency that prohibits this
48
+ * action. See the error message for more details.</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
+ *
32
57
  */
33
58
  export declare class DeleteInfrastructureConfigurationCommand extends $Command<DeleteInfrastructureConfigurationCommandInput, DeleteInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
34
59
  readonly input: DeleteInfrastructureConfigurationCommandInput;
@@ -29,6 +29,27 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
29
29
  * @see {@link GetComponentCommandOutput} 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 GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, ImagebuilderClientResolvedConfig> {
34
55
  readonly input: GetComponentCommandInput;
@@ -29,6 +29,25 @@ export interface GetComponentPolicyCommandOutput extends GetComponentPolicyRespo
29
29
  * @see {@link GetComponentPolicyCommandOutput} 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 GetComponentPolicyCommand extends $Command<GetComponentPolicyCommandInput, GetComponentPolicyCommandOutput, ImagebuilderClientResolvedConfig> {
34
53
  readonly input: GetComponentPolicyCommandInput;