@aws-sdk/client-imagebuilder 3.321.1 → 3.326.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CancelImageCreationCommand.d.ts +8 -0
- package/dist-types/commands/CreateComponentCommand.d.ts +8 -0
- package/dist-types/commands/CreateContainerRecipeCommand.d.ts +8 -0
- package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/CreateImageCommand.d.ts +8 -0
- package/dist-types/commands/CreateImagePipelineCommand.d.ts +8 -0
- package/dist-types/commands/CreateImageRecipeCommand.d.ts +8 -0
- package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +7 -0
- package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +7 -0
- package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/DeleteImageCommand.d.ts +7 -0
- package/dist-types/commands/DeleteImagePipelineCommand.d.ts +7 -0
- package/dist-types/commands/DeleteImageRecipeCommand.d.ts +7 -0
- package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/GetComponentCommand.d.ts +42 -0
- package/dist-types/commands/GetComponentPolicyCommand.d.ts +7 -0
- package/dist-types/commands/GetContainerRecipeCommand.d.ts +61 -0
- package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +7 -0
- package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +88 -0
- package/dist-types/commands/GetImageCommand.d.ts +283 -0
- package/dist-types/commands/GetImagePipelineCommand.d.ts +43 -0
- package/dist-types/commands/GetImagePolicyCommand.d.ts +7 -0
- package/dist-types/commands/GetImageRecipeCommand.d.ts +57 -0
- package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +7 -0
- package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +40 -0
- package/dist-types/commands/GetWorkflowExecutionCommand.d.ts +18 -0
- package/dist-types/commands/GetWorkflowStepExecutionCommand.d.ts +22 -0
- package/dist-types/commands/ImportComponentCommand.d.ts +8 -0
- package/dist-types/commands/ImportVmImageCommand.d.ts +8 -0
- package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +32 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +22 -0
- package/dist-types/commands/ListContainerRecipesCommand.d.ts +21 -0
- package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +22 -0
- package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +51 -0
- package/dist-types/commands/ListImagePackagesCommand.d.ts +13 -0
- package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +51 -0
- package/dist-types/commands/ListImagePipelinesCommand.d.ts +46 -0
- package/dist-types/commands/ListImageRecipesCommand.d.ts +20 -0
- package/dist-types/commands/ListImageScanFindingAggregationsCommand.d.ts +48 -0
- package/dist-types/commands/ListImageScanFindingsCommand.d.ts +79 -0
- package/dist-types/commands/ListImagesCommand.d.ts +21 -0
- package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +26 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListWorkflowExecutionsCommand.d.ts +24 -0
- package/dist-types/commands/ListWorkflowStepExecutionsCommand.d.ts +26 -0
- package/dist-types/commands/PutComponentPolicyCommand.d.ts +7 -0
- package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +7 -0
- package/dist-types/commands/PutImagePolicyCommand.d.ts +7 -0
- package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +7 -0
- package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +8 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/UpdateImagePipelineCommand.d.ts +8 -0
- package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +8 -0
- package/package.json +16 -16
|
@@ -43,6 +43,36 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new ListComponentBuildVersionsCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // ListComponentBuildVersionsResponse
|
|
47
|
+
* // requestId: "STRING_VALUE",
|
|
48
|
+
* // componentSummaryList: [ // ComponentSummaryList
|
|
49
|
+
* // { // ComponentSummary
|
|
50
|
+
* // arn: "STRING_VALUE",
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // version: "STRING_VALUE",
|
|
53
|
+
* // platform: "Windows" || "Linux",
|
|
54
|
+
* // supportedOsVersions: [ // OsVersionList
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // state: { // ComponentState
|
|
58
|
+
* // status: "DEPRECATED",
|
|
59
|
+
* // reason: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // type: "BUILD" || "TEST",
|
|
62
|
+
* // owner: "STRING_VALUE",
|
|
63
|
+
* // description: "STRING_VALUE",
|
|
64
|
+
* // changeDescription: "STRING_VALUE",
|
|
65
|
+
* // dateCreated: "STRING_VALUE",
|
|
66
|
+
* // tags: { // TagMap
|
|
67
|
+
* // "<keys>": "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // publisher: "STRING_VALUE",
|
|
70
|
+
* // obfuscate: true || false,
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // nextToken: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
46
76
|
* ```
|
|
47
77
|
*
|
|
48
78
|
* @param ListComponentBuildVersionsCommandInput - {@link ListComponentBuildVersionsCommandInput}
|
|
@@ -75,6 +105,8 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu
|
|
|
75
105
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
76
106
|
* <p>The service is unable to process your request at this time.</p>
|
|
77
107
|
*
|
|
108
|
+
* @throws {@link ImagebuilderServiceException}
|
|
109
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
78
110
|
*
|
|
79
111
|
*/
|
|
80
112
|
export declare class ListComponentBuildVersionsCommand extends $Command<ListComponentBuildVersionsCommandInput, ListComponentBuildVersionsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -53,6 +53,26 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new ListComponentsCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // ListComponentsResponse
|
|
57
|
+
* // requestId: "STRING_VALUE",
|
|
58
|
+
* // componentVersionList: [ // ComponentVersionList
|
|
59
|
+
* // { // ComponentVersion
|
|
60
|
+
* // arn: "STRING_VALUE",
|
|
61
|
+
* // name: "STRING_VALUE",
|
|
62
|
+
* // version: "STRING_VALUE",
|
|
63
|
+
* // description: "STRING_VALUE",
|
|
64
|
+
* // platform: "Windows" || "Linux",
|
|
65
|
+
* // supportedOsVersions: [ // OsVersionList
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // type: "BUILD" || "TEST",
|
|
69
|
+
* // owner: "STRING_VALUE",
|
|
70
|
+
* // dateCreated: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // nextToken: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
56
76
|
* ```
|
|
57
77
|
*
|
|
58
78
|
* @param ListComponentsCommandInput - {@link ListComponentsCommandInput}
|
|
@@ -85,6 +105,8 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
85
105
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
86
106
|
* <p>The service is unable to process your request at this time.</p>
|
|
87
107
|
*
|
|
108
|
+
* @throws {@link ImagebuilderServiceException}
|
|
109
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
88
110
|
*
|
|
89
111
|
*/
|
|
90
112
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -41,6 +41,25 @@ export interface ListContainerRecipesCommandOutput extends ListContainerRecipesR
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListContainerRecipesCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListContainerRecipesResponse
|
|
45
|
+
* // requestId: "STRING_VALUE",
|
|
46
|
+
* // containerRecipeSummaryList: [ // ContainerRecipeSummaryList
|
|
47
|
+
* // { // ContainerRecipeSummary
|
|
48
|
+
* // arn: "STRING_VALUE",
|
|
49
|
+
* // containerType: "DOCKER",
|
|
50
|
+
* // name: "STRING_VALUE",
|
|
51
|
+
* // platform: "Windows" || "Linux",
|
|
52
|
+
* // owner: "STRING_VALUE",
|
|
53
|
+
* // parentImage: "STRING_VALUE",
|
|
54
|
+
* // dateCreated: "STRING_VALUE",
|
|
55
|
+
* // tags: { // TagMap
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // nextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
44
63
|
* ```
|
|
45
64
|
*
|
|
46
65
|
* @param ListContainerRecipesCommandInput - {@link ListContainerRecipesCommandInput}
|
|
@@ -73,6 +92,8 @@ export interface ListContainerRecipesCommandOutput extends ListContainerRecipesR
|
|
|
73
92
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
74
93
|
* <p>The service is unable to process your request at this time.</p>
|
|
75
94
|
*
|
|
95
|
+
* @throws {@link ImagebuilderServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
76
97
|
*
|
|
77
98
|
*/
|
|
78
99
|
export declare class ListContainerRecipesCommand extends $Command<ListContainerRecipesCommandInput, ListContainerRecipesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -40,6 +40,26 @@ export interface ListDistributionConfigurationsCommandOutput extends ListDistrib
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListDistributionConfigurationsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListDistributionConfigurationsResponse
|
|
44
|
+
* // requestId: "STRING_VALUE",
|
|
45
|
+
* // distributionConfigurationSummaryList: [ // DistributionConfigurationSummaryList
|
|
46
|
+
* // { // DistributionConfigurationSummary
|
|
47
|
+
* // arn: "STRING_VALUE",
|
|
48
|
+
* // name: "STRING_VALUE",
|
|
49
|
+
* // description: "STRING_VALUE",
|
|
50
|
+
* // dateCreated: "STRING_VALUE",
|
|
51
|
+
* // dateUpdated: "STRING_VALUE",
|
|
52
|
+
* // tags: { // TagMap
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // regions: [ // RegionList
|
|
56
|
+
* // "STRING_VALUE",
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // nextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
43
63
|
* ```
|
|
44
64
|
*
|
|
45
65
|
* @param ListDistributionConfigurationsCommandInput - {@link ListDistributionConfigurationsCommandInput}
|
|
@@ -72,6 +92,8 @@ export interface ListDistributionConfigurationsCommandOutput extends ListDistrib
|
|
|
72
92
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
73
93
|
* <p>The service is unable to process your request at this time.</p>
|
|
74
94
|
*
|
|
95
|
+
* @throws {@link ImagebuilderServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
75
97
|
*
|
|
76
98
|
*/
|
|
77
99
|
export declare class ListDistributionConfigurationsCommand extends $Command<ListDistributionConfigurationsCommandInput, ListDistributionConfigurationsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -41,6 +41,55 @@ export interface ListImageBuildVersionsCommandOutput extends ListImageBuildVersi
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListImageBuildVersionsCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListImageBuildVersionsResponse
|
|
45
|
+
* // requestId: "STRING_VALUE",
|
|
46
|
+
* // imageSummaryList: [ // ImageSummaryList
|
|
47
|
+
* // { // ImageSummary
|
|
48
|
+
* // arn: "STRING_VALUE",
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // type: "AMI" || "DOCKER",
|
|
51
|
+
* // version: "STRING_VALUE",
|
|
52
|
+
* // platform: "Windows" || "Linux",
|
|
53
|
+
* // osVersion: "STRING_VALUE",
|
|
54
|
+
* // state: { // ImageState
|
|
55
|
+
* // status: "PENDING" || "CREATING" || "BUILDING" || "TESTING" || "DISTRIBUTING" || "INTEGRATING" || "AVAILABLE" || "CANCELLED" || "FAILED" || "DEPRECATED" || "DELETED",
|
|
56
|
+
* // reason: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // owner: "STRING_VALUE",
|
|
59
|
+
* // dateCreated: "STRING_VALUE",
|
|
60
|
+
* // outputResources: { // OutputResources
|
|
61
|
+
* // amis: [ // AmiList
|
|
62
|
+
* // { // Ami
|
|
63
|
+
* // region: "STRING_VALUE",
|
|
64
|
+
* // image: "STRING_VALUE",
|
|
65
|
+
* // name: "STRING_VALUE",
|
|
66
|
+
* // description: "STRING_VALUE",
|
|
67
|
+
* // state: {
|
|
68
|
+
* // status: "PENDING" || "CREATING" || "BUILDING" || "TESTING" || "DISTRIBUTING" || "INTEGRATING" || "AVAILABLE" || "CANCELLED" || "FAILED" || "DEPRECATED" || "DELETED",
|
|
69
|
+
* // reason: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // accountId: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // containers: [ // ContainerList
|
|
75
|
+
* // { // Container
|
|
76
|
+
* // region: "STRING_VALUE",
|
|
77
|
+
* // imageUris: [ // StringList
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // },
|
|
83
|
+
* // tags: { // TagMap
|
|
84
|
+
* // "<keys>": "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // buildType: "USER_INITIATED" || "SCHEDULED" || "IMPORT",
|
|
87
|
+
* // imageSource: "AMAZON_MANAGED" || "AWS_MARKETPLACE" || "IMPORTED" || "CUSTOM",
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // nextToken: "STRING_VALUE",
|
|
91
|
+
* // };
|
|
92
|
+
*
|
|
44
93
|
* ```
|
|
45
94
|
*
|
|
46
95
|
* @param ListImageBuildVersionsCommandInput - {@link ListImageBuildVersionsCommandInput}
|
|
@@ -73,6 +122,8 @@ export interface ListImageBuildVersionsCommandOutput extends ListImageBuildVersi
|
|
|
73
122
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
74
123
|
* <p>The service is unable to process your request at this time.</p>
|
|
75
124
|
*
|
|
125
|
+
* @throws {@link ImagebuilderServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
76
127
|
*
|
|
77
128
|
*/
|
|
78
129
|
export declare class ListImageBuildVersionsCommand extends $Command<ListImageBuildVersionsCommandInput, ListImageBuildVersionsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -34,6 +34,17 @@ export interface ListImagePackagesCommandOutput extends ListImagePackagesRespons
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListImagePackagesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListImagePackagesResponse
|
|
38
|
+
* // requestId: "STRING_VALUE",
|
|
39
|
+
* // imagePackageList: [ // ImagePackageList
|
|
40
|
+
* // { // ImagePackage
|
|
41
|
+
* // packageName: "STRING_VALUE",
|
|
42
|
+
* // packageVersion: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // nextToken: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
37
48
|
* ```
|
|
38
49
|
*
|
|
39
50
|
* @param ListImagePackagesCommandInput - {@link ListImagePackagesCommandInput}
|
|
@@ -69,6 +80,8 @@ export interface ListImagePackagesCommandOutput extends ListImagePackagesRespons
|
|
|
69
80
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
70
81
|
* <p>The service is unable to process your request at this time.</p>
|
|
71
82
|
*
|
|
83
|
+
* @throws {@link ImagebuilderServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
72
85
|
*
|
|
73
86
|
*/
|
|
74
87
|
export declare class ListImagePackagesCommand extends $Command<ListImagePackagesCommandInput, ListImagePackagesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -41,6 +41,55 @@ export interface ListImagePipelineImagesCommandOutput extends ListImagePipelineI
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListImagePipelineImagesCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListImagePipelineImagesResponse
|
|
45
|
+
* // requestId: "STRING_VALUE",
|
|
46
|
+
* // imageSummaryList: [ // ImageSummaryList
|
|
47
|
+
* // { // ImageSummary
|
|
48
|
+
* // arn: "STRING_VALUE",
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // type: "AMI" || "DOCKER",
|
|
51
|
+
* // version: "STRING_VALUE",
|
|
52
|
+
* // platform: "Windows" || "Linux",
|
|
53
|
+
* // osVersion: "STRING_VALUE",
|
|
54
|
+
* // state: { // ImageState
|
|
55
|
+
* // status: "PENDING" || "CREATING" || "BUILDING" || "TESTING" || "DISTRIBUTING" || "INTEGRATING" || "AVAILABLE" || "CANCELLED" || "FAILED" || "DEPRECATED" || "DELETED",
|
|
56
|
+
* // reason: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // owner: "STRING_VALUE",
|
|
59
|
+
* // dateCreated: "STRING_VALUE",
|
|
60
|
+
* // outputResources: { // OutputResources
|
|
61
|
+
* // amis: [ // AmiList
|
|
62
|
+
* // { // Ami
|
|
63
|
+
* // region: "STRING_VALUE",
|
|
64
|
+
* // image: "STRING_VALUE",
|
|
65
|
+
* // name: "STRING_VALUE",
|
|
66
|
+
* // description: "STRING_VALUE",
|
|
67
|
+
* // state: {
|
|
68
|
+
* // status: "PENDING" || "CREATING" || "BUILDING" || "TESTING" || "DISTRIBUTING" || "INTEGRATING" || "AVAILABLE" || "CANCELLED" || "FAILED" || "DEPRECATED" || "DELETED",
|
|
69
|
+
* // reason: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // accountId: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // containers: [ // ContainerList
|
|
75
|
+
* // { // Container
|
|
76
|
+
* // region: "STRING_VALUE",
|
|
77
|
+
* // imageUris: [ // StringList
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // },
|
|
83
|
+
* // tags: { // TagMap
|
|
84
|
+
* // "<keys>": "STRING_VALUE",
|
|
85
|
+
* // },
|
|
86
|
+
* // buildType: "USER_INITIATED" || "SCHEDULED" || "IMPORT",
|
|
87
|
+
* // imageSource: "AMAZON_MANAGED" || "AWS_MARKETPLACE" || "IMPORTED" || "CUSTOM",
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // nextToken: "STRING_VALUE",
|
|
91
|
+
* // };
|
|
92
|
+
*
|
|
44
93
|
* ```
|
|
45
94
|
*
|
|
46
95
|
* @param ListImagePipelineImagesCommandInput - {@link ListImagePipelineImagesCommandInput}
|
|
@@ -76,6 +125,8 @@ export interface ListImagePipelineImagesCommandOutput extends ListImagePipelineI
|
|
|
76
125
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
77
126
|
* <p>The service is unable to process your request at this time.</p>
|
|
78
127
|
*
|
|
128
|
+
* @throws {@link ImagebuilderServiceException}
|
|
129
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
79
130
|
*
|
|
80
131
|
*/
|
|
81
132
|
export declare class ListImagePipelineImagesCommand extends $Command<ListImagePipelineImagesCommandInput, ListImagePipelineImagesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -40,6 +40,50 @@ export interface ListImagePipelinesCommandOutput extends ListImagePipelinesRespo
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListImagePipelinesCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListImagePipelinesResponse
|
|
44
|
+
* // requestId: "STRING_VALUE",
|
|
45
|
+
* // imagePipelineList: [ // ImagePipelineList
|
|
46
|
+
* // { // ImagePipeline
|
|
47
|
+
* // arn: "STRING_VALUE",
|
|
48
|
+
* // name: "STRING_VALUE",
|
|
49
|
+
* // description: "STRING_VALUE",
|
|
50
|
+
* // platform: "Windows" || "Linux",
|
|
51
|
+
* // enhancedImageMetadataEnabled: true || false,
|
|
52
|
+
* // imageRecipeArn: "STRING_VALUE",
|
|
53
|
+
* // containerRecipeArn: "STRING_VALUE",
|
|
54
|
+
* // infrastructureConfigurationArn: "STRING_VALUE",
|
|
55
|
+
* // distributionConfigurationArn: "STRING_VALUE",
|
|
56
|
+
* // imageTestsConfiguration: { // ImageTestsConfiguration
|
|
57
|
+
* // imageTestsEnabled: true || false,
|
|
58
|
+
* // timeoutMinutes: Number("int"),
|
|
59
|
+
* // },
|
|
60
|
+
* // schedule: { // Schedule
|
|
61
|
+
* // scheduleExpression: "STRING_VALUE",
|
|
62
|
+
* // timezone: "STRING_VALUE",
|
|
63
|
+
* // pipelineExecutionStartCondition: "EXPRESSION_MATCH_ONLY" || "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE",
|
|
64
|
+
* // },
|
|
65
|
+
* // status: "DISABLED" || "ENABLED",
|
|
66
|
+
* // dateCreated: "STRING_VALUE",
|
|
67
|
+
* // dateUpdated: "STRING_VALUE",
|
|
68
|
+
* // dateLastRun: "STRING_VALUE",
|
|
69
|
+
* // dateNextRun: "STRING_VALUE",
|
|
70
|
+
* // tags: { // TagMap
|
|
71
|
+
* // "<keys>": "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // imageScanningConfiguration: { // ImageScanningConfiguration
|
|
74
|
+
* // imageScanningEnabled: true || false,
|
|
75
|
+
* // ecrConfiguration: { // EcrConfiguration
|
|
76
|
+
* // repositoryName: "STRING_VALUE",
|
|
77
|
+
* // containerTags: [ // StringList
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // nextToken: "STRING_VALUE",
|
|
85
|
+
* // };
|
|
86
|
+
*
|
|
43
87
|
* ```
|
|
44
88
|
*
|
|
45
89
|
* @param ListImagePipelinesCommandInput - {@link ListImagePipelinesCommandInput}
|
|
@@ -72,6 +116,8 @@ export interface ListImagePipelinesCommandOutput extends ListImagePipelinesRespo
|
|
|
72
116
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
73
117
|
* <p>The service is unable to process your request at this time.</p>
|
|
74
118
|
*
|
|
119
|
+
* @throws {@link ImagebuilderServiceException}
|
|
120
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
75
121
|
*
|
|
76
122
|
*/
|
|
77
123
|
export declare class ListImagePipelinesCommand extends $Command<ListImagePipelinesCommandInput, ListImagePipelinesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -41,6 +41,24 @@ export interface ListImageRecipesCommandOutput extends ListImageRecipesResponse,
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListImageRecipesCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListImageRecipesResponse
|
|
45
|
+
* // requestId: "STRING_VALUE",
|
|
46
|
+
* // imageRecipeSummaryList: [ // ImageRecipeSummaryList
|
|
47
|
+
* // { // ImageRecipeSummary
|
|
48
|
+
* // arn: "STRING_VALUE",
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // platform: "Windows" || "Linux",
|
|
51
|
+
* // owner: "STRING_VALUE",
|
|
52
|
+
* // parentImage: "STRING_VALUE",
|
|
53
|
+
* // dateCreated: "STRING_VALUE",
|
|
54
|
+
* // tags: { // TagMap
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // nextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
44
62
|
* ```
|
|
45
63
|
*
|
|
46
64
|
* @param ListImageRecipesCommandInput - {@link ListImageRecipesCommandInput}
|
|
@@ -73,6 +91,8 @@ export interface ListImageRecipesCommandOutput extends ListImageRecipesResponse,
|
|
|
73
91
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
74
92
|
* <p>The service is unable to process your request at this time.</p>
|
|
75
93
|
*
|
|
94
|
+
* @throws {@link ImagebuilderServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
76
96
|
*
|
|
77
97
|
*/
|
|
78
98
|
export declare class ListImageRecipesCommand extends $Command<ListImageRecipesCommandInput, ListImageRecipesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -64,6 +64,52 @@ export interface ListImageScanFindingAggregationsCommandOutput extends ListImage
|
|
|
64
64
|
* };
|
|
65
65
|
* const command = new ListImageScanFindingAggregationsCommand(input);
|
|
66
66
|
* const response = await client.send(command);
|
|
67
|
+
* // { // ListImageScanFindingAggregationsResponse
|
|
68
|
+
* // requestId: "STRING_VALUE",
|
|
69
|
+
* // aggregationType: "STRING_VALUE",
|
|
70
|
+
* // responses: [ // ImageScanFindingAggregationsList
|
|
71
|
+
* // { // ImageScanFindingAggregation
|
|
72
|
+
* // accountAggregation: { // AccountAggregation
|
|
73
|
+
* // accountId: "STRING_VALUE",
|
|
74
|
+
* // severityCounts: { // SeverityCounts
|
|
75
|
+
* // all: Number("long"),
|
|
76
|
+
* // critical: Number("long"),
|
|
77
|
+
* // high: Number("long"),
|
|
78
|
+
* // medium: Number("long"),
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // imageAggregation: { // ImageAggregation
|
|
82
|
+
* // imageBuildVersionArn: "STRING_VALUE",
|
|
83
|
+
* // severityCounts: {
|
|
84
|
+
* // all: Number("long"),
|
|
85
|
+
* // critical: Number("long"),
|
|
86
|
+
* // high: Number("long"),
|
|
87
|
+
* // medium: Number("long"),
|
|
88
|
+
* // },
|
|
89
|
+
* // },
|
|
90
|
+
* // imagePipelineAggregation: { // ImagePipelineAggregation
|
|
91
|
+
* // imagePipelineArn: "STRING_VALUE",
|
|
92
|
+
* // severityCounts: {
|
|
93
|
+
* // all: Number("long"),
|
|
94
|
+
* // critical: Number("long"),
|
|
95
|
+
* // high: Number("long"),
|
|
96
|
+
* // medium: Number("long"),
|
|
97
|
+
* // },
|
|
98
|
+
* // },
|
|
99
|
+
* // vulnerabilityIdAggregation: { // VulnerabilityIdAggregation
|
|
100
|
+
* // vulnerabilityId: "STRING_VALUE",
|
|
101
|
+
* // severityCounts: {
|
|
102
|
+
* // all: Number("long"),
|
|
103
|
+
* // critical: Number("long"),
|
|
104
|
+
* // high: Number("long"),
|
|
105
|
+
* // medium: Number("long"),
|
|
106
|
+
* // },
|
|
107
|
+
* // },
|
|
108
|
+
* // },
|
|
109
|
+
* // ],
|
|
110
|
+
* // nextToken: "STRING_VALUE",
|
|
111
|
+
* // };
|
|
112
|
+
*
|
|
67
113
|
* ```
|
|
68
114
|
*
|
|
69
115
|
* @param ListImageScanFindingAggregationsCommandInput - {@link ListImageScanFindingAggregationsCommandInput}
|
|
@@ -96,6 +142,8 @@ export interface ListImageScanFindingAggregationsCommandOutput extends ListImage
|
|
|
96
142
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
97
143
|
* <p>The service is unable to process your request at this time.</p>
|
|
98
144
|
*
|
|
145
|
+
* @throws {@link ImagebuilderServiceException}
|
|
146
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
99
147
|
*
|
|
100
148
|
*/
|
|
101
149
|
export declare class ListImageScanFindingAggregationsCommand extends $Command<ListImageScanFindingAggregationsCommandInput, ListImageScanFindingAggregationsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -40,6 +40,83 @@ export interface ListImageScanFindingsCommandOutput extends ListImageScanFinding
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListImageScanFindingsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListImageScanFindingsResponse
|
|
44
|
+
* // requestId: "STRING_VALUE",
|
|
45
|
+
* // findings: [ // ImageScanFindingsList
|
|
46
|
+
* // { // ImageScanFinding
|
|
47
|
+
* // awsAccountId: "STRING_VALUE",
|
|
48
|
+
* // imageBuildVersionArn: "STRING_VALUE",
|
|
49
|
+
* // imagePipelineArn: "STRING_VALUE",
|
|
50
|
+
* // type: "STRING_VALUE",
|
|
51
|
+
* // description: "STRING_VALUE",
|
|
52
|
+
* // title: "STRING_VALUE",
|
|
53
|
+
* // remediation: { // Remediation
|
|
54
|
+
* // recommendation: { // RemediationRecommendation
|
|
55
|
+
* // text: "STRING_VALUE",
|
|
56
|
+
* // url: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // severity: "STRING_VALUE",
|
|
60
|
+
* // firstObservedAt: new Date("TIMESTAMP"),
|
|
61
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
62
|
+
* // inspectorScore: Number("double"),
|
|
63
|
+
* // inspectorScoreDetails: { // InspectorScoreDetails
|
|
64
|
+
* // adjustedCvss: { // CvssScoreDetails
|
|
65
|
+
* // scoreSource: "STRING_VALUE",
|
|
66
|
+
* // cvssSource: "STRING_VALUE",
|
|
67
|
+
* // version: "STRING_VALUE",
|
|
68
|
+
* // score: Number("double"),
|
|
69
|
+
* // scoringVector: "STRING_VALUE",
|
|
70
|
+
* // adjustments: [ // CvssScoreAdjustmentList
|
|
71
|
+
* // { // CvssScoreAdjustment
|
|
72
|
+
* // metric: "STRING_VALUE",
|
|
73
|
+
* // reason: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // },
|
|
77
|
+
* // },
|
|
78
|
+
* // packageVulnerabilityDetails: { // PackageVulnerabilityDetails
|
|
79
|
+
* // vulnerabilityId: "STRING_VALUE", // required
|
|
80
|
+
* // vulnerablePackages: [ // VulnerablePackageList
|
|
81
|
+
* // { // VulnerablePackage
|
|
82
|
+
* // name: "STRING_VALUE",
|
|
83
|
+
* // version: "STRING_VALUE",
|
|
84
|
+
* // sourceLayerHash: "STRING_VALUE",
|
|
85
|
+
* // epoch: Number("int"),
|
|
86
|
+
* // release: "STRING_VALUE",
|
|
87
|
+
* // arch: "STRING_VALUE",
|
|
88
|
+
* // packageManager: "STRING_VALUE",
|
|
89
|
+
* // filePath: "STRING_VALUE",
|
|
90
|
+
* // fixedInVersion: "STRING_VALUE",
|
|
91
|
+
* // remediation: "STRING_VALUE",
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // source: "STRING_VALUE",
|
|
95
|
+
* // cvss: [ // CvssScoreList
|
|
96
|
+
* // { // CvssScore
|
|
97
|
+
* // baseScore: Number("double"),
|
|
98
|
+
* // scoringVector: "STRING_VALUE",
|
|
99
|
+
* // version: "STRING_VALUE",
|
|
100
|
+
* // source: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // ],
|
|
103
|
+
* // relatedVulnerabilities: [ // VulnerabilityIdList
|
|
104
|
+
* // "STRING_VALUE",
|
|
105
|
+
* // ],
|
|
106
|
+
* // sourceUrl: "STRING_VALUE",
|
|
107
|
+
* // vendorSeverity: "STRING_VALUE",
|
|
108
|
+
* // vendorCreatedAt: new Date("TIMESTAMP"),
|
|
109
|
+
* // vendorUpdatedAt: new Date("TIMESTAMP"),
|
|
110
|
+
* // referenceUrls: [ // NonEmptyStringList
|
|
111
|
+
* // "STRING_VALUE",
|
|
112
|
+
* // ],
|
|
113
|
+
* // },
|
|
114
|
+
* // fixAvailable: "STRING_VALUE",
|
|
115
|
+
* // },
|
|
116
|
+
* // ],
|
|
117
|
+
* // nextToken: "STRING_VALUE",
|
|
118
|
+
* // };
|
|
119
|
+
*
|
|
43
120
|
* ```
|
|
44
121
|
*
|
|
45
122
|
* @param ListImageScanFindingsCommandInput - {@link ListImageScanFindingsCommandInput}
|
|
@@ -72,6 +149,8 @@ export interface ListImageScanFindingsCommandOutput extends ListImageScanFinding
|
|
|
72
149
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
73
150
|
* <p>The service is unable to process your request at this time.</p>
|
|
74
151
|
*
|
|
152
|
+
* @throws {@link ImagebuilderServiceException}
|
|
153
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
75
154
|
*
|
|
76
155
|
*/
|
|
77
156
|
export declare class ListImageScanFindingsCommand extends $Command<ListImageScanFindingsCommandInput, ListImageScanFindingsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -44,6 +44,25 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new ListImagesCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // ListImagesResponse
|
|
48
|
+
* // requestId: "STRING_VALUE",
|
|
49
|
+
* // imageVersionList: [ // ImageVersionList
|
|
50
|
+
* // { // ImageVersion
|
|
51
|
+
* // arn: "STRING_VALUE",
|
|
52
|
+
* // name: "STRING_VALUE",
|
|
53
|
+
* // type: "AMI" || "DOCKER",
|
|
54
|
+
* // version: "STRING_VALUE",
|
|
55
|
+
* // platform: "Windows" || "Linux",
|
|
56
|
+
* // osVersion: "STRING_VALUE",
|
|
57
|
+
* // owner: "STRING_VALUE",
|
|
58
|
+
* // dateCreated: "STRING_VALUE",
|
|
59
|
+
* // buildType: "USER_INITIATED" || "SCHEDULED" || "IMPORT",
|
|
60
|
+
* // imageSource: "AMAZON_MANAGED" || "AWS_MARKETPLACE" || "IMPORTED" || "CUSTOM",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // nextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
47
66
|
* ```
|
|
48
67
|
*
|
|
49
68
|
* @param ListImagesCommandInput - {@link ListImagesCommandInput}
|
|
@@ -76,6 +95,8 @@ export interface ListImagesCommandOutput extends ListImagesResponse, __MetadataB
|
|
|
76
95
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
77
96
|
* <p>The service is unable to process your request at this time.</p>
|
|
78
97
|
*
|
|
98
|
+
* @throws {@link ImagebuilderServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
79
100
|
*
|
|
80
101
|
*/
|
|
81
102
|
export declare class ListImagesCommand extends $Command<ListImagesCommandInput, ListImagesCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -40,6 +40,30 @@ export interface ListInfrastructureConfigurationsCommandOutput extends ListInfra
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new ListInfrastructureConfigurationsCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // ListInfrastructureConfigurationsResponse
|
|
44
|
+
* // requestId: "STRING_VALUE",
|
|
45
|
+
* // infrastructureConfigurationSummaryList: [ // InfrastructureConfigurationSummaryList
|
|
46
|
+
* // { // InfrastructureConfigurationSummary
|
|
47
|
+
* // arn: "STRING_VALUE",
|
|
48
|
+
* // name: "STRING_VALUE",
|
|
49
|
+
* // description: "STRING_VALUE",
|
|
50
|
+
* // dateCreated: "STRING_VALUE",
|
|
51
|
+
* // dateUpdated: "STRING_VALUE",
|
|
52
|
+
* // resourceTags: { // ResourceTagMap
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // tags: { // TagMap
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // instanceTypes: [ // InstanceTypeList
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
61
|
+
* // instanceProfileName: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // nextToken: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
43
67
|
* ```
|
|
44
68
|
*
|
|
45
69
|
* @param ListInfrastructureConfigurationsCommandInput - {@link ListInfrastructureConfigurationsCommandInput}
|
|
@@ -72,6 +96,8 @@ export interface ListInfrastructureConfigurationsCommandOutput extends ListInfra
|
|
|
72
96
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
73
97
|
* <p>The service is unable to process your request at this time.</p>
|
|
74
98
|
*
|
|
99
|
+
* @throws {@link ImagebuilderServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
75
101
|
*
|
|
76
102
|
*/
|
|
77
103
|
export declare class ListInfrastructureConfigurationsCommand extends $Command<ListInfrastructureConfigurationsCommandInput, ListInfrastructureConfigurationsCommandOutput, ImagebuilderClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -50,6 +56,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
50
56
|
* <p>This exception is thrown when the service encounters an unrecoverable
|
|
51
57
|
* exception.</p>
|
|
52
58
|
*
|
|
59
|
+
* @throws {@link ImagebuilderServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Imagebuilder service.</p>
|
|
53
61
|
*
|
|
54
62
|
*/
|
|
55
63
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ImagebuilderClientResolvedConfig> {
|