aws-sdk-route53 1.0.0.rc7 → 1.0.0.rc8

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: d5446ceeb3746f46b5e85c518cab55659126b9dc
4
- data.tar.gz: 21c9689db066a274ab64a5060284eb402182c1aa
3
+ metadata.gz: b3020001315b4d160c332241b0dfe5f0f1ae6ae2
4
+ data.tar.gz: 316a7a800bc1c9b1f5e3506fb00a5a7afb795a33
5
5
  SHA512:
6
- metadata.gz: 847cd520ffe8d8d2a40528647b92c1d4ab50ec5924ce7ea1422e0964bfba2d3a8e01e4860bd53b25b8bd03920a1784f8ab23bf95263bcaa64879752f9df84beb
7
- data.tar.gz: cc810977ace6cd29327c62bfa6450957575e139f65edd05820be83f35705c89229eb09860e3a58d6cec0537e067d71cbddf5d6897ceafa6d823401a87924558f
6
+ metadata.gz: 4fdc1f25a1d67e44d6f219ec91d8fb59b6f4c8e52cad6d6502d3493ba8d70a3ebc90e847a5b0093770b747f635e31731b76227eebed65a05200cea0388137de4
7
+ data.tar.gz: 1ef8142b8f89cc40a069c8bd0041589ab98fe7ddca4f387a244f73f8290402f3daf51246ad6c6e5555d163e3e4918b1ef274abaff273f913275795abb9704b6c
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-route53/customizations'
43
43
  # @service
44
44
  module Aws::Route53
45
45
 
46
- GEM_VERSION = '1.0.0.rc7'
46
+ GEM_VERSION = '1.0.0.rc8'
47
47
 
48
48
  end
@@ -286,8 +286,8 @@ module Aws::Route53
286
286
  # DNS servers. While your changes are propagating, `GetChange` returns a
287
287
  # status of `PENDING`. When propagation is complete, `GetChange` returns
288
288
  # a status of `INSYNC`. Changes generally propagate to all Amazon Route
289
- # 53 name servers in a few minutes. In rare circumstances, propagation
290
- # can take up to 30 minutes. For more information, see GetChange.
289
+ # 53 name servers within 60 seconds. For more information, see
290
+ # GetChange.
291
291
  #
292
292
  # **Limits on ChangeResourceRecordSets Requests**
293
293
  #
@@ -332,6 +332,7 @@ module Aws::Route53
332
332
  # subdivision_code: "GeoLocationSubdivisionCode",
333
333
  # },
334
334
  # failover: "PRIMARY", # accepts PRIMARY, SECONDARY
335
+ # multi_value_answer: false,
335
336
  # ttl: 1,
336
337
  # resource_records: [
337
338
  # {
@@ -2299,6 +2300,7 @@ module Aws::Route53
2299
2300
  # resp.resource_record_sets[0].geo_location.country_code #=> String
2300
2301
  # resp.resource_record_sets[0].geo_location.subdivision_code #=> String
2301
2302
  # resp.resource_record_sets[0].failover #=> String, one of "PRIMARY", "SECONDARY"
2303
+ # resp.resource_record_sets[0].multi_value_answer #=> Boolean
2302
2304
  # resp.resource_record_sets[0].ttl #=> Integer
2303
2305
  # resp.resource_record_sets[0].resource_records #=> Array
2304
2306
  # resp.resource_record_sets[0].resource_records[0].value #=> String
@@ -3571,7 +3573,7 @@ module Aws::Route53
3571
3573
  params: params,
3572
3574
  config: config)
3573
3575
  context[:gem_name] = 'aws-sdk-route53'
3574
- context[:gem_version] = '1.0.0.rc7'
3576
+ context[:gem_version] = '1.0.0.rc8'
3575
3577
  Seahorse::Client::Request.new(handlers, context)
3576
3578
  end
3577
3579
 
