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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 30880cc51988f79c5951bf8db04f5cd23cf1d1cf222d6f99e11a9b6aed2a54b0
4
- data.tar.gz: 010626eef3e43d44075e9932df341d7e396235e1d472817f25081d881a60b4c1
3
+ metadata.gz: c2bcdb2cb3ef85cb6418d2159af2ef4c766cf21ae5d9ad39f6c6bc597de7bb4b
4
+ data.tar.gz: 204eb761eb6b29f59ad917c44a912f3a7e07037330e36dde02dffedda81f66eb
5
5
  SHA512:
6
- metadata.gz: 7d4cb7290b8dcb243179b9a9e765feee2288d66e834e47956379597ea1ce9ebea0448a07be9a650a07ef13a30d6a7c85167063e1981186dd5cb57f315fcbed06
7
- data.tar.gz: c3b325e7c575b876bbad8fce1ffd57d0b5fba8f8ed8c02f01d32ab02b6c253dfbddf7d21c6acd425df08a79a3ca8ab6acdf76cf7f6fdd8b235075e830df0f32d
6
+ metadata.gz: e0701af76719f9ca86da0c1c1e5380880a3f9772c32956ed68b80ec5f7e6b4da2678dc790e5e8189844645c53739c1d2c4e02fbd6b4266bc9b7999e45b51c0d5
7
+ data.tar.gz: 60f1de8338762d7cb9495c5cf062b21cb2fdf24eb9986c0a1613e2acb379bf959d88f073d400cff1312ed0dd392caf546cee05f6ad280b150368450878cc7a81
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.83.0 (2025-06-30)
5
+ ------------------
6
+
7
+ * Feature - Make ContactName and ContactPhoneNumber required fields when creating and updating Outpost Site Addresses.
8
+
4
9
  1.82.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
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.82.0'
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"))
@@ -54,7 +54,7 @@ module Aws::Outposts
54
54
  autoload :EndpointProvider, 'aws-sdk-outposts/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-outposts/endpoints'
56
56
 
57
- GEM_VERSION = '1.82.0'
57
+ GEM_VERSION = '1.83.0'
58
58
 
59
59
  end
60
60
 
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?,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-outposts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.82.0
4
+ version: 1.83.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services