aws-sdk-ec2 1.532.0 → 1.534.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-ec2/client.rb +16 -6
- data/lib/aws-sdk-ec2/client_api.rb +5 -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 +23 -7
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/route.rbs +4 -0
- data/sig/route_table.rbs +1 -0
- data/sig/types.rbs +4 -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: 93d3530ea8803a6c6271b743ec4611e30d04309b31c44a42f93ce64d85a15abb
|
4
|
+
data.tar.gz: 57f72f173612893ff4e471738218c186ae228d71c8d84a227c522cf15529f425
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dec08a296abcd7d746983a21fa92c4593dc8bc772ca7d46fade297e78b29482220350084c626f91cf3ed96424d8234dc6b2433fb70738cfded676c6a15975968
|
7
|
+
data.tar.gz: 1a10283da33cc02da8cfb69fd42b5fd9cade1dd22def5347528cd80534b66da534e4a7ff5e43ec2adc0fe9c81ca1f9b74cbbe036afcb56f3bd4a15cc191702d1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.534.0 (2025-07-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add Context to GetInstanceTypesFromInstanceRequirements API
|
8
|
+
|
9
|
+
1.533.0 (2025-06-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for OdbNetworkArn as a target in VPC Route Tables
|
13
|
+
|
4
14
|
1.532.0 (2025-06-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.534.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
|
@@ -47079,6 +47081,9 @@ module Aws::EC2
|
|
47079
47081
|
# The token returned from a previous paginated request. Pagination
|
47080
47082
|
# continues from the end of the items returned by the previous request.
|
47081
47083
|
#
|
47084
|
+
# @option params [String] :context
|
47085
|
+
# Reserved.
|
47086
|
+
#
|
47082
47087
|
# @return [Types::GetInstanceTypesFromInstanceRequirementsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
47083
47088
|
#
|
47084
47089
|
# * {Types::GetInstanceTypesFromInstanceRequirementsResult#instance_types #instance_types} => Array<Types::InstanceTypeInfoFromInstanceRequirements>
|
@@ -47156,6 +47161,7 @@ module Aws::EC2
|
|
47156
47161
|
# },
|
47157
47162
|
# max_results: 1,
|
47158
47163
|
# next_token: "String",
|
47164
|
+
# context: "String",
|
47159
47165
|
# })
|
47160
47166
|
#
|
47161
47167
|
# @example Response structure
|
@@ -60376,6 +60382,9 @@ module Aws::EC2
|
|
60376
60382
|
# @option params [String] :core_network_arn
|
60377
60383
|
# The Amazon Resource Name (ARN) of the core network.
|
60378
60384
|
#
|
60385
|
+
# @option params [String] :odb_network_arn
|
60386
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
60387
|
+
#
|
60379
60388
|
# @option params [Boolean] :dry_run
|
60380
60389
|
# Checks whether you have the required permissions for the action,
|
60381
60390
|
# without actually making the request, and provides an error response.
|
@@ -60437,6 +60446,7 @@ module Aws::EC2
|
|
60437
60446
|
# local_gateway_id: "LocalGatewayId",
|
60438
60447
|
# carrier_gateway_id: "CarrierGatewayId",
|
60439
60448
|
# core_network_arn: "CoreNetworkArn",
|
60449
|
+
# odb_network_arn: "OdbNetworkArn",
|
60440
60450
|
# dry_run: false,
|
60441
60451
|
# route_table_id: "RouteTableId", # required
|
60442
60452
|
# destination_cidr_block: "String",
|
@@ -66141,7 +66151,7 @@ module Aws::EC2
|
|
66141
66151
|
tracer: tracer
|
66142
66152
|
)
|
66143
66153
|
context[:gem_name] = 'aws-sdk-ec2'
|
66144
|
-
context[:gem_version] = '1.
|
66154
|
+
context[:gem_version] = '1.534.0'
|
66145
66155
|
Seahorse::Client::Request.new(handlers, context)
|
66146
66156
|
end
|
66147
66157
|
|
@@ -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"))
|
@@ -10234,6 +10236,7 @@ module Aws::EC2
|
|
10234
10236
|
GetInstanceTypesFromInstanceRequirementsRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, required: true, location_name: "InstanceRequirements"))
|
10235
10237
|
GetInstanceTypesFromInstanceRequirementsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
|
10236
10238
|
GetInstanceTypesFromInstanceRequirementsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
10239
|
+
GetInstanceTypesFromInstanceRequirementsRequest.add_member(:context, Shapes::ShapeRef.new(shape: String, location_name: "Context"))
|
10237
10240
|
GetInstanceTypesFromInstanceRequirementsRequest.struct_class = Types::GetInstanceTypesFromInstanceRequirementsRequest
|
10238
10241
|
|
10239
10242
|
GetInstanceTypesFromInstanceRequirementsResult.add_member(:instance_types, Shapes::ShapeRef.new(shape: InstanceTypeInfoFromInstanceRequirementsSet, location_name: "instanceTypeSet"))
|
@@ -14627,6 +14630,7 @@ module Aws::EC2
|
|
14627
14630
|
ReplaceRouteRequest.add_member(:local_gateway_id, Shapes::ShapeRef.new(shape: LocalGatewayId, location_name: "LocalGatewayId"))
|
14628
14631
|
ReplaceRouteRequest.add_member(:carrier_gateway_id, Shapes::ShapeRef.new(shape: CarrierGatewayId, location_name: "CarrierGatewayId"))
|
14629
14632
|
ReplaceRouteRequest.add_member(:core_network_arn, Shapes::ShapeRef.new(shape: CoreNetworkArn, location_name: "CoreNetworkArn"))
|
14633
|
+
ReplaceRouteRequest.add_member(:odb_network_arn, Shapes::ShapeRef.new(shape: OdbNetworkArn, location_name: "OdbNetworkArn"))
|
14630
14634
|
ReplaceRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
14631
14635
|
ReplaceRouteRequest.add_member(:route_table_id, Shapes::ShapeRef.new(shape: RouteTableId, required: true, location_name: "routeTableId"))
|
14632
14636
|
ReplaceRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationCidrBlock"))
|
@@ -15138,6 +15142,7 @@ module Aws::EC2
|
|
15138
15142
|
Route.add_member(:state, Shapes::ShapeRef.new(shape: RouteState, location_name: "state"))
|
15139
15143
|
Route.add_member(:vpc_peering_connection_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcPeeringConnectionId"))
|
15140
15144
|
Route.add_member(:core_network_arn, Shapes::ShapeRef.new(shape: CoreNetworkArn, location_name: "coreNetworkArn"))
|
15145
|
+
Route.add_member(:odb_network_arn, Shapes::ShapeRef.new(shape: OdbNetworkArn, location_name: "odbNetworkArn"))
|
15141
15146
|
Route.struct_class = Types::Route
|
15142
15147
|
|
15143
15148
|
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
|
@@ -39636,6 +39637,10 @@ module Aws::EC2
|
|
39636
39637
|
# request.
|
39637
39638
|
# @return [String]
|
39638
39639
|
#
|
39640
|
+
# @!attribute [rw] context
|
39641
|
+
# Reserved.
|
39642
|
+
# @return [String]
|
39643
|
+
#
|
39639
39644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetInstanceTypesFromInstanceRequirementsRequest AWS API Documentation
|
39640
39645
|
#
|
39641
39646
|
class GetInstanceTypesFromInstanceRequirementsRequest < Struct.new(
|
@@ -39644,7 +39649,8 @@ module Aws::EC2
|
|
39644
39649
|
:virtualization_types,
|
39645
39650
|
:instance_requirements,
|
39646
39651
|
:max_results,
|
39647
|
-
:next_token
|
39652
|
+
:next_token,
|
39653
|
+
:context)
|
39648
39654
|
SENSITIVE = []
|
39649
39655
|
include Aws::Structure
|
39650
39656
|
end
|
@@ -63518,6 +63524,10 @@ module Aws::EC2
|
|
63518
63524
|
# The Amazon Resource Name (ARN) of the core network.
|
63519
63525
|
# @return [String]
|
63520
63526
|
#
|
63527
|
+
# @!attribute [rw] odb_network_arn
|
63528
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
63529
|
+
# @return [String]
|
63530
|
+
#
|
63521
63531
|
# @!attribute [rw] dry_run
|
63522
63532
|
# Checks whether you have the required permissions for the action,
|
63523
63533
|
# without actually making the request, and provides an error response.
|
@@ -63575,6 +63585,7 @@ module Aws::EC2
|
|
63575
63585
|
:local_gateway_id,
|
63576
63586
|
:carrier_gateway_id,
|
63577
63587
|
:core_network_arn,
|
63588
|
+
:odb_network_arn,
|
63578
63589
|
:dry_run,
|
63579
63590
|
:route_table_id,
|
63580
63591
|
:destination_cidr_block,
|
@@ -66301,6 +66312,10 @@ module Aws::EC2
|
|
66301
66312
|
# The Amazon Resource Name (ARN) of the core network.
|
66302
66313
|
# @return [String]
|
66303
66314
|
#
|
66315
|
+
# @!attribute [rw] odb_network_arn
|
66316
|
+
# The Amazon Resource Name (ARN) of the ODB network.
|
66317
|
+
# @return [String]
|
66318
|
+
#
|
66304
66319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Route AWS API Documentation
|
66305
66320
|
#
|
66306
66321
|
class Route < Struct.new(
|
@@ -66319,7 +66334,8 @@ module Aws::EC2
|
|
66319
66334
|
:origin,
|
66320
66335
|
:state,
|
66321
66336
|
:vpc_peering_connection_id,
|
66322
|
-
:core_network_arn
|
66337
|
+
:core_network_arn,
|
66338
|
+
:odb_network_arn)
|
66323
66339
|
SENSITIVE = []
|
66324
66340
|
include Aws::Structure
|
66325
66341
|
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,
|
@@ -9776,7 +9777,8 @@ module Aws
|
|
9776
9777
|
}?
|
9777
9778
|
},
|
9778
9779
|
?max_results: ::Integer,
|
9779
|
-
?next_token: ::String
|
9780
|
+
?next_token: ::String,
|
9781
|
+
?context: ::String
|
9780
9782
|
) -> _GetInstanceTypesFromInstanceRequirementsResponseSuccess
|
9781
9783
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstanceTypesFromInstanceRequirementsResponseSuccess
|
9782
9784
|
|
@@ -12845,6 +12847,7 @@ module Aws
|
|
12845
12847
|
?local_gateway_id: ::String,
|
12846
12848
|
?carrier_gateway_id: ::String,
|
12847
12849
|
?core_network_arn: ::String,
|
12850
|
+
?odb_network_arn: ::String,
|
12848
12851
|
?dry_run: bool,
|
12849
12852
|
route_table_id: ::String,
|
12850
12853
|
?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
|
@@ -8736,6 +8737,7 @@ module Aws::EC2
|
|
8736
8737
|
attr_accessor instance_requirements: Types::InstanceRequirementsRequest
|
8737
8738
|
attr_accessor max_results: ::Integer
|
8738
8739
|
attr_accessor next_token: ::String
|
8740
|
+
attr_accessor context: ::String
|
8739
8741
|
SENSITIVE: []
|
8740
8742
|
end
|
8741
8743
|
|
@@ -13839,6 +13841,7 @@ module Aws::EC2
|
|
13839
13841
|
attr_accessor local_gateway_id: ::String
|
13840
13842
|
attr_accessor carrier_gateway_id: ::String
|
13841
13843
|
attr_accessor core_network_arn: ::String
|
13844
|
+
attr_accessor odb_network_arn: ::String
|
13842
13845
|
attr_accessor dry_run: bool
|
13843
13846
|
attr_accessor route_table_id: ::String
|
13844
13847
|
attr_accessor destination_cidr_block: ::String
|
@@ -14414,6 +14417,7 @@ module Aws::EC2
|
|
14414
14417
|
attr_accessor state: ("active" | "blackhole")
|
14415
14418
|
attr_accessor vpc_peering_connection_id: ::String
|
14416
14419
|
attr_accessor core_network_arn: ::String
|
14420
|
+
attr_accessor odb_network_arn: ::String
|
14417
14421
|
SENSITIVE: []
|
14418
14422
|
end
|
14419
14423
|
|