aws-sdk-ec2 1.532.0 → 1.533.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 +12 -6
- data/lib/aws-sdk-ec2/client_api.rb +4 -0
- data/lib/aws-sdk-ec2/route.rb +9 -0
- data/lib/aws-sdk-ec2/route_table.rb +3 -0
- data/lib/aws-sdk-ec2/types.rb +17 -6
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/route.rbs +4 -0
- data/sig/route_table.rbs +1 -0
- data/sig/types.rbs +3 -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: 474327e6ea7ba2514a819e932f476c5e05cb00b91d629dacb832ca7ad776b60e
|
4
|
+
data.tar.gz: f00f99edbe1112cbf883099496d3aae12f25052ed7d10033d32b768c9c25e732
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 311445ed8d83e35a8df89b923874249ba7648521f69c8025a329224792682fac248d991ccaba5e24a9d429ab51302792e133d749b54553b3e19f2c9772d3d174
|
7
|
+
data.tar.gz: a9900e1f6a37bb1f259856975053e7fd3ff0a4a7038d6c59b19d6f183b703ce6a91be5bca2b7ee3c06647c8119e4ca80c31671da7108c3e0f7aff05873966f86
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.533.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -12591,6 +12591,9 @@ module Aws::EC2
|
|
12591
12591
|
# @option params [String] :core_network_arn
|
12592
12592
|
# The Amazon Resource Name (ARN) of the core network.
|
12593
12593
|
#
|
12594
|
+
# @option params [String] :odb_network_arn
|
12595
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
12596
|
+
#
|
12594
12597
|
# @option params [Boolean] :dry_run
|
12595
12598
|
# Checks whether you have the required permissions for the action,
|
12596
12599
|
# without actually making the request, and provides an error response.
|
@@ -12656,6 +12659,7 @@ module Aws::EC2
|
|
12656
12659
|
# local_gateway_id: "LocalGatewayId",
|
12657
12660
|
# carrier_gateway_id: "CarrierGatewayId",
|
12658
12661
|
# core_network_arn: "CoreNetworkArn",
|
12662
|
+
# odb_network_arn: "OdbNetworkArn",
|
12659
12663
|
# dry_run: false,
|
12660
12664
|
# route_table_id: "RouteTableId", # required
|
12661
12665
|
# destination_cidr_block: "String",
|
@@ -13100,6 +13104,7 @@ module Aws::EC2
|
|
13100
13104
|
# resp.route_table.routes[0].state #=> String, one of "active", "blackhole"
|
13101
13105
|
# resp.route_table.routes[0].vpc_peering_connection_id #=> String
|
13102
13106
|
# resp.route_table.routes[0].core_network_arn #=> String
|
13107
|
+
# resp.route_table.routes[0].odb_network_arn #=> String
|
13103
13108
|
# resp.route_table.tags #=> Array
|
13104
13109
|
# resp.route_table.tags[0].key #=> String
|
13105
13110
|
# resp.route_table.tags[0].value #=> String
|
@@ -21710,11 +21715,7 @@ module Aws::EC2
|
|
21710
21715
|
# The ID of the pool that you want to deprovision the CIDR from.
|
21711
21716
|
#
|
21712
21717
|
# @option params [required, String] :cidr
|
21713
|
-
# The CIDR you want to deprovision from the pool.
|
21714
|
-
# want to deprovision with a netmask of `/32`. You must rerun this
|
21715
|
-
# command for each IP address in the CIDR range. If your CIDR is a
|
21716
|
-
# `/24`, you will have to run this command to deprovision each of the
|
21717
|
-
# 256 IP addresses in the `/24` CIDR.
|
21718
|
+
# The CIDR you want to deprovision from the pool.
|
21718
21719
|
#
|
21719
21720
|
# @return [Types::DeprovisionPublicIpv4PoolCidrResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21720
21721
|
#
|
@@ -35358,6 +35359,7 @@ module Aws::EC2
|
|
35358
35359
|
# resp.route_tables[0].routes[0].state #=> String, one of "active", "blackhole"
|
35359
35360
|
# resp.route_tables[0].routes[0].vpc_peering_connection_id #=> String
|
35360
35361
|
# resp.route_tables[0].routes[0].core_network_arn #=> String
|
35362
|
+
# resp.route_tables[0].routes[0].odb_network_arn #=> String
|
35361
35363
|
# resp.route_tables[0].tags #=> Array
|
35362
35364
|
# resp.route_tables[0].tags[0].key #=> String
|
35363
35365
|
# resp.route_tables[0].tags[0].value #=> String
|
@@ -60376,6 +60378,9 @@ module Aws::EC2
|
|
60376
60378
|
# @option params [String] :core_network_arn
|
60377
60379
|
# The Amazon Resource Name (ARN) of the core network.
|
60378
60380
|
#
|
60381
|
+
# @option params [String] :odb_network_arn
|
60382
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
60383
|
+
#
|
60379
60384
|
# @option params [Boolean] :dry_run
|
60380
60385
|
# Checks whether you have the required permissions for the action,
|
60381
60386
|
# without actually making the request, and provides an error response.
|
@@ -60437,6 +60442,7 @@ module Aws::EC2
|
|
60437
60442
|
# local_gateway_id: "LocalGatewayId",
|
60438
60443
|
# carrier_gateway_id: "CarrierGatewayId",
|
60439
60444
|
# core_network_arn: "CoreNetworkArn",
|
60445
|
+
# odb_network_arn: "OdbNetworkArn",
|
60440
60446
|
# dry_run: false,
|
60441
60447
|
# route_table_id: "RouteTableId", # required
|
60442
60448
|
# destination_cidr_block: "String",
|
@@ -66141,7 +66147,7 @@ module Aws::EC2
|
|
66141
66147
|
tracer: tracer
|
66142
66148
|
)
|
66143
66149
|
context[:gem_name] = 'aws-sdk-ec2'
|
66144
|
-
context[:gem_version] = '1.
|
66150
|
+
context[:gem_version] = '1.533.0'
|
66145
66151
|
Seahorse::Client::Request.new(handlers, context)
|
66146
66152
|
end
|
66147
66153
|
|
@@ -2555,6 +2555,7 @@ module Aws::EC2
|
|
2555
2555
|
NitroTpmSupportedVersionsList = Shapes::ListShape.new(name: 'NitroTpmSupportedVersionsList')
|
2556
2556
|
OccurrenceDayRequestSet = Shapes::ListShape.new(name: 'OccurrenceDayRequestSet')
|
2557
2557
|
OccurrenceDaySet = Shapes::ListShape.new(name: 'OccurrenceDaySet')
|
2558
|
+
OdbNetworkArn = Shapes::StringShape.new(name: 'OdbNetworkArn')
|
2558
2559
|
OfferingClassType = Shapes::StringShape.new(name: 'OfferingClassType')
|
2559
2560
|
OfferingId = Shapes::StringShape.new(name: 'OfferingId')
|
2560
2561
|
OfferingTypeValues = Shapes::StringShape.new(name: 'OfferingTypeValues')
|
@@ -5686,6 +5687,7 @@ module Aws::EC2
|
|
5686
5687
|
CreateRouteRequest.add_member(:local_gateway_id, Shapes::ShapeRef.new(shape: LocalGatewayId, location_name: "LocalGatewayId"))
|
5687
5688
|
CreateRouteRequest.add_member(:carrier_gateway_id, Shapes::ShapeRef.new(shape: CarrierGatewayId, location_name: "CarrierGatewayId"))
|
5688
5689
|
CreateRouteRequest.add_member(:core_network_arn, Shapes::ShapeRef.new(shape: CoreNetworkArn, location_name: "CoreNetworkArn"))
|
5690
|
+
CreateRouteRequest.add_member(:odb_network_arn, Shapes::ShapeRef.new(shape: OdbNetworkArn, location_name: "OdbNetworkArn"))
|
5689
5691
|
CreateRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
5690
5692
|
CreateRouteRequest.add_member(:route_table_id, Shapes::ShapeRef.new(shape: RouteTableId, required: true, location_name: "routeTableId"))
|
5691
5693
|
CreateRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationCidrBlock"))
|
@@ -14627,6 +14629,7 @@ module Aws::EC2
|
|
14627
14629
|
ReplaceRouteRequest.add_member(:local_gateway_id, Shapes::ShapeRef.new(shape: LocalGatewayId, location_name: "LocalGatewayId"))
|
14628
14630
|
ReplaceRouteRequest.add_member(:carrier_gateway_id, Shapes::ShapeRef.new(shape: CarrierGatewayId, location_name: "CarrierGatewayId"))
|
14629
14631
|
ReplaceRouteRequest.add_member(:core_network_arn, Shapes::ShapeRef.new(shape: CoreNetworkArn, location_name: "CoreNetworkArn"))
|
14632
|
+
ReplaceRouteRequest.add_member(:odb_network_arn, Shapes::ShapeRef.new(shape: OdbNetworkArn, location_name: "OdbNetworkArn"))
|
14630
14633
|
ReplaceRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
14631
14634
|
ReplaceRouteRequest.add_member(:route_table_id, Shapes::ShapeRef.new(shape: RouteTableId, required: true, location_name: "routeTableId"))
|
14632
14635
|
ReplaceRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationCidrBlock"))
|
@@ -15138,6 +15141,7 @@ module Aws::EC2
|
|
15138
15141
|
Route.add_member(:state, Shapes::ShapeRef.new(shape: RouteState, location_name: "state"))
|
15139
15142
|
Route.add_member(:vpc_peering_connection_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcPeeringConnectionId"))
|
15140
15143
|
Route.add_member(:core_network_arn, Shapes::ShapeRef.new(shape: CoreNetworkArn, location_name: "coreNetworkArn"))
|
15144
|
+
Route.add_member(:odb_network_arn, Shapes::ShapeRef.new(shape: OdbNetworkArn, location_name: "odbNetworkArn"))
|
15141
15145
|
Route.struct_class = Types::Route
|
15142
15146
|
|
15143
15147
|
RouteList.member = Shapes::ShapeRef.new(shape: Route, location_name: "item")
|
data/lib/aws-sdk-ec2/route.rb
CHANGED
@@ -143,6 +143,12 @@ module Aws::EC2
|
|
143
143
|
data[:core_network_arn]
|
144
144
|
end
|
145
145
|
|
146
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
147
|
+
# @return [String]
|
148
|
+
def odb_network_arn
|
149
|
+
data[:odb_network_arn]
|
150
|
+
end
|
151
|
+
|
146
152
|
# @!endgroup
|
147
153
|
|
148
154
|
# @return [Client]
|
@@ -314,6 +320,7 @@ module Aws::EC2
|
|
314
320
|
# local_gateway_id: "LocalGatewayId",
|
315
321
|
# carrier_gateway_id: "CarrierGatewayId",
|
316
322
|
# core_network_arn: "CoreNetworkArn",
|
323
|
+
# odb_network_arn: "OdbNetworkArn",
|
317
324
|
# dry_run: false,
|
318
325
|
# gateway_id: "RouteGatewayId",
|
319
326
|
# destination_ipv_6_cidr_block: "String",
|
@@ -340,6 +347,8 @@ module Aws::EC2
|
|
340
347
|
# \[IPv4 traffic only\] The ID of a carrier gateway.
|
341
348
|
# @option options [String] :core_network_arn
|
342
349
|
# The Amazon Resource Name (ARN) of the core network.
|
350
|
+
# @option options [String] :odb_network_arn
|
351
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
343
352
|
# @option options [Boolean] :dry_run
|
344
353
|
# Checks whether you have the required permissions for the action,
|
345
354
|
# without actually making the request, and provides an error response.
|
@@ -235,6 +235,7 @@ module Aws::EC2
|
|
235
235
|
# local_gateway_id: "LocalGatewayId",
|
236
236
|
# carrier_gateway_id: "CarrierGatewayId",
|
237
237
|
# core_network_arn: "CoreNetworkArn",
|
238
|
+
# odb_network_arn: "OdbNetworkArn",
|
238
239
|
# dry_run: false,
|
239
240
|
# destination_cidr_block: "String",
|
240
241
|
# gateway_id: "RouteGatewayId",
|
@@ -262,6 +263,8 @@ module Aws::EC2
|
|
262
263
|
# associated with a Wavelength Zone.
|
263
264
|
# @option options [String] :core_network_arn
|
264
265
|
# The Amazon Resource Name (ARN) of the core network.
|
266
|
+
# @option options [String] :odb_network_arn
|
267
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
265
268
|
# @option options [Boolean] :dry_run
|
266
269
|
# Checks whether you have the required permissions for the action,
|
267
270
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -11983,6 +11983,10 @@ module Aws::EC2
|
|
11983
11983
|
# The Amazon Resource Name (ARN) of the core network.
|
11984
11984
|
# @return [String]
|
11985
11985
|
#
|
11986
|
+
# @!attribute [rw] odb_network_arn
|
11987
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
11988
|
+
# @return [String]
|
11989
|
+
#
|
11986
11990
|
# @!attribute [rw] dry_run
|
11987
11991
|
# Checks whether you have the required permissions for the action,
|
11988
11992
|
# without actually making the request, and provides an error response.
|
@@ -12042,6 +12046,7 @@ module Aws::EC2
|
|
12042
12046
|
:local_gateway_id,
|
12043
12047
|
:carrier_gateway_id,
|
12044
12048
|
:core_network_arn,
|
12049
|
+
:odb_network_arn,
|
12045
12050
|
:dry_run,
|
12046
12051
|
:route_table_id,
|
12047
12052
|
:destination_cidr_block,
|
@@ -18639,11 +18644,7 @@ module Aws::EC2
|
|
18639
18644
|
# @return [String]
|
18640
18645
|
#
|
18641
18646
|
# @!attribute [rw] cidr
|
18642
|
-
# The CIDR you want to deprovision from the pool.
|
18643
|
-
# want to deprovision with a netmask of `/32`. You must rerun this
|
18644
|
-
# command for each IP address in the CIDR range. If your CIDR is a
|
18645
|
-
# `/24`, you will have to run this command to deprovision each of the
|
18646
|
-
# 256 IP addresses in the `/24` CIDR.
|
18647
|
+
# The CIDR you want to deprovision from the pool.
|
18647
18648
|
# @return [String]
|
18648
18649
|
#
|
18649
18650
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeprovisionPublicIpv4PoolCidrRequest AWS API Documentation
|
@@ -63518,6 +63519,10 @@ module Aws::EC2
|
|
63518
63519
|
# The Amazon Resource Name (ARN) of the core network.
|
63519
63520
|
# @return [String]
|
63520
63521
|
#
|
63522
|
+
# @!attribute [rw] odb_network_arn
|
63523
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
63524
|
+
# @return [String]
|
63525
|
+
#
|
63521
63526
|
# @!attribute [rw] dry_run
|
63522
63527
|
# Checks whether you have the required permissions for the action,
|
63523
63528
|
# without actually making the request, and provides an error response.
|
@@ -63575,6 +63580,7 @@ module Aws::EC2
|
|
63575
63580
|
:local_gateway_id,
|
63576
63581
|
:carrier_gateway_id,
|
63577
63582
|
:core_network_arn,
|
63583
|
+
:odb_network_arn,
|
63578
63584
|
:dry_run,
|
63579
63585
|
:route_table_id,
|
63580
63586
|
:destination_cidr_block,
|
@@ -66301,6 +66307,10 @@ module Aws::EC2
|
|
66301
66307
|
# The Amazon Resource Name (ARN) of the core network.
|
66302
66308
|
# @return [String]
|
66303
66309
|
#
|
66310
|
+
# @!attribute [rw] odb_network_arn
|
66311
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
66312
|
+
# @return [String]
|
66313
|
+
#
|
66304
66314
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Route AWS API Documentation
|
66305
66315
|
#
|
66306
66316
|
class Route < Struct.new(
|
@@ -66319,7 +66329,8 @@ module Aws::EC2
|
|
66319
66329
|
:origin,
|
66320
66330
|
:state,
|
66321
66331
|
:vpc_peering_connection_id,
|
66322
|
-
:core_network_arn
|
66332
|
+
:core_network_arn,
|
66333
|
+
:odb_network_arn)
|
66323
66334
|
SENSITIVE = []
|
66324
66335
|
include Aws::Structure
|
66325
66336
|
end
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -3209,6 +3209,7 @@ module Aws
|
|
3209
3209
|
?local_gateway_id: ::String,
|
3210
3210
|
?carrier_gateway_id: ::String,
|
3211
3211
|
?core_network_arn: ::String,
|
3212
|
+
?odb_network_arn: ::String,
|
3212
3213
|
?dry_run: bool,
|
3213
3214
|
route_table_id: ::String,
|
3214
3215
|
?destination_cidr_block: ::String,
|
@@ -12845,6 +12846,7 @@ module Aws
|
|
12845
12846
|
?local_gateway_id: ::String,
|
12846
12847
|
?carrier_gateway_id: ::String,
|
12847
12848
|
?core_network_arn: ::String,
|
12849
|
+
?odb_network_arn: ::String,
|
12848
12850
|
?dry_run: bool,
|
12849
12851
|
route_table_id: ::String,
|
12850
12852
|
?destination_cidr_block: ::String,
|
data/sig/route.rbs
CHANGED
@@ -65,6 +65,9 @@ module Aws
|
|
65
65
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Route.html#core_network_arn-instance_method
|
66
66
|
def core_network_arn: () -> ::String
|
67
67
|
|
68
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Route.html#odb_network_arn-instance_method
|
69
|
+
def odb_network_arn: () -> ::String
|
70
|
+
|
68
71
|
def client: () -> Client
|
69
72
|
|
70
73
|
|
@@ -92,6 +95,7 @@ module Aws
|
|
92
95
|
?local_gateway_id: ::String,
|
93
96
|
?carrier_gateway_id: ::String,
|
94
97
|
?core_network_arn: ::String,
|
98
|
+
?odb_network_arn: ::String,
|
95
99
|
?dry_run: bool,
|
96
100
|
?gateway_id: ::String,
|
97
101
|
?destination_ipv_6_cidr_block: ::String,
|
data/sig/route_table.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -2628,6 +2628,7 @@ module Aws::EC2
|
|
2628
2628
|
attr_accessor local_gateway_id: ::String
|
2629
2629
|
attr_accessor carrier_gateway_id: ::String
|
2630
2630
|
attr_accessor core_network_arn: ::String
|
2631
|
+
attr_accessor odb_network_arn: ::String
|
2631
2632
|
attr_accessor dry_run: bool
|
2632
2633
|
attr_accessor route_table_id: ::String
|
2633
2634
|
attr_accessor destination_cidr_block: ::String
|
@@ -13839,6 +13840,7 @@ module Aws::EC2
|
|
13839
13840
|
attr_accessor local_gateway_id: ::String
|
13840
13841
|
attr_accessor carrier_gateway_id: ::String
|
13841
13842
|
attr_accessor core_network_arn: ::String
|
13843
|
+
attr_accessor odb_network_arn: ::String
|
13842
13844
|
attr_accessor dry_run: bool
|
13843
13845
|
attr_accessor route_table_id: ::String
|
13844
13846
|
attr_accessor destination_cidr_block: ::String
|
@@ -14414,6 +14416,7 @@ module Aws::EC2
|
|
14414
14416
|
attr_accessor state: ("active" | "blackhole")
|
14415
14417
|
attr_accessor vpc_peering_connection_id: ::String
|
14416
14418
|
attr_accessor core_network_arn: ::String
|
14419
|
+
attr_accessor odb_network_arn: ::String
|
14417
14420
|
SENSITIVE: []
|
14418
14421
|
end
|
14419
14422
|
|