aws-sdk-globalaccelerator 1.28.0 → 1.29.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f977dd876fc9292f3d29e0463143fa81de9e8341ab8a216dfc2ddfbd8cad547
|
4
|
+
data.tar.gz: 1ee803cf0e80c122ed26f049d2388cc05ad2ed06871a845b908900016107454f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6a91d8ee0d00c2403953f92171460e9a3cbf665538bd90d6c3b2fca5584b8c4d6ce97496e745794881206844ad49dade91019977db9c1b99957a1d760271766
|
7
|
+
data.tar.gz: 7b5704d77f939a6d0019107bc5712eaf826cc7c0fc8be9bf3bf434d93c7ad8111ed322ae3b685c09c985d369ca6f489eba49a5228a70e476588a285911afd7b8
|
@@ -537,7 +537,7 @@ module Aws::GlobalAccelerator
|
|
537
537
|
# Accelerator (BYOIP), you can choose IP addresses from your own pool to
|
538
538
|
# use for the accelerator's static IP addresses when you create an
|
539
539
|
# accelerator. You can specify one or two addresses, separated by a
|
540
|
-
#
|
540
|
+
# space. Do not include the /32 suffix.
|
541
541
|
#
|
542
542
|
# Only one IP address from each of your IP address ranges can be used
|
543
543
|
# for each accelerator. If you specify only one IP address from your IP
|
@@ -633,6 +633,10 @@ module Aws::GlobalAccelerator
|
|
633
633
|
# receive traffic, or to specify individual port mappings that can
|
634
634
|
# receive traffic, see the [ AllowCustomRoutingTraffic][1] operation.
|
635
635
|
#
|
636
|
+
# Global Accelerator is a global service that supports endpoints in
|
637
|
+
# multiple AWS Regions but you must specify the US West (Oregon) Region
|
638
|
+
# to create or update accelerators.
|
639
|
+
#
|
636
640
|
#
|
637
641
|
#
|
638
642
|
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/api/API_AllowCustomRoutingTraffic.html
|
@@ -645,6 +649,29 @@ module Aws::GlobalAccelerator
|
|
645
649
|
# @option params [String] :ip_address_type
|
646
650
|
# The value for the address type must be IPv4.
|
647
651
|
#
|
652
|
+
# @option params [Array<String>] :ip_addresses
|
653
|
+
# Optionally, if you've added your own IP address pool to Global
|
654
|
+
# Accelerator (BYOIP), you can choose IP addresses from your own pool to
|
655
|
+
# use for the accelerator's static IP addresses when you create an
|
656
|
+
# accelerator. You can specify one or two addresses, separated by a
|
657
|
+
# space. Do not include the /32 suffix.
|
658
|
+
#
|
659
|
+
# Only one IP address from each of your IP address ranges can be used
|
660
|
+
# for each accelerator. If you specify only one IP address from your IP
|
661
|
+
# address range, Global Accelerator assigns a second static IP address
|
662
|
+
# for the accelerator from the AWS IP address pool.
|
663
|
+
#
|
664
|
+
# Note that you can't update IP addresses for an existing accelerator.
|
665
|
+
# To change them, you must create a new accelerator with the new
|
666
|
+
# addresses.
|
667
|
+
#
|
668
|
+
# For more information, see [Bring your own IP addresses (BYOIP)][1] in
|
669
|
+
# the *AWS Global Accelerator Developer Guide*.
|
670
|
+
#
|
671
|
+
#
|
672
|
+
#
|
673
|
+
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
|
674
|
+
#
|
648
675
|
# @option params [Boolean] :enabled
|
649
676
|
# Indicates whether an accelerator is enabled. The value is true or
|
650
677
|
# false. The default value is true.
|
@@ -678,6 +705,7 @@ module Aws::GlobalAccelerator
|
|
678
705
|
# resp = client.create_custom_routing_accelerator({
|
679
706
|
# name: "GenericString", # required
|
680
707
|
# ip_address_type: "IPV4", # accepts IPV4
|
708
|
+
# ip_addresses: ["IpAddress"],
|
681
709
|
# enabled: false,
|
682
710
|
# idempotency_token: "IdempotencyToken", # required
|
683
711
|
# tags: [
|
@@ -2856,7 +2884,7 @@ module Aws::GlobalAccelerator
|
|
2856
2884
|
params: params,
|
2857
2885
|
config: config)
|
2858
2886
|
context[:gem_name] = 'aws-sdk-globalaccelerator'
|
2859
|
-
context[:gem_version] = '1.
|
2887
|
+
context[:gem_version] = '1.29.0'
|
2860
2888
|
Seahorse::Client::Request.new(handlers, context)
|
2861
2889
|
end
|
2862
2890
|
|
@@ -287,6 +287,7 @@ module Aws::GlobalAccelerator
|
|
287
287
|
|
288
288
|
CreateCustomRoutingAcceleratorRequest.add_member(:name, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "Name"))
|
289
289
|
CreateCustomRoutingAcceleratorRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
290
|
+
CreateCustomRoutingAcceleratorRequest.add_member(:ip_addresses, Shapes::ShapeRef.new(shape: IpAddresses, location_name: "IpAddresses"))
|
290
291
|
CreateCustomRoutingAcceleratorRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: GenericBoolean, location_name: "Enabled"))
|
291
292
|
CreateCustomRoutingAcceleratorRequest.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "IdempotencyToken", metadata: {"idempotencyToken"=>true}))
|
292
293
|
CreateCustomRoutingAcceleratorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
@@ -539,7 +539,7 @@ module Aws::GlobalAccelerator
|
|
539
539
|
# Accelerator (BYOIP), you can choose IP addresses from your own pool
|
540
540
|
# to use for the accelerator's static IP addresses when you create an
|
541
541
|
# accelerator. You can specify one or two addresses, separated by a
|
542
|
-
#
|
542
|
+
# space. Do not include the /32 suffix.
|
543
543
|
#
|
544
544
|
# Only one IP address from each of your IP address ranges can be used
|
545
545
|
# for each accelerator. If you specify only one IP address from your
|
@@ -617,6 +617,7 @@ module Aws::GlobalAccelerator
|
|
617
617
|
# {
|
618
618
|
# name: "GenericString", # required
|
619
619
|
# ip_address_type: "IPV4", # accepts IPV4
|
620
|
+
# ip_addresses: ["IpAddress"],
|
620
621
|
# enabled: false,
|
621
622
|
# idempotency_token: "IdempotencyToken", # required
|
622
623
|
# tags: [
|
@@ -637,6 +638,30 @@ module Aws::GlobalAccelerator
|
|
637
638
|
# The value for the address type must be IPv4.
|
638
639
|
# @return [String]
|
639
640
|
#
|
641
|
+
# @!attribute [rw] ip_addresses
|
642
|
+
# Optionally, if you've added your own IP address pool to Global
|
643
|
+
# Accelerator (BYOIP), you can choose IP addresses from your own pool
|
644
|
+
# to use for the accelerator's static IP addresses when you create an
|
645
|
+
# accelerator. You can specify one or two addresses, separated by a
|
646
|
+
# space. Do not include the /32 suffix.
|
647
|
+
#
|
648
|
+
# Only one IP address from each of your IP address ranges can be used
|
649
|
+
# for each accelerator. If you specify only one IP address from your
|
650
|
+
# IP address range, Global Accelerator assigns a second static IP
|
651
|
+
# address for the accelerator from the AWS IP address pool.
|
652
|
+
#
|
653
|
+
# Note that you can't update IP addresses for an existing
|
654
|
+
# accelerator. To change them, you must create a new accelerator with
|
655
|
+
# the new addresses.
|
656
|
+
#
|
657
|
+
# For more information, see [Bring your own IP addresses (BYOIP)][1]
|
658
|
+
# in the *AWS Global Accelerator Developer Guide*.
|
659
|
+
#
|
660
|
+
#
|
661
|
+
#
|
662
|
+
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html
|
663
|
+
# @return [Array<String>]
|
664
|
+
#
|
640
665
|
# @!attribute [rw] enabled
|
641
666
|
# Indicates whether an accelerator is enabled. The value is true or
|
642
667
|
# false. The default value is true.
|
@@ -669,6 +694,7 @@ module Aws::GlobalAccelerator
|
|
669
694
|
class CreateCustomRoutingAcceleratorRequest < Struct.new(
|
670
695
|
:name,
|
671
696
|
:ip_address_type,
|
697
|
+
:ip_addresses,
|
672
698
|
:enabled,
|
673
699
|
:idempotency_token,
|
674
700
|
:tags)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-globalaccelerator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.29.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: 2021-02-
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|