aws-sdk-ec2 1.613.0 → 1.614.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +11 -3
- data/lib/aws-sdk-ec2/client_api.rb +2 -1
- data/lib/aws-sdk-ec2/types.rb +9 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +3 -2
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b9c91731385c013a109218c69639a4a34e355cf24fcc9c91567f0493fb1bcf0
|
|
4
|
+
data.tar.gz: db2f8010edddbecf797d27c0207fbfc06df70efdb6dcde7c1df37dd6375837e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9897a13927f6c51070d7a49ceda9946cd0c98c41296eed8f7ffbb2c551b8fe6844d15daddee65b54d5abaf10485e3e7cbafe0e8650b5d66c368333ec7fa6328e
|
|
7
|
+
data.tar.gz: 1100a50012fe57145cce2750d5678d158d58fb06ca969d2245c4fabb34b3dae67c1498217216787b231f0d1ad932d368a1a4e1997fbe9865521dd366103b7df5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.614.0 (2026-05-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This feature allows customers to change the tunnel bandwidth on existing VPN connections using the ModifyVpnConnectionOptions API
|
|
8
|
+
|
|
4
9
|
1.613.0 (2026-04-22)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.614.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -61155,7 +61155,7 @@ module Aws::EC2
|
|
|
61155
61155
|
# If you have the required permissions, the error response is
|
|
61156
61156
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
61157
61157
|
#
|
|
61158
|
-
# @option params [String] :default_visibility
|
|
61158
|
+
# @option params [required, String] :default_visibility
|
|
61159
61159
|
# The default visibility setting for managed resources. Valid values:
|
|
61160
61160
|
# `hidden` \| `visible`.
|
|
61161
61161
|
#
|
|
@@ -61167,7 +61167,7 @@ module Aws::EC2
|
|
|
61167
61167
|
#
|
|
61168
61168
|
# resp = client.modify_managed_resource_visibility({
|
|
61169
61169
|
# dry_run: false,
|
|
61170
|
-
# default_visibility: "hidden", # accepts hidden, visible
|
|
61170
|
+
# default_visibility: "hidden", # required, accepts hidden, visible
|
|
61171
61171
|
# })
|
|
61172
61172
|
#
|
|
61173
61173
|
# @example Response structure
|
|
@@ -64612,6 +64612,13 @@ module Aws::EC2
|
|
|
64612
64612
|
#
|
|
64613
64613
|
# Default: `::/0`
|
|
64614
64614
|
#
|
|
64615
|
+
# @option params [String] :tunnel_bandwidth
|
|
64616
|
+
# The desired bandwidth specification for the VPN connection. `standard`
|
|
64617
|
+
# supports up to 1.25 Gbps per tunnel, while `large` supports up to 5
|
|
64618
|
+
# Gbps per tunnel. Large bandwidth is only available for VPN connections
|
|
64619
|
+
# attached to a transit gateway or to Cloud WAN. The default value is
|
|
64620
|
+
# `standard`.
|
|
64621
|
+
#
|
|
64615
64622
|
# @option params [Boolean] :dry_run
|
|
64616
64623
|
# Checks whether you have the required permissions for the action,
|
|
64617
64624
|
# without actually making the request, and provides an error response.
|
|
@@ -64630,6 +64637,7 @@ module Aws::EC2
|
|
|
64630
64637
|
# remote_ipv_4_network_cidr: "String",
|
|
64631
64638
|
# local_ipv_6_network_cidr: "String",
|
|
64632
64639
|
# remote_ipv_6_network_cidr: "String",
|
|
64640
|
+
# tunnel_bandwidth: "standard", # accepts standard, large
|
|
64633
64641
|
# dry_run: false,
|
|
64634
64642
|
# })
|
|
64635
64643
|
#
|
|
@@ -73547,7 +73555,7 @@ module Aws::EC2
|
|
|
73547
73555
|
tracer: tracer
|
|
73548
73556
|
)
|
|
73549
73557
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
73550
|
-
context[:gem_version] = '1.
|
|
73558
|
+
context[:gem_version] = '1.614.0'
|
|
73551
73559
|
Seahorse::Client::Request.new(handlers, context)
|
|
73552
73560
|
end
|
|
73553
73561
|
|
|
@@ -14778,7 +14778,7 @@ module Aws::EC2
|
|
|
14778
14778
|
ModifyManagedPrefixListResult.struct_class = Types::ModifyManagedPrefixListResult
|
|
14779
14779
|
|
|
14780
14780
|
ModifyManagedResourceVisibilityRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
14781
|
-
ModifyManagedResourceVisibilityRequest.add_member(:default_visibility, Shapes::ShapeRef.new(shape: ManagedResourceDefaultVisibility, location_name: "DefaultVisibility"))
|
|
14781
|
+
ModifyManagedResourceVisibilityRequest.add_member(:default_visibility, Shapes::ShapeRef.new(shape: ManagedResourceDefaultVisibility, required: true, location_name: "DefaultVisibility"))
|
|
14782
14782
|
ModifyManagedResourceVisibilityRequest.struct_class = Types::ModifyManagedResourceVisibilityRequest
|
|
14783
14783
|
|
|
14784
14784
|
ModifyManagedResourceVisibilityResult.add_member(:visibility, Shapes::ShapeRef.new(shape: ManagedResourceVisibilitySettings, location_name: "visibility"))
|
|
@@ -15253,6 +15253,7 @@ module Aws::EC2
|
|
|
15253
15253
|
ModifyVpnConnectionOptionsRequest.add_member(:remote_ipv_4_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "RemoteIpv4NetworkCidr"))
|
|
15254
15254
|
ModifyVpnConnectionOptionsRequest.add_member(:local_ipv_6_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "LocalIpv6NetworkCidr"))
|
|
15255
15255
|
ModifyVpnConnectionOptionsRequest.add_member(:remote_ipv_6_network_cidr, Shapes::ShapeRef.new(shape: String, location_name: "RemoteIpv6NetworkCidr"))
|
|
15256
|
+
ModifyVpnConnectionOptionsRequest.add_member(:tunnel_bandwidth, Shapes::ShapeRef.new(shape: VpnTunnelBandwidth, location_name: "TunnelBandwidth"))
|
|
15256
15257
|
ModifyVpnConnectionOptionsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
15257
15258
|
ModifyVpnConnectionOptionsRequest.struct_class = Types::ModifyVpnConnectionOptionsRequest
|
|
15258
15259
|
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -65661,6 +65661,14 @@ module Aws::EC2
|
|
|
65661
65661
|
# Default: `::/0`
|
|
65662
65662
|
# @return [String]
|
|
65663
65663
|
#
|
|
65664
|
+
# @!attribute [rw] tunnel_bandwidth
|
|
65665
|
+
# The desired bandwidth specification for the VPN connection.
|
|
65666
|
+
# `standard` supports up to 1.25 Gbps per tunnel, while `large`
|
|
65667
|
+
# supports up to 5 Gbps per tunnel. Large bandwidth is only available
|
|
65668
|
+
# for VPN connections attached to a transit gateway or to Cloud WAN.
|
|
65669
|
+
# The default value is `standard`.
|
|
65670
|
+
# @return [String]
|
|
65671
|
+
#
|
|
65664
65672
|
# @!attribute [rw] dry_run
|
|
65665
65673
|
# Checks whether you have the required permissions for the action,
|
|
65666
65674
|
# without actually making the request, and provides an error response.
|
|
@@ -65676,6 +65684,7 @@ module Aws::EC2
|
|
|
65676
65684
|
:remote_ipv_4_network_cidr,
|
|
65677
65685
|
:local_ipv_6_network_cidr,
|
|
65678
65686
|
:remote_ipv_6_network_cidr,
|
|
65687
|
+
:tunnel_bandwidth,
|
|
65679
65688
|
:dry_run)
|
|
65680
65689
|
SENSITIVE = []
|
|
65681
65690
|
include Aws::Structure
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -12890,9 +12890,9 @@ module Aws
|
|
|
12890
12890
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#modify_managed_resource_visibility-instance_method
|
|
12891
12891
|
def modify_managed_resource_visibility: (
|
|
12892
12892
|
?dry_run: bool,
|
|
12893
|
-
|
|
12893
|
+
default_visibility: ("hidden" | "visible")
|
|
12894
12894
|
) -> _ModifyManagedResourceVisibilityResponseSuccess
|
|
12895
|
-
| (
|
|
12895
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyManagedResourceVisibilityResponseSuccess
|
|
12896
12896
|
|
|
12897
12897
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#modify_network_interface_attribute-instance_method
|
|
12898
12898
|
def modify_network_interface_attribute: (
|
|
@@ -13731,6 +13731,7 @@ module Aws
|
|
|
13731
13731
|
?remote_ipv_4_network_cidr: ::String,
|
|
13732
13732
|
?local_ipv_6_network_cidr: ::String,
|
|
13733
13733
|
?remote_ipv_6_network_cidr: ::String,
|
|
13734
|
+
?tunnel_bandwidth: ("standard" | "large"),
|
|
13734
13735
|
?dry_run: bool
|
|
13735
13736
|
) -> _ModifyVpnConnectionOptionsResponseSuccess
|
|
13736
13737
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyVpnConnectionOptionsResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -14140,6 +14140,7 @@ module Aws::EC2
|
|
|
14140
14140
|
attr_accessor remote_ipv_4_network_cidr: ::String
|
|
14141
14141
|
attr_accessor local_ipv_6_network_cidr: ::String
|
|
14142
14142
|
attr_accessor remote_ipv_6_network_cidr: ::String
|
|
14143
|
+
attr_accessor tunnel_bandwidth: ("standard" | "large")
|
|
14143
14144
|
attr_accessor dry_run: bool
|
|
14144
14145
|
SENSITIVE: []
|
|
14145
14146
|
end
|