aws-sdk-networkmanager 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: cae676d204ae75c0e4310111d38269a670eaa2fc
4
- data.tar.gz: 0e472d71d827e324e7f14b3b8a007612cc94539b
2
+ SHA256:
3
+ metadata.gz: 702da521389ae71a67b43e894eb6d3b86916314cd061db6f472726f710ebbfbb
4
+ data.tar.gz: e627d84aff8fbfbfa2243796220ba10d6df101aa1a60e9b6560aee808a892d9e
5
5
  SHA512:
6
- metadata.gz: c8ec62e8e3d786983d3d5d29adbcdc8b84eab840dd1362479b2bb73290536c36d2d7938b8e5a9f50253507ca4d8de993f95a931d5f199adacbfaf8dc4c0584f4
7
- data.tar.gz: 6efb9a811f8bd27b364c74f93e9956ce2e8194339fefde261d2ce85aa09749a770e7950d567a39f819b836edcb4a4959e5bf810e445415a6cbbd3f4af8cf59a7
6
+ metadata.gz: 13808890b8100898f59d69b1684cf6367aa50a91a98f88a54d8e4eb82dc655c63c87a5d1a9b8d2e6432b80a942ea470c8eb0c8d9f5095465ed3e8198bce478ef
7
+ data.tar.gz: fd7952c5b9da2452c984e4e2f2b285f511fd7d2f0bdc7d1f5dc86536e621052a96dd0eaa93049f82594cca9661516a450e0f063ab4ce42700e511c71d31e8710
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-networkmanager/customizations'
45
45
  # @service
46
46
  module Aws::NetworkManager
47
47
 
48
- GEM_VERSION = '1.1.0'
48
+ GEM_VERSION = '1.2.0'
49
49
 
50
50
  end
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:networkmanager)
32
32
  module Aws::NetworkManager
33
33
  # An API client for NetworkManager. To construct a client, you need to configure a `:region` and `:credentials`.
34
34
  #
35
- # client = Aws::NetworkManager::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
35
+ # client = Aws::NetworkManager::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
40
  #
41
41
  # For details on configuring region and credentials see
42
42
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -105,7 +105,7 @@ module Aws::NetworkManager
105
105
  # @option options [required, String] :region
106
106
  # The AWS region to connect to. The configured `:region` is
107
107
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
108
+ # a default `:region` is searched for in the following locations:
109
109
  #
110
110
  # * `Aws.config[:region]`
111
111
  # * `ENV['AWS_REGION']`
@@ -161,7 +161,7 @@ module Aws::NetworkManager
161
161
  # @option options [String] :endpoint
162
162
  # The client endpoint is normally constructed from the `:region`
163
163
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
164
+ # to test endpoints. This should be a valid HTTP(S) URI.
165
165
  #
166
166
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
167
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -229,15 +229,19 @@ module Aws::NetworkManager
229
229
  #
230
230
  # @option options [String] :retry_mode ("legacy")
231
231
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
232
+ #
233
+ # * `legacy` - The pre-existing retry behavior. This is default value if
234
+ # no retry mode is provided.
235
+ #
236
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
+ # This includes support for retry quotas, which limit the number of
238
+ # unsuccessful retries a client can make.
239
+ #
240
+ # * `adaptive` - An experimental retry mode that includes all the
241
+ # functionality of `standard` mode along with automatic client side
242
+ # throttling. This is a provisional mode that may change behavior
243
+ # in the future.
244
+ #
241
245
  #
242
246
  # @option options [String] :secret_access_key
243
247
  #
@@ -265,8 +269,7 @@ module Aws::NetworkManager
265
269
  #
266
270
  # @option options [Integer] :http_read_timeout (60) The default
267
271
  # 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}.
272
+ # safely be set per-request on the session.
270
273
  #
271
274
  # @option options [Float] :http_idle_timeout (5) The number of
272
275
  # seconds a connection is allowed to sit idle before it is
@@ -278,7 +281,7 @@ module Aws::NetworkManager
278
281
  # request body. This option has no effect unless the request has
279
282
  # "Expect" header set to "100-continue". Defaults to `nil` which
280
283
  # disables this behaviour. This value can safely be set per
281
- # request on the session yielded by {#session_for}.
284
+ # request on the session.
282
285
  #
