aws-sdk-outposts 1.82.0 → 1.83.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +7 -7
- data/lib/aws-sdk-outposts/client_api.rb +2 -2
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +6 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2bcdb2cb3ef85cb6418d2159af2ef4c766cf21ae5d9ad39f6c6bc597de7bb4b
|
4
|
+
data.tar.gz: 204eb761eb6b29f59ad917c44a912f3a7e07037330e36dde02dffedda81f66eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0701af76719f9ca86da0c1c1e5380880a3f9772c32956ed68b80ec5f7e6b4da2678dc790e5e8189844645c53739c1d2c4e02fbd6b4266bc9b7999e45b51c0d5
|
7
|
+
data.tar.gz: 60f1de8338762d7cb9495c5cf062b21cb2fdf24eb9986c0a1613e2acb379bf959d88f073d400cff1312ed0dd392caf546cee05f6ad280b150368450878cc7a81
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.83.0
|
@@ -700,8 +700,8 @@ module Aws::Outposts
|
|
700
700
|
# "TagKey" => "TagValue",
|
701
701
|
# },
|
702
702
|
# operating_address: {
|
703
|
-
# contact_name: "ContactName",
|
704
|
-
# contact_phone_number: "ContactPhoneNumber",
|
703
|
+
# contact_name: "ContactName", # required
|
704
|
+
# contact_phone_number: "ContactPhoneNumber", # required
|
705
705
|
# address_line_1: "AddressLine1", # required
|
706
706
|
# address_line_2: "AddressLine2",
|
707
707
|
# address_line_3: "AddressLine3",
|
@@ -713,8 +713,8 @@ module Aws::Outposts
|
|
713
713
|
# municipality: "Municipality",
|
714
714
|
# },
|
715
715
|
# shipping_address: {
|
716
|
-
# contact_name: "ContactName",
|
717
|
-
# contact_phone_number: "ContactPhoneNumber",
|
716
|
+
# contact_name: "ContactName", # required
|
717
|
+
# contact_phone_number: "ContactPhoneNumber", # required
|
718
718
|
# address_line_1: "AddressLine1", # required
|
719
719
|
# address_line_2: "AddressLine2",
|
720
720
|
# address_line_3: "AddressLine3",
|
@@ -2133,8 +2133,8 @@ module Aws::Outposts
|
|
2133
2133
|
# site_id: "SiteId", # required
|
2134
2134
|
# address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
|
2135
2135
|
# address: { # required
|
2136
|
-
# contact_name: "ContactName",
|
2137
|
-
# contact_phone_number: "ContactPhoneNumber",
|
2136
|
+
# contact_name: "ContactName", # required
|
2137
|
+
# contact_phone_number: "ContactPhoneNumber", # required
|
2138
2138
|
# address_line_1: "AddressLine1", # required
|
2139
2139
|
# address_line_2: "AddressLine2",
|
2140
2140
|
# address_line_3: "AddressLine3",
|
@@ -2350,7 +2350,7 @@ module Aws::Outposts
|
|
2350
2350
|
tracer: tracer
|
2351
2351
|
)
|
2352
2352
|
context[:gem_name] = 'aws-sdk-outposts'
|
2353
|
-
context[:gem_version] = '1.
|
2353
|
+
context[:gem_version] = '1.83.0'
|
2354
2354
|
Seahorse::Client::Request.new(handlers, context)
|
2355
2355
|
end
|
2356
2356
|
|
@@ -254,8 +254,8 @@ module Aws::Outposts
|
|
254
254
|
|
255
255
|
AccountIdList.member = Shapes::ShapeRef.new(shape: AccountId)
|
256
256
|
|
257
|
-
Address.add_member(:contact_name, Shapes::ShapeRef.new(shape: ContactName, location_name: "ContactName"))
|
258
|
-
Address.add_member(:contact_phone_number, Shapes::ShapeRef.new(shape: ContactPhoneNumber, location_name: "ContactPhoneNumber"))
|
257
|
+
Address.add_member(:contact_name, Shapes::ShapeRef.new(shape: ContactName, required: true, location_name: "ContactName"))
|
258
|
+
Address.add_member(:contact_phone_number, Shapes::ShapeRef.new(shape: ContactPhoneNumber, required: true, location_name: "ContactPhoneNumber"))
|
259
259
|
Address.add_member(:address_line_1, Shapes::ShapeRef.new(shape: AddressLine1, required: true, location_name: "AddressLine1"))
|
260
260
|
Address.add_member(:address_line_2, Shapes::ShapeRef.new(shape: AddressLine2, location_name: "AddressLine2"))
|
261
261
|
Address.add_member(:address_line_3, Shapes::ShapeRef.new(shape: AddressLine3, location_name: "AddressLine3"))
|
data/lib/aws-sdk-outposts.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -141,8 +141,8 @@ module Aws
|
|
141
141
|
?notes: ::String,
|
142
142
|
?tags: Hash[::String, ::String],
|
143
143
|
?operating_address: {
|
144
|
-
contact_name: ::String
|
145
|
-
contact_phone_number: ::String
|
144
|
+
contact_name: ::String,
|
145
|
+
contact_phone_number: ::String,
|
146
146
|
address_line_1: ::String,
|
147
147
|
address_line_2: ::String?,
|
148
148
|
address_line_3: ::String?,
|
@@ -154,8 +154,8 @@ module Aws
|
|
154
154
|
municipality: ::String?
|
155
155
|
},
|
156
156
|
?shipping_address: {
|
157
|
-
contact_name: ::String
|
158
|
-
contact_phone_number: ::String
|
157
|
+
contact_name: ::String,
|
158
|
+
contact_phone_number: ::String,
|
159
159
|
address_line_1: ::String,
|
160
160
|
address_line_2: ::String?,
|
161
161
|
address_line_3: ::String?,
|
@@ -550,8 +550,8 @@ module Aws
|
|
550
550
|
site_id: ::String,
|
551
551
|
address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS"),
|
552
552
|
address: {
|
553
|
-
contact_name: ::String
|
554
|
-
contact_phone_number: ::String
|
553
|
+
contact_name: ::String,
|
554
|
+
contact_phone_number: ::String,
|
555
555
|
address_line_1: ::String,
|
556
556
|
address_line_2: ::String?,
|
557
557
|
address_line_3: ::String?,
|