aws-sdk-route53 1.64.0 → 1.66.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,208 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ module Aws::Route53
12
+ module Plugins
13
+ class Endpoints < Seahorse::Client::Plugin
14
+ option(
15
+ :endpoint_provider,
16
+ doc_type: 'Aws::Route53::EndpointProvider',
17
+ docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
+ 'object that responds to `#resolve_endpoint(parameters)` '\
19
+ 'where `parameters` is a Struct similar to '\
20
+ '`Aws::Route53::EndpointParameters`'
21
+ ) do |cfg|
22
+ Aws::Route53::EndpointProvider.new
23
+ end
24
+
25
+ # @api private
26
+ class Handler < Seahorse::Client::Handler
27
+ def call(context)
28
+ # If endpoint was discovered, do not resolve or apply the endpoint.
29
+ unless context[:discovered_endpoint]
30
+ params = parameters_for_operation(context)
31
+ endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
+
33
+ context.http_request.endpoint = endpoint.url
34
+ apply_endpoint_headers(context, endpoint.headers)
35
+ end
36
+
37
+ context[:endpoint_params] = params
38
+ context[:auth_scheme] =
39
+ Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
+
41
+ @handler.call(context)
42
+ end
43
+
44
+ private
45
+
46
+ def apply_endpoint_headers(context, headers)
47
+ headers.each do |key, values|
48
+ value = values
49
+ .compact
50
+ .map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
51
+ .join(',')
52
+
53
+ context.http_request.headers[key] = value
54
+ end
55
+ end
56
+
57
+ def parameters_for_operation(context)
58
+ case context.operation_name
59
+ when :activate_key_signing_key
60
+ Aws::Route53::Endpoints::ActivateKeySigningKey.build(context)
61
+ when :associate_vpc_with_hosted_zone
62
+ Aws::Route53::Endpoints::AssociateVPCWithHostedZone.build(context)
63
+ when :change_cidr_collection
64
+ Aws::Route53::Endpoints::ChangeCidrCollection.build(context)
65
+ when :change_resource_record_sets
66
+ Aws::Route53::Endpoints::ChangeResourceRecordSets.build(context)
67
+ when :change_tags_for_resource
68
+ Aws::Route53::Endpoints::ChangeTagsForResource.build(context)
69
+ when :create_cidr_collection
70
+ Aws::Route53::Endpoints::CreateCidrCollection.build(context)
71
+ when :create_health_check
72
+ Aws::Route53::Endpoints::CreateHealthCheck.build(context)
73
+ when :create_hosted_zone
74
+ Aws::Route53::Endpoints::CreateHostedZone.build(context)
75
+ when :create_key_signing_key
76
+ Aws::Route53::Endpoints::CreateKeySigningKey.build(context)
77
+ when :create_query_logging_config
78
+ Aws::Route53::Endpoints::CreateQueryLoggingConfig.build(context)
79
+ when :create_reusable_delegation_set
80
+ Aws::Route53::Endpoints::CreateReusableDelegationSet.build(context)
81
+ when :create_traffic_policy
82
+ Aws::Route53::Endpoints::CreateTrafficPolicy.build(context)
83
+ when :create_traffic_policy_instance
84
+ Aws::Route53::Endpoints::CreateTrafficPolicyInstance.build(context)
85
+ when :create_traffic_policy_version
86
+ Aws::Route53::Endpoints::CreateTrafficPolicyVersion.build(context)
87
+ when :create_vpc_association_authorization
88
+ Aws::Route53::Endpoints::CreateVPCAssociationAuthorization.build(context)
89
+ when :deactivate_key_signing_key
90
+ Aws::Route53::Endpoints::DeactivateKeySigningKey.build(context)
91
+ when :delete_cidr_collection
92
+ Aws::Route53::Endpoints::DeleteCidrCollection.build(context)
93
+ when :delete_health_check
94
+ Aws::Route53::Endpoints::DeleteHealthCheck.build(context)
95
+ when :delete_hosted_zone
96
+ Aws::Route53::Endpoints::DeleteHostedZone.build(context)
97
+ when :delete_key_signing_key
98
+ Aws::Route53::Endpoints::DeleteKeySigningKey.build(context)
99
+ when :delete_query_logging_config
100
+ Aws::Route53::Endpoints::DeleteQueryLoggingConfig.build(context)
101
+ when :delete_reusable_delegation_set
102
+ Aws::Route53::Endpoints::DeleteReusableDelegationSet.build(context)
103
+ when :delete_traffic_policy
104
+ Aws::Route53::Endpoints::DeleteTrafficPolicy.build(context)
105
+ when :delete_traffic_policy_instance
106
+ Aws::Route53::Endpoints::DeleteTrafficPolicyInstance.build(context)
107
+ when :delete_vpc_association_authorization
108
+ Aws::Route53::Endpoints::DeleteVPCAssociationAuthorization.build(context)
109
+ when :disable_hosted_zone_dnssec
110
+ Aws::Route53::Endpoints::DisableHostedZoneDNSSEC.build(context)
111
+ when :disassociate_vpc_from_hosted_zone
112
+ Aws::Route53::Endpoints::DisassociateVPCFromHostedZone.build(context)
113
+ when :enable_hosted_zone_dnssec
114
+ Aws::Route53::Endpoints::EnableHostedZoneDNSSEC.build(context)
115
+ when :get_account_limit
116
+ Aws::Route53::Endpoints::GetAccountLimit.build(context)
117
+ when :get_change
118
+ Aws::Route53::Endpoints::GetChange.build(context)
119
+ when :get_checker_ip_ranges
120
+ Aws::Route53::Endpoints::GetCheckerIpRanges.build(context)
121
+ when :get_dnssec
122
+ Aws::Route53::Endpoints::GetDNSSEC.build(context)
123
+ when :get_geo_location
124
+ Aws::Route53::Endpoints::GetGeoLocation.build(context)
125
+ when :get_health_check
126
+ Aws::Route53::Endpoints::GetHealthCheck.build(context)
127
+ when :get_health_check_count
128
+ Aws::Route53::Endpoints::GetHealthCheckCount.build(context)
129
+ when :get_health_check_last_failure_reason
130
+ Aws::Route53::Endpoints::GetHealthCheckLastFailureReason.build(context)
131
+ when :get_health_check_status
132
+ Aws::Route53::Endpoints::GetHealthCheckStatus.build(context)
133
+ when :get_hosted_zone
134
+ Aws::Route53::Endpoints::GetHostedZone.build(context)
135
+ when :get_hosted_zone_count
136
+ Aws::Route53::Endpoints::GetHostedZoneCount.build(context)
137
+ when :get_hosted_zone_limit
138
+ Aws::Route53::Endpoints::GetHostedZoneLimit.build(context)
139
+ when :get_query_logging_config
140
+ Aws::Route53::Endpoints::GetQueryLoggingConfig.build(context)
141
+ when :get_reusable_delegation_set
142
+ Aws::Route53::Endpoints::GetReusableDelegationSet.build(context)
143
+ when :get_reusable_delegation_set_limit
144
+ Aws::Route53::Endpoints::GetReusableDelegationSetLimit.build(context)
145
+ when :get_traffic_policy
146
+ Aws::Route53::Endpoints::GetTrafficPolicy.build(context)
147
+ when :get_traffic_policy_instance
148
+ Aws::Route53::Endpoints::GetTrafficPolicyInstance.build(context)
149
+ when :get_traffic_policy_instance_count
150
+ Aws::Route53::Endpoints::GetTrafficPolicyInstanceCount.build(context)
151
+ when :list_cidr_blocks
152
+ Aws::Route53::Endpoints::ListCidrBlocks.build(context)
153
+ when :list_cidr_collections
154
+ Aws::Route53::Endpoints::ListCidrCollections.build(context)
155
+ when :list_cidr_locations
156
+ Aws::Route53::Endpoints::ListCidrLocations.build(context)
157
+ when :list_geo_locations
158
+ Aws::Route53::Endpoints::ListGeoLocations.build(context)
159
+ when :list_health_checks
160
+ Aws::Route53::Endpoints::ListHealthChecks.build(context)
161
+ when :list_hosted_zones
162
+ Aws::Route53::Endpoints::ListHostedZones.build(context)
163
+ when :list_hosted_zones_by_name
164
+ Aws::Route53::Endpoints::ListHostedZonesByName.build(context)
165
+ when :list_hosted_zones_by_vpc
166
+ Aws::Route53::Endpoints::ListHostedZonesByVPC.build(context)
167
+ when :list_query_logging_configs
168
+ Aws::Route53::Endpoints::ListQueryLoggingConfigs.build(context)
169
+ when :list_resource_record_sets
170
+ Aws::Route53::Endpoints::ListResourceRecordSets.build(context)
171
+ when :list_reusable_delegation_sets
172
+ Aws::Route53::Endpoints::ListReusableDelegationSets.build(context)
173
+ when :list_tags_for_resource
174
+ Aws::Route53::Endpoints::ListTagsForResource.build(context)
175
+ when :list_tags_for_resources
176
+ Aws::Route53::Endpoints::ListTagsForResources.build(context)
177
+ when :list_traffic_policies
178
+ Aws::Route53::Endpoints::ListTrafficPolicies.build(context)
179
+ when :list_traffic_policy_instances
180
+ Aws::Route53::Endpoints::ListTrafficPolicyInstances.build(context)
181
+ when :list_traffic_policy_instances_by_hosted_zone
182
+ Aws::Route53::Endpoints::ListTrafficPolicyInstancesByHostedZone.build(context)
183
+ when :list_traffic_policy_instances_by_policy
184
+ Aws::Route53::Endpoints::ListTrafficPolicyInstancesByPolicy.build(context)
185
+ when :list_traffic_policy_versions
186
+ Aws::Route53::Endpoints::ListTrafficPolicyVersions.build(context)
187
+ when :list_vpc_association_authorizations
188
+ Aws::Route53::Endpoints::ListVPCAssociationAuthorizations.build(context)
189
+ when :test_dns_answer
190
+ Aws::Route53::Endpoints::TestDNSAnswer.build(context)
191
+ when :update_health_check
192
+ Aws::Route53::Endpoints::UpdateHealthCheck.build(context)
193
+ when :update_hosted_zone_comment
194
+ Aws::Route53::Endpoints::UpdateHostedZoneComment.build(context)
195
+ when :update_traffic_policy_comment
196
+ Aws::Route53::Endpoints::UpdateTrafficPolicyComment.build(context)
197
+ when :update_traffic_policy_instance
198
+ Aws::Route53::Endpoints::UpdateTrafficPolicyInstance.build(context)
199
+ end
200
+ end
201
+ end
202
+
203
+ def add_handlers(handlers, _config)
204
+ handlers.add(Handler, step: :build, priority: 75)
205
+ end
206
+ end
207
+ end
208
+ end
@@ -100,7 +100,7 @@ module Aws::Route53
100
100
  # data as a hash:
