@aws-sdk/client-imagebuilder 3.279.0 → 3.282.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 (52) hide show
  1. package/README.md +403 -0
  2. package/dist-types/commands/CancelImageCreationCommand.d.ts +6 -0
  3. package/dist-types/commands/CreateComponentCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateContainerRecipeCommand.d.ts +6 -0
  5. package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +6 -0
  6. package/dist-types/commands/CreateImageCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateImagePipelineCommand.d.ts +6 -0
  8. package/dist-types/commands/CreateImageRecipeCommand.d.ts +6 -0
  9. package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +6 -0
  10. package/dist-types/commands/DeleteComponentCommand.d.ts +6 -0
  11. package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +6 -0
  12. package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +6 -0
  13. package/dist-types/commands/DeleteImageCommand.d.ts +6 -0
  14. package/dist-types/commands/DeleteImagePipelineCommand.d.ts +6 -0
  15. package/dist-types/commands/DeleteImageRecipeCommand.d.ts +6 -0
  16. package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +6 -0
  17. package/dist-types/commands/GetComponentCommand.d.ts +6 -0
  18. package/dist-types/commands/GetComponentPolicyCommand.d.ts +6 -0
  19. package/dist-types/commands/GetContainerRecipeCommand.d.ts +6 -0
  20. package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +6 -0
  21. package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +6 -0
  22. package/dist-types/commands/GetImageCommand.d.ts +6 -0
  23. package/dist-types/commands/GetImagePipelineCommand.d.ts +6 -0
  24. package/dist-types/commands/GetImagePolicyCommand.d.ts +6 -0
  25. package/dist-types/commands/GetImageRecipeCommand.d.ts +6 -0
  26. package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +6 -0
  27. package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +6 -0
  28. package/dist-types/commands/ImportComponentCommand.d.ts +6 -0
  29. package/dist-types/commands/ImportVmImageCommand.d.ts +6 -0
  30. package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +6 -0
  31. package/dist-types/commands/ListComponentsCommand.d.ts +6 -0
  32. package/dist-types/commands/ListContainerRecipesCommand.d.ts +6 -0
  33. package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +6 -0
  34. package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +6 -0
  35. package/dist-types/commands/ListImagePackagesCommand.d.ts +6 -0
  36. package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +6 -0
  37. package/dist-types/commands/ListImagePipelinesCommand.d.ts +6 -0
  38. package/dist-types/commands/ListImageRecipesCommand.d.ts +6 -0
  39. package/dist-types/commands/ListImagesCommand.d.ts +6 -0
  40. package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +6 -0
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
  42. package/dist-types/commands/PutComponentPolicyCommand.d.ts +6 -0
  43. package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +6 -0
  44. package/dist-types/commands/PutImagePolicyCommand.d.ts +6 -0
  45. package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +6 -0
  46. package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +6 -0
  47. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  48. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  49. package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +6 -0
  50. package/dist-types/commands/UpdateImagePipelineCommand.d.ts +6 -0
  51. package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +6 -0
  52. package/package.json +17 -17
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { DeleteInfrastructureConfigurationRequest, DeleteInfrastructureConfigurationResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link DeleteInfrastructureConfigurationCommand}.
8
+ */
6
9
  export interface DeleteInfrastructureConfigurationCommandInput extends DeleteInfrastructureConfigurationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link DeleteInfrastructureConfigurationCommand}.
13
+ */
8
14
  export interface DeleteInfrastructureConfigurationCommandOutput extends DeleteInfrastructureConfigurationResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetComponentRequest, GetComponentResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetComponentCommand}.
8
+ */
6
9
  export interface GetComponentCommandInput extends GetComponentRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetComponentCommand}.
13
+ */
8
14
  export interface GetComponentCommandOutput extends GetComponentResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetComponentPolicyRequest, GetComponentPolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetComponentPolicyCommand}.
8
+ */
6
9
  export interface GetComponentPolicyCommandInput extends GetComponentPolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetComponentPolicyCommand}.
13
+ */
8
14
  export interface GetComponentPolicyCommandOutput extends GetComponentPolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetContainerRecipeRequest, GetContainerRecipeResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetContainerRecipeCommand}.
8
+ */
6
9
  export interface GetContainerRecipeCommandInput extends GetContainerRecipeRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetContainerRecipeCommand}.
13
+ */
8
14
  export interface GetContainerRecipeCommandOutput extends GetContainerRecipeResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetContainerRecipePolicyRequest, GetContainerRecipePolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetContainerRecipePolicyCommand}.
8
+ */
6
9
  export interface GetContainerRecipePolicyCommandInput extends GetContainerRecipePolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetContainerRecipePolicyCommand}.
13
+ */
8
14
  export interface GetContainerRecipePolicyCommandOutput extends GetContainerRecipePolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetDistributionConfigurationRequest, GetDistributionConfigurationResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetDistributionConfigurationCommand}.
8
+ */
6
9
  export interface GetDistributionConfigurationCommandInput extends GetDistributionConfigurationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetDistributionConfigurationCommand}.
