aws-sdk-directconnect 1.32.0 → 1.37.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 +4 -4
- data/lib/aws-sdk-directconnect.rb +3 -2
- data/lib/aws-sdk-directconnect/client.rb +51 -37
- data/lib/aws-sdk-directconnect/types.rb +9 -10
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 693eeedab0363a4fa4d4493164d0d50403783e47343b9020ed24396e83c6d128
|
4
|
+
data.tar.gz: 51b679ee34a7c976904fbbaaf9178f95e59fcafff04f9b893ba3b4bbbd50555c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e58cac4c5df65d15a203af1797c5a4440f466f877d79cf7299085b04764ee70bb52709ae88a7fa20890fd4709ae0f27915cad7bb32ce7d7f142eaa4666c5fb28
|
7
|
+
data.tar.gz: 195cbae9c6f0aa99732298d8fde74a866ccf3ace224fe37a785841b0c6715e6f408d7ec94e18ba996dad1381d139bd596b075a8c4b0fd0a5b3596620dda138f3
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-directconnect/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::DirectConnect
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.37.0'
|
51
52
|
|
52
53
|
end
|
@@ -85,13 +85,28 @@ module Aws::DirectConnect
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::DirectConnect
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -1640,10 +1655,8 @@ module Aws::DirectConnect
|
|
1640
1655
|
# Creates a proposal to associate the specified virtual private gateway
|
1641
1656
|
# or transit gateway with the specified Direct Connect gateway.
|
1642
1657
|
#
|
1643
|
-
# You can
|
1644
|
-
#
|
1645
|
-
# Connect gateway and the account that owns the virtual private gateway
|
1646
|
-
# or transit gateway have the same AWS Payer ID.
|
1658
|
+
# You can associate a Direct Connect gateway and virtual private gateway
|
1659
|
+
# or transit gateway that is owned by any AWS account.
|
1647
1660
|
#
|
1648
1661
|
# @option params [required, String] :direct_connect_gateway_id
|
1649
1662
|
# The ID of the Direct Connect gateway.
|
@@ -1815,26 +1828,28 @@ module Aws::DirectConnect
|
|
1815
1828
|
end
|
1816
1829
|
|
1817
1830
|
# Creates a link aggregation group (LAG) with the specified number of
|
1818
|
-
# bundled physical connections between the customer network
|
1819
|
-
# specific AWS Direct Connect location. A LAG is a logical
|
1820
|
-
# that uses the Link Aggregation Control Protocol (LACP) to
|
1821
|
-
# multiple interfaces, enabling you to treat them as a single
|
1822
|
-
#
|
1823
|
-
#
|
1824
|
-
#
|
1825
|
-
#
|
1826
|
-
#
|
1827
|
-
#
|
1828
|
-
#
|
1829
|
-
#
|
1830
|
-
#
|
1831
|
-
#
|
1832
|
-
#
|
1833
|
-
#
|
1831
|
+
# bundled physical dedicated connections between the customer network
|
1832
|
+
# and a specific AWS Direct Connect location. A LAG is a logical
|
1833
|
+
# interface that uses the Link Aggregation Control Protocol (LACP) to
|
1834
|
+
# aggregate multiple interfaces, enabling you to treat them as a single
|
1835
|
+
# interface.
|
1836
|
+
#
|
1837
|
+
# All connections in a LAG must use the same bandwidth (either 1Gbps or
|
1838
|
+
# 10Gbps) and must terminate at the same AWS Direct Connect endpoint.
|
1839
|
+
#
|
1840
|
+
# You can have up to 10 dedicated connections per LAG. Regardless of
|
1841
|
+
# this limit, if you request more connections for the LAG than AWS
|
1842
|
+
# Direct Connect can allocate on a single endpoint, no LAG is created.
|
1843
|
+
#
|
1844
|
+
# You can specify an existing physical dedicated connection or
|
1845
|
+
# interconnect to include in the LAG (which counts towards the total
|
1846
|
+
# number of connections). Doing so interrupts the current physical
|
1847
|
+
# dedicated connection, and re-establishes them as a member of the LAG.
|
1834
1848
|
# The LAG will be created on the same AWS Direct Connect endpoint to
|
1835
|
-
# which the connection terminates. Any virtual interfaces
|
1836
|
-
# with the connection are automatically
|
1837
|
-
# with the LAG. The connection ID does
|
1849
|
+
# which the dedicated connection terminates. Any virtual interfaces
|
1850
|
+
# associated with the dedicated connection are automatically
|
1851
|
+
# disassociated and re-associated with the LAG. The connection ID does
|
1852
|
+
# not change.
|
1838
1853
|
#
|
1839
1854
|
# If the AWS account used to create a LAG is a registered AWS Direct
|
1840
1855
|
# Connect Partner, the LAG is automatically enabled to host
|
@@ -1842,22 +1857,21 @@ module Aws::DirectConnect
|
|
1842
1857
|
# interfaces cannot be directly configured.
|
1843
1858
|
#
|
1844
1859
|
# @option params [required, Integer] :number_of_connections
|
1845
|
-
# The number of physical connections initially provisioned and
|
1846
|
-
# by the LAG.
|
1860
|
+
# The number of physical dedicated connections initially provisioned and
|
1861
|
+
# bundled by the LAG.
|
1847
1862
|
#
|
1848
1863
|
# @option params [required, String] :location
|
1849
1864
|
# The location for the LAG.
|
1850
1865
|
#
|
1851
1866
|
# @option params [required, String] :connections_bandwidth
|
1852
|
-
# The bandwidth of the individual physical connections bundled
|
1853
|
-
# LAG. The possible values are
|
1854
|
-
# 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps.
|
1867
|
+
# The bandwidth of the individual physical dedicated connections bundled
|
1868
|
+
# by the LAG. The possible values are 1Gbps and 10Gbps.
|
1855
1869
|
#
|
1856
1870
|
# @option params [required, String] :lag_name
|
1857
1871
|
# The name of the LAG.
|
1858
1872
|
#
|
1859
1873
|
# @option params [String] :connection_id
|
1860
|
-
# The ID of an existing connection to migrate to the LAG.
|
1874
|
+
# The ID of an existing dedicated connection to migrate to the LAG.
|
1861
1875
|
#
|
1862
1876
|
# @option params [Array<Types::Tag>] :tags
|
1863
1877
|
# The tags to associate with the LAG.
|
@@ -4144,7 +4158,7 @@ module Aws::DirectConnect
|
|
4144
4158
|
params: params,
|
4145
4159
|
config: config)
|
4146
4160
|
context[:gem_name] = 'aws-sdk-directconnect'
|
4147
|
-
context[:gem_version] = '1.
|
4161
|
+
context[:gem_version] = '1.37.0'
|
4148
4162
|
Seahorse::Client::Request.new(handlers, context)
|
4149
4163
|
end
|
4150
4164
|
|
@@ -1264,8 +1264,8 @@ module Aws::DirectConnect
|
|
1264
1264
|
# }
|
1265
1265
|
#
|
1266
1266
|
# @!attribute [rw] number_of_connections
|
1267
|
-
# The number of physical connections initially provisioned
|
1268
|
-
# by the LAG.
|
1267
|
+
# The number of physical dedicated connections initially provisioned
|
1268
|
+
# and bundled by the LAG.
|
1269
1269
|
# @return [Integer]
|
1270
1270
|
#
|
1271
1271
|
# @!attribute [rw] location
|
@@ -1273,9 +1273,8 @@ module Aws::DirectConnect
|
|
1273
1273
|
# @return [String]
|
1274
1274
|
#
|
1275
1275
|
# @!attribute [rw] connections_bandwidth
|
1276
|
-
# The bandwidth of the individual physical connections
|
1277
|
-
# LAG. The possible values are
|
1278
|
-
# 400Mbps, 500Mbps, 1Gbps, 2Gbps, 5Gbps, and 10Gbps.
|
1276
|
+
# The bandwidth of the individual physical dedicated connections
|
1277
|
+
# bundled by the LAG. The possible values are 1Gbps and 10Gbps.
|
1279
1278
|
# @return [String]
|
1280
1279
|
#
|
1281
1280
|
# @!attribute [rw] lag_name
|
@@ -1283,7 +1282,7 @@ module Aws::DirectConnect
|
|
1283
1282
|
# @return [String]
|
1284
1283
|
#
|
1285
1284
|
# @!attribute [rw] connection_id
|
1286
|
-
# The ID of an existing connection to migrate to the LAG.
|
1285
|
+
# The ID of an existing dedicated connection to migrate to the LAG.
|
1287
1286
|
# @return [String]
|
1288
1287
|
#
|
1289
1288
|
# @!attribute [rw] tags
|
@@ -2711,8 +2710,8 @@ module Aws::DirectConnect
|
|
2711
2710
|
# @return [String]
|
2712
2711
|
#
|
2713
2712
|
# @!attribute [rw] number_of_connections
|
2714
|
-
# The number of physical connections bundled by the LAG, up
|
2715
|
-
# maximum of 10.
|
2713
|
+
# The number of physical dedicated connections bundled by the LAG, up
|
2714
|
+
# to a maximum of 10.
|
2716
2715
|
# @return [Integer]
|
2717
2716
|
#
|
2718
2717
|
# @!attribute [rw] lag_id
|
@@ -2757,8 +2756,8 @@ module Aws::DirectConnect
|
|
2757
2756
|
# @return [String]
|
2758
2757
|
#
|
2759
2758
|
# @!attribute [rw] minimum_links
|
2760
|
-
# The minimum number of physical connections that must be
|
2761
|
-
# for the LAG itself to be operational.
|
2759
|
+
# The minimum number of physical dedicated connections that must be
|
2760
|
+
# operational for the LAG itself to be operational.
|
2762
2761
|
# @return [Integer]
|
2763
2762
|
#
|
2764
2763
|
# @!attribute [rw] aws_device
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-directconnect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.37.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: 2020-
|
11
|
+
date: 2020-09-30 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.
|
22
|
+
version: 3.109.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.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|