283
286
  # @option options [Boolean] :http_wire_trace (false) When `true`,
284
287
  # HTTP debug output will be sent to the `:logger`.
@@ -940,6 +943,8 @@ module Aws::NetworkManager
940
943
  # * {Types::DescribeGlobalNetworksResponse#global_networks #global_networks} => Array<Types::GlobalNetwork>
941
944
  # * {Types::DescribeGlobalNetworksResponse#next_token #next_token} => String
942
945
  #
946
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
947
+ #
943
948
  # @example Request syntax with placeholder values
944
949
  #
945
950
  # resp = client.describe_global_networks({
@@ -1077,6 +1082,8 @@ module Aws::NetworkManager
1077
1082
  # * {Types::GetCustomerGatewayAssociationsResponse#customer_gateway_associations #customer_gateway_associations} => Array<Types::CustomerGatewayAssociation>
1078
1083
  # * {Types::GetCustomerGatewayAssociationsResponse#next_token #next_token} => String
1079
1084
  #
1085
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1086
+ #
1080
1087
  # @example Request syntax with placeholder values
1081
1088
  #
1082
1089
  # resp = client.get_customer_gateway_associations({
@@ -1128,6 +1135,8 @@ module Aws::NetworkManager
1128
1135
  # * {Types::GetDevicesResponse#devices #devices} => Array<Types::Device>
1129
1136
  # * {Types::GetDevicesResponse#next_token #next_token} => String
1130
1137
  #
1138
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1139
+ #
1131
1140
  # @example Request syntax with placeholder values
1132
1141
  #
1133
1142
  # resp = client.get_devices({
@@ -1192,6 +1201,8 @@ module Aws::NetworkManager
1192
1201
  # * {Types::GetLinkAssociationsResponse#link_associations #link_associations} => Array<Types::LinkAssociation>
1193
1202
  # * {Types::GetLinkAssociationsResponse#next_token #next_token} => String
1194
1203
  #
1204
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1205
+ #
1195
1206
  # @example Request syntax with placeholder values
1196
1207
  #
1197
1208
  # resp = client.get_link_associations({
@@ -1253,6 +1264,8 @@ module Aws::NetworkManager
1253
1264
  # * {Types::GetLinksResponse#links #links} => Array<Types::Link>
1254
1265
  # * {Types::GetLinksResponse#next_token #next_token} => String
1255
1266
  #
1267
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1268
+ #
1256
1269
  # @example Request syntax with placeholder values
1257
1270
  #
1258
1271
  # resp = client.get_links({
@@ -1312,6 +1325,8 @@ module Aws::NetworkManager
1312
1325
  # * {Types::GetSitesResponse#sites #sites} => Array<Types::Site>
1313
1326
  # * {Types::GetSitesResponse#next_token #next_token} => String
1314
1327
  #
1328
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1329
+ #
1315
1330
  # @example Request syntax with placeholder values
1316
1331
  #
1317
1332
  # resp = client.get_sites({
@@ -1368,6 +1383,8 @@ module Aws::NetworkManager
1368
1383
  # * {Types::GetTransitGatewayRegistrationsResponse#transit_gateway_registrations #transit_gateway_registrations} => Array<Types::TransitGatewayRegistration>
1369
1384
  # * {Types::GetTransitGatewayRegistrationsResponse#next_token #next_token} => String
1370
1385
  #
1386
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1387
+ #
1371
1388
  # @example Request syntax with placeholder values
1372
1389
  #
1373
1390
  # resp = client.get_transit_gateway_registrations({
@@ -1804,7 +1821,7 @@ module Aws::NetworkManager
1804
1821
  params: params,
1805
1822
  config: config)
1806
1823
  context[:gem_name] = 'aws-sdk-networkmanager'
1807
- context[:gem_version] = '1.1.0'
1824
+ context[:gem_version] = '1.2.0'
1808
1825
  Seahorse::Client::Request.new(handlers, context)
1809
1826
  end
1810
1827
 
@@ -6,13 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::NetworkManager
9
- # This class provides a resource oriented interface for NetworkManager.
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)
9
+
16
10
  class Resource
17
11
 
18
12
  # @param options ({})
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.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -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.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - NetworkManager