aws-sdk-route53 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e34e881fe2d72bbef3d9c6ba16f268d180300986
4
- data.tar.gz: dfd1af689c638120fb4e79cc3288e46223ef262b
3
+ metadata.gz: f98cbbb10bfd3c6235367ec9d6ccd45776f85492
4
+ data.tar.gz: 20e69d76e119371dfb7c49ff92b1ed4183d5b7bb
5
5
  SHA512:
6
- metadata.gz: a4d6e741b412a455729b408e62762a6700f4ee69c0f265e76284afdec19db44043fcbb9ef30a07eefab80b7c7d0563610eccb88a15bd7e0fda479a6c82b7cdeb
7
- data.tar.gz: 748f56515c2bfab3837f3036ed00273930117ae18bfb98f2aef5d40edb934f98d9c83edd865d25b52137556d550c5d5414369e4daf5bd1f42061d8467435b174
6
+ metadata.gz: 4107fb22d7370d6e8fa667b093544fc19055ac67c0181ef0d6f2d5c6b7c381d7ce3fc9ec81e285920d5a51a3c7938de69f3e4c2efcfab707490bdd3051335f6b
7
+ data.tar.gz: e4f6a5261161ee3bfe11238f6a70a61333655f344b85f0cdc3ddfb78289fea89ede9d2af5644ecaceaeb5464fcab69c10573ad44e51bc2e64c09a0b2231efd18
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-route53/customizations'
43
43
  # @service
44
44
  module Aws::Route53
45
45
 
46
- GEM_VERSION = '1.2.0'
46
+ GEM_VERSION = '1.3.0'
47
47
 
48
48
  end
@@ -4317,6 +4317,23 @@ module Aws::Route53
4317
4317
  # the alarm state. For new health checks that have no last known
4318
4318
  # status, the default status for the health check is healthy.
4319
4319
  #
4320
+ # @option params [Array<String>] :reset_elements
4321
+ # A complex type that contains one `ResetElement` element for each
4322
+ # element that you want to reset to the default value. Valid values for
4323
+ # `ResetElement` include the following:
4324
+ #
4325
+ # * `ChildHealthChecks`\: Amazon Route 53 resets
4326
+ # HealthCheckConfig$ChildHealthChecks to null.
4327
+ #
4328
+ # * `FullyQualifiedDomainName`\: Amazon Route 53 resets
4329
+ # HealthCheckConfig$FullyQualifiedDomainName to null.
4330
+ #
4331
+ # * `Regions`\: Amazon Route 53 resets the HealthCheckConfig$Regions
4332
+ # list to the default set of regions.
4333
+ #
4334
+ # * `ResourcePath`\: Amazon Route 53 resets
4335
+ # HealthCheckConfig$ResourcePath to null.
4336
+ #
4320
4337
  # @return [Types::UpdateHealthCheckResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4321
4338
  #
4322
4339
  # * {Types::UpdateHealthCheckResponse#health_check #health_check} => Types::HealthCheck
@@ -4342,6 +4359,7 @@ module Aws::Route53
4342
4359
  # name: "AlarmName", # required
4343
4360
  # },
4344
4361
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
4362
+ # reset_elements: ["FullyQualifiedDomainName"], # accepts FullyQualifiedDomainName, Regions, ResourcePath, ChildHealthChecks
4345
4363
  # })
4346
4364
  #
4347
4365
  # @example Response structure
@@ -4554,7 +4572,7 @@ module Aws::Route53
4554
4572
  params: params,
4555
4573
  config: config)
4556
4574
  context[:gem_name] = 'aws-sdk-route53'
4557
- context[:gem_version] = '1.2.0'
4575
+ context[:gem_version] = '1.3.0'
4558
4576
  Seahorse::Client::Request.new(handlers, context)
4559
4577
  end
4560
4578
 
@@ -230,6 +230,8 @@ module Aws::Route53
230
230
  RecordData = Shapes::ListShape.new(name: 'RecordData')
231
231
  RecordDataEntry = Shapes::StringShape.new(name: 'RecordDataEntry')
232
232
  RequestInterval = Shapes::IntegerShape.new(name: 'RequestInterval')
233
+ ResettableElementName = Shapes::StringShape.new(name: 'ResettableElementName')
234
+ ResettableElementNameList = Shapes::ListShape.new(name: 'ResettableElementNameList')
233
235
  ResourceDescription = Shapes::StringShape.new(name: 'ResourceDescription')
234
236
  ResourceId = Shapes::StringShape.new(name: 'ResourceId')
235
237
  ResourcePath = Shapes::StringShape.new(name: 'ResourcePath')
@@ -835,6 +837,8 @@ module Aws::Route53
835
837
 
836
838
  RecordData.member = Shapes::ShapeRef.new(shape: RecordDataEntry, location_name: "RecordDataEntry")