13
+ */
8
14
  export interface GetDistributionConfigurationCommandOutput extends GetDistributionConfigurationResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetImageRequest, GetImageResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetImageCommand}.
8
+ */
6
9
  export interface GetImageCommandInput extends GetImageRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetImageCommand}.
13
+ */
8
14
  export interface GetImageCommandOutput extends GetImageResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetImagePipelineRequest, GetImagePipelineResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetImagePipelineCommand}.
8
+ */
6
9
  export interface GetImagePipelineCommandInput extends GetImagePipelineRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetImagePipelineCommand}.
13
+ */
8
14
  export interface GetImagePipelineCommandOutput extends GetImagePipelineResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetImagePolicyRequest, GetImagePolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetImagePolicyCommand}.
8
+ */
6
9
  export interface GetImagePolicyCommandInput extends GetImagePolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetImagePolicyCommand}.
13
+ */
8
14
  export interface GetImagePolicyCommandOutput extends GetImagePolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetImageRecipeRequest, GetImageRecipeResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetImageRecipeCommand}.
8
+ */
6
9
  export interface GetImageRecipeCommandInput extends GetImageRecipeRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetImageRecipeCommand}.
13
+ */
8
14
  export interface GetImageRecipeCommandOutput extends GetImageRecipeResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetImageRecipePolicyRequest, GetImageRecipePolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetImageRecipePolicyCommand}.
8
+ */
6
9
  export interface GetImageRecipePolicyCommandInput extends GetImageRecipePolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetImageRecipePolicyCommand}.
13
+ */
8
14
  export interface GetImageRecipePolicyCommandOutput extends GetImageRecipePolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { GetInfrastructureConfigurationRequest, GetInfrastructureConfigurationResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link GetInfrastructureConfigurationCommand}.
8
+ */
6
9
  export interface GetInfrastructureConfigurationCommandInput extends GetInfrastructureConfigurationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link GetInfrastructureConfigurationCommand}.
13
+ */
8
14
  export interface GetInfrastructureConfigurationCommandOutput extends GetInfrastructureConfigurationResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ImportComponentRequest, ImportComponentResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ImportComponentCommand}.
8
+ */
6
9
  export interface ImportComponentCommandInput extends ImportComponentRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ImportComponentCommand}.
13
+ */
8
14
  export interface ImportComponentCommandOutput extends ImportComponentResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ImportVmImageRequest, ImportVmImageResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ImportVmImageCommand}.
8
+ */
6
9
  export interface ImportVmImageCommandInput extends ImportVmImageRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ImportVmImageCommand}.
13
+ */
8
14
  export interface ImportVmImageCommandOutput extends ImportVmImageResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListComponentBuildVersionsRequest, ListComponentBuildVersionsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListComponentBuildVersionsCommand}.
8
+ */
6
9
  export interface ListComponentBuildVersionsCommandInput extends ListComponentBuildVersionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListComponentBuildVersionsCommand}.
13
+ */
8
14
  export interface ListComponentBuildVersionsCommandOutput extends ListComponentBuildVersionsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListComponentsCommand}.
8
+ */
6
9
  export interface ListComponentsCommandInput extends ListComponentsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListComponentsCommand}.
13
+ */
8
14
  export interface ListComponentsCommandOutput extends ListComponentsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListContainerRecipesRequest, ListContainerRecipesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListContainerRecipesCommand}.
8
+ */
6
9
  export interface ListContainerRecipesCommandInput extends ListContainerRecipesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListContainerRecipesCommand}.
13
+ */
8
14
  export interface ListContainerRecipesCommandOutput extends ListContainerRecipesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListDistributionConfigurationsRequest, ListDistributionConfigurationsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListDistributionConfigurationsCommand}.
8
+ */
6
9
  export interface ListDistributionConfigurationsCommandInput extends ListDistributionConfigurationsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListDistributionConfigurationsCommand}.
13
+ */
8
14
  export interface ListDistributionConfigurationsCommandOutput extends ListDistributionConfigurationsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListImageBuildVersionsRequest, ListImageBuildVersionsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListImageBuildVersionsCommand}.
8
+ */
6
9
  export interface ListImageBuildVersionsCommandInput extends ListImageBuildVersionsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListImageBuildVersionsCommand}.
13
+ */
8
14
  export interface ListImageBuildVersionsCommandOutput extends ListImageBuildVersionsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListImagePackagesRequest, ListImagePackagesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListImagePackagesCommand}.
8
+ */
6
9
  export interface ListImagePackagesCommandInput extends ListImagePackagesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListImagePackagesCommand}.
13
+ */
8
14
  export interface ListImagePackagesCommandOutput extends ListImagePackagesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListImagePipelineImagesRequest, ListImagePipelineImagesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListImagePipelineImagesCommand}.
8
+ */
6
9
  export interface ListImagePipelineImagesCommandInput extends ListImagePipelineImagesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListImagePipelineImagesCommand}.
13
+ */
8
14
  export interface ListImagePipelineImagesCommandOutput extends ListImagePipelineImagesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListImagePipelinesRequest, ListImagePipelinesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListImagePipelinesCommand}.
8
+ */
6
9
  export interface ListImagePipelinesCommandInput extends ListImagePipelinesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListImagePipelinesCommand}.
13
+ */
8
14
  export interface ListImagePipelinesCommandOutput extends ListImagePipelinesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListImageRecipesRequest, ListImageRecipesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListImageRecipesCommand}.
8
+ */
6
9
  export interface ListImageRecipesCommandInput extends ListImageRecipesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListImageRecipesCommand}.
13
+ */
8
14
  export interface ListImageRecipesCommandOutput extends ListImageRecipesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListImagesRequest, ListImagesResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListImagesCommand}.
8
+ */
6
9
  export interface ListImagesCommandInput extends ListImagesRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListImagesCommand}.
13
+ */
8
14
  export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListInfrastructureConfigurationsRequest, ListInfrastructureConfigurationsResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListInfrastructureConfigurationsCommand}.
8
+ */
6
9
  export interface ListInfrastructureConfigurationsCommandInput extends ListInfrastructureConfigurationsRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListInfrastructureConfigurationsCommand}.
13
+ */
8
14
  export interface ListInfrastructureConfigurationsCommandOutput extends ListInfrastructureConfigurationsResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link ListTagsForResourceCommand}.
8
+ */
6
9
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link ListTagsForResourceCommand}.
13
+ */
8
14
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { PutComponentPolicyRequest, PutComponentPolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link PutComponentPolicyCommand}.
8
+ */
6
9
  export interface PutComponentPolicyCommandInput extends PutComponentPolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link PutComponentPolicyCommand}.
13
+ */
8
14
  export interface PutComponentPolicyCommandOutput extends PutComponentPolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { PutContainerRecipePolicyRequest, PutContainerRecipePolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link PutContainerRecipePolicyCommand}.
8
+ */
6
9
  export interface PutContainerRecipePolicyCommandInput extends PutContainerRecipePolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link PutContainerRecipePolicyCommand}.
13
+ */
8
14
  export interface PutContainerRecipePolicyCommandOutput extends PutContainerRecipePolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { PutImagePolicyRequest, PutImagePolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link PutImagePolicyCommand}.
8
+ */
6
9
  export interface PutImagePolicyCommandInput extends PutImagePolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link PutImagePolicyCommand}.
13
+ */
8
14
  export interface PutImagePolicyCommandOutput extends PutImagePolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { PutImageRecipePolicyRequest, PutImageRecipePolicyResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link PutImageRecipePolicyCommand}.
8
+ */
6
9
  export interface PutImageRecipePolicyCommandInput extends PutImageRecipePolicyRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link PutImageRecipePolicyCommand}.
13
+ */
8
14
  export interface PutImageRecipePolicyCommandOutput extends PutImageRecipePolicyResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { StartImagePipelineExecutionRequest, StartImagePipelineExecutionResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link StartImagePipelineExecutionCommand}.
8
+ */
6
9
  export interface StartImagePipelineExecutionCommandInput extends StartImagePipelineExecutionRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link StartImagePipelineExecutionCommand}.
13
+ */
8
14
  export interface StartImagePipelineExecutionCommandOutput extends StartImagePipelineExecutionResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link TagResourceCommand}.
8
+ */
6
9
  export interface TagResourceCommandInput extends TagResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link TagResourceCommand}.
13
+ */
8
14
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link UntagResourceCommand}.
8
+ */
6
9
  export interface UntagResourceCommandInput extends UntagResourceRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link UntagResourceCommand}.
13
+ */
8
14
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { UpdateDistributionConfigurationRequest, UpdateDistributionConfigurationResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link UpdateDistributionConfigurationCommand}.
8
+ */
6
9
  export interface UpdateDistributionConfigurationCommandInput extends UpdateDistributionConfigurationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link UpdateDistributionConfigurationCommand}.
13
+ */
8
14
  export interface UpdateDistributionConfigurationCommandOutput extends UpdateDistributionConfigurationResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { UpdateImagePipelineRequest, UpdateImagePipelineResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link UpdateImagePipelineCommand}.
8
+ */
6
9
  export interface UpdateImagePipelineCommandInput extends UpdateImagePipelineRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link UpdateImagePipelineCommand}.
13
+ */
8
14
  export interface UpdateImagePipelineCommandOutput extends UpdateImagePipelineResponse, __MetadataBearer {
9
15
  }
10
16
  /**
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient";
5
5
  import { UpdateInfrastructureConfigurationRequest, UpdateInfrastructureConfigurationResponse } from "../models/models_0";
6
+ /**
7
+ * The input for {@link UpdateInfrastructureConfigurationCommand}.
8
+ */
6
9
  export interface UpdateInfrastructureConfigurationCommandInput extends UpdateInfrastructureConfigurationRequest {
7
10
  }
11
+ /**
12
+ * The output of {@link UpdateInfrastructureConfigurationCommand}.
13
+ */
8
14
  export interface UpdateInfrastructureConfigurationCommandOutput extends UpdateInfrastructureConfigurationResponse, __MetadataBearer {
9
15
  }
10
16
  /**