File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed
clients/client-imagebuilder/src
codegen/sdk-codegen/aws-models Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -1057,6 +1057,7 @@ export interface Imagebuilder {
1057
1057
/**
1058
1058
* @see {@link ListComponentBuildVersionsCommand }
1059
1059
*/
1060
+ listComponentBuildVersions ( ) : Promise < ListComponentBuildVersionsCommandOutput > ;
1060
1061
listComponentBuildVersions (
1061
1062
args : ListComponentBuildVersionsCommandInput ,
1062
1063
options ?: __HttpHandlerOptions
@@ -1125,6 +1126,7 @@ export interface Imagebuilder {
1125
1126
/**
1126
1127
* @see {@link ListImageBuildVersionsCommand }
1127
1128
*/
1129
+ listImageBuildVersions ( ) : Promise < ListImageBuildVersionsCommandOutput > ;
1128
1130
listImageBuildVersions (
1129
1131
args : ListImageBuildVersionsCommandInput ,
1130
1132
options ?: __HttpHandlerOptions
@@ -1365,6 +1367,7 @@ export interface Imagebuilder {
1365
1367
/**
1366
1368
* @see {@link ListWorkflowBuildVersionsCommand }
1367
1369
*/
1370
+ listWorkflowBuildVersions ( ) : Promise < ListWorkflowBuildVersionsCommandOutput > ;
1368
1371
listWorkflowBuildVersions (
1369
1372
args : ListWorkflowBuildVersionsCommandInput ,
1370
1373
options ?: __HttpHandlerOptions
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export interface ListComponentBuildVersionsCommandOutput extends ListComponentBu
39
39
* const config = {}; // type is ImagebuilderClientConfig
40
40
* const client = new ImagebuilderClient(config);
41
41
* const input = { // ListComponentBuildVersionsRequest
42
- * componentVersionArn: "STRING_VALUE", // required
42
+ * componentVersionArn: "STRING_VALUE",
43
43
* maxResults: Number("int"),
44
44
* nextToken: "STRING_VALUE",
45
45
* };
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export interface ListImageBuildVersionsCommandOutput extends ListImageBuildVersi
38
38
* const config = {}; // type is ImagebuilderClientConfig
39
39
* const client = new ImagebuilderClient(config);
40
40
* const input = { // ListImageBuildVersionsRequest
41
- * imageVersionArn: "STRING_VALUE", // required
41
+ * imageVersionArn: "STRING_VALUE",
42
42
* filters: [ // FilterList
43
43
* { // Filter
44
44
* name: "STRING_VALUE",
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export interface ListWorkflowBuildVersionsCommandOutput extends ListWorkflowBuil
38
38
* const config = {}; // type is ImagebuilderClientConfig
39
39
* const client = new ImagebuilderClient(config);
40
40
* const input = { // ListWorkflowBuildVersionsRequest
41
- * workflowVersionArn: "STRING_VALUE", // required
41
+ * workflowVersionArn: "STRING_VALUE",
42
42
* maxResults: Number("int"),
43
43
* nextToken: "STRING_VALUE",
44
44
* };
Original file line number Diff line number Diff line change @@ -6068,7 +6068,7 @@ export interface ListComponentBuildVersionsRequest {
6068
6068
* list.</p>
6069
6069
* @public
6070
6070
*/
6071
- componentVersionArn : string | undefined ;
6071
+ componentVersionArn ? : string | undefined ;
6072
6072
6073
6073
/**
6074
6074
* <p>The maximum items to return in a request.</p>
@@ -6363,7 +6363,7 @@ export interface ListImageBuildVersionsRequest {
6363
6363
* retrieve.</p>
6364
6364
* @public
6365
6365
*/
6366
- imageVersionArn : string | undefined ;
6366
+ imageVersionArn ? : string | undefined ;
6367
6367
6368
6368
/**
6369
6369
* <p>Use the following filters to streamline results:</p>
@@ -8285,7 +8285,7 @@ export interface ListWorkflowBuildVersionsRequest {
8285
8285
* <p>The Amazon Resource Name (ARN) of the workflow resource for which to get a list of build versions.</p>
8286
8286
* @public
8287
8287
*/
8288
- workflowVersionArn : string | undefined ;
8288
+ workflowVersionArn ? : string | undefined ;
8289
8289
8290
8290
/**
8291
8291
* <p>The maximum items to return in a request.</p>
Original file line number Diff line number Diff line change 8414
8414
"componentVersionArn": {
8415
8415
"target": "com.amazonaws.imagebuilder#ComponentVersionArn",
8416
8416
"traits": {
8417
- "smithy.api#documentation": "<p>The component version Amazon Resource Name (ARN) whose versions you want to\n\t\t\tlist.</p>",
8418
- "smithy.api#required": {}
8417
+ "smithy.api#documentation": "<p>The component version Amazon Resource Name (ARN) whose versions you want to\n\t\t\tlist.</p>"
8419
8418
}
8420
8419
},
8421
8420
"maxResults": {
8826
8825
"imageVersionArn": {
8827
8826
"target": "com.amazonaws.imagebuilder#ImageVersionArn",
8828
8827
"traits": {
8829
- "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the image whose build versions you want to\n\t\t\tretrieve.</p>",
8830
- "smithy.api#required": {}
8828
+ "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the image whose build versions you want to\n\t\t\tretrieve.</p>"
8831
8829
}
8832
8830
},
8833
8831
"filters": {
10190
10188
"workflowVersionArn": {
10191
10189
"target": "com.amazonaws.imagebuilder#WorkflowWildcardVersionArn",
10192
10190
"traits": {
10193
- "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the workflow resource for which to get a list of build versions.</p>",
10194
- "smithy.api#required": {}
10191
+ "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the workflow resource for which to get a list of build versions.</p>"
10195
10192
}
10196
10193
},
10197
10194
"maxResults": {
You can’t perform that action at this time.
0 commit comments