@aws-sdk/client-imagebuilder 3.40.0 → 3.45.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 (75) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/dist-cjs/Imagebuilder.js +15 -0
  3. package/dist-cjs/commands/ImportVmImageCommand.js +36 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/endpoints.js +9 -0
  6. package/dist-cjs/models/models_0.js +34 -4
  7. package/dist-cjs/protocols/Aws_restJson1.js +186 -2
  8. package/dist-es/Imagebuilder.js +15 -0
  9. package/dist-es/commands/ImportVmImageCommand.js +39 -0
  10. package/dist-es/commands/index.js +1 -0
  11. package/dist-es/endpoints.js +9 -0
  12. package/dist-es/models/models_0.js +24 -0
  13. package/dist-es/protocols/Aws_restJson1.js +189 -3
  14. package/dist-types/Imagebuilder.d.ts +17 -2
  15. package/dist-types/ImagebuilderClient.d.ts +3 -2
  16. package/dist-types/commands/CancelImageCreationCommand.d.ts +1 -1
  17. package/dist-types/commands/CreateComponentCommand.d.ts +1 -1
  18. package/dist-types/commands/CreateContainerRecipeCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateImageCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateImagePipelineCommand.d.ts +1 -1
  22. package/dist-types/commands/CreateImageRecipeCommand.d.ts +1 -1
  23. package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +1 -1
  24. package/dist-types/commands/DeleteComponentCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +1 -1
  27. package/dist-types/commands/DeleteImageCommand.d.ts +2 -2
  28. package/dist-types/commands/DeleteImagePipelineCommand.d.ts +1 -1
  29. package/dist-types/commands/DeleteImageRecipeCommand.d.ts +1 -1
  30. package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +1 -1
  31. package/dist-types/commands/GetComponentCommand.d.ts +1 -1
  32. package/dist-types/commands/GetComponentPolicyCommand.d.ts +1 -1
  33. package/dist-types/commands/GetContainerRecipeCommand.d.ts +1 -1
  34. package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +1 -1
  35. package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +1 -1
  36. package/dist-types/commands/GetImageCommand.d.ts +1 -1
  37. package/dist-types/commands/GetImagePipelineCommand.d.ts +1 -1
  38. package/dist-types/commands/GetImagePolicyCommand.d.ts +1 -1
  39. package/dist-types/commands/GetImageRecipeCommand.d.ts +1 -1
  40. package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +1 -1
  41. package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +1 -1
  42. package/dist-types/commands/ImportComponentCommand.d.ts +1 -1
  43. package/dist-types/commands/ImportVmImageCommand.d.ts +43 -0
  44. package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +1 -1
  45. package/dist-types/commands/ListComponentsCommand.d.ts +1 -1
  46. package/dist-types/commands/ListContainerRecipesCommand.d.ts +1 -1
  47. package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +1 -1
  48. package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +1 -1
  49. package/dist-types/commands/ListImagePackagesCommand.d.ts +1 -1
  50. package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +1 -1
  51. package/dist-types/commands/ListImagePipelinesCommand.d.ts +1 -1
  52. package/dist-types/commands/ListImageRecipesCommand.d.ts +1 -1
  53. package/dist-types/commands/ListImagesCommand.d.ts +1 -1
  54. package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +1 -1
  55. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  56. package/dist-types/commands/PutComponentPolicyCommand.d.ts +1 -1
  57. package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +2 -2
  58. package/dist-types/commands/PutImagePolicyCommand.d.ts +1 -1
  59. package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +1 -1
  60. package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +1 -1
  61. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  62. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  63. package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +1 -1
  64. package/dist-types/commands/UpdateImagePipelineCommand.d.ts +1 -1
  65. package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +1 -1
  66. package/dist-types/commands/index.d.ts +1 -0
  67. package/dist-types/models/models_0.d.ts +253 -14
  68. package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
  69. package/dist-types/ts3.4/Imagebuilder.d.ts +5 -0
  70. package/dist-types/ts3.4/ImagebuilderClient.d.ts +3 -2
  71. package/dist-types/ts3.4/commands/ImportVmImageCommand.d.ts +17 -0
  72. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  73. package/dist-types/ts3.4/models/models_0.d.ts +73 -0
  74. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
  75. package/package.json +6 -6
@@ -20,7 +20,7 @@ export interface GetDistributionConfigurationCommandOutput extends GetDistributi
20
20
  *
21
21
  * @see {@link GetDistributionConfigurationCommandInput} for command's `input` shape.