837
839
 
840
+ ResettableElementNameList.member = Shapes::ShapeRef.new(shape: ResettableElementName, location_name: "ResettableElementName")
841
+
838
842
  ResourceRecord.add_member(:value, Shapes::ShapeRef.new(shape: RData, required: true, location_name: "Value"))
839
843
  ResourceRecord.struct_class = Types::ResourceRecord
840
844
 
@@ -941,6 +945,7 @@ module Aws::Route53
941
945
  UpdateHealthCheckRequest.add_member(:regions, Shapes::ShapeRef.new(shape: HealthCheckRegionList, location_name: "Regions"))
942
946
  UpdateHealthCheckRequest.add_member(:alarm_identifier, Shapes::ShapeRef.new(shape: AlarmIdentifier, location_name: "AlarmIdentifier"))
943
947
  UpdateHealthCheckRequest.add_member(:insufficient_data_health_status, Shapes::ShapeRef.new(shape: InsufficientDataHealthStatus, location_name: "InsufficientDataHealthStatus"))
948
+ UpdateHealthCheckRequest.add_member(:reset_elements, Shapes::ShapeRef.new(shape: ResettableElementNameList, location_name: "ResetElements"))
944
949
  UpdateHealthCheckRequest.struct_class = Types::UpdateHealthCheckRequest
945
950
 
946
951
  UpdateHealthCheckResponse.add_member(:health_check, Shapes::ShapeRef.new(shape: HealthCheck, required: true, location_name: "HealthCheck"))
@@ -108,11 +108,12 @@ module Aws::Route53
108
108
  #
109
109
  # * [Elastic Load Balancing][2] table in the "AWS Regions and
110
110
  # Endpoints" chapter of the *Amazon Web Services General
111
- # Reference*\: Use the value in the "Amazon Route 53 Hosted Zone
112
- # ID" column that corresponds with the region that you created
113
- # your load balancer in.
111
+ # Reference*\: Use the value that corresponds with the region that
112
+ # you created your load balancer in. Note that there are separate
113
+ # columns for Application and Classic Load Balancers and for
114
+ # Network Load Balancers.
114
115
  #
115
- # * **AWS Management Console**\: Go to the Amazon EC2 page, click
116
+ # * **AWS Management Console**\: Go to the Amazon EC2 page, choose
116
117
  # **Load Balancers** in the navigation pane, select the load
117
118
  # balancer, and get the value of the **Hosted zone** field on the
118
119
  # **Description** tab.
@@ -121,18 +122,26 @@ module Aws::Route53
121
122
  # get the value of `CanonicalHostedZoneNameId`. For more
122
123
  # information, see the applicable guide:
123
124
  #
124
- # * Classic Load Balancer: [DescribeLoadBalancers][3]
125
+ # * Classic Load Balancers: [DescribeLoadBalancers][3]
125
126
  #
126
- # * Application Load Balancer: [DescribeLoadBalancers][4]
127
+ # * Application and Network Load Balancers:
128
+ # [DescribeLoadBalancers][4]
127
129
  #
128
- # * **AWS CLI**\: Use ` describe-load-balancers ` to get the value
129
- # of `CanonicalHostedZoneNameID`.
130
+ # * **AWS CLI**\: Use `describe-load-balancers` to get the value of
131
+ # `CanonicalHostedZoneNameID` (for Classic Load Balancers) or
132
+ # `CanonicalHostedZoneNameID` (for Application and Network Load
133
+ # Balancers). For more information, see the applicable guide:
134
+ #
135
+ # * Classic Load Balancers: [describe-load-balancers][5]
136
+ #
137
+ # * Application and Network Load Balancers:
138
+ # [describe-load-balancers][6]
130
139
  #
131
140
  # An Amazon S3 bucket configured as a static website
132
141
  #
133
142
  # : Specify the hosted zone ID for the region that you created the
134
143
  # bucket in. For more information about valid values, see the
135
- # [Amazon Simple Storage Service Website Endpoints][5] table in the
144
+ # [Amazon Simple Storage Service Website Endpoints][7] table in the
136
145
  # "AWS Regions and Endpoints" chapter of the *Amazon Web Services
137
146
  # General Reference*.
138
147
  #
@@ -148,7 +157,9 @@ module Aws::Route53
148
157
  # [2]: http://docs.aws.amazon.com/general/latest/gr/rande.html#elb_region
149
158
  # [3]: http://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
150
159
  # [4]: http://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
151
- # [5]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
160
+ # [5]: http://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html
161
+ # [6]: http://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html
162
+ # [7]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
152
163
  # @return [String]
153
164
  #
154
165
  # @!attribute [rw] dns_name
@@ -205,12 +216,18 @@ module Aws::Route53
205
216
  # get the value of `DNSName`. For more information, see the
206
217
  # applicable guide:
