Skip to content

Commit 27c1873

Browse files
author
AWS
committed
AWS Outposts Update: This release adds the ShipmentInformation and AssetInformationList fields to the GetOrder API response.
1 parent 14cee27 commit 27c1873

File tree

2 files changed

+73
-2
lines changed

2 files changed

+73
-2
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Outposts",
4+
"contributor": "",
5+
"description": "This release adds the ShipmentInformation and AssetInformationList fields to the GetOrder API response."
6+
}

services/outposts/src/main/resources/codegen-resources/service-2.json

Lines changed: 67 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -774,9 +774,9 @@
774774
},
775775
"ConnectionId":{
776776
"type":"string",
777-
"max":255,
777+
"max":1024,
778778
"min":1,
779-
"pattern":"^([\\w-]+)$"
779+
"pattern":"^[a-zA-Z0-9+/=]{1,1024}$"
780780
},
781781
"ContactName":{
782782
"type":"string",
@@ -1227,10 +1227,36 @@
12271227
"Status":{
12281228
"shape":"LineItemStatus",
12291229
"documentation":"<p>The status of the line item.</p>"
1230+
},
1231+
"ShipmentInformation":{
1232+
"shape":"ShipmentInformation",
1233+
"documentation":"<p> Information about a line item shipment. </p>"
1234+
},
1235+
"AssetInformationList":{
1236+
"shape":"LineItemAssetInformationList",
1237+
"documentation":"<p> Information about assets. </p>"
12301238
}
12311239
},
12321240
"documentation":"<p>Information about a line item.</p>"
12331241
},
1242+
"LineItemAssetInformation":{
1243+
"type":"structure",
1244+
"members":{
1245+
"AssetId":{
1246+
"shape":"AssetId",
1247+
"documentation":"<p> The ID of the asset. </p>"
1248+
},
1249+
"MacAddressList":{
1250+
"shape":"MacAddressList",
1251+
"documentation":"<p> MAC addresses of the asset. </p>"
1252+
}
1253+
},
1254+
"documentation":"<p> Information about a line item asset. </p>"
1255+
},
1256+
"LineItemAssetInformationList":{
1257+
"type":"list",
1258+
"member":{"shape":"LineItemAssetInformation"}
1259+
},
12341260
"LineItemId":{
12351261
"type":"string",
12361262
"pattern":"ooi-[a-f0-9]{17}"
@@ -1495,6 +1521,16 @@
14951521
}
14961522
}
14971523
},
1524+
"MacAddress":{
1525+
"type":"string",
1526+
"max":17,
1527+
"min":17,
1528+
"pattern":"^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"
1529+
},
1530+
"MacAddressList":{
1531+
"type":"list",
1532+
"member":{"shape":"MacAddress"}
1533+
},
14981534
"MaxResults1000":{
14991535
"type":"integer",
15001536
"documentation":"<p>The maximum page size.</p>",
@@ -1850,6 +1886,29 @@
18501886
"error":{"httpStatusCode":402},
18511887
"exception":true
18521888
},
1889+
"ShipmentCarrier":{
1890+
"type":"string",
1891+
"enum":[
1892+
"DHL",
1893+
"DBS",
1894+
"FEDEX",
1895+
"UPS"
1896+
]
1897+
},
1898+
"ShipmentInformation":{
1899+
"type":"structure",
1900+
"members":{
1901+
"ShipmentTrackingNumber":{
1902+
"shape":"TrackingId",
1903+
"documentation":"<p> The tracking number of the shipment. </p>"
1904+
},
1905+
"ShipmentCarrier":{
1906+
"shape":"ShipmentCarrier",
1907+
"documentation":"<p> The carrier of the shipment. </p>"
1908+
}
1909+
},
1910+
"documentation":"<p> Information about a line item shipment. </p>"
1911+
},
18531912
"Site":{
18541913
"type":"structure",
18551914
"members":{
@@ -2059,6 +2118,12 @@
20592118
"min":1,
20602119
"pattern":"^(\\d+)##(\\S+)$"
20612120
},
2121+
"TrackingId":{
2122+
"type":"string",
2123+
"max":42,
2124+
"min":6,
2125+
"pattern":"^[a-zA-Z0-9]+$"
2126+
},
20622127
"UnderlayIpAddress":{
20632128
"type":"string",
20642129
"max":15,

0 commit comments

Comments
 (0)