aws-sdk-networkmanager 1.1.0 → 1.6.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 +5 -5
- data/lib/aws-sdk-networkmanager.rb +4 -2
- data/lib/aws-sdk-networkmanager/client.rb +64 -28
- data/lib/aws-sdk-networkmanager/client_api.rb +2 -0
- data/lib/aws-sdk-networkmanager/errors.rb +2 -0
- data/lib/aws-sdk-networkmanager/resource.rb +3 -7
- data/lib/aws-sdk-networkmanager/types.rb +75 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 037e0267556989d3ce3f6046da1eb188ae17b2c25a8a81f4e2865d78c8c5ce53
|
4
|
+
data.tar.gz: b06404ec2c137e1f211c0e7f282a7c490a468d10230efa38eea4b363d5460830
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00c7e51f7e6429edc5d2bf6aafab922c00aa48ac8d5798e6fdc17e6112ca5c60b1f9b1091c8c6b1f99a635c6292096d4be1b98d895675abc495f2d7f9c7e1d59
|
7
|
+
data.tar.gz: 3eed32e759adff5485caf7e4889793c6e9e7bcc0b7247162dcc8e3bf973c2b64692c4e241437e5232b4eb270b0084cb84db8ec43d39618d1ee502e534a060500
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-networkmanager/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::NetworkManager
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.6.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:networkmanager)
|
|
32
35
|
module Aws::NetworkManager
|
33
36
|
# An API client for NetworkManager. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::NetworkManager::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::NetworkManager
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::NetworkManager
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
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
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,15 +116,15 @@ module Aws::NetworkManager
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# 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.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::NetworkManager
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::NetworkManager
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -229,15 +248,19 @@ module Aws::NetworkManager
|
|
229
248
|
#
|
230
249
|
# @option options [String] :retry_mode ("legacy")
|
231
250
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
251
|
+
#
|
252
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
253
|
+
# no retry mode is provided.
|
254
|
+
#
|
255
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
256
|
+
# This includes support for retry quotas, which limit the number of
|
257
|
+
# unsuccessful retries a client can make.
|
258
|
+
#
|
259
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
260
|
+
# functionality of `standard` mode along with automatic client side
|
261
|
+
# throttling. This is a provisional mode that may change behavior
|
262
|
+
# in the future.
|
263
|
+
#
|
241
264
|
#
|
242
265
|
# @option options [String] :secret_access_key
|
243
266
|
#
|
@@ -265,8 +288,7 @@ module Aws::NetworkManager
|
|
265
288
|
#
|
266
289
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
290
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
291
|
+
# safely be set per-request on the session.
|
270
292
|
#
|
271
293
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
294
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +300,7 @@ module Aws::NetworkManager
|
|
278
300
|
# request body. This option has no effect unless the request has
|
279
301
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
302
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
303
|
+
# request on the session.
|
282
304
|
#
|
283
305
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
306
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -940,6 +962,8 @@ module Aws::NetworkManager
|
|
940
962
|
# * {Types::DescribeGlobalNetworksResponse#global_networks #global_networks} => Array<Types::GlobalNetwork>
|
941
963
|
# * {Types::DescribeGlobalNetworksResponse#next_token #next_token} => String
|
942
964
|
#
|
965
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
966
|
+
#
|
943
967
|
# @example Request syntax with placeholder values
|
944
968
|
#
|
945
969
|
# resp = client.describe_global_networks({
|
@@ -1077,6 +1101,8 @@ module Aws::NetworkManager
|
|
1077
1101
|
# * {Types::GetCustomerGatewayAssociationsResponse#customer_gateway_associations #customer_gateway_associations} => Array<Types::CustomerGatewayAssociation>
|
1078
1102
|
# * {Types::GetCustomerGatewayAssociationsResponse#next_token #next_token} => String
|
1079
1103
|
#
|
1104
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1105
|
+
#
|
1080
1106
|
# @example Request syntax with placeholder values
|
1081
1107
|
#
|
1082
1108
|
# resp = client.get_customer_gateway_associations({
|
@@ -1128,6 +1154,8 @@ module Aws::NetworkManager
|
|
1128
1154
|
# * {Types::GetDevicesResponse#devices #devices} => Array<Types::Device>
|
1129
1155
|
# * {Types::GetDevicesResponse#next_token #next_token} => String
|
1130
1156
|
#
|
1157
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1158
|
+
#
|
1131
1159
|
# @example Request syntax with placeholder values
|
1132
1160
|
#
|
1133
1161
|
# resp = client.get_devices({
|
@@ -1192,6 +1220,8 @@ module Aws::NetworkManager
|
|
1192
1220
|
# * {Types::GetLinkAssociationsResponse#link_associations #link_associations} => Array<Types::LinkAssociation>
|
1193
1221
|
# * {Types::GetLinkAssociationsResponse#next_token #next_token} => String
|
1194
1222
|
#
|
1223
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1224
|
+
#
|
1195
1225
|
# @example Request syntax with placeholder values
|
1196
1226
|
#
|
1197
1227
|
# resp = client.get_link_associations({
|
@@ -1253,6 +1283,8 @@ module Aws::NetworkManager
|
|
1253
1283
|
# * {Types::GetLinksResponse#links #links} => Array<Types::Link>
|
1254
1284
|
# * {Types::GetLinksResponse#next_token #next_token} => String
|
1255
1285
|
#
|
1286
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1287
|
+
#
|
1256
1288
|
# @example Request syntax with placeholder values
|
1257
1289
|
#
|
1258
1290
|
# resp = client.get_links({
|
@@ -1312,6 +1344,8 @@ module Aws::NetworkManager
|
|
1312
1344
|
# * {Types::GetSitesResponse#sites #sites} => Array<Types::Site>
|
1313
1345
|
# * {Types::GetSitesResponse#next_token #next_token} => String
|
1314
1346
|
#
|
1347
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1348
|
+
#
|
1315
1349
|
# @example Request syntax with placeholder values
|
1316
1350
|
#
|
1317
1351
|
# resp = client.get_sites({
|
@@ -1368,6 +1402,8 @@ module Aws::NetworkManager
|
|
1368
1402
|
# * {Types::GetTransitGatewayRegistrationsResponse#transit_gateway_registrations #transit_gateway_registrations} => Array<Types::TransitGatewayRegistration>
|
1369
1403
|
# * {Types::GetTransitGatewayRegistrationsResponse#next_token #next_token} => String
|
1370
1404
|
#
|
1405
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1406
|
+
#
|
1371
1407
|
# @example Request syntax with placeholder values
|
1372
1408
|
#
|
1373
1409
|
# resp = client.get_transit_gateway_registrations({
|
@@ -1804,7 +1840,7 @@ module Aws::NetworkManager
|
|
1804
1840
|
params: params,
|
1805
1841
|
config: config)
|
1806
1842
|
context[:gem_name] = 'aws-sdk-networkmanager'
|
1807
|
-
context[:gem_version] = '1.
|
1843
|
+
context[:gem_version] = '1.6.0'
|
1808
1844
|
Seahorse::Client::Request.new(handlers, context)
|
1809
1845
|
end
|
1810
1846
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::NetworkManager
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::NetworkManager::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::NetworkManager::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::NetworkManager::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::NetworkManager
|
|
17
19
|
#
|
18
20
|
class AccessDeniedException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -58,6 +61,7 @@ module Aws::NetworkManager
|
|
58
61
|
:global_network_id,
|
59
62
|
:device_id,
|
60
63
|
:link_id)
|
64
|
+
SENSITIVE = []
|
61
65
|
include Aws::Structure
|
62
66
|
end
|
63
67
|
|
@@ -69,6 +73,7 @@ module Aws::NetworkManager
|
|
69
73
|
#
|
70
74
|
class AssociateCustomerGatewayResponse < Struct.new(
|
71
75
|
:customer_gateway_association)
|
76
|
+
SENSITIVE = []
|
72
77
|
include Aws::Structure
|
73
78
|
end
|
74
79
|
|
@@ -99,6 +104,7 @@ module Aws::NetworkManager
|
|
99
104
|
:global_network_id,
|
100
105
|
:device_id,
|
101
106
|
:link_id)
|
107
|
+
SENSITIVE = []
|
102
108
|
include Aws::Structure
|
103
109
|
end
|
104
110
|
|
@@ -110,6 +116,7 @@ module Aws::NetworkManager
|
|
110
116
|
#
|
111
117
|
class AssociateLinkResponse < Struct.new(
|
112
118
|
:link_association)
|
119
|
+
SENSITIVE = []
|
113
120
|
include Aws::Structure
|
114
121
|
end
|
115
122
|
|
@@ -136,6 +143,7 @@ module Aws::NetworkManager
|
|
136
143
|
class Bandwidth < Struct.new(
|
137
144
|
:upload_speed,
|
138
145
|
:download_speed)
|
146
|
+
SENSITIVE = []
|
139
147
|
include Aws::Structure
|
140
148
|
end
|
141
149
|
|
@@ -159,6 +167,7 @@ module Aws::NetworkManager
|
|
159
167
|
:message,
|
160
168
|
:resource_id,
|
161
169
|
:resource_type)
|
170
|
+
SENSITIVE = []
|
162
171
|
include Aws::Structure
|
163
172
|
end
|
164
173
|
|
@@ -242,6 +251,7 @@ module Aws::NetworkManager
|
|
242
251
|
:location,
|
243
252
|
:site_id,
|
244
253
|
:tags)
|
254
|
+
SENSITIVE = []
|
245
255
|
include Aws::Structure
|
246
256
|
end
|
247
257
|
|
@@ -253,6 +263,7 @@ module Aws::NetworkManager
|
|
253
263
|
#
|
254
264
|
class CreateDeviceResponse < Struct.new(
|
255
265
|
:device)
|
266
|
+
SENSITIVE = []
|
256
267
|
include Aws::Structure
|
257
268
|
end
|
258
269
|
|
@@ -284,6 +295,7 @@ module Aws::NetworkManager
|
|
284
295
|
class CreateGlobalNetworkRequest < Struct.new(
|
285
296
|
:description,
|
286
297
|
:tags)
|
298
|
+
SENSITIVE = []
|
287
299
|
include Aws::Structure
|
288
300
|
end
|
289
301
|
|
@@ -295,6 +307,7 @@ module Aws::NetworkManager
|
|
295
307
|
#
|
296
308
|
class CreateGlobalNetworkResponse < Struct.new(
|
297
309
|
:global_network)
|
310
|
+
SENSITIVE = []
|
298
311
|
include Aws::Structure
|
299
312
|
end
|
300
313
|
|
@@ -367,6 +380,7 @@ module Aws::NetworkManager
|
|
367
380
|
:provider,
|
368
381
|
:site_id,
|
369
382
|
:tags)
|
383
|
+
SENSITIVE = []
|
370
384
|
include Aws::Structure
|
371
385
|
end
|
372
386
|
|
@@ -378,6 +392,7 @@ module Aws::NetworkManager
|
|
378
392
|
#
|
379
393
|
class CreateLinkResponse < Struct.new(
|
380
394
|
:link)
|
395
|
+
SENSITIVE = []
|
381
396
|
include Aws::Structure
|
382
397
|
end
|
383
398
|
|
@@ -433,6 +448,7 @@ module Aws::NetworkManager
|
|
433
448
|
:description,
|
434
449
|
:location,
|
435
450
|
:tags)
|
451
|
+
SENSITIVE = []
|
436
452
|
include Aws::Structure
|
437
453
|
end
|
438
454
|
|
@@ -444,6 +460,7 @@ module Aws::NetworkManager
|
|
444
460
|
#
|
445
461
|
class CreateSiteResponse < Struct.new(
|
446
462
|
:site)
|
463
|
+
SENSITIVE = []
|
447
464
|
include Aws::Structure
|
448
465
|
end
|
449
466
|
|
@@ -478,6 +495,7 @@ module Aws::NetworkManager
|
|
478
495
|
:device_id,
|
479
496
|
:link_id,
|
480
497
|
:state)
|
498
|
+
SENSITIVE = []
|
481
499
|
include Aws::Structure
|
482
500
|
end
|
483
501
|
|
@@ -502,6 +520,7 @@ module Aws::NetworkManager
|
|
502
520
|
class DeleteDeviceRequest < Struct.new(
|
503
521
|
:global_network_id,
|
504
522
|
:device_id)
|
523
|
+
SENSITIVE = []
|
505
524
|
include Aws::Structure
|
506
525
|
end
|
507
526
|
|
@@ -513,6 +532,7 @@ module Aws::NetworkManager
|
|
513
532
|
#
|
514
533
|
class DeleteDeviceResponse < Struct.new(
|
515
534
|
:device)
|
535
|
+
SENSITIVE = []
|
516
536
|
include Aws::Structure
|
517
537
|
end
|
518
538
|
|
@@ -531,6 +551,7 @@ module Aws::NetworkManager
|
|
531
551
|
#
|
532
552
|
class DeleteGlobalNetworkRequest < Struct.new(
|
533
553
|
:global_network_id)
|
554
|
+
SENSITIVE = []
|
534
555
|
include Aws::Structure
|
535
556
|
end
|
536
557
|
|
@@ -542,6 +563,7 @@ module Aws::NetworkManager
|
|
542
563
|
#
|
543
564
|
class DeleteGlobalNetworkResponse < Struct.new(
|
544
565
|
:global_network)
|
566
|
+
SENSITIVE = []
|
545
567
|
include Aws::Structure
|
546
568
|
end
|
547
569
|
|
@@ -566,6 +588,7 @@ module Aws::NetworkManager
|
|
566
588
|
class DeleteLinkRequest < Struct.new(
|
567
589
|
:global_network_id,
|
568
590
|
:link_id)
|
591
|
+
SENSITIVE = []
|
569
592
|
include Aws::Structure
|
570
593
|
end
|
571
594
|
|
@@ -577,6 +600,7 @@ module Aws::NetworkManager
|
|
577
600
|
#
|
578
601
|
class DeleteLinkResponse < Struct.new(
|
579
602
|
:link)
|
603
|
+
SENSITIVE = []
|
580
604
|
include Aws::Structure
|
581
605
|
end
|
582
606
|
|
@@ -601,6 +625,7 @@ module Aws::NetworkManager
|
|
601
625
|
class DeleteSiteRequest < Struct.new(
|
602
626
|
:global_network_id,
|
603
627
|
:site_id)
|
628
|
+
SENSITIVE = []
|
604
629
|
include Aws::Structure
|
605
630
|
end
|
606
631
|
|
@@ -612,6 +637,7 @@ module Aws::NetworkManager
|
|
612
637
|
#
|
613
638
|
class DeleteSiteResponse < Struct.new(
|
614
639
|
:site)
|
640
|
+
SENSITIVE = []
|
615
641
|
include Aws::Structure
|
616
642
|
end
|
617
643
|
|
@@ -636,6 +662,7 @@ module Aws::NetworkManager
|
|
636
662
|
class DeregisterTransitGatewayRequest < Struct.new(
|
637
663
|
:global_network_id,
|
638
664
|
:transit_gateway_arn)
|
665
|
+
SENSITIVE = []
|
639
666
|
include Aws::Structure
|
640
667
|
end
|
641
668
|
|
@@ -647,6 +674,7 @@ module Aws::NetworkManager
|
|
647
674
|
#
|
648
675
|
class DeregisterTransitGatewayResponse < Struct.new(
|
649
676
|
:transit_gateway_registration)
|
677
|
+
SENSITIVE = []
|
650
678
|
include Aws::Structure
|
651
679
|
end
|
652
680
|
|
@@ -677,6 +705,7 @@ module Aws::NetworkManager
|
|
677
705
|
:global_network_ids,
|
678
706
|
:max_results,
|
679
707
|
:next_token)
|
708
|
+
SENSITIVE = []
|
680
709
|
include Aws::Structure
|
681
710
|
end
|
682
711
|
|
@@ -693,6 +722,7 @@ module Aws::NetworkManager
|
|
693
722
|
class DescribeGlobalNetworksResponse < Struct.new(
|
694
723
|
:global_networks,
|
695
724
|
:next_token)
|
725
|
+
SENSITIVE = []
|
696
726
|
include Aws::Structure
|
697
727
|
end
|
698
728
|
|
@@ -766,6 +796,7 @@ module Aws::NetworkManager
|
|
766
796
|
:created_at,
|
767
797
|
:state,
|
768
798
|
:tags)
|
799
|
+
SENSITIVE = []
|
769
800
|
include Aws::Structure
|
770
801
|
end
|
771
802
|
|
@@ -795,6 +826,7 @@ module Aws::NetworkManager
|
|
795
826
|
class DisassociateCustomerGatewayRequest < Struct.new(
|
796
827
|
:global_network_id,
|
797
828
|
:customer_gateway_arn)
|
829
|
+
SENSITIVE = []
|
798
830
|
include Aws::Structure
|
799
831
|
end
|
800
832
|
|
@@ -806,6 +838,7 @@ module Aws::NetworkManager
|
|
806
838
|
#
|
807
839
|
class DisassociateCustomerGatewayResponse < Struct.new(
|
808
840
|
:customer_gateway_association)
|
841
|
+
SENSITIVE = []
|
809
842
|
include Aws::Structure
|
810
843
|
end
|
811
844
|
|
@@ -836,6 +869,7 @@ module Aws::NetworkManager
|
|
836
869
|
:global_network_id,
|
837
870
|
:device_id,
|
838
871
|
:link_id)
|
872
|
+
SENSITIVE = []
|
839
873
|
include Aws::Structure
|
840
874
|
end
|
841
875
|
|
@@ -847,6 +881,7 @@ module Aws::NetworkManager
|
|
847
881
|
#
|
848
882
|
class DisassociateLinkResponse < Struct.new(
|
849
883
|
:link_association)
|
884
|
+
SENSITIVE = []
|
850
885
|
include Aws::Structure
|
851
886
|
end
|
852
887
|
|
@@ -889,6 +924,7 @@ module Aws::NetworkManager
|
|
889
924
|
:customer_gateway_arns,
|
890
925
|
:max_results,
|
891
926
|
:next_token)
|
927
|
+
SENSITIVE = []
|
892
928
|
include Aws::Structure
|
893
929
|
end
|
894
930
|
|
@@ -905,6 +941,7 @@ module Aws::NetworkManager
|
|
905
941
|
class GetCustomerGatewayAssociationsResponse < Struct.new(
|
906
942
|
:customer_gateway_associations,
|
907
943
|
:next_token)
|
944
|
+
SENSITIVE = []
|
908
945
|
include Aws::Structure
|
909
946
|
end
|
910
947
|
|
@@ -947,6 +984,7 @@ module Aws::NetworkManager
|
|
947
984
|
:site_id,
|
948
985
|
:max_results,
|
949
986
|
:next_token)
|
987
|
+
SENSITIVE = []
|
950
988
|
include Aws::Structure
|
951
989
|
end
|
952
990
|
|
@@ -963,6 +1001,7 @@ module Aws::NetworkManager
|
|
963
1001
|
class GetDevicesResponse < Struct.new(
|
964
1002
|
:devices,
|
965
1003
|
:next_token)
|
1004
|
+
SENSITIVE = []
|
966
1005
|
include Aws::Structure
|
967
1006
|
end
|
968
1007
|
|
@@ -1005,6 +1044,7 @@ module Aws::NetworkManager
|
|
1005
1044
|
:link_id,
|
1006
1045
|
:max_results,
|
1007
1046
|
:next_token)
|
1047
|
+
SENSITIVE = []
|
1008
1048
|
include Aws::Structure
|
1009
1049
|
end
|
1010
1050
|
|
@@ -1021,6 +1061,7 @@ module Aws::NetworkManager
|
|
1021
1061
|
class GetLinkAssociationsResponse < Struct.new(
|
1022
1062
|
:link_associations,
|
1023
1063
|
:next_token)
|
1064
|
+
SENSITIVE = []
|
1024
1065
|
include Aws::Structure
|
1025
1066
|
end
|
1026
1067
|
|
@@ -1075,6 +1116,7 @@ module Aws::NetworkManager
|
|
1075
1116
|
:provider,
|
1076
1117
|
:max_results,
|
1077
1118
|
:next_token)
|
1119
|
+
SENSITIVE = []
|
1078
1120
|
include Aws::Structure
|
1079
1121
|
end
|
1080
1122
|
|
@@ -1091,6 +1133,7 @@ module Aws::NetworkManager
|
|
1091
1133
|
class GetLinksResponse < Struct.new(
|
1092
1134
|
:links,
|
1093
1135
|
:next_token)
|
1136
|
+
SENSITIVE = []
|
1094
1137
|
include Aws::Structure
|
1095
1138
|
end
|
1096
1139
|
|
@@ -1127,6 +1170,7 @@ module Aws::NetworkManager
|
|
1127
1170
|
:site_ids,
|
1128
1171
|
:max_results,
|
1129
1172
|
:next_token)
|
1173
|
+
SENSITIVE = []
|
1130
1174
|
include Aws::Structure
|
1131
1175
|
end
|
1132
1176
|
|
@@ -1143,6 +1187,7 @@ module Aws::NetworkManager
|
|
1143
1187
|
class GetSitesResponse < Struct.new(
|
1144
1188
|
:sites,
|
1145
1189
|
:next_token)
|
1190
|
+
SENSITIVE = []
|
1146
1191
|
include Aws::Structure
|
1147
1192
|
end
|
1148
1193
|
|
@@ -1180,6 +1225,7 @@ module Aws::NetworkManager
|
|
1180
1225
|
:transit_gateway_arns,
|
1181
1226
|
:max_results,
|
1182
1227
|
:next_token)
|
1228
|
+
SENSITIVE = []
|
1183
1229
|
include Aws::Structure
|
1184
1230
|
end
|
1185
1231
|
|
@@ -1196,6 +1242,7 @@ module Aws::NetworkManager
|
|
1196
1242
|
class GetTransitGatewayRegistrationsResponse < Struct.new(
|
1197
1243
|
:transit_gateway_registrations,
|
1198
1244
|
:next_token)
|
1245
|
+
SENSITIVE = []
|
1199
1246
|
include Aws::Structure
|
1200
1247
|
end
|
1201
1248
|
|
@@ -1234,6 +1281,7 @@ module Aws::NetworkManager
|
|
1234
1281
|
:created_at,
|
1235
1282
|
:state,
|
1236
1283
|
:tags)
|
1284
|
+
SENSITIVE = []
|
1237
1285
|
include Aws::Structure
|
1238
1286
|
end
|
1239
1287
|
|
@@ -1251,6 +1299,7 @@ module Aws::NetworkManager
|
|
1251
1299
|
class InternalServerException < Struct.new(
|
1252
1300
|
:message,
|
1253
1301
|
:retry_after_seconds)
|
1302
|
+
SENSITIVE = []
|
1254
1303
|
include Aws::Structure
|
1255
1304
|
end
|
1256
1305
|
|
@@ -1314,6 +1363,7 @@ module Aws::NetworkManager
|
|
1314
1363
|
:created_at,
|
1315
1364
|
:state,
|
1316
1365
|
:tags)
|
1366
|
+
SENSITIVE = []
|
1317
1367
|
include Aws::Structure
|
1318
1368
|
end
|
1319
1369
|
|
@@ -1342,6 +1392,7 @@ module Aws::NetworkManager
|
|
1342
1392
|
:device_id,
|
1343
1393
|
:link_id,
|
1344
1394
|
:link_association_state)
|
1395
|
+
SENSITIVE = []
|
1345
1396
|
include Aws::Structure
|
1346
1397
|
end
|
1347
1398
|
|
@@ -1360,6 +1411,7 @@ module Aws::NetworkManager
|
|
1360
1411
|
#
|
1361
1412
|
class ListTagsForResourceRequest < Struct.new(
|
1362
1413
|
:resource_arn)
|
1414
|
+
SENSITIVE = []
|
1363
1415
|
include Aws::Structure
|
1364
1416
|
end
|
1365
1417
|
|
@@ -1371,6 +1423,7 @@ module Aws::NetworkManager
|
|
1371
1423
|
#
|
1372
1424
|
class ListTagsForResourceResponse < Struct.new(
|
1373
1425
|
:tag_list)
|
1426
|
+
SENSITIVE = []
|
1374
1427
|
include Aws::Structure
|
1375
1428
|
end
|
1376
1429
|
|
@@ -1403,6 +1456,7 @@ module Aws::NetworkManager
|
|
1403
1456
|
:address,
|
1404
1457
|
:latitude,
|
1405
1458
|
:longitude)
|
1459
|
+
SENSITIVE = []
|
1406
1460
|
include Aws::Structure
|
1407
1461
|
end
|
1408
1462
|
|
@@ -1432,6 +1486,7 @@ module Aws::NetworkManager
|
|
1432
1486
|
class RegisterTransitGatewayRequest < Struct.new(
|
1433
1487
|
:global_network_id,
|
1434
1488
|
:transit_gateway_arn)
|
1489
|
+
SENSITIVE = []
|
1435
1490
|
include Aws::Structure
|
1436
1491
|
end
|
1437
1492
|
|
@@ -1443,6 +1498,7 @@ module Aws::NetworkManager
|
|
1443
1498
|
#
|
1444
1499
|
class RegisterTransitGatewayResponse < Struct.new(
|
1445
1500
|
:transit_gateway_registration)
|
1501
|
+
SENSITIVE = []
|
1446
1502
|
include Aws::Structure
|
1447
1503
|
end
|
1448
1504
|
|
@@ -1465,6 +1521,7 @@ module Aws::NetworkManager
|
|
1465
1521
|
:message,
|
1466
1522
|
:resource_id,
|
1467
1523
|
:resource_type)
|
1524
|
+
SENSITIVE = []
|
1468
1525
|
include Aws::Structure
|
1469
1526
|
end
|
1470
1527
|
|
@@ -1498,6 +1555,7 @@ module Aws::NetworkManager
|
|
1498
1555
|
:resource_type,
|
1499
1556
|
:limit_code,
|
1500
1557
|
:service_code)
|
1558
|
+
SENSITIVE = []
|
1501
1559
|
include Aws::Structure
|
1502
1560
|
end
|
1503
1561
|
|
@@ -1546,6 +1604,7 @@ module Aws::NetworkManager
|
|
1546
1604
|
:created_at,
|
1547
1605
|
:state,
|
1548
1606
|
:tags)
|
1607
|
+
SENSITIVE = []
|
1549
1608
|
include Aws::Structure
|
1550
1609
|
end
|
1551
1610
|
|
@@ -1576,6 +1635,7 @@ module Aws::NetworkManager
|
|
1576
1635
|
class Tag < Struct.new(
|
1577
1636
|
:key,
|
1578
1637
|
:value)
|
1638
|
+
SENSITIVE = []
|
1579
1639
|
include Aws::Structure
|
1580
1640
|
end
|
1581
1641
|
|
@@ -1605,6 +1665,7 @@ module Aws::NetworkManager
|
|
1605
1665
|
class TagResourceRequest < Struct.new(
|
1606
1666
|
:resource_arn,
|
1607
1667
|
:tags)
|
1668
|
+
SENSITIVE = []
|
1608
1669
|
include Aws::Structure
|
1609
1670
|
end
|
1610
1671
|
|
@@ -1626,6 +1687,7 @@ module Aws::NetworkManager
|
|
1626
1687
|
class ThrottlingException < Struct.new(
|
1627
1688
|
:message,
|
1628
1689
|
:retry_after_seconds)
|
1690
|
+
SENSITIVE = []
|
1629
1691
|
include Aws::Structure
|
1630
1692
|
end
|
1631
1693
|
|
@@ -1649,6 +1711,7 @@ module Aws::NetworkManager
|
|
1649
1711
|
:global_network_id,
|
1650
1712
|
:transit_gateway_arn,
|
1651
1713
|
:state)
|
1714
|
+
SENSITIVE = []
|
1652
1715
|
include Aws::Structure
|
1653
1716
|
end
|
1654
1717
|
|
@@ -1667,6 +1730,7 @@ module Aws::NetworkManager
|
|
1667
1730
|
class TransitGatewayRegistrationStateReason < Struct.new(
|
1668
1731
|
:code,
|
1669
1732
|
:message)
|
1733
|
+
SENSITIVE = []
|
1670
1734
|
include Aws::Structure
|
1671
1735
|
end
|
1672
1736
|
|
@@ -1691,6 +1755,7 @@ module Aws::NetworkManager
|
|
1691
1755
|
class UntagResourceRequest < Struct.new(
|
1692
1756
|
:resource_arn,
|
1693
1757
|
:tag_keys)
|
1758
|
+
SENSITIVE = []
|
1694
1759
|
include Aws::Structure
|
1695
1760
|
end
|
1696
1761
|
|
@@ -1773,6 +1838,7 @@ module Aws::NetworkManager
|
|
1773
1838
|
:serial_number,
|
1774
1839
|
:location,
|
1775
1840
|
:site_id)
|
1841
|
+
SENSITIVE = []
|
1776
1842
|
include Aws::Structure
|
1777
1843
|
end
|
1778
1844
|
|
@@ -1784,6 +1850,7 @@ module Aws::NetworkManager
|
|
1784
1850
|
#
|
1785
1851
|
class UpdateDeviceResponse < Struct.new(
|
1786
1852
|
:device)
|
1853
|
+
SENSITIVE = []
|
1787
1854
|
include Aws::Structure
|
1788
1855
|
end
|
1789
1856
|
|
@@ -1810,6 +1877,7 @@ module Aws::NetworkManager
|
|
1810
1877
|
class UpdateGlobalNetworkRequest < Struct.new(
|
1811
1878
|
:global_network_id,
|
1812
1879
|
:description)
|
1880
|
+
SENSITIVE = []
|
1813
1881
|
include Aws::Structure
|
1814
1882
|
end
|
1815
1883
|
|
@@ -1821,6 +1889,7 @@ module Aws::NetworkManager
|
|
1821
1889
|
#
|
1822
1890
|
class UpdateGlobalNetworkResponse < Struct.new(
|
1823
1891
|
:global_network)
|
1892
|
+
SENSITIVE = []
|
1824
1893
|
include Aws::Structure
|
1825
1894
|
end
|
1826
1895
|
|
@@ -1878,6 +1947,7 @@ module Aws::NetworkManager
|
|
1878
1947
|
:type,
|
1879
1948
|
:bandwidth,
|
1880
1949
|
:provider)
|
1950
|
+
SENSITIVE = []
|
1881
1951
|
include Aws::Structure
|
1882
1952
|
end
|
1883
1953
|
|
@@ -1889,6 +1959,7 @@ module Aws::NetworkManager
|
|
1889
1959
|
#
|
1890
1960
|
class UpdateLinkResponse < Struct.new(
|
1891
1961
|
:link)
|
1962
|
+
SENSITIVE = []
|
1892
1963
|
include Aws::Structure
|
1893
1964
|
end
|
1894
1965
|
|
@@ -1937,6 +2008,7 @@ module Aws::NetworkManager
|
|
1937
2008
|
:site_id,
|
1938
2009
|
:description,
|
1939
2010
|
:location)
|
2011
|
+
SENSITIVE = []
|
1940
2012
|
include Aws::Structure
|
1941
2013
|
end
|
1942
2014
|
|
@@ -1948,6 +2020,7 @@ module Aws::NetworkManager
|
|
1948
2020
|
#
|
1949
2021
|
class UpdateSiteResponse < Struct.new(
|
1950
2022
|
:site)
|
2023
|
+
SENSITIVE = []
|
1951
2024
|
include Aws::Structure
|
1952
2025
|
end
|
1953
2026
|
|
@@ -1970,6 +2043,7 @@ module Aws::NetworkManager
|
|
1970
2043
|
:message,
|
1971
2044
|
:reason,
|
1972
2045
|
:fields)
|
2046
|
+
SENSITIVE = []
|
1973
2047
|
include Aws::Structure
|
1974
2048
|
end
|
1975
2049
|
|
@@ -1988,6 +2062,7 @@ module Aws::NetworkManager
|
|
1988
2062
|
class ValidationExceptionField < Struct.new(
|
1989
2063
|
:name,
|
1990
2064
|
:message)
|
2065
|
+
SENSITIVE = []
|
1991
2066
|
include Aws::Structure
|
1992
2067
|
end
|
1993
2068
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-networkmanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.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-08-25 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - NetworkManager
|