aws-sdk-route53 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +26 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e34e881fe2d72bbef3d9c6ba16f268d180300986
|
4
|
+
data.tar.gz: dfd1af689c638120fb4e79cc3288e46223ef262b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4d6e741b412a455729b408e62762a6700f4ee69c0f265e76284afdec19db44043fcbb9ef30a07eefab80b7c7d0563610eccb88a15bd7e0fda479a6c82b7cdeb
|
7
|
+
data.tar.gz: 748f56515c2bfab3837f3036ed00273930117ae18bfb98f2aef5d40edb934f98d9c83edd865d25b52137556d550c5d5414369e4daf5bd1f42061d8467435b174
|
data/lib/aws-sdk-route53.rb
CHANGED
@@ -338,7 +338,8 @@ module Aws::Route53
|
|
338
338
|
#
|
339
339
|
# @example Example: To create a basic resource record set
|
340
340
|
#
|
341
|
-
# # The following example creates a resource record set that routes Internet traffic to a resource with an IP address of
|
341
|
+
# # The following example creates a resource record set that routes Internet traffic to a resource with an IP address of
|
342
|
+
# # 192.0.2.44.
|
342
343
|
#
|
343
344
|
# resp = client.change_resource_record_sets({
|
344
345
|
# change_batch: {
|
@@ -374,7 +375,8 @@ module Aws::Route53
|
|
374
375
|
#
|
375
376
|
# @example Example: To create weighted resource record sets
|
376
377
|
#
|
377
|
-
# # The following example creates two weighted resource record sets. The resource with a Weight of 100 will get 1/3rd of
|
378
|
+
# # The following example creates two weighted resource record sets. The resource with a Weight of 100 will get 1/3rd of
|
379
|
+
# # traffic (100/100+200), and the other resource will get the rest of the traffic for example.com.
|
378
380
|
#
|
379
381
|
# resp = client.change_resource_record_sets({
|
380
382
|
# change_batch: {
|
@@ -464,7 +466,9 @@ module Aws::Route53
|
|
464
466
|
#
|
465
467
|
# @example Example: To create weighted alias resource record sets
|
466
468
|
#
|
467
|
-
# # The following example creates two weighted alias resource record sets that route traffic to ELB load balancers. The
|
469
|
+
# # The following example creates two weighted alias resource record sets that route traffic to ELB load balancers. The
|
470
|
+
# # resource with a Weight of 100 will get 1/3rd of traffic (100/100+200), and the other resource will get the rest of the
|
471
|
+
# # traffic for example.com.
|
468
472
|
#
|
469
473
|
# resp = client.change_resource_record_sets({
|
470
474
|
# change_batch: {
|
@@ -515,7 +519,9 @@ module Aws::Route53
|
|
515
519
|
#
|
516
520
|
# @example Example: To create latency resource record sets
|
517
521
|
#
|
518
|
-
# # The following example creates two latency resource record sets that route traffic to EC2 instances. Traffic for
|
522
|
+
# # The following example creates two latency resource record sets that route traffic to EC2 instances. Traffic for
|
523
|
+
# # example.com is routed either to the Ohio region or the Oregon region, depending on the latency between the user and
|
524
|
+
# # those regions.
|
519
525
|
#
|
520
526
|
# resp = client.change_resource_record_sets({
|
521
527
|
# change_batch: {
|
@@ -570,7 +576,9 @@ module Aws::Route53
|
|
570
576
|
#
|
571
577
|
# @example Example: To create latency alias resource record sets
|
572
578
|
#
|
573
|
-
# # The following example creates two latency alias resource record sets that route traffic for example.com to ELB load
|
579
|
+
# # The following example creates two latency alias resource record sets that route traffic for example.com to ELB load
|
580
|
+
# # balancers. Requests are routed either to the Ohio region or the Oregon region, depending on the latency between the user
|
581
|
+
# # and those regions.
|
574
582
|
#
|
575
583
|
# resp = client.change_resource_record_sets({
|
576
584
|
# change_batch: {
|
@@ -621,7 +629,9 @@ module Aws::Route53
|
|
621
629
|
#
|
622
630
|
# @example Example: To create failover resource record sets
|
623
631
|
#
|
624
|
-
# # The following example creates primary and secondary failover resource record sets that route traffic to EC2 instances.
|
632
|
+
# # The following example creates primary and secondary failover resource record sets that route traffic to EC2 instances.
|
633
|
+
# # Traffic is generally routed to the primary resource, in the Ohio region. If that resource is unavailable, traffic is
|
634
|
+
# # routed to the secondary resource, in the Oregon region.
|
625
635
|
#
|
626
636
|
# resp = client.change_resource_record_sets({
|
627
637
|
# change_batch: {
|
@@ -676,7 +686,9 @@ module Aws::Route53
|
|
676
686
|
#
|
677
687
|
# @example Example: To create failover alias resource record sets
|
678
688
|
#
|
679
|
-
# # The following example creates primary and secondary failover alias resource record sets that route traffic to ELB load
|
689
|
+
# # The following example creates primary and secondary failover alias resource record sets that route traffic to ELB load
|
690
|
+
# # balancers. Traffic is generally routed to the primary resource, in the Ohio region. If that resource is unavailable,
|
691
|
+
# # traffic is routed to the secondary resource, in the Oregon region.
|
680
692
|
#
|
681
693
|
# resp = client.change_resource_record_sets({
|
682
694
|
# change_batch: {
|
@@ -727,7 +739,9 @@ module Aws::Route53
|
|
727
739
|
#
|
728
740
|
# @example Example: To create geolocation resource record sets
|
729
741
|
#
|
730
|
-
# # The following example creates four geolocation resource record sets that use IPv4 addresses to route traffic to
|
742
|
+
# # The following example creates four geolocation resource record sets that use IPv4 addresses to route traffic to
|
743
|
+
# # resources such as web servers running on EC2 instances. Traffic is routed to one of four IP addresses, for North America
|
744
|
+
# # (NA), for South America (SA), for Europe (EU), and for all other locations (*).
|
731
745
|
#
|
732
746
|
# resp = client.change_resource_record_sets({
|
733
747
|
# change_batch: {
|
@@ -818,7 +832,9 @@ module Aws::Route53
|
|
818
832
|
#
|
819
833
|
# @example Example: To create geolocation alias resource record sets
|
820
834
|
#
|
821
|
-
# # The following example creates four geolocation alias resource record sets that route traffic to ELB load balancers.
|
835
|
+
# # The following example creates four geolocation alias resource record sets that route traffic to ELB load balancers.
|
836
|
+
# # Traffic is routed to one of four IP addresses, for North America (NA), for South America (SA), for Europe (EU), and for
|
837
|
+
# # all other locations (*).
|
822
838
|
#
|
823
839
|
# resp = client.change_resource_record_sets({
|
824
840
|
# change_batch: {
|
@@ -4538,7 +4554,7 @@ module Aws::Route53
|
|
4538
4554
|
params: params,
|
4539
4555
|
config: config)
|
4540
4556
|
context[:gem_name] = 'aws-sdk-route53'
|
4541
|
-
context[:gem_version] = '1.
|
4557
|
+
context[:gem_version] = '1.2.0'
|
4542
4558
|
Seahorse::Client::Request.new(handlers, context)
|
4543
4559
|
end
|
4544
4560
|
|
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.
|
4
|
+
version: 1.2.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-
|
11
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|