Skip to content

Commit 2e67698

Browse files
author
awstools
committed
feat(client-outposts): Adding default vCPU information to GetOutpostSupportedInstanceTypes and GetOutpostInstanceTypes responses
1 parent 961af9b commit 2e67698

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstance
4646
* // InstanceTypes: [ // InstanceTypeListDefinition
4747
* // { // InstanceTypeItem
4848
* // InstanceType: "STRING_VALUE",
49+
* // VCPUs: Number("int"),
4950
* // },
5051
* // ],
5152
* // NextToken: "STRING_VALUE",

clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export interface GetOutpostSupportedInstanceTypesCommandOutput
5555
* // InstanceTypes: [ // InstanceTypeListDefinition
5656
* // { // InstanceTypeItem
5757
* // InstanceType: "STRING_VALUE",
58+
* // VCPUs: Number("int"),
5859
* // },
5960
* // ],
6061
* // NextToken: "STRING_VALUE",

clients/client-outposts/src/models/models_0.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1799,6 +1799,12 @@ export interface InstanceTypeItem {
17991799
* @public
18001800
*/
18011801
InstanceType?: string;
1802+
1803+
/**
1804+
* <p>The number of default VCPUs in an instance type.</p>
1805+
* @public
1806+
*/
1807+
VCPUs?: number;
18021808
}
18031809

18041810
/**

codegen/sdk-codegen/aws-models/outposts.json

+9
Original file line numberDiff line numberDiff line change
@@ -2140,6 +2140,12 @@
21402140
"members": {
21412141
"InstanceType": {
21422142
"target": "com.amazonaws.outposts#InstanceType"
2143+
},
2144+
"VCPUs": {
2145+
"target": "com.amazonaws.outposts#VCPUCount",
2146+
"traits": {
2147+
"smithy.api#documentation": "<p>The number of default VCPUs in an instance type.</p>"
2148+
}
21432149
}
21442150
},
21452151
"traits": {
@@ -6019,6 +6025,9 @@
60196025
}
60206026
}
60216027
},
6028+
"com.amazonaws.outposts#VCPUCount": {
6029+
"type": "integer"
6030+
},
60226031
"com.amazonaws.outposts#ValidationException": {
60236032
"type": "structure",
60246033
"members": {

0 commit comments

Comments
 (0)