aws-sdk-networkmanager 1.0.0 → 1.5.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 +9 -4
- data/lib/aws-sdk-networkmanager/client.rb +86 -14
- data/lib/aws-sdk-networkmanager/client_api.rb +2 -0
- data/lib/aws-sdk-networkmanager/errors.rb +31 -7
- data/lib/aws-sdk-networkmanager/resource.rb +3 -0
- 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: 9438026c3cb5ce9d4037825064df4404a1d4f1acbb3b0e7c7fe552ed8391c0d8
|
4
|
+
data.tar.gz: 12a61a653fdc5212aa49a7f78c7831ae27cf583beff9bf68c52fb754fbe067cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df52d4a42d67c3da864ca8e7bb65cf7985de1b2b70d78b30bb185e5bb111b2a1294628d36703503cb7b83dae23e496d084458cac6728bf23e5856ff3c2623eaf
|
7
|
+
data.tar.gz: 13548e2ebb85aaba4e0f3b182be940e44426a7342b504d3e04fb25f1aa2523c721df8b632ed022b4f07c34e730487d5dbabcd4ac0371b816a7699b48352acb6e
|
@@ -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,17 +26,20 @@ require_relative 'aws-sdk-networkmanager/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# network_manager = Aws::NetworkManager::Client.new
|
30
|
+
# resp = network_manager.associate_customer_gateway(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Network Manager
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Network Manager are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::NetworkManager::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Network Manager API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-networkmanager/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::NetworkManager
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.5.0'
|
46
51
|
|
47
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,12 +26,25 @@ 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
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:networkmanager)
|
31
34
|
|
32
35
|
module Aws::NetworkManager
|
36
|
+
# An API client for NetworkManager. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::NetworkManager::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::NetworkManager
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::NetworkManager
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::NetworkManager
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::NetworkManager
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::NetworkManager
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::NetworkManager
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::NetworkManager
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::NetworkManager
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::NetworkManager
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::NetworkManager
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -889,6 +947,8 @@ module Aws::NetworkManager
|
|
889
947
|
# * {Types::DescribeGlobalNetworksResponse#global_networks #global_networks} => Array<Types::GlobalNetwork>
|
890
948
|
# * {Types::DescribeGlobalNetworksResponse#next_token #next_token} => String
|
891
949
|
#
|
950
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
951
|
+
#
|
892
952
|
# @example Request syntax with placeholder values
|
893
953
|
#
|
894
954
|
# resp = client.describe_global_networks({
|
@@ -1026,6 +1086,8 @@ module Aws::NetworkManager
|
|
1026
1086
|
# * {Types::GetCustomerGatewayAssociationsResponse#customer_gateway_associations #customer_gateway_associations} => Array<Types::CustomerGatewayAssociation>
|
1027
1087
|
# * {Types::GetCustomerGatewayAssociationsResponse#next_token #next_token} => String
|
1028
1088
|
#
|
1089
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1090
|
+
#
|
1029
1091
|
# @example Request syntax with placeholder values
|
1030
1092
|
#
|
1031
1093
|
# resp = client.get_customer_gateway_associations({
|
@@ -1077,6 +1139,8 @@ module Aws::NetworkManager
|
|
1077
1139
|
# * {Types::GetDevicesResponse#devices #devices} => Array<Types::Device>
|
1078
1140
|
# * {Types::GetDevicesResponse#next_token #next_token} => String
|
1079
1141
|
#
|
1142
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1143
|
+
#
|
1080
1144
|
# @example Request syntax with placeholder values
|
1081
1145
|
#
|
1082
1146
|
# resp = client.get_devices({
|
@@ -1141,6 +1205,8 @@ module Aws::NetworkManager
|
|
1141
1205
|
# * {Types::GetLinkAssociationsResponse#link_associations #link_associations} => Array<Types::LinkAssociation>
|
1142
1206
|
# * {Types::GetLinkAssociationsResponse#next_token #next_token} => String
|
1143
1207
|
#
|
1208
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1209
|
+
#
|
1144
1210
|
# @example Request syntax with placeholder values
|
1145
1211
|
#
|
1146
1212
|
# resp = client.get_link_associations({
|
@@ -1202,6 +1268,8 @@ module Aws::NetworkManager
|
|
1202
1268
|
# * {Types::GetLinksResponse#links #links} => Array<Types::Link>
|
1203
1269
|
# * {Types::GetLinksResponse#next_token #next_token} => String
|
1204
1270
|
#
|
1271
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1272
|
+
#
|
1205
1273
|
# @example Request syntax with placeholder values
|
1206
1274
|
#
|
1207
1275
|
# resp = client.get_links({
|
@@ -1261,6 +1329,8 @@ module Aws::NetworkManager
|
|
1261
1329
|
# * {Types::GetSitesResponse#sites #sites} => Array<Types::Site>
|
1262
1330
|
# * {Types::GetSitesResponse#next_token #next_token} => String
|
1263
1331
|
#
|
1332
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1333
|
+
#
|
1264
1334
|
# @example Request syntax with placeholder values
|
1265
1335
|
#
|
1266
1336
|
# resp = client.get_sites({
|
@@ -1317,6 +1387,8 @@ module Aws::NetworkManager
|
|
1317
1387
|
# * {Types::GetTransitGatewayRegistrationsResponse#transit_gateway_registrations #transit_gateway_registrations} => Array<Types::TransitGatewayRegistration>
|
1318
1388
|
# * {Types::GetTransitGatewayRegistrationsResponse#next_token #next_token} => String
|
1319
1389
|
#
|
1390
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1391
|
+
#
|
1320
1392
|
# @example Request syntax with placeholder values
|
1321
1393
|
#
|
1322
1394
|
# resp = client.get_transit_gateway_registrations({
|
@@ -1753,7 +1825,7 @@ module Aws::NetworkManager
|
|
1753
1825
|
params: params,
|
1754
1826
|
config: config)
|
1755
1827
|
context[:gem_name] = 'aws-sdk-networkmanager'
|
1756
|
-
context[:gem_version] = '1.
|
1828
|
+
context[:gem_version] = '1.5.0'
|
1757
1829
|
Seahorse::Client::Request.new(handlers, context)
|
1758
1830
|
end
|
1759
1831
|
|
@@ -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,6 +8,35 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::NetworkManager
|
11
|
+
|
12
|
+
# When NetworkManager returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::NetworkManager::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all NetworkManager errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::NetworkManager::Errors::ServiceError
|
20
|
+
# # rescues all NetworkManager API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {AccessDeniedException}
|
31
|
+
# * {ConflictException}
|
32
|
+
# * {InternalServerException}
|
33
|
+
# * {ResourceNotFoundException}
|
34
|
+
# * {ServiceQuotaExceededException}
|
35
|
+
# * {ThrottlingException}
|
36
|
+
# * {ValidationException}
|
37
|
+
#
|
38
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
39
|
+
# if they are not defined above.
|
9
40
|
module Errors
|
10
41
|
|
11
42
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +54,6 @@ module Aws::NetworkManager
|
|
23
54
|
def message
|
24
55
|
@message || @data[:message]
|
25
56
|
end
|
26
|
-
|
27
57
|
end
|
28
58
|
|
29
59
|
class ConflictException < ServiceError
|
@@ -49,7 +79,6 @@ module Aws::NetworkManager
|
|
49
79
|
def resource_type
|
50
80
|
@data[:resource_type]
|
51
81
|
end
|
52
|
-
|
53
82
|
end
|
54
83
|
|
55
84
|
class InternalServerException < ServiceError
|
@@ -70,7 +99,6 @@ module Aws::NetworkManager
|
|
70
99
|
def retry_after_seconds
|
71
100
|
@data[:retry_after_seconds]
|
72
101
|
end
|
73
|
-
|
74
102
|
end
|
75
103
|
|
76
104
|
class ResourceNotFoundException < ServiceError
|
@@ -96,7 +124,6 @@ module Aws::NetworkManager
|
|
96
124
|
def resource_type
|
97
125
|
@data[:resource_type]
|
98
126
|
end
|
99
|
-
|
100
127
|
end
|
101
128
|
|
102
129
|
class ServiceQuotaExceededException < ServiceError
|
@@ -132,7 +159,6 @@ module Aws::NetworkManager
|
|
132
159
|
def service_code
|
133
160
|
@data[:service_code]
|
134
161
|
end
|
135
|
-
|
136
162
|
end
|
137
163
|
|
138
164
|
class ThrottlingException < ServiceError
|
@@ -153,7 +179,6 @@ module Aws::NetworkManager
|
|
153
179
|
def retry_after_seconds
|
154
180
|
@data[:retry_after_seconds]
|
155
181
|
end
|
156
|
-
|
157
182
|
end
|
158
183
|
|
159
184
|
class ValidationException < ServiceError
|
@@ -179,7 +204,6 @@ module Aws::NetworkManager
|
|
179
204
|
def fields
|
180
205
|
@data[:fields]
|
181
206
|
end
|
182
|
-
|
183
207
|
end
|
184
208
|
|
185
209
|
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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::NetworkManager
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
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.5.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:
|
11
|
+
date: 2020-06-23 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
|