@@ -221,6 +221,7 @@ module Aws::Route53
221
221
  ResourceRecordSet = Shapes::StructureShape.new(name: 'ResourceRecordSet')
222
222
  ResourceRecordSetFailover = Shapes::StringShape.new(name: 'ResourceRecordSetFailover')
223
223
  ResourceRecordSetIdentifier = Shapes::StringShape.new(name: 'ResourceRecordSetIdentifier')
224
+ ResourceRecordSetMultiValueAnswer = Shapes::BooleanShape.new(name: 'ResourceRecordSetMultiValueAnswer')
224
225
  ResourceRecordSetRegion = Shapes::StringShape.new(name: 'ResourceRecordSetRegion')
225
226
  ResourceRecordSetWeight = Shapes::IntegerShape.new(name: 'ResourceRecordSetWeight')
226
227
  ResourceRecordSets = Shapes::ListShape.new(name: 'ResourceRecordSets')
@@ -793,6 +794,7 @@ module Aws::Route53
793
794
  ResourceRecordSet.add_member(:region, Shapes::ShapeRef.new(shape: ResourceRecordSetRegion, location_name: "Region"))
794
795
  ResourceRecordSet.add_member(:geo_location, Shapes::ShapeRef.new(shape: GeoLocation, location_name: "GeoLocation"))
795
796
  ResourceRecordSet.add_member(:failover, Shapes::ShapeRef.new(shape: ResourceRecordSetFailover, location_name: "Failover"))
797
+ ResourceRecordSet.add_member(:multi_value_answer, Shapes::ShapeRef.new(shape: ResourceRecordSetMultiValueAnswer, location_name: "MultiValueAnswer"))
796
798
  ResourceRecordSet.add_member(:ttl, Shapes::ShapeRef.new(shape: TTL, location_name: "TTL"))
797
799
  ResourceRecordSet.add_member(:resource_records, Shapes::ShapeRef.new(shape: ResourceRecords, location_name: "ResourceRecords"))
798
800
  ResourceRecordSet.add_member(:alias_target, Shapes::ShapeRef.new(shape: AliasTarget, location_name: "AliasTarget"))
@@ -387,6 +387,7 @@ module Aws::Route53
387
387
  # subdivision_code: "GeoLocationSubdivisionCode",
388
388
  # },
389
389
  # failover: "PRIMARY", # accepts PRIMARY, SECONDARY
390
+ # multi_value_answer: false,
390
391
  # ttl: 1,
391
392
  # resource_records: [
392
393
  # {
@@ -496,6 +497,7 @@ module Aws::Route53
496
497
  # subdivision_code: "GeoLocationSubdivisionCode",
497
498
  # },
498
499
  # failover: "PRIMARY", # accepts PRIMARY, SECONDARY
500
+ # multi_value_answer: false,
499
501
  # ttl: 1,
500
502
  # resource_records: [
501
503
  # {
@@ -597,6 +599,7 @@ module Aws::Route53
597
599
  # subdivision_code: "GeoLocationSubdivisionCode",
598
600
  # },
599
601
  # failover: "PRIMARY", # accepts PRIMARY, SECONDARY
602
+ # multi_value_answer: false,
600
603
  # ttl: 1,
601
604
  # resource_records: [
602
605
  # {
@@ -4048,6 +4051,7 @@ module Aws::Route53
4048
4051
  # subdivision_code: "GeoLocationSubdivisionCode",
4049
4052
  # },
4050
4053
  # failover: "PRIMARY", # accepts PRIMARY, SECONDARY
4054
+ # multi_value_answer: false,
4051
4055
  # ttl: 1,
4052
4056
  # resource_records: [
4053
4057
  # {
@@ -4120,6 +4124,9 @@ module Aws::Route53
4120
4124
  # geolocation, or failover resource record sets, specify the same
4121
4125
  # value for all of the resource record sets in the group.
4122
4126
  #