207
218
  #
208
- # * Classic Load Balancer: [DescribeLoadBalancers][5]
219
+ # * Classic Load Balancers: [DescribeLoadBalancers][5]
220
+ #
221
+ # * Application and Network Load Balancers:
222
+ # [DescribeLoadBalancers][6]
209
223
  #
210
- # * Application Load Balancer: [DescribeLoadBalancers][6]
224
+ # * **AWS CLI**\: Use `describe-load-balancers` to get the value of
225
+ # `DNSName`. For more information, see the applicable guide:
211
226
  #
212
- # * **AWS CLI**\: Use ` describe-load-balancers ` to get the value
213
- # of `DNSName`.
227
+ # * Classic Load Balancers: [describe-load-balancers][7]
228
+ #
229
+ # * Application and Network Load Balancers:
230
+ # [describe-load-balancers][8]
214
231
  #
215
232
  # Amazon S3 bucket that is configured as a static website
216
233
  #
@@ -218,9 +235,9 @@ module Aws::Route53
218
235
  # you created the bucket, for example,
219
236
  # `s3-website-us-east-2.amazonaws.com`. For more information about
220
237
  # valid values, see the table [Amazon Simple Storage Service (S3)
221
- # Website Endpoints][7] in the *Amazon Web Services General
238
+ # Website Endpoints][9] in the *Amazon Web Services General
222
239
  # Reference*. For more information about using S3 buckets for
223
- # websites, see [Getting Started with Amazon Route 53][8] in the
240
+ # websites, see [Getting Started with Amazon Route 53][10] in the
224
241
  # *Amazon Route 53 Developer Guide.*
225
242
  #
226
243
  # Another Amazon Route 53 resource record set
@@ -236,8 +253,10 @@ module Aws::Route53
236
253
  # [4]: http://docs.aws.amazon.com/cli/latest/reference/elasticbeanstalk/describe-environments.html
237
254
  # [5]: http://docs.aws.amazon.com/elasticloadbalancing/2012-06-01/APIReference/API_DescribeLoadBalancers.html
238
255
  # [6]: http://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/API_DescribeLoadBalancers.html
239
- # [7]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
240
- # [8]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/getting-started.html
256
+ # [7]: http://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html
257
+ # [8]: http://docs.aws.amazon.com/cli/latest/reference/elbv2/describe-load-balancers.html
258
+ # [9]: http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
259
+ # [10]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/getting-started.html
241
260
  # @return [String]
242
261
  #
243
262
  # @!attribute [rw] evaluate_target_health
@@ -5192,6 +5211,7 @@ module Aws::Route53
5192
5211
  # name: "AlarmName", # required
5193
5212
  # },
5194
5213
  # insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
5214
+ # reset_elements: ["FullyQualifiedDomainName"], # accepts FullyQualifiedDomainName, Regions, ResourcePath, ChildHealthChecks
5195
5215
  # }
5196
5216
  #
5197
5217
  # @!attribute [rw] health_check_id
@@ -5479,6 +5499,24 @@ module Aws::Route53
5479
5499
  # known status, the default status for the health check is healthy.
5480
5500
  # @return [String]
5481
5501
  #
5502
+ # @!attribute [rw] reset_elements
5503
+ # A complex type that contains one `ResetElement` element for each
5504
+ # element that you want to reset to the default value. Valid values
5505
+ # for `ResetElement` include the following:
5506
+ #
5507
+ # * `ChildHealthChecks`\: Amazon Route 53 resets
5508
+ # HealthCheckConfig$ChildHealthChecks to null.
5509
+ #
5510
+ # * `FullyQualifiedDomainName`\: Amazon Route 53 resets
5511
+ # HealthCheckConfig$FullyQualifiedDomainName to null.
5512
+ #
5513
+ # * `Regions`\: Amazon Route 53 resets the HealthCheckConfig$Regions
5514
+ # list to the default set of regions.
5515
+ #
5516
+ # * `ResourcePath`\: Amazon Route 53 resets
5517
+ # HealthCheckConfig$ResourcePath to null.
5518
+ # @return [Array<String>]
5519
+ #
5482
5520
  # @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/UpdateHealthCheckRequest AWS API Documentation
5483
5521
  #
5484
5522
  class UpdateHealthCheckRequest < Struct.new(
@@ -5496,7 +5534,8 @@ module Aws::Route53
5496
5534
  :enable_sni,
5497
5535
  :regions,
5498
5536
  :alarm_identifier,
5499
- :insufficient_data_health_status)
5537
+ :insufficient_data_health_status,
5538
+ :reset_elements)
5500
5539
  include Aws::Structure
5501
5540
  end
5502
5541
 
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.2.0
4
+ version: 1.3.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: 2017-09-13 00:00:00.000000000 Z
11
+ date: 2017-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core