101
101
  #
102
102
  # {
103
- # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
103
+ # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
104
104
  # name: "AlarmName", # required
105
105
  # }
106
106
  #
@@ -562,7 +562,7 @@ module Aws::Route53
562
562
  # {
563
563
  # hosted_zone_id: "ResourceId", # required
564
564
  # vpc: { # required
565
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
565
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
566
566
  # vpc_id: "VPCId",
567
567
  # },
568
568
  # comment: "AssociateVPCComment",
@@ -1424,7 +1424,7 @@ module Aws::Route53
1424
1424
  # enable_sni: false,
1425
1425
  # regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
1426
1426
  # alarm_identifier: {
1427
- # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
1427
+ # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
1428
1428
  # name: "AlarmName", # required
1429
1429
  # },
1430
1430
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -1499,7 +1499,7 @@ module Aws::Route53
1499
1499
  # {
1500
1500
  # name: "DNSName", # required
1501
1501
  # vpc: {
1502
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
1502
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
1503
1503
  # vpc_id: "VPCId",
1504
1504
  # },
1505
1505
  # caller_reference: "Nonce", # required
@@ -2053,7 +2053,7 @@ module Aws::Route53
2053
2053
  # {
2054
2054
  # hosted_zone_id: "ResourceId", # required
2055
2055
  # vpc: { # required
2056
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
2056
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
2057
2057
  # vpc_id: "VPCId",
2058
2058
  # },
2059
2059
  # }
@@ -2548,7 +2548,7 @@ module Aws::Route53
2548
2548
  # {
2549
2549
  # hosted_zone_id: "ResourceId", # required
2550
2550
  # vpc: { # required
2551
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
2551
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
2552
2552
  # vpc_id: "VPCId",
2553
2553
  # },
2554
2554
  # }
@@ -2645,7 +2645,7 @@ module Aws::Route53
2645
2645
  # {
2646
2646
  # hosted_zone_id: "ResourceId", # required
2647
2647
  # vpc: { # required
2648
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
2648
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
2649
2649
  # vpc_id: "VPCId",
2650
2650
  # },
2651
2651
  # comment: "DisassociateVPCComment",
@@ -3709,7 +3709,7 @@ module Aws::Route53
3709
3709
  # enable_sni: false,
3710
3710
  # regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
3711
3711
  # alarm_identifier: {
3712
- # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
3712
+ # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
3713
3713
  # name: "AlarmName", # required
3714
3714
  # },
3715
3715
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -5440,7 +5440,7 @@ module Aws::Route53
5440
5440
  #
5441
5441
  # {
5442
5442
  # vpc_id: "VPCId", # required
5443
- # vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
5443
+ # vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
5444
5444
  # max_items: 1,
5445
5445
  # next_token: "PaginationToken",
5446
5446
  # }
@@ -8259,7 +8259,7 @@ module Aws::Route53
8259
8259
  # enable_sni: false,
8260
8260
  # regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
8261
8261
  # alarm_identifier: {
8262
- # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
8262
+ # region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, me-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
8263
8263
  # name: "AlarmName", # required
8264
8264
  # },
8265
8265
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
@@ -8822,7 +8822,7 @@ module Aws::Route53
8822
8822
  # data as a hash:
8823
8823
  #
8824
8824
  # {
8825
- # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
8825
+ # vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, me-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
8826
8826
  # vpc_id: "VPCId",
8827
8827
  # }
8828
8828
  #
@@ -13,10 +13,14 @@ require 'aws-sigv4'
13
13
 
14
14
  require_relative 'aws-sdk-route53/types'
15
15
  require_relative 'aws-sdk-route53/client_api'
16
+ require_relative 'aws-sdk-route53/plugins/endpoints.rb'
16
17
  require_relative 'aws-sdk-route53/client'
17
18
  require_relative 'aws-sdk-route53/errors'
18
19
  require_relative 'aws-sdk-route53/waiters'
19
20
  require_relative 'aws-sdk-route53/resource'
21
+ require_relative 'aws-sdk-route53/endpoint_parameters'
22
+ require_relative 'aws-sdk-route53/endpoint_provider'
23
+ require_relative 'aws-sdk-route53/endpoints'
20
24
  require_relative 'aws-sdk-route53/customizations'
21
25
 
22
26
  # This module provides support for Amazon Route 53. This module is available in the
@@ -49,6 +53,6 @@ require_relative 'aws-sdk-route53/customizations'
49
53
  # @!group service
50
54
  module Aws::Route53
51
55
 
52
- GEM_VERSION = '1.64.0'
56
+ GEM_VERSION = '1.66.0'
53
57
 
54
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-route53
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.64.0
4
+ version: 1.66.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-09-01 00:00:00.000000000 Z
11
+ date: 2022-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.127.0
22
+ version: 3.165.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.127.0
32
+ version: 3.165.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -59,7 +59,11 @@ files:
59
59
  - lib/aws-sdk-route53/client.rb
60
60
  - lib/aws-sdk-route53/client_api.rb
61
61
  - lib/aws-sdk-route53/customizations.rb
62
+ - lib/aws-sdk-route53/endpoint_parameters.rb
63
+ - lib/aws-sdk-route53/endpoint_provider.rb
64
+ - lib/aws-sdk-route53/endpoints.rb
62
65
  - lib/aws-sdk-route53/errors.rb
66
+ - lib/aws-sdk-route53/plugins/endpoints.rb
63
67
  - lib/aws-sdk-route53/plugins/id_fix.rb
64
68
  - lib/aws-sdk-route53/resource.rb
65
69
  - lib/aws-sdk-route53/types.rb