22
22
  * @see {@link GetDistributionConfigurationCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetDistributionConfigurationCommand extends $Command<GetDistributionConfigurationCommandInput, GetDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetImageCommandOutput extends GetImageResponse, __MetadataBeare
20
20
  *
21
21
  * @see {@link GetImageCommandInput} for command's `input` shape.
22
22
  * @see {@link GetImageCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetImageCommand extends $Command<GetImageCommandInput, GetImageCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse,
20
20
  *
21
21
  * @see {@link GetImagePipelineCommandInput} for command's `input` shape.
22
22
  * @see {@link GetImagePipelineCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetImagePipelineCommand extends $Command<GetImagePipelineCommandInput, GetImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __M
20
20
  *
21
21
  * @see {@link GetImagePolicyCommandInput} for command's `input` shape.
22
22
  * @see {@link GetImagePolicyCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetImagePolicyCommand extends $Command<GetImagePolicyCommandInput, GetImagePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __M
20
20
  *
21
21
  * @see {@link GetImageRecipeCommandInput} for command's `input` shape.
22
22
  * @see {@link GetImageRecipeCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetImageRecipeCommand extends $Command<GetImageRecipeCommandInput, GetImageRecipeCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyR
20
20
  *
21
21
  * @see {@link GetImageRecipePolicyCommandInput} for command's `input` shape.
22
22
  * @see {@link GetImageRecipePolicyCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetImageRecipePolicyCommand extends $Command<GetImageRecipePolicyCommandInput, GetImageRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetInfrastructureConfigurationCommandOutput extends GetInfrastr
20
20
  *
21
21
  * @see {@link GetInfrastructureConfigurationCommandInput} for command's `input` shape.
22
22
  * @see {@link GetInfrastructureConfigurationCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetInfrastructureConfigurationCommand extends $Command<GetInfrastructureConfigurationCommandInput, GetInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ImportComponentCommandOutput extends ImportComponentResponse, _
20
20
  *
21
21
  * @see {@link ImportComponentCommandInput} for command's `input` shape.
22
22
  * @see {@link ImportComponentCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ImportComponentCommand extends $Command<ImportComponentCommandInput, ImportComponentCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -0,0 +1,43 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
4
+ import { ImportVmImageRequest, ImportVmImageResponse } from "../models/models_0";
5
+ export interface ImportVmImageCommandInput extends ImportVmImageRequest {
6
+ }
7
+ export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>When you export your virtual machine (VM) from its virtualization environment,
11
+ * that process creates a set of one or more disk container files that act as
12
+ * snapshots of your VM’s environment, settings, and data. The Amazon EC2 API
13
+ * <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ImportImage.html">ImportImage</a>
14
+ * action uses those files to import your VM and create an AMI. To import using the
15
+ * CLI command, see <a href="https://docs.aws.amazon.com/cli/latest/reference/ec2/import-image.html">import-image</a>
16
+ * </p>
17
+ * <p>You can reference the task ID from the VM import to pull in the AMI that
18
+ * the import created as the base image for your Image Builder recipe.</p>
19
+ * @example
20
+ * Use a bare-bones client and the command you need to make an API call.
21
+ * ```javascript
22
+ * import { ImagebuilderClient, ImportVmImageCommand } from "@aws-sdk/client-imagebuilder"; // ES Modules import
23
+ * // const { ImagebuilderClient, ImportVmImageCommand } = require("@aws-sdk/client-imagebuilder"); // CommonJS import
24
+ * const client = new ImagebuilderClient(config);
25
+ * const command = new ImportVmImageCommand(input);
26
+ * const response = await client.send(command);
27
+ * ```
28
+ *
29
+ * @see {@link ImportVmImageCommandInput} for command's `input` shape.
30
+ * @see {@link ImportVmImageCommandOutput} for command's `response` shape.
31
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
32
+ *
33
+ */
34
+ export declare class ImportVmImageCommand extends $Command<ImportVmImageCommandInput, ImportVmImageCommandOutput, ImagebuilderClientResolvedConfig> {
35
+ readonly input: ImportVmImageCommandInput;
36
+ constructor(input: ImportVmImageCommandInput);
37
+ /**
38
+ * @internal
39
+ */
40
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ImagebuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportVmImageCommandInput, ImportVmImageCommandOutput>;
41
+ private serialize;
42
+ private deserialize;
43
+ }
@@ -29,7 +29,7 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu
29
29
  *
30
30
  * @see {@link ListComponentBuildVersionsCommandInput} for command's `input` shape.
31
31
  * @see {@link ListComponentBuildVersionsCommandOutput} for command's `response` shape.
32
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
32
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
33
33
  *
34
34
  */
35
35
  export declare class ListComponentBuildVersionsCommand extends $Command<ListComponentBuildVersionsCommandInput, ListComponentBuildVersionsCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -29,7 +29,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
29
29
  *
30
30
  * @see {@link ListComponentsCommandInput} for command's `input` shape.
31
31
  * @see {@link ListComponentsCommandOutput} for command's `response` shape.
32
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
32
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
33
33
  *
34
34
  */
35
35
  export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListContainerRecipesCommandOutput extends ListContainerRecipesR
20
20
  *
21
21
  * @see {@link ListContainerRecipesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListContainerRecipesCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListContainerRecipesCommand extends $Command<ListContainerRecipesCommandInput, ListContainerRecipesCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListDistributionConfigurationsCommandOutput extends ListDistrib
20
20
  *
21
21
  * @see {@link ListDistributionConfigurationsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListDistributionConfigurationsCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListDistributionConfigurationsCommand extends $Command<ListDistributionConfigurationsCommandInput, ListDistributionConfigurationsCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListImageBuildVersionsCommandOutput extends ListImageBuildVersi
20
20
  *
21
21
  * @see {@link ListImageBuildVersionsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListImageBuildVersionsCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListImageBuildVersionsCommand extends $Command<ListImageBuildVersionsCommandInput, ListImageBuildVersionsCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListImagePackagesCommandOutput extends ListImagePackagesRespons
20
20
  *
21
21
  * @see {@link ListImagePackagesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListImagePackagesCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListImagePackagesCommand extends $Command<ListImagePackagesCommandInput, ListImagePackagesCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListImagePipelineImagesCommandOutput extends ListImagePipelineI
20
20
  *
21
21
  * @see {@link ListImagePipelineImagesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListImagePipelineImagesCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListImagePipelineImagesCommand extends $Command<ListImagePipelineImagesCommandInput, ListImagePipelineImagesCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListImagePipelinesCommandOutput extends ListImagePipelinesRespo
20
20
  *
21
21
  * @see {@link ListImagePipelinesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListImagePipelinesCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListImagePipelinesCommand extends $Command<ListImagePipelinesCommandInput, ListImagePipelinesCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListImageRecipesCommandOutput extends ListImageRecipesResponse,
20
20
  *
21
21
  * @see {@link ListImageRecipesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListImageRecipesCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListImageRecipesCommand extends $Command<ListImageRecipesCommandInput, ListImageRecipesCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB
20
20
  *
21
21
  * @see {@link ListImagesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListImagesCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListImagesCommand extends $Command<ListImagesCommandInput, ListImagesCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListInfrastructureConfigurationsCommandOutput extends ListInfra
20
20
  *
21
21
  * @see {@link ListInfrastructureConfigurationsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListInfrastructureConfigurationsCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListInfrastructureConfigurationsCommand extends $Command<ListInfrastructureConfigurationsCommandInput, ListInfrastructureConfigurationsCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
20
20
  *
21
21
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface PutComponentPolicyCommandOutput extends PutComponentPolicyRespo
22
22
  *
23
23
  * @see {@link PutComponentPolicyCommandInput} for command's `input` shape.
24
24
  * @see {@link PutComponentPolicyCommandOutput} for command's `response` shape.
25
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class PutComponentPolicyCommand extends $Command<PutComponentPolicyCommandInput, PutComponentPolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -7,7 +7,7 @@ export interface PutContainerRecipePolicyCommandInput extends PutContainerRecipe
7
7
  export interface PutContainerRecipePolicyCommandOutput extends PutContainerRecipePolicyResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Applies a policy to a container image. We recommend that you call the RAM API CreateResourceShare (https://docs.aws.amazon.com/ram/latest/APIReference/API_CreateResourceShare.html) to share resources. If you call the Image Builder API <code>PutContainerImagePolicy</code>, you must also call the RAM API PromoteResourceShareCreatedFromPolicy (https://docs.aws.amazon.com/ram/latest/APIReference/API_PromoteResourceShareCreatedFromPolicy.html) in order for the resource to be visible to all principals with whom the resource is shared.</p>
10
+ * <p>Applies a policy to a container image. We recommend that you call the RAM API CreateResourceShare (https://docs.aws.amazon.com//ram/latest/APIReference/API_CreateResourceShare.html) to share resources. If you call the Image Builder API <code>PutContainerImagePolicy</code>, you must also call the RAM API PromoteResourceShareCreatedFromPolicy (https://docs.aws.amazon.com//ram/latest/APIReference/API_PromoteResourceShareCreatedFromPolicy.html) in order for the resource to be visible to all principals with whom the resource is shared.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -20,7 +20,7 @@ export interface PutContainerRecipePolicyCommandOutput extends PutContainerRecip
20
20
  *
21
21
  * @see {@link PutContainerRecipePolicyCommandInput} for command's `input` shape.
22
22
  * @see {@link PutContainerRecipePolicyCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class PutContainerRecipePolicyCommand extends $Command<PutContainerRecipePolicyCommandInput, PutContainerRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface PutImagePolicyCommandOutput extends PutImagePolicyResponse, __M
22
22
  *
23
23
  * @see {@link PutImagePolicyCommandInput} for command's `input` shape.
24
24
  * @see {@link PutImagePolicyCommandOutput} for command's `response` shape.
25
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class PutImagePolicyCommand extends $Command<PutImagePolicyCommandInput, PutImagePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface PutImageRecipePolicyCommandOutput extends PutImageRecipePolicyR
22
22
  *
23
23
  * @see {@link PutImageRecipePolicyCommandInput} for command's `input` shape.
24
24
  * @see {@link PutImageRecipePolicyCommandOutput} for command's `response` shape.
25
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class PutImageRecipePolicyCommand extends $Command<PutImageRecipePolicyCommandInput, PutImageRecipePolicyCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface StartImagePipelineExecutionCommandOutput extends StartImagePipe
20
20
  *
21
21
  * @see {@link StartImagePipelineExecutionCommandInput} for command's `input` shape.
22
22
  * @see {@link StartImagePipelineExecutionCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class StartImagePipelineExecutionCommand extends $Command<StartImagePipelineExecutionCommandInput, StartImagePipelineExecutionCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
20
20
  *
21
21
  * @see {@link TagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
20
20
  *
21
21
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface UpdateDistributionConfigurationCommandOutput extends UpdateDist
21
21
  *
22
22
  * @see {@link UpdateDistributionConfigurationCommandInput} for command's `input` shape.
23
23
  * @see {@link UpdateDistributionConfigurationCommandOutput} for command's `response` shape.
24
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class UpdateDistributionConfigurationCommand extends $Command<UpdateDistributionConfigurationCommandInput, UpdateDistributionConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -26,7 +26,7 @@ export interface UpdateImagePipelineCommandOutput extends UpdateImagePipelineRes
26
26
  *
27
27
  * @see {@link UpdateImagePipelineCommandInput} for command's `input` shape.
28
28
  * @see {@link UpdateImagePipelineCommandOutput} for command's `response` shape.
29
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
29
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
30
30
  *
31
31
  */
32
32
  export declare class UpdateImagePipelineCommand extends $Command<UpdateImagePipelineCommandInput, UpdateImagePipelineCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -21,7 +21,7 @@ export interface UpdateInfrastructureConfigurationCommandOutput extends UpdateIn
21
21
  *
22
22
  * @see {@link UpdateInfrastructureConfigurationCommandInput} for command's `input` shape.
23
23
  * @see {@link UpdateInfrastructureConfigurationCommandOutput} for command's `response` shape.
24
- * @see {@link ImagebuilderClientResolvedConfig | config} for command's `input` shape.
24
+ * @see {@link ImagebuilderClientResolvedConfig | config} for ImagebuilderClient's `config` shape.
25
25
  *
26
26
  */
27
27
  export declare class UpdateInfrastructureConfigurationCommand extends $Command<UpdateInfrastructureConfigurationCommandInput, UpdateInfrastructureConfigurationCommandOutput, ImagebuilderClientResolvedConfig> {
@@ -25,6 +25,7 @@ export * from "./GetImageRecipeCommand";
25
25
  export * from "./GetImageRecipePolicyCommand";
26
26
  export * from "./GetInfrastructureConfigurationCommand";
27
27
  export * from "./ImportComponentCommand";
28
+ export * from "./ImportVmImageCommand";
28
29
  export * from "./ListComponentBuildVersionsCommand";
29
30
  export * from "./ListComponentsCommand";
30
31
  export * from "./ListContainerRecipesCommand";