aws-sdk-route53globalresolver 1.4.0 → 1.6.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: 38f43dc337cac4ec74e5e441731406a5fcfc1855353017375d7bc37b98ed7d0f
4
- data.tar.gz: 163ed6c389d666b74a1da35b70152964c5d3f5774f94abbfa7ddaaf1d6b4bf4a
3
+ metadata.gz: 2d1d3048280bee1c91e6dfc76b9b17a4dddea06be22300921161a906e92e9ddb
4
+ data.tar.gz: 19167e500242ed826cc649e63db64e6757b809849275c10afba73e626c954dd6
5
5
  SHA512:
6
- metadata.gz: f2e2327d264df4b389734c5b8c65387e37aa42e961602b42a53d21d381b0ec56ed62db3f5985a649e374ae12a71d78bced51a1a636210ac941cb3bc59cc14bcf
7
- data.tar.gz: 56e7ec8fb19460e2f813e2c4dda5387d12dbf7767b2b677d2b08df977881dec419f8924d55904a78ddf888c60c42e9980ab380f62176e175380c5846baf440c8
6
+ metadata.gz: 2102af6ed8101defbdbd3f6d32951af4854034b03dd3b403d915021ec9615c3fb7d2c890882732b825694f1b09e8732b5951b62ba1ebd12ee2d6a89200af2ab2
7
+ data.tar.gz: 32626fc0354269542ca4d503a6d9a356cd297702dbfcfaeea93b1db15b8fd846c93baf6cf0c5927aeb7aeaac2ff6cdba8c5658210573f0b83ceb51a6bfbb4c18
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.6.0 (2026-04-30)
5
+ ------------------
6
+
7
+ * Feature - Adds support for regions in the UpdateGlobalResolver input.
8
+
9
+ 1.5.0 (2026-03-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.4.0 (2026-03-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.6.0
@@ -3392,6 +3392,11 @@ module Aws::Route53GlobalResolver
3392
3392
  # The IP address type for the Global Resolver. Valid values are IPV4 or
3393
3393
  # DUAL\_STACK for both IPv4 and IPv6 support.
3394
3394
  #
3395
+ # @option params [Array<String>] :regions
3396
+ # The list of Amazon Web Services Regions where the Global Resolver will
3397
+ # operate. The resolver will be distributed across these Regions to
3398
+ # provide global availability and low-latency DNS resolution.
3399
+ #
3395
3400
  # @return [Types::UpdateGlobalResolverOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3396
3401
  #
3397
3402
  # * {Types::UpdateGlobalResolverOutput#id #id} => String
@@ -3417,6 +3422,7 @@ module Aws::Route53GlobalResolver
3417
3422
  # observability_region: "Region",
3418
3423
  # description: "ResourceDescription",
3419
3424
  # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
3425
+ # regions: ["Region"],
3420
3426
  # })
3421
3427
  #
3422
3428
  # @example Response structure
@@ -3518,7 +3524,7 @@ module Aws::Route53GlobalResolver
3518
3524
  tracer: tracer
3519
3525
  )
3520
3526
  context[:gem_name] = 'aws-sdk-route53globalresolver'
3521
- context[:gem_version] = '1.4.0'
3527
+ context[:gem_version] = '1.6.0'
3522
3528
  Seahorse::Client::Request.new(handlers, context)
3523
3529
  end
3524
3530
 
@@ -1113,6 +1113,7 @@ module Aws::Route53GlobalResolver
1113
1113
  UpdateGlobalResolverInput.add_member(:observability_region, Shapes::ShapeRef.new(shape: Region, location_name: "observabilityRegion"))
1114
1114
  UpdateGlobalResolverInput.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "description"))
1115
1115
  UpdateGlobalResolverInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: GlobalResolverIpAddressType, location_name: "ipAddressType"))
1116
+ UpdateGlobalResolverInput.add_member(:regions, Shapes::ShapeRef.new(shape: Regions, location_name: "regions"))
1116
1117
  UpdateGlobalResolverInput.struct_class = Types::UpdateGlobalResolverInput
1117
1118
 
1118
1119
  UpdateGlobalResolverOutput.add_member(:id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "id"))
@@ -1337,6 +1338,7 @@ module Aws::Route53GlobalResolver
1337
1338
  o.output = Shapes::ShapeRef.new(shape: DeleteAccessTokenOutput)
1338
1339
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1339
1340
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1341
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
1340
1342
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1341
1343
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1342
1344
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -4375,6 +4375,12 @@ module Aws::Route53GlobalResolver
4375
4375
  # or DUAL\_STACK for both IPv4 and IPv6 support.
4376
4376
  # @return [String]
4377
4377
  #
4378
+ # @!attribute [rw] regions
4379
+ # The list of Amazon Web Services Regions where the Global Resolver
4380
+ # will operate. The resolver will be distributed across these Regions
4381
+ # to provide global availability and low-latency DNS resolution.
4382
+ # @return [Array<String>]
4383
+ #
4378
4384
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateGlobalResolverInput AWS API Documentation
4379
4385
  #
4380
4386
  class UpdateGlobalResolverInput < Struct.new(
@@ -4382,7 +4388,8 @@ module Aws::Route53GlobalResolver
4382
4388
  :name,
4383
4389
  :observability_region,
4384
4390
  :description,
4385
- :ip_address_type)
4391
+ :ip_address_type,
4392
+ :regions)
4386
4393
  SENSITIVE = []
4387
4394
  include Aws::Structure
4388
4395
  end
@@ -55,7 +55,7 @@ module Aws::Route53GlobalResolver
55
55
  autoload :EndpointProvider, 'aws-sdk-route53globalresolver/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-route53globalresolver/endpoints'
57
57
 
58
- GEM_VERSION = '1.4.0'
58
+ GEM_VERSION = '1.6.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -960,7 +960,8 @@ module Aws
960
960
  ?name: ::String,
961
961
  ?observability_region: ::String,
962
962
  ?description: ::String,
963
- ?ip_address_type: ("IPV4" | "DUAL_STACK")
963
+ ?ip_address_type: ("IPV4" | "DUAL_STACK"),
964
+ ?regions: Array[::String]
964
965
  ) -> _UpdateGlobalResolverResponseSuccess
965
966
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGlobalResolverResponseSuccess
966
967
 
data/sig/types.rbs CHANGED
@@ -1104,6 +1104,7 @@ module Aws::Route53GlobalResolver
1104
1104
  attr_accessor observability_region: ::String
1105
1105
  attr_accessor description: ::String
1106
1106
  attr_accessor ip_address_type: ("IPV4" | "DUAL_STACK")
1107
+ attr_accessor regions: ::Array[::String]
1107
1108
  SENSITIVE: []
1108
1109
  end
1109
1110
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53globalresolver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.241.4
21
+ version: 3.244.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.241.4
31
+ version: 3.244.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement