aws-sdk-outposts 1.34.0 → 1.35.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +13 -1
- data/lib/aws-sdk-outposts/client_api.rb +21 -0
- data/lib/aws-sdk-outposts/types.rb +49 -1
- data/lib/aws-sdk-outposts.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ddc0d9bfb292b4d279026393844940d73d331288378e7e6d099fd7968224b0f
|
4
|
+
data.tar.gz: 3da1b88408947984cf39a9d811e4a384dabf5f4aa7067725c88aef2cd85798ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 845e0dc24c88f1d86739c84a97acac7b79e3cacc2a2ec7d8269c8c0123c7597287556dc35746916485a98ab481feaad2d3796d7a9d489f72b11a4c4df8ce6e40
|
7
|
+
data.tar.gz: 3015b2c39f9d96b181ae5a7a07820d7c7c6f6c6f88f2b5b0a4032b3c914d966c1e8f0806d526cb4b9ac758a81d1c7a023d876acd6d95f76b6ea3a4ccba5508b7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.35.0
|
@@ -415,6 +415,12 @@ module Aws::Outposts
|
|
415
415
|
# resp.order.line_items[0].line_item_id #=> String
|
416
416
|
# resp.order.line_items[0].quantity #=> Integer
|
417
417
|
# resp.order.line_items[0].status #=> String, one of "PREPARING", "BUILDING", "SHIPPED", "DELIVERED", "INSTALLING", "INSTALLED", "ERROR", "CANCELLED"
|
418
|
+
# resp.order.line_items[0].shipment_information.shipment_tracking_number #=> String
|
419
|
+
# resp.order.line_items[0].shipment_information.shipment_carrier #=> String, one of "DHL", "DBS", "FEDEX", "UPS"
|
420
|
+
# resp.order.line_items[0].asset_information_list #=> Array
|
421
|
+
# resp.order.line_items[0].asset_information_list[0].asset_id #=> String
|
422
|
+
# resp.order.line_items[0].asset_information_list[0].mac_address_list #=> Array
|
423
|
+
# resp.order.line_items[0].asset_information_list[0].mac_address_list[0] #=> String
|
418
424
|
# resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
419
425
|
# resp.order.order_submission_date #=> Time
|
420
426
|
# resp.order.order_fulfilled_date #=> Time
|
@@ -799,6 +805,12 @@ module Aws::Outposts
|
|
799
805
|
# resp.order.line_items[0].line_item_id #=> String
|
800
806
|
# resp.order.line_items[0].quantity #=> Integer
|
801
807
|
# resp.order.line_items[0].status #=> String, one of "PREPARING", "BUILDING", "SHIPPED", "DELIVERED", "INSTALLING", "INSTALLED", "ERROR", "CANCELLED"
|
808
|
+
# resp.order.line_items[0].shipment_information.shipment_tracking_number #=> String
|
809
|
+
# resp.order.line_items[0].shipment_information.shipment_carrier #=> String, one of "DHL", "DBS", "FEDEX", "UPS"
|
810
|
+
# resp.order.line_items[0].asset_information_list #=> Array
|
811
|
+
# resp.order.line_items[0].asset_information_list[0].asset_id #=> String
|
812
|
+
# resp.order.line_items[0].asset_information_list[0].mac_address_list #=> Array
|
813
|
+
# resp.order.line_items[0].asset_information_list[0].mac_address_list[0] #=> String
|
802
814
|
# resp.order.payment_option #=> String, one of "ALL_UPFRONT", "NO_UPFRONT", "PARTIAL_UPFRONT"
|
803
815
|
# resp.order.order_submission_date #=> Time
|
804
816
|
# resp.order.order_fulfilled_date #=> Time
|
@@ -1897,7 +1909,7 @@ module Aws::Outposts
|
|
1897
1909
|
params: params,
|
1898
1910
|
config: config)
|
1899
1911
|
context[:gem_name] = 'aws-sdk-outposts'
|
1900
|
-
context[:gem_version] = '1.
|
1912
|
+
context[:gem_version] = '1.35.0'
|
1901
1913
|
Seahorse::Client::Request.new(handlers, context)
|
1902
1914
|
end
|
1903
1915
|
|
@@ -93,6 +93,8 @@ module Aws::Outposts
|
|
93
93
|
LifeCycleStatus = Shapes::StringShape.new(name: 'LifeCycleStatus')
|
94
94
|
LifeCycleStatusList = Shapes::ListShape.new(name: 'LifeCycleStatusList')
|
95
95
|
LineItem = Shapes::StructureShape.new(name: 'LineItem')
|
96
|
+
LineItemAssetInformation = Shapes::StructureShape.new(name: 'LineItemAssetInformation')
|
97
|
+
LineItemAssetInformationList = Shapes::ListShape.new(name: 'LineItemAssetInformationList')
|
96
98
|
LineItemId = Shapes::StringShape.new(name: 'LineItemId')
|
97
99
|
LineItemListDefinition = Shapes::ListShape.new(name: 'LineItemListDefinition')
|
98
100
|
LineItemQuantity = Shapes::IntegerShape.new(name: 'LineItemQuantity')
|
@@ -112,6 +114,8 @@ module Aws::Outposts
|
|
112
114
|
ListSitesOutput = Shapes::StructureShape.new(name: 'ListSitesOutput')
|
113
115
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
114
116
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
117
|
+
MacAddress = Shapes::StringShape.new(name: 'MacAddress')
|
118
|
+
MacAddressList = Shapes::ListShape.new(name: 'MacAddressList')
|
115
119
|
MaxResults1000 = Shapes::IntegerShape.new(name: 'MaxResults1000')
|
116
120
|
MaxSize = Shapes::StringShape.new(name: 'MaxSize')
|
117
121
|
MaximumSupportedWeightLbs = Shapes::StringShape.new(name: 'MaximumSupportedWeightLbs')
|
@@ -147,6 +151,8 @@ module Aws::Outposts
|
|
147
151
|
ResourceType = Shapes::StringShape.new(name: 'ResourceType')
|
148
152
|
ServerEndpoint = Shapes::StringShape.new(name: 'ServerEndpoint')
|
149
153
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
154
|
+
ShipmentCarrier = Shapes::StringShape.new(name: 'ShipmentCarrier')
|
155
|
+
ShipmentInformation = Shapes::StructureShape.new(name: 'ShipmentInformation')
|
150
156
|
Site = Shapes::StructureShape.new(name: 'Site')
|
151
157
|
SiteArn = Shapes::StringShape.new(name: 'SiteArn')
|
152
158
|
SiteDescription = Shapes::StringShape.new(name: 'SiteDescription')
|
@@ -171,6 +177,7 @@ module Aws::Outposts
|
|
171
177
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
172
178
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
173
179
|
Token = Shapes::StringShape.new(name: 'Token')
|
180
|
+
TrackingId = Shapes::StringShape.new(name: 'TrackingId')
|
174
181
|
UnderlayIpAddress = Shapes::StringShape.new(name: 'UnderlayIpAddress')
|
175
182
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
176
183
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
@@ -380,8 +387,16 @@ module Aws::Outposts
|
|
380
387
|
LineItem.add_member(:line_item_id, Shapes::ShapeRef.new(shape: LineItemId, location_name: "LineItemId"))
|
381
388
|
LineItem.add_member(:quantity, Shapes::ShapeRef.new(shape: LineItemQuantity, location_name: "Quantity"))
|
382
389
|
LineItem.add_member(:status, Shapes::ShapeRef.new(shape: LineItemStatus, location_name: "Status"))
|
390
|
+
LineItem.add_member(:shipment_information, Shapes::ShapeRef.new(shape: ShipmentInformation, location_name: "ShipmentInformation"))
|
391
|
+
LineItem.add_member(:asset_information_list, Shapes::ShapeRef.new(shape: LineItemAssetInformationList, location_name: "AssetInformationList"))
|
383
392
|
LineItem.struct_class = Types::LineItem
|
384
393
|
|
394
|
+
LineItemAssetInformation.add_member(:asset_id, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetId"))
|
395
|
+
LineItemAssetInformation.add_member(:mac_address_list, Shapes::ShapeRef.new(shape: MacAddressList, location_name: "MacAddressList"))
|
396
|
+
LineItemAssetInformation.struct_class = Types::LineItemAssetInformation
|
397
|
+
|
398
|
+
LineItemAssetInformationList.member = Shapes::ShapeRef.new(shape: LineItemAssetInformation)
|
399
|
+
|
385
400
|
LineItemListDefinition.member = Shapes::ShapeRef.new(shape: LineItem)
|
386
401
|
|
387
402
|
LineItemRequest.add_member(:catalog_item_id, Shapes::ShapeRef.new(shape: SkuCode, location_name: "CatalogItemId"))
|
@@ -451,6 +466,8 @@ module Aws::Outposts
|
|
451
466
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
452
467
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
453
468
|
|
469
|
+
MacAddressList.member = Shapes::ShapeRef.new(shape: MacAddress)
|
470
|
+
|
454
471
|
NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
455
472
|
NotFoundException.struct_class = Types::NotFoundException
|
456
473
|
|
@@ -502,6 +519,10 @@ module Aws::Outposts
|
|
502
519
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
503
520
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
504
521
|
|
522
|
+
ShipmentInformation.add_member(:shipment_tracking_number, Shapes::ShapeRef.new(shape: TrackingId, location_name: "ShipmentTrackingNumber"))
|
523
|
+
ShipmentInformation.add_member(:shipment_carrier, Shapes::ShapeRef.new(shape: ShipmentCarrier, location_name: "ShipmentCarrier"))
|
524
|
+
ShipmentInformation.struct_class = Types::ShipmentInformation
|
525
|
+
|
505
526
|
Site.add_member(:site_id, Shapes::ShapeRef.new(shape: SiteId, location_name: "SiteId"))
|
506
527
|
Site.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
507
528
|
Site.add_member(:name, Shapes::ShapeRef.new(shape: SiteName, location_name: "Name"))
|
@@ -978,13 +978,42 @@ module Aws::Outposts
|
|
978
978
|
# The status of the line item.
|
979
979
|
# @return [String]
|
980
980
|
#
|
981
|
+
# @!attribute [rw] shipment_information
|
982
|
+
# Information about a line item shipment.
|
983
|
+
# @return [Types::ShipmentInformation]
|
984
|
+
#
|
985
|
+
# @!attribute [rw] asset_information_list
|
986
|
+
# Information about assets.
|
987
|
+
# @return [Array<Types::LineItemAssetInformation>]
|
988
|
+
#
|
981
989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/LineItem AWS API Documentation
|
982
990
|
#
|
983
991
|
class LineItem < Struct.new(
|
984
992
|
:catalog_item_id,
|
985
993
|
:line_item_id,
|
986
994
|
:quantity,
|
987
|
-
:status
|
995
|
+
:status,
|
996
|
+
:shipment_information,
|
997
|
+
:asset_information_list)
|
998
|
+
SENSITIVE = []
|
999
|
+
include Aws::Structure
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
# Information about a line item asset.
|
1003
|
+
#
|
1004
|
+
# @!attribute [rw] asset_id
|
1005
|
+
# The ID of the asset.
|
1006
|
+
# @return [String]
|
1007
|
+
#
|
1008
|
+
# @!attribute [rw] mac_address_list
|
1009
|
+
# MAC addresses of the asset.
|
1010
|
+
# @return [Array<String>]
|
1011
|
+
#
|
1012
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/LineItemAssetInformation AWS API Documentation
|
1013
|
+
#
|
1014
|
+
class LineItemAssetInformation < Struct.new(
|
1015
|
+
:asset_id,
|
1016
|
+
:mac_address_list)
|
988
1017
|
SENSITIVE = []
|
989
1018
|
include Aws::Structure
|
990
1019
|
end
|
@@ -1670,6 +1699,25 @@ module Aws::Outposts
|
|
1670
1699
|
include Aws::Structure
|
1671
1700
|
end
|
1672
1701
|
|
1702
|
+
# Information about a line item shipment.
|
1703
|
+
#
|
1704
|
+
# @!attribute [rw] shipment_tracking_number
|
1705
|
+
# The tracking number of the shipment.
|
1706
|
+
# @return [String]
|
1707
|
+
#
|
1708
|
+
# @!attribute [rw] shipment_carrier
|
1709
|
+
# The carrier of the shipment.
|
1710
|
+
# @return [String]
|
1711
|
+
#
|
1712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ShipmentInformation AWS API Documentation
|
1713
|
+
#
|
1714
|
+
class ShipmentInformation < Struct.new(
|
1715
|
+
:shipment_tracking_number,
|
1716
|
+
:shipment_carrier)
|
1717
|
+
SENSITIVE = []
|
1718
|
+
include Aws::Structure
|
1719
|
+
end
|
1720
|
+
|
1673
1721
|
# Information about a site.
|
1674
1722
|
#
|
1675
1723
|
# @!attribute [rw] site_id
|
data/lib/aws-sdk-outposts.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-outposts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.35.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|