@aws-sdk/client-imagebuilder 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/Imagebuilder.d.ts +51 -0
- package/dist-types/ImagebuilderClient.d.ts +24 -4
- package/dist-types/commands/CancelImageCreationCommand.d.ts +16 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
- package/dist-types/commands/CreateContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageCommand.d.ts +16 -0
- package/dist-types/commands/CreateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/CreateImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetContainerRecipeCommand.d.ts +16 -0
- package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetImageCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetImageRecipeCommand.d.ts +16 -0
- package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ImportComponentCommand.d.ts +16 -0
- package/dist-types/commands/ImportVmImageCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListContainerRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagePipelinesCommand.d.ts +16 -0
- package/dist-types/commands/ListImageRecipesCommand.d.ts +16 -0
- package/dist-types/commands/ListImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutComponentPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutImagePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +16 -0
- package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +16 -0
- package/dist-types/models/ImagebuilderServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +403 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListComponentBuildVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContainerRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDistributionConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImageBuildVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePipelineImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagePipelinesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImageRecipesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListImagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInfrastructureConfigurationsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListComponentBuildVersionsCommandInput, ListComponentBuildVersionsCommandOutput } from "../commands/ListComponentBuildVersionsCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListComponentBuildVersions(config: ImagebuilderPaginationConfiguration, input: ListComponentBuildVersionsCommandInput, ...additionalArguments: any): Paginator<ListComponentBuildVersionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListComponents(config: ImagebuilderPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListContainerRecipesCommandInput, ListContainerRecipesCommandOutput } from "../commands/ListContainerRecipesCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListContainerRecipes(config: ImagebuilderPaginationConfiguration, input: ListContainerRecipesCommandInput, ...additionalArguments: any): Paginator<ListContainerRecipesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListDistributionConfigurationsCommandInput, ListDistributionConfigurationsCommandOutput } from "../commands/ListDistributionConfigurationsCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListDistributionConfigurations(config: ImagebuilderPaginationConfiguration, input: ListDistributionConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListDistributionConfigurationsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListImageBuildVersionsCommandInput, ListImageBuildVersionsCommandOutput } from "../commands/ListImageBuildVersionsCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListImageBuildVersions(config: ImagebuilderPaginationConfiguration, input: ListImageBuildVersionsCommandInput, ...additionalArguments: any): Paginator<ListImageBuildVersionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListImagePackagesCommandInput, ListImagePackagesCommandOutput } from "../commands/ListImagePackagesCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListImagePackages(config: ImagebuilderPaginationConfiguration, input: ListImagePackagesCommandInput, ...additionalArguments: any): Paginator<ListImagePackagesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListImagePipelineImagesCommandInput, ListImagePipelineImagesCommandOutput } from "../commands/ListImagePipelineImagesCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListImagePipelineImages(config: ImagebuilderPaginationConfiguration, input: ListImagePipelineImagesCommandInput, ...additionalArguments: any): Paginator<ListImagePipelineImagesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListImagePipelinesCommandInput, ListImagePipelinesCommandOutput } from "../commands/ListImagePipelinesCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListImagePipelines(config: ImagebuilderPaginationConfiguration, input: ListImagePipelinesCommandInput, ...additionalArguments: any): Paginator<ListImagePipelinesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListImageRecipesCommandInput, ListImageRecipesCommandOutput } from "../commands/ListImageRecipesCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListImageRecipes(config: ImagebuilderPaginationConfiguration, input: ListImageRecipesCommandInput, ...additionalArguments: any): Paginator<ListImageRecipesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListImagesCommandInput, ListImagesCommandOutput } from "../commands/ListImagesCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListImages(config: ImagebuilderPaginationConfiguration, input: ListImagesCommandInput, ...additionalArguments: any): Paginator<ListImagesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListInfrastructureConfigurationsCommandInput, ListInfrastructureConfigurationsCommandOutput } from "../commands/ListInfrastructureConfigurationsCommand";
|
|
3
3
|
import { ImagebuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListInfrastructureConfigurations(config: ImagebuilderPaginationConfiguration, input: ListInfrastructureConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListInfrastructureConfigurationsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-imagebuilder",
|
|
3
3
|
"description": "AWS SDK for JavaScript Imagebuilder Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|