Skip to content

Commit 9a28c56

Browse files
Updated API models and rebuilt service gems.
1 parent 455e708 commit 9a28c56

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+3535
-768
lines changed

apis/ec2/2016-11-15/api-2.json

Lines changed: 261 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2266,6 +2266,24 @@
22662266
"input":{"shape":"DescribeCapacityBlockOfferingsRequest"},
22672267
"output":{"shape":"DescribeCapacityBlockOfferingsResult"}
22682268
},
2269+
"DescribeCapacityBlockStatus":{
2270+
"name":"DescribeCapacityBlockStatus",
2271+
"http":{
2272+
"method":"POST",
2273+
"requestUri":"/"
2274+
},
2275+
"input":{"shape":"DescribeCapacityBlockStatusRequest"},
2276+
"output":{"shape":"DescribeCapacityBlockStatusResult"}
2277+
},
2278+
"DescribeCapacityBlocks":{
2279+
"name":"DescribeCapacityBlocks",
2280+
"http":{
2281+
"method":"POST",
2282+
"requestUri":"/"
2283+
},
2284+
"input":{"shape":"DescribeCapacityBlocksRequest"},
2285+
"output":{"shape":"DescribeCapacityBlocksResult"}
2286+
},
22692287
"DescribeCapacityReservationBillingRequests":{
22702288
"name":"DescribeCapacityReservationBillingRequests",
22712289
"http":{
@@ -9563,6 +9581,51 @@
95639581
"locationName":"item"
95649582
}
95659583
},
9584+
"CapacityBlock":{
9585+
"type":"structure",
9586+
"members":{
9587+
"CapacityBlockId":{
9588+
"shape":"CapacityBlockId",
9589+
"locationName":"capacityBlockId"
9590+
},
9591+
"UltraserverType":{
9592+
"shape":"String",
9593+
"locationName":"ultraserverType"
9594+
},
9595+
"AvailabilityZone":{
9596+
"shape":"String",
9597+
"locationName":"availabilityZone"
9598+
},
9599+
"AvailabilityZoneId":{
9600+
"shape":"String",
9601+
"locationName":"availabilityZoneId"
9602+
},
9603+
"CapacityReservationIds":{
9604+
"shape":"CapacityReservationIdSet",
9605+
"locationName":"capacityReservationIdSet"
9606+
},
9607+
"StartDate":{
9608+
"shape":"MillisecondDateTime",
9609+
"locationName":"startDate"
9610+
},
9611+
"EndDate":{
9612+
"shape":"MillisecondDateTime",
9613+
"locationName":"endDate"
9614+
},
9615+
"CreateDate":{
9616+
"shape":"MillisecondDateTime",
9617+
"locationName":"createDate"
9618+
},
9619+
"State":{
9620+
"shape":"CapacityBlockResourceState",
9621+
"locationName":"state"
9622+
},
9623+
"Tags":{
9624+
"shape":"TagList",
9625+
"locationName":"tagSet"
9626+
}
9627+
}
9628+
},
95669629
"CapacityBlockExtension":{
95679630
"type":"structure",
95689631
"members":{
@@ -9695,6 +9758,22 @@
96959758
"payment-succeeded"
96969759
]
96979760
},
9761+
"CapacityBlockId":{"type":"string"},
9762+
"CapacityBlockIds":{
9763+
"type":"list",
9764+
"member":{
9765+
"shape":"CapacityBlockId",
9766+
"locationName":"item"
9767+
}
9768+
},
9769+
"CapacityBlockInterconnectStatus":{
9770+
"type":"string",
9771+
"enum":[
9772+
"ok",
9773+
"impaired",
9774+
"insufficient-data"
9775+
]
9776+
},
96989777
"CapacityBlockOffering":{
96999778
"type":"structure",
97009779
"members":{
@@ -9738,6 +9817,14 @@
97389817
"shape":"CapacityReservationTenancy",
97399818
"locationName":"tenancy"
97409819
},
9820+
"UltraserverType":{
9821+
"shape":"String",
9822+
"locationName":"ultraserverType"
9823+
},
9824+
"UltraserverCount":{
9825+
"shape":"BoxedInteger",
9826+
"locationName":"ultraserverCount"
9827+
},
97419828
"CapacityBlockDurationMinutes":{
97429829
"shape":"Integer",
97439830
"locationName":"capacityBlockDurationMinutes"
@@ -9751,6 +9838,62 @@
97519838
"locationName":"item"
97529839
}
97539840
},
9841+
"CapacityBlockResourceState":{
9842+
"type":"string",
9843+
"enum":[
9844+
"active",
9845+
"expired",
9846+
"unavailable",
9847+
"cancelled",
9848+
"failed",
9849+
"scheduled",
9850+
"payment-pending",
9851+
"payment-failed"
9852+
]
9853+
},
9854+
"CapacityBlockSet":{
9855+
"type":"list",
9856+
"member":{
9857+
"shape":"CapacityBlock",
9858+
"locationName":"item"
9859+
}
9860+
},
9861+
"CapacityBlockStatus":{
9862+
"type":"structure",
9863+
"members":{
9864+
"CapacityBlockId":{
9865+
"shape":"CapacityBlockId",
9866+
"locationName":"capacityBlockId"
9867+
},
9868+
"InterconnectStatus":{
9869+
"shape":"CapacityBlockInterconnectStatus",
9870+
"locationName":"interconnectStatus"
9871+
},
9872+
"TotalCapacity":{
9873+
"shape":"Integer",
9874+
"locationName":"totalCapacity"
9875+
},
9876+
"TotalAvailableCapacity":{
9877+
"shape":"Integer",
9878+
"locationName":"totalAvailableCapacity"
9879+
},
9880+
"TotalUnavailableCapacity":{
9881+
"shape":"Integer",
9882+
"locationName":"totalUnavailableCapacity"
9883+
},
9884+
"CapacityReservationStatuses":{
9885+
"shape":"CapacityReservationStatusSet",
9886+
"locationName":"capacityReservationStatusSet"
9887+
}
9888+
}
9889+
},
9890+
"CapacityBlockStatusSet":{
9891+
"type":"list",
9892+
"member":{
9893+
"shape":"CapacityBlockStatus",
9894+
"locationName":"item"
9895+
}
9896+
},
97549897
"CapacityReservation":{
97559898
"type":"structure",
97569899
"members":{
@@ -9861,6 +10004,10 @@
986110004
"DeliveryPreference":{
986210005
"shape":"CapacityReservationDeliveryPreference",
986310006
"locationName":"deliveryPreference"
10007+
},
10008+
"CapacityBlockId":{
10009+
"shape":"CapacityBlockId",
10010+
"locationName":"capacityBlockId"
986410011
}
986510012
}
986610013
},
@@ -10181,9 +10328,38 @@
1018110328
"payment-failed",
1018210329
"assessing",
1018310330
"delayed",
10184-
"unsupported"
10331+
"unsupported",
10332+
"unavailable"
1018510333
]
1018610334
},
10335+
"CapacityReservationStatus":{
10336+
"type":"structure",
10337+
"members":{
10338+
"CapacityReservationId":{
10339+
"shape":"CapacityReservationId",
10340+
"locationName":"capacityReservationId"
10341+
},
10342+
"TotalCapacity":{
10343+
"shape":"Integer",
10344+
"locationName":"totalCapacity"
10345+
},
10346+
"TotalAvailableCapacity":{
10347+
"shape":"Integer",
10348+
"locationName":"totalAvailableCapacity"
10349+
},
10350+
"TotalUnavailableCapacity":{
10351+
"shape":"Integer",
10352+
"locationName":"totalUnavailableCapacity"
10353+
}
10354+
}
10355+
},
10356+
"CapacityReservationStatusSet":{
10357+
"type":"list",
10358+
"member":{
10359+
"shape":"CapacityReservationStatus",
10360+
"locationName":"item"
10361+
}
10362+
},
1018710363
"CapacityReservationTarget":{
1018810364
"type":"structure",
1018910365
"members":{
@@ -16865,7 +17041,9 @@
1686517041
"EndDateRange":{"shape":"MillisecondDateTime"},
1686617042
"CapacityDurationHours":{"shape":"Integer"},
1686717043
"NextToken":{"shape":"String"},
16868-
"MaxResults":{"shape":"DescribeCapacityBlockOfferingsMaxResults"}
17044+
"MaxResults":{"shape":"DescribeCapacityBlockOfferingsMaxResults"},
17045+
"UltraserverType":{"shape":"String"},
17046+
"UltraserverCount":{"shape":"Integer"}
1686917047
}
1687017048
},
1687117049
"DescribeCapacityBlockOfferingsResult":{
@@ -16881,6 +17059,74 @@
1688117059
}
1688217060
}
1688317061
},
17062+
"DescribeCapacityBlockStatusMaxResults":{
17063+
"type":"integer",
17064+
"max":1000,
17065+
"min":1
17066+
},
17067+
"DescribeCapacityBlockStatusRequest":{
17068+
"type":"structure",
17069+
"members":{
17070+
"CapacityBlockIds":{
17071+
"shape":"CapacityBlockIds",
17072+
"locationName":"CapacityBlockId"
17073+
},
17074+
"NextToken":{"shape":"String"},
17075+
"MaxResults":{"shape":"DescribeCapacityBlockStatusMaxResults"},
17076+
"Filters":{
17077+
"shape":"FilterList",
17078+
"locationName":"Filter"
17079+
},
17080+
"DryRun":{"shape":"Boolean"}
17081+
}
17082+
},
17083+
"DescribeCapacityBlockStatusResult":{
17084+
"type":"structure",
17085+
"members":{
17086+
"CapacityBlockStatuses":{
17087+
"shape":"CapacityBlockStatusSet",
17088+
"locationName":"capacityBlockStatusSet"
17089+
},
17090+
"NextToken":{
17091+
"shape":"String",
17092+
"locationName":"nextToken"
17093+
}
17094+
}
17095+
},
17096+
"DescribeCapacityBlocksMaxResults":{
17097+
"type":"integer",
17098+
"max":1000,
17099+
"min":1
17100+
},
17101+
"DescribeCapacityBlocksRequest":{
17102+
"type":"structure",
17103+
"members":{
17104+
"CapacityBlockIds":{
17105+
"shape":"CapacityBlockIds",
17106+
"locationName":"CapacityBlockId"
17107+
},
17108+
"NextToken":{"shape":"String"},
17109+
"MaxResults":{"shape":"DescribeCapacityBlocksMaxResults"},
17110+
"Filters":{
17111+
"shape":"FilterList",
17112+
"locationName":"Filter"
17113+
},
17114+
"DryRun":{"shape":"Boolean"}
17115+
}
17116+
},
17117+
"DescribeCapacityBlocksResult":{
17118+
"type":"structure",
17119+
"members":{
17120+
"CapacityBlocks":{
17121+
"shape":"CapacityBlockSet",
17122+
"locationName":"capacityBlockSet"
17123+
},
17124+
"NextToken":{
17125+
"shape":"String",
17126+
"locationName":"nextToken"
17127+
}
17128+
}
17129+
},
1688417130
"DescribeCapacityReservationBillingRequestsRequest":{
1688517131
"type":"structure",
1688617132
"required":["Role"],
@@ -29286,6 +29532,10 @@
2928629532
"shape":"CpuOptions",
2928729533
"locationName":"cpuOptions"
2928829534
},
29535+
"CapacityBlockId":{
29536+
"shape":"String",
29537+
"locationName":"capacityBlockId"
29538+
},
2928929539
"CapacityReservationId":{
2929029540
"shape":"String",
2929129541
"locationName":"capacityReservationId"
@@ -30968,6 +31218,10 @@
3096831218
"ZoneId":{
3096931219
"shape":"String",
3097031220
"locationName":"zoneId"
31221+
},
31222+
"CapacityBlockId":{
31223+
"shape":"String",
31224+
"locationName":"capacityBlockId"
3097131225
}
3097231226
}
3097331227
},
@@ -41296,6 +41550,10 @@
4129641550
"CapacityReservation":{
4129741551
"shape":"CapacityReservation",
4129841552
"locationName":"capacityReservation"
41553+
},
41554+
"CapacityBlocks":{
41555+
"shape":"CapacityBlockSet",
41556+
"locationName":"capacityBlockSet"
4129941557
}
4130041558
}
4130141559
},
@@ -43359,6 +43617,7 @@
4335943617
"instance-connect-endpoint",
4336043618
"verified-access-endpoint-target",
4336143619
"ipam-external-resource-verification-token",
43620+
"capacity-block",
4336243621
"mac-modification-task"
4336343622
]
4336443623
},

0 commit comments

Comments
 (0)