aws-sdk-networkmanager 1.64.0 → 1.66.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkmanager/client.rb +35 -9
- data/lib/aws-sdk-networkmanager/client_api.rb +5 -0
- data/lib/aws-sdk-networkmanager/types.rb +32 -2
- data/lib/aws-sdk-networkmanager.rb +1 -1
- data/sig/client.rbs +7 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6162323990205d716b59dfeed79f9c160953bcc6a2fa5ebe9f8f48d4a4644b59
|
4
|
+
data.tar.gz: 40f4bdd008d92eb474973c546fdbb564b070030eef006cece92b0f94c1229d11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dc2db0dc99d567da170089d84eb27618b1f1ca4bffed8620580ec51b7f7b535c477a456574e3a0d29fca1650508d6ecd2994f7601d7277360045af65b7a73ae
|
7
|
+
data.tar.gz: a26fcdb9071bab520fcaf63b5f7871a4b80f0baa66fac060c01e0de63a2310053300ae5e8be6dc5d6084006ffe8aa854410c46bf206953e2d0bc51944ed7137b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.66.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.65.0 (2025-06-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for public DNS hostname resolution to private IP addresses across Cloud WAN-managed VPCs. Add support for security group referencing across Cloud WAN-managed VPCs.
|
13
|
+
|
4
14
|
1.64.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.66.0
|
@@ -95,7 +95,7 @@ module Aws::NetworkManager
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::NetworkManager
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::NetworkManager
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::NetworkManager
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::NetworkManager
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1745,6 +1755,8 @@ module Aws::NetworkManager
|
|
1745
1755
|
# options: {
|
1746
1756
|
# ipv_6_support: false,
|
1747
1757
|
# appliance_mode_support: false,
|
1758
|
+
# dns_support: false,
|
1759
|
+
# security_group_referencing_support: false,
|
1748
1760
|
# },
|
1749
1761
|
# tags: [
|
1750
1762
|
# {
|
@@ -1794,6 +1806,8 @@ module Aws::NetworkManager
|
|
1794
1806
|
# resp.vpc_attachment.subnet_arns[0] #=> String
|
1795
1807
|
# resp.vpc_attachment.options.ipv_6_support #=> Boolean
|
1796
1808
|
# resp.vpc_attachment.options.appliance_mode_support #=> Boolean
|
1809
|
+
# resp.vpc_attachment.options.dns_support #=> Boolean
|
1810
|
+
# resp.vpc_attachment.options.security_group_referencing_support #=> Boolean
|
1797
1811
|
#
|
1798
1812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateVpcAttachment AWS API Documentation
|
1799
1813
|
#
|
@@ -2963,6 +2977,9 @@ module Aws::NetworkManager
|
|
2963
2977
|
# resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0] #=> Array
|
2964
2978
|
# resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0][0] #=> String
|
2965
2979
|
# resp.core_network_changes[0].previous_values.service_insertion_actions[0].via.with_edge_overrides[0].use_edge #=> String
|
2980
|
+
# resp.core_network_changes[0].previous_values.vpn_ecmp_support #=> Boolean
|
2981
|
+
# resp.core_network_changes[0].previous_values.dns_support #=> Boolean
|
2982
|
+
# resp.core_network_changes[0].previous_values.security_group_referencing_support #=> Boolean
|
2966
2983
|
# resp.core_network_changes[0].new_values.segment_name #=> String
|
2967
2984
|
# resp.core_network_changes[0].new_values.network_function_group_name #=> String
|
2968
2985
|
# resp.core_network_changes[0].new_values.edge_locations #=> Array
|
@@ -2986,6 +3003,9 @@ module Aws::NetworkManager
|
|
2986
3003
|
# resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0] #=> Array
|
2987
3004
|
# resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].edge_sets[0][0] #=> String
|
2988
3005
|
# resp.core_network_changes[0].new_values.service_insertion_actions[0].via.with_edge_overrides[0].use_edge #=> String
|
3006
|
+
# resp.core_network_changes[0].new_values.vpn_ecmp_support #=> Boolean
|
3007
|
+
# resp.core_network_changes[0].new_values.dns_support #=> Boolean
|
3008
|
+
# resp.core_network_changes[0].new_values.security_group_referencing_support #=> Boolean
|
2989
3009
|
# resp.core_network_changes[0].identifier_path #=> String
|
2990
3010
|
# resp.next_token #=> String
|
2991
3011
|
#
|
@@ -4333,6 +4353,8 @@ module Aws::NetworkManager
|
|
4333
4353
|
# resp.vpc_attachment.subnet_arns[0] #=> String
|
4334
4354
|
# resp.vpc_attachment.options.ipv_6_support #=> Boolean
|
4335
4355
|
# resp.vpc_attachment.options.appliance_mode_support #=> Boolean
|
4356
|
+
# resp.vpc_attachment.options.dns_support #=> Boolean
|
4357
|
+
# resp.vpc_attachment.options.security_group_referencing_support #=> Boolean
|
4336
4358
|
#
|
4337
4359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetVpcAttachment AWS API Documentation
|
4338
4360
|
#
|
@@ -5675,6 +5697,8 @@ module Aws::NetworkManager
|
|
5675
5697
|
# options: {
|
5676
5698
|
# ipv_6_support: false,
|
5677
5699
|
# appliance_mode_support: false,
|
5700
|
+
# dns_support: false,
|
5701
|
+
# security_group_referencing_support: false,
|
5678
5702
|
# },
|
5679
5703
|
# })
|
5680
5704
|
#
|
@@ -5717,6 +5741,8 @@ module Aws::NetworkManager
|
|
5717
5741
|
# resp.vpc_attachment.subnet_arns[0] #=> String
|
5718
5742
|
# resp.vpc_attachment.options.ipv_6_support #=> Boolean
|
5719
5743
|
# resp.vpc_attachment.options.appliance_mode_support #=> Boolean
|
5744
|
+
# resp.vpc_attachment.options.dns_support #=> Boolean
|
5745
|
+
# resp.vpc_attachment.options.security_group_referencing_support #=> Boolean
|
5720
5746
|
#
|
5721
5747
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/UpdateVpcAttachment AWS API Documentation
|
5722
5748
|
#
|
@@ -5745,7 +5771,7 @@ module Aws::NetworkManager
|
|
5745
5771
|
tracer: tracer
|
5746
5772
|
)
|
5747
5773
|
context[:gem_name] = 'aws-sdk-networkmanager'
|
5748
|
-
context[:gem_version] = '1.
|
5774
|
+
context[:gem_version] = '1.66.0'
|
5749
5775
|
Seahorse::Client::Request.new(handlers, context)
|
5750
5776
|
end
|
5751
5777
|
|
@@ -660,6 +660,9 @@ module Aws::NetworkManager
|
|
660
660
|
CoreNetworkChangeValues.add_member(:inside_cidr_blocks, Shapes::ShapeRef.new(shape: ConstrainedStringList, location_name: "InsideCidrBlocks"))
|
661
661
|
CoreNetworkChangeValues.add_member(:shared_segments, Shapes::ShapeRef.new(shape: ConstrainedStringList, location_name: "SharedSegments"))
|
662
662
|
CoreNetworkChangeValues.add_member(:service_insertion_actions, Shapes::ShapeRef.new(shape: ServiceInsertionActionList, location_name: "ServiceInsertionActions"))
|
663
|
+
CoreNetworkChangeValues.add_member(:vpn_ecmp_support, Shapes::ShapeRef.new(shape: Boolean, location_name: "VpnEcmpSupport"))
|
664
|
+
CoreNetworkChangeValues.add_member(:dns_support, Shapes::ShapeRef.new(shape: Boolean, location_name: "DnsSupport"))
|
665
|
+
CoreNetworkChangeValues.add_member(:security_group_referencing_support, Shapes::ShapeRef.new(shape: Boolean, location_name: "SecurityGroupReferencingSupport"))
|
663
666
|
CoreNetworkChangeValues.struct_class = Types::CoreNetworkChangeValues
|
664
667
|
|
665
668
|
CoreNetworkEdge.add_member(:edge_location, Shapes::ShapeRef.new(shape: ExternalRegionCode, location_name: "EdgeLocation"))
|
@@ -1846,6 +1849,8 @@ module Aws::NetworkManager
|
|
1846
1849
|
|
1847
1850
|
VpcOptions.add_member(:ipv_6_support, Shapes::ShapeRef.new(shape: Boolean, location_name: "Ipv6Support"))
|
1848
1851
|
VpcOptions.add_member(:appliance_mode_support, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApplianceModeSupport"))
|
1852
|
+
VpcOptions.add_member(:dns_support, Shapes::ShapeRef.new(shape: Boolean, location_name: "DnsSupport"))
|
1853
|
+
VpcOptions.add_member(:security_group_referencing_support, Shapes::ShapeRef.new(shape: Boolean, location_name: "SecurityGroupReferencingSupport"))
|
1849
1854
|
VpcOptions.struct_class = Types::VpcOptions
|
1850
1855
|
|
1851
1856
|
WhenSentTo.add_member(:when_sent_to_segments_list, Shapes::ShapeRef.new(shape: WhenSentToSegmentsList, location_name: "WhenSentToSegmentsList"))
|
@@ -1006,6 +1006,21 @@ module Aws::NetworkManager
|
|
1006
1006
|
# Describes the service insertion action.
|
1007
1007
|
# @return [Array<Types::ServiceInsertionAction>]
|
1008
1008
|
#
|
1009
|
+
# @!attribute [rw] vpn_ecmp_support
|
1010
|
+
# Indicates whether Equal Cost Multipath (ECMP) is enabled for the
|
1011
|
+
# core network.
|
1012
|
+
# @return [Boolean]
|
1013
|
+
#
|
1014
|
+
# @!attribute [rw] dns_support
|
1015
|
+
# Indicates whether public DNS support is supported. The default is
|
1016
|
+
# `true`.
|
1017
|
+
# @return [Boolean]
|
1018
|
+
#
|
1019
|
+
# @!attribute [rw] security_group_referencing_support
|
1020
|
+
# Indicates whether security group referencing is enabled for the core
|
1021
|
+
# network.
|
1022
|
+
# @return [Boolean]
|
1023
|
+
#
|
1009
1024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChangeValues AWS API Documentation
|
1010
1025
|
#
|
1011
1026
|
class CoreNetworkChangeValues < Struct.new(
|
@@ -1017,7 +1032,10 @@ module Aws::NetworkManager
|
|
1017
1032
|
:destination_identifier,
|
1018
1033
|
:inside_cidr_blocks,
|
1019
1034
|
:shared_segments,
|
1020
|
-
:service_insertion_actions
|
1035
|
+
:service_insertion_actions,
|
1036
|
+
:vpn_ecmp_support,
|
1037
|
+
:dns_support,
|
1038
|
+
:security_group_referencing_support)
|
1021
1039
|
SENSITIVE = []
|
1022
1040
|
include Aws::Structure
|
1023
1041
|
end
|
@@ -6246,11 +6264,23 @@ module Aws::NetworkManager
|
|
6246
6264
|
# value is `false`.
|
6247
6265
|
# @return [Boolean]
|
6248
6266
|
#
|
6267
|
+
# @!attribute [rw] dns_support
|
6268
|
+
# Indicates whether DNS is supported.
|
6269
|
+
# @return [Boolean]
|
6270
|
+
#
|
6271
|
+
# @!attribute [rw] security_group_referencing_support
|
6272
|
+
# Indicates whether security group referencing is enabled for this VPC
|
6273
|
+
# attachment. The default is `true`. However, at the core network
|
6274
|
+
# policy-level the default is set to `false`.
|
6275
|
+
# @return [Boolean]
|
6276
|
+
#
|
6249
6277
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/VpcOptions AWS API Documentation
|
6250
6278
|
#
|
6251
6279
|
class VpcOptions < Struct.new(
|
6252
6280
|
:ipv_6_support,
|
6253
|
-
:appliance_mode_support
|
6281
|
+
:appliance_mode_support,
|
6282
|
+
:dns_support,
|
6283
|
+
:security_group_referencing_support)
|
6254
6284
|
SENSITIVE = []
|
6255
6285
|
include Aws::Structure
|
6256
6286
|
end
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -401,7 +402,9 @@ module Aws
|
|
401
402
|
subnet_arns: Array[::String],
|
402
403
|
?options: {
|
403
404
|
ipv_6_support: bool?,
|
404
|
-
appliance_mode_support: bool
|
405
|
+
appliance_mode_support: bool?,
|
406
|
+
dns_support: bool?,
|
407
|
+
security_group_referencing_support: bool?
|
405
408
|
},
|
406
409
|
?tags: Array[
|
407
410
|
{
|
@@ -1321,7 +1324,9 @@ module Aws
|
|
1321
1324
|
?remove_subnet_arns: Array[::String],
|
1322
1325
|
?options: {
|
1323
1326
|
ipv_6_support: bool?,
|
1324
|
-
appliance_mode_support: bool
|
1327
|
+
appliance_mode_support: bool?,
|
1328
|
+
dns_support: bool?,
|
1329
|
+
security_group_referencing_support: bool?
|
1325
1330
|
}
|
1326
1331
|
) -> _UpdateVpcAttachmentResponseSuccess
|
1327
1332
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVpcAttachmentResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -281,6 +281,9 @@ module Aws::NetworkManager
|
|
281
281
|
attr_accessor inside_cidr_blocks: ::Array[::String]
|
282
282
|
attr_accessor shared_segments: ::Array[::String]
|
283
283
|
attr_accessor service_insertion_actions: ::Array[Types::ServiceInsertionAction]
|
284
|
+
attr_accessor vpn_ecmp_support: bool
|
285
|
+
attr_accessor dns_support: bool
|
286
|
+
attr_accessor security_group_referencing_support: bool
|
284
287
|
SENSITIVE: []
|
285
288
|
end
|
286
289
|
|
@@ -1814,6 +1817,8 @@ module Aws::NetworkManager
|
|
1814
1817
|
class VpcOptions
|
1815
1818
|
attr_accessor ipv_6_support: bool
|
1816
1819
|
attr_accessor appliance_mode_support: bool
|
1820
|
+
attr_accessor dns_support: bool
|
1821
|
+
attr_accessor security_group_referencing_support: bool
|
1817
1822
|
SENSITIVE: []
|
1818
1823
|
end
|
1819
1824
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.66.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|