4127
+ # Valid values for multivalue answer resource record sets: `A` \|
4128
+ # `AAAA` \| `MX` \| `NAPTR` \| `PTR` \| `SPF` \| `SRV` \| `TXT`
4129
+ #
4123
4130
  # <note markdown="1"> SPF records were formerly used to verify the identity of the sender
4124
4131
  # of email messages. However, we no longer recommend that you create
4125
4132
  # resource record sets for which the value of `Type` is `SPF`. RFC
@@ -4148,8 +4155,8 @@ module Aws::Route53
4148
4155
  # * **Amazon S3 buckets:** `A`
4149
4156
  #
4150
4157
  # * **Another resource record set in this hosted zone:** Specify the
4151
- # type of the resource record set for which you're creating the
4152
- # alias. Specify any value except `NS` or `SOA`.
4158
+ # type of the resource record set that you're creating the alias
4159
+ # for. All values are supported except `NS` and `SOA`.
4153
4160
  #
4154
4161
  #
4155
4162
  #
@@ -4344,12 +4351,44 @@ module Aws::Route53
4344
4351
  # [2]: http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html
4345
4352
  # @return [String]
4346
4353
  #
4354
+ # @!attribute [rw] multi_value_answer
4355
+ # *Multivalue answer resource record sets only*\: To route traffic
4356
+ # approximately randomly to multiple resources, such as web servers,
4357
+ # create one multivalue answer record for each resource and specify
4358
+ # `true` for `MultiValueAnswer`. Note the following:
4359
+ #
4360
+ # * If you associate a health check with a multivalue answer resource
4361
+ # record set, Amazon Route 53 responds to DNS queries with the
4362
+ # corresponding IP address only when the health check is healthy.
4363
+ #
4364
+ # * If you don't associate a health check with a multivalue answer
4365
+ # record, Amazon Route 53 always considers the record to be healthy.
4366
+ #
4367
+ # * Amazon Route 53 responds to DNS queries with up to eight healthy
4368
+ # records; if you have eight or fewer healthy records, Amazon Route
4369
+ # 53 responds to all DNS queries with all the healthy records.
4370
+ #
4371
+ # * If you have more than eight healthy records, Amazon Route 53
4372
+ # responds to different DNS resolvers with different combinations of
4373
+ # healthy records.
4374
+ #
4375
+ # * When all records are unhealthy, Amazon Route 53 responds to DNS
4376
+ # queries with up to eight unhealthy records.
4377
+ #
4378
+ # * If a resource becomes unavailable after a resolver caches a
4379
+ # response, client software typically tries another of the IP
4380
+ # addresses in the response.
4381
+ #
4382
+ # You can't create multivalue answer alias records.
4383
+ # @return [Boolean]
4384
+ #
4347
4385
  # @!attribute [rw] ttl
4348
4386
  # The resource record cache time to live (TTL), in seconds. Note the
4349
4387
  # following:
4350
4388
  #
4351
- # * If you're creating an alias resource record set, omit `TTL`.
4352
- # Amazon Route 53 uses the value of `TTL` for the alias target.
4389
+ # * If you're creating or updating an alias resource record set, omit
4390
+ # `TTL`. Amazon Route 53 uses the value of `TTL` for the alias
4391
+ # target.
4353
4392
  #
4354
4393
  # * If you're associating this resource record set with a health
4355
4394
  # check (if you're adding a `HealthCheckId` element), we recommend
@@ -4513,6 +4552,7 @@ module Aws::Route53
4513
4552
  :region,
4514
4553
  :geo_location,
4515
4554
  :failover,
4555
+ :multi_value_answer,
4516
4556
  :ttl,
4517
4557
  :resource_records,
4518
4558
  :alias_target,
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.0.0.rc7
4
+ version: 1.0.0.rc8
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-05-23 00:00:00.000000000 Z
11
+ date: 2017-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0.rc12
19
+ version: 3.0.0.rc13
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.0.rc12
26
+ version: 3.0.0.rc13
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aws-sigv4
29
29
  requirement: !ruby/object:Gem::Requirement