aws-sdk-ec2 1.331.0 → 1.332.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 +94 -22
- data/lib/aws-sdk-ec2/client_api.rb +26 -1
- data/lib/aws-sdk-ec2/types.rb +103 -24
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5d44ae1020f065c80b19973e958cd8ed22fda4c552107e540ab284d70b0efe2
|
|
4
|
+
data.tar.gz: 2076fc855d9c16c8f45c779329254b33fbc8f29886eba1cb3897ea2aa6dd7e31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d28678b78d836899df9a7b8bc927cd295cc93bfe2e1aebe5568552acaacfc2a43c53a6a546cb9f5d10ed9c3eaab85b918d23ae51eccbb486865792fb411ea8f
|
|
7
|
+
data.tar.gz: c52df164000043312a3522d91c828f978d84cfc77890d87feae2c0ec5048ae7abfb195152224d1ff965ced0956a3aaebd652adc7bb15abdb616a09f934b31b1d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.332.0 (2022-09-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Two new features for local gateway route tables: support for static routes targeting Elastic Network Interfaces and direct VPC routing.
|
|
8
|
+
|
|
4
9
|
1.331.0 (2022-09-08)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.332.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -5793,7 +5793,7 @@ module Aws::EC2
|
|
|
5793
5793
|
# max: 1,
|
|
5794
5794
|
# },
|
|
5795
5795
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
5796
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
5796
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
5797
5797
|
# accelerator_total_memory_mi_b: {
|
|
5798
5798
|
# min: 1,
|
|
5799
5799
|
# max: 1,
|
|
@@ -5876,7 +5876,7 @@ module Aws::EC2
|
|
|
5876
5876
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers #=> Array
|
|
5877
5877
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
5878
5878
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names #=> Array
|
|
5879
|
-
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
5879
|
+
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
5880
5880
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
5881
5881
|
# resp.errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
5882
5882
|
# resp.errors[0].lifecycle #=> String, one of "spot", "on-demand"
|
|
@@ -5926,7 +5926,7 @@ module Aws::EC2
|
|
|
5926
5926
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers #=> Array
|
|
5927
5927
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
5928
5928
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names #=> Array
|
|
5929
|
-
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
5929
|
+
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
5930
5930
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
5931
5931
|
# resp.instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
5932
5932
|
# resp.instances[0].lifecycle #=> String, one of "spot", "on-demand"
|
|
@@ -7506,7 +7506,7 @@ module Aws::EC2
|
|
|
7506
7506
|
# max: 1,
|
|
7507
7507
|
# },
|
|
7508
7508
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
7509
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
7509
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
7510
7510
|
# accelerator_total_memory_mi_b: {
|
|
7511
7511
|
# min: 1,
|
|
7512
7512
|
# max: 1,
|
|
@@ -7871,7 +7871,7 @@ module Aws::EC2
|
|
|
7871
7871
|
# max: 1,
|
|
7872
7872
|
# },
|
|
7873
7873
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
7874
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
7874
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
7875
7875
|
# accelerator_total_memory_mi_b: {
|
|
7876
7876
|
# min: 1,
|
|
7877
7877
|
# max: 1,
|
|
@@ -8025,7 +8025,7 @@ module Aws::EC2
|
|
|
8025
8025
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_manufacturers #=> Array
|
|
8026
8026
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
8027
8027
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_names #=> Array
|
|
8028
|
-
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
8028
|
+
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
8029
8029
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
8030
8030
|
# resp.launch_template_version.launch_template_data.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
8031
8031
|
# resp.launch_template_version.launch_template_data.private_dns_name_options.hostname_type #=> String, one of "ip-name", "resource-name"
|
|
@@ -8047,6 +8047,11 @@ module Aws::EC2
|
|
|
8047
8047
|
end
|
|
8048
8048
|
|
|
8049
8049
|
# Creates a static route for the specified local gateway route table.
|
|
8050
|
+
# You must specify one of the following targets:
|
|
8051
|
+
#
|
|
8052
|
+
# * `LocalGatewayVirtualInterfaceGroupId`
|
|
8053
|
+
#
|
|
8054
|
+
# * `NetworkInterfaceId`
|
|
8050
8055
|
#
|
|
8051
8056
|
# @option params [required, String] :destination_cidr_block
|
|
8052
8057
|
# The CIDR range used for destination matches. Routing decisions are
|
|
@@ -8055,7 +8060,7 @@ module Aws::EC2
|
|
|
8055
8060
|
# @option params [required, String] :local_gateway_route_table_id
|
|
8056
8061
|
# The ID of the local gateway route table.
|
|
8057
8062
|
#
|
|
8058
|
-
# @option params [
|
|
8063
|
+
# @option params [String] :local_gateway_virtual_interface_group_id
|
|
8059
8064
|
# The ID of the virtual interface group.
|
|
8060
8065
|
#
|
|
8061
8066
|
# @option params [Boolean] :dry_run
|
|
@@ -8064,6 +8069,9 @@ module Aws::EC2
|
|
|
8064
8069
|
# If you have the required permissions, the error response is
|
|
8065
8070
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
8066
8071
|
#
|
|
8072
|
+
# @option params [String] :network_interface_id
|
|
8073
|
+
# The ID of the network interface.
|
|
8074
|
+
#
|
|
8067
8075
|
# @return [Types::CreateLocalGatewayRouteResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
8068
8076
|
#
|
|
8069
8077
|
# * {Types::CreateLocalGatewayRouteResult#route #route} => Types::LocalGatewayRoute
|
|
@@ -8073,8 +8081,9 @@ module Aws::EC2
|
|
|
8073
8081
|
# resp = client.create_local_gateway_route({
|
|
8074
8082
|
# destination_cidr_block: "String", # required
|
|
8075
8083
|
# local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
|
|
8076
|
-
# local_gateway_virtual_interface_group_id: "LocalGatewayVirtualInterfaceGroupId",
|
|
8084
|
+
# local_gateway_virtual_interface_group_id: "LocalGatewayVirtualInterfaceGroupId",
|
|
8077
8085
|
# dry_run: false,
|
|
8086
|
+
# network_interface_id: "NetworkInterfaceId",
|
|
8078
8087
|
# })
|
|
8079
8088
|
#
|
|
8080
8089
|
# @example Response structure
|
|
@@ -8086,6 +8095,9 @@ module Aws::EC2
|
|
|
8086
8095
|
# resp.route.local_gateway_route_table_id #=> String
|
|
8087
8096
|
# resp.route.local_gateway_route_table_arn #=> String
|
|
8088
8097
|
# resp.route.owner_id #=> String
|
|
8098
|
+
# resp.route.subnet_id #=> String
|
|
8099
|
+
# resp.route.coip_pool_id #=> String
|
|
8100
|
+
# resp.route.network_interface_id #=> String
|
|
8089
8101
|
#
|
|
8090
8102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRoute AWS API Documentation
|
|
8091
8103
|
#
|
|
@@ -14504,6 +14516,9 @@ module Aws::EC2
|
|
|
14504
14516
|
# resp.route.local_gateway_route_table_id #=> String
|
|
14505
14517
|
# resp.route.local_gateway_route_table_arn #=> String
|
|
14506
14518
|
# resp.route.owner_id #=> String
|
|
14519
|
+
# resp.route.subnet_id #=> String
|
|
14520
|
+
# resp.route.coip_pool_id #=> String
|
|
14521
|
+
# resp.route.network_interface_id #=> String
|
|
14507
14522
|
#
|
|
14508
14523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayRoute AWS API Documentation
|
|
14509
14524
|
#
|
|
@@ -19662,7 +19677,7 @@ module Aws::EC2
|
|
|
19662
19677
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers #=> Array
|
|
19663
19678
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
19664
19679
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_names #=> Array
|
|
19665
|
-
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
19680
|
+
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
19666
19681
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
19667
19682
|
# resp.fleets[0].launch_template_configs[0].overrides[0].instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
19668
19683
|
# resp.fleets[0].target_capacity_specification.total_target_capacity #=> Integer
|
|
@@ -19737,7 +19752,7 @@ module Aws::EC2
|
|
|
19737
19752
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers #=> Array
|
|
19738
19753
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
19739
19754
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names #=> Array
|
|
19740
|
-
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
19755
|
+
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
19741
19756
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
19742
19757
|
# resp.fleets[0].errors[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
19743
19758
|
# resp.fleets[0].errors[0].lifecycle #=> String, one of "spot", "on-demand"
|
|
@@ -19787,7 +19802,7 @@ module Aws::EC2
|
|
|
19787
19802
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers #=> Array
|
|
19788
19803
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
19789
19804
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names #=> Array
|
|
19790
|
-
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
19805
|
+
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
19791
19806
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
19792
19807
|
# resp.fleets[0].instances[0].launch_template_and_overrides.overrides.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
19793
19808
|
# resp.fleets[0].instances[0].lifecycle #=> String, one of "spot", "on-demand"
|
|
@@ -23611,7 +23626,7 @@ module Aws::EC2
|
|
|
23611
23626
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_manufacturers #=> Array
|
|
23612
23627
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
23613
23628
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_names #=> Array
|
|
23614
|
-
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
23629
|
+
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
23615
23630
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
23616
23631
|
# resp.launch_template_versions[0].launch_template_data.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
23617
23632
|
# resp.launch_template_versions[0].launch_template_data.private_dns_name_options.hostname_type #=> String, one of "ip-name", "resource-name"
|
|
@@ -23988,6 +24003,7 @@ module Aws::EC2
|
|
|
23988
24003
|
# resp.local_gateway_route_tables[0].tags #=> Array
|
|
23989
24004
|
# resp.local_gateway_route_tables[0].tags[0].key #=> String
|
|
23990
24005
|
# resp.local_gateway_route_tables[0].tags[0].value #=> String
|
|
24006
|
+
# resp.local_gateway_route_tables[0].mode #=> String, one of "direct-vpc-routing", "coip"
|
|
23991
24007
|
# resp.next_token #=> String
|
|
23992
24008
|
#
|
|
23993
24009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLocalGatewayRouteTables AWS API Documentation
|
|
@@ -28820,7 +28836,7 @@ module Aws::EC2
|
|
|
28820
28836
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_manufacturers #=> Array
|
|
28821
28837
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
28822
28838
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_names #=> Array
|
|
28823
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
28839
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
28824
28840
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
28825
28841
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
28826
28842
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs #=> Array
|
|
@@ -28867,7 +28883,7 @@ module Aws::EC2
|
|
|
28867
28883
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers #=> Array
|
|
28868
28884
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
28869
28885
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_names #=> Array
|
|
28870
|
-
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
28886
|
+
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
28871
28887
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
28872
28888
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
28873
28889
|
# resp.spot_fleet_request_configs[0].spot_fleet_request_config.spot_price #=> String
|
|
@@ -36129,7 +36145,7 @@ module Aws::EC2
|
|
|
36129
36145
|
# max: 1,
|
|
36130
36146
|
# },
|
|
36131
36147
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
36132
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
36148
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
36133
36149
|
# accelerator_total_memory_mi_b: {
|
|
36134
36150
|
# min: 1,
|
|
36135
36151
|
# max: 1,
|
|
@@ -36756,7 +36772,7 @@ module Aws::EC2
|
|
|
36756
36772
|
# resp.launch_template_data.instance_requirements.accelerator_manufacturers #=> Array
|
|
36757
36773
|
# resp.launch_template_data.instance_requirements.accelerator_manufacturers[0] #=> String, one of "nvidia", "amd", "amazon-web-services", "xilinx"
|
|
36758
36774
|
# resp.launch_template_data.instance_requirements.accelerator_names #=> Array
|
|
36759
|
-
# resp.launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p"
|
|
36775
|
+
# resp.launch_template_data.instance_requirements.accelerator_names[0] #=> String, one of "a100", "v100", "k80", "t4", "m60", "radeon-pro-v520", "vu9p", "inferentia", "k520"
|
|
36760
36776
|
# resp.launch_template_data.instance_requirements.accelerator_total_memory_mi_b.min #=> Integer
|
|
36761
36777
|
# resp.launch_template_data.instance_requirements.accelerator_total_memory_mi_b.max #=> Integer
|
|
36762
36778
|
# resp.launch_template_data.private_dns_name_options.hostname_type #=> String, one of "ip-name", "resource-name"
|
|
@@ -37449,7 +37465,7 @@ module Aws::EC2
|
|
|
37449
37465
|
# max: 1,
|
|
37450
37466
|
# },
|
|
37451
37467
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
37452
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
37468
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
37453
37469
|
# accelerator_total_memory_mi_b: {
|
|
37454
37470
|
# min: 1,
|
|
37455
37471
|
# max: 1,
|
|
@@ -39735,7 +39751,7 @@ module Aws::EC2
|
|
|
39735
39751
|
# max: 1,
|
|
39736
39752
|
# },
|
|
39737
39753
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
39738
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
39754
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
39739
39755
|
# accelerator_total_memory_mi_b: {
|
|
39740
39756
|
# min: 1,
|
|
39741
39757
|
# max: 1,
|
|
@@ -41431,6 +41447,59 @@ module Aws::EC2
|
|
|
41431
41447
|
req.send_request(options)
|
|
41432
41448
|
end
|
|
41433
41449
|
|
|
41450
|
+
# Modifies the specified local gateway route.
|
|
41451
|
+
#
|
|
41452
|
+
# @option params [required, String] :destination_cidr_block
|
|
41453
|
+
# The CIDR block used for destination matches. The value that you
|
|
41454
|
+
# provide must match the CIDR of an existing route in the table.
|
|
41455
|
+
#
|
|
41456
|
+
# @option params [required, String] :local_gateway_route_table_id
|
|
41457
|
+
# The ID of the local gateway route table.
|
|
41458
|
+
#
|
|
41459
|
+
# @option params [required, String] :network_interface_id
|
|
41460
|
+
# The ID of the network interface.
|
|
41461
|
+
#
|
|
41462
|
+
# @option params [Boolean] :dry_run
|
|
41463
|
+
# Checks whether you have the required permissions for the action,
|
|
41464
|
+
# without actually making the request, and provides an error response.
|
|
41465
|
+
# If you have the required permissions, the error response is
|
|
41466
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
41467
|
+
#
|
|
41468
|
+
# @return [Types::ModifyLocalGatewayRouteResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
41469
|
+
#
|
|
41470
|
+
# * {Types::ModifyLocalGatewayRouteResult#route #route} => Types::LocalGatewayRoute
|
|
41471
|
+
#
|
|
41472
|
+
# @example Request syntax with placeholder values
|
|
41473
|
+
#
|
|
41474
|
+
# resp = client.modify_local_gateway_route({
|
|
41475
|
+
# destination_cidr_block: "String", # required
|
|
41476
|
+
# local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
|
|
41477
|
+
# network_interface_id: "NetworkInterfaceId", # required
|
|
41478
|
+
# dry_run: false,
|
|
41479
|
+
# })
|
|
41480
|
+
#
|
|
41481
|
+
# @example Response structure
|
|
41482
|
+
#
|
|
41483
|
+
# resp.route.destination_cidr_block #=> String
|
|
41484
|
+
# resp.route.local_gateway_virtual_interface_group_id #=> String
|
|
41485
|
+
# resp.route.type #=> String, one of "static", "propagated"
|
|
41486
|
+
# resp.route.state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
|
|
41487
|
+
# resp.route.local_gateway_route_table_id #=> String
|
|
41488
|
+
# resp.route.local_gateway_route_table_arn #=> String
|
|
41489
|
+
# resp.route.owner_id #=> String
|
|
41490
|
+
# resp.route.subnet_id #=> String
|
|
41491
|
+
# resp.route.coip_pool_id #=> String
|
|
41492
|
+
# resp.route.network_interface_id #=> String
|
|
41493
|
+
#
|
|
41494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLocalGatewayRoute AWS API Documentation
|
|
41495
|
+
#
|
|
41496
|
+
# @overload modify_local_gateway_route(params = {})
|
|
41497
|
+
# @param [Hash] params ({})
|
|
41498
|
+
def modify_local_gateway_route(params = {}, options = {})
|
|
41499
|
+
req = build_request(:modify_local_gateway_route, params)
|
|
41500
|
+
req.send_request(options)
|
|
41501
|
+
end
|
|
41502
|
+
|
|
41434
41503
|
# Modifies the specified managed prefix list.
|
|
41435
41504
|
#
|
|
41436
41505
|
# Adding or removing entries in a prefix list creates a new version of
|
|
@@ -42122,7 +42191,7 @@ module Aws::EC2
|
|
|
42122
42191
|
# max: 1,
|
|
42123
42192
|
# },
|
|
42124
42193
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
42125
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
42194
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
42126
42195
|
# accelerator_total_memory_mi_b: {
|
|
42127
42196
|
# min: 1,
|
|
42128
42197
|
# max: 1,
|
|
@@ -46566,7 +46635,7 @@ module Aws::EC2
|
|
|
46566
46635
|
# max: 1,
|
|
46567
46636
|
# },
|
|
46568
46637
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
46569
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
46638
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
46570
46639
|
# accelerator_total_memory_mi_b: {
|
|
46571
46640
|
# min: 1,
|
|
46572
46641
|
# max: 1,
|
|
@@ -46630,7 +46699,7 @@ module Aws::EC2
|
|
|
46630
46699
|
# max: 1,
|
|
46631
46700
|
# },
|
|
46632
46701
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
46633
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
46702
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
46634
46703
|
# accelerator_total_memory_mi_b: {
|
|
46635
46704
|
# min: 1,
|
|
46636
46705
|
# max: 1,
|
|
@@ -49193,6 +49262,9 @@ module Aws::EC2
|
|
|
49193
49262
|
# resp.routes[0].local_gateway_route_table_id #=> String
|
|
49194
49263
|
# resp.routes[0].local_gateway_route_table_arn #=> String
|
|
49195
49264
|
# resp.routes[0].owner_id #=> String
|
|
49265
|
+
# resp.routes[0].subnet_id #=> String
|
|
49266
|
+
# resp.routes[0].coip_pool_id #=> String
|
|
49267
|
+
# resp.routes[0].network_interface_id #=> String
|
|
49196
49268
|
# resp.next_token #=> String
|
|
49197
49269
|
#
|
|
49198
49270
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SearchLocalGatewayRoutes AWS API Documentation
|
|
@@ -50817,7 +50889,7 @@ module Aws::EC2
|
|
|
50817
50889
|
params: params,
|
|
50818
50890
|
config: config)
|
|
50819
50891
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
50820
|
-
context[:gem_version] = '1.
|
|
50892
|
+
context[:gem_version] = '1.332.0'
|
|
50821
50893
|
Seahorse::Client::Request.new(handlers, context)
|
|
50822
50894
|
end
|
|
50823
50895
|
|
|
@@ -1723,6 +1723,7 @@ module Aws::EC2
|
|
|
1723
1723
|
LocalGatewayRouteState = Shapes::StringShape.new(name: 'LocalGatewayRouteState')
|
|
1724
1724
|
LocalGatewayRouteTable = Shapes::StructureShape.new(name: 'LocalGatewayRouteTable')
|
|
1725
1725
|
LocalGatewayRouteTableIdSet = Shapes::ListShape.new(name: 'LocalGatewayRouteTableIdSet')
|
|
1726
|
+
LocalGatewayRouteTableMode = Shapes::StringShape.new(name: 'LocalGatewayRouteTableMode')
|
|
1726
1727
|
LocalGatewayRouteTableSet = Shapes::ListShape.new(name: 'LocalGatewayRouteTableSet')
|
|
1727
1728
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociation = Shapes::StructureShape.new(name: 'LocalGatewayRouteTableVirtualInterfaceGroupAssociation')
|
|
1728
1729
|
LocalGatewayRouteTableVirtualInterfaceGroupAssociationId = Shapes::StringShape.new(name: 'LocalGatewayRouteTableVirtualInterfaceGroupAssociationId')
|
|
@@ -1819,6 +1820,8 @@ module Aws::EC2
|
|
|
1819
1820
|
ModifyIpamScopeResult = Shapes::StructureShape.new(name: 'ModifyIpamScopeResult')
|
|
1820
1821
|
ModifyLaunchTemplateRequest = Shapes::StructureShape.new(name: 'ModifyLaunchTemplateRequest')
|
|
1821
1822
|
ModifyLaunchTemplateResult = Shapes::StructureShape.new(name: 'ModifyLaunchTemplateResult')
|
|
1823
|
+
ModifyLocalGatewayRouteRequest = Shapes::StructureShape.new(name: 'ModifyLocalGatewayRouteRequest')
|
|
1824
|
+
ModifyLocalGatewayRouteResult = Shapes::StructureShape.new(name: 'ModifyLocalGatewayRouteResult')
|
|
1822
1825
|
ModifyManagedPrefixListRequest = Shapes::StructureShape.new(name: 'ModifyManagedPrefixListRequest')
|
|
1823
1826
|
ModifyManagedPrefixListResult = Shapes::StructureShape.new(name: 'ModifyManagedPrefixListResult')
|
|
1824
1827
|
ModifyNetworkInterfaceAttributeRequest = Shapes::StructureShape.new(name: 'ModifyNetworkInterfaceAttributeRequest')
|
|
@@ -4183,8 +4186,9 @@ module Aws::EC2
|
|
|
4183
4186
|
|
|
4184
4187
|
CreateLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DestinationCidrBlock"))
|
|
4185
4188
|
CreateLocalGatewayRouteRequest.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, required: true, location_name: "LocalGatewayRouteTableId"))
|
|
4186
|
-
CreateLocalGatewayRouteRequest.add_member(:local_gateway_virtual_interface_group_id, Shapes::ShapeRef.new(shape: LocalGatewayVirtualInterfaceGroupId,
|
|
4189
|
+
CreateLocalGatewayRouteRequest.add_member(:local_gateway_virtual_interface_group_id, Shapes::ShapeRef.new(shape: LocalGatewayVirtualInterfaceGroupId, location_name: "LocalGatewayVirtualInterfaceGroupId"))
|
|
4187
4190
|
CreateLocalGatewayRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
4191
|
+
CreateLocalGatewayRouteRequest.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "NetworkInterfaceId"))
|
|
4188
4192
|
CreateLocalGatewayRouteRequest.struct_class = Types::CreateLocalGatewayRouteRequest
|
|
4189
4193
|
|
|
4190
4194
|
CreateLocalGatewayRouteResult.add_member(:route, Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "route"))
|
|
@@ -9557,6 +9561,9 @@ module Aws::EC2
|
|
|
9557
9561
|
LocalGatewayRoute.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, location_name: "localGatewayRouteTableId"))
|
|
9558
9562
|
LocalGatewayRoute.add_member(:local_gateway_route_table_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "localGatewayRouteTableArn"))
|
|
9559
9563
|
LocalGatewayRoute.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
|
9564
|
+
LocalGatewayRoute.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "subnetId"))
|
|
9565
|
+
LocalGatewayRoute.add_member(:coip_pool_id, Shapes::ShapeRef.new(shape: CoipPoolId, location_name: "coipPoolId"))
|
|
9566
|
+
LocalGatewayRoute.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "networkInterfaceId"))
|
|
9560
9567
|
LocalGatewayRoute.struct_class = Types::LocalGatewayRoute
|
|
9561
9568
|
|
|
9562
9569
|
LocalGatewayRouteList.member = Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "item")
|
|
@@ -9568,6 +9575,7 @@ module Aws::EC2
|
|
|
9568
9575
|
LocalGatewayRouteTable.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
|
9569
9576
|
LocalGatewayRouteTable.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "state"))
|
|
9570
9577
|
LocalGatewayRouteTable.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
9578
|
+
LocalGatewayRouteTable.add_member(:mode, Shapes::ShapeRef.new(shape: LocalGatewayRouteTableMode, location_name: "mode"))
|
|
9571
9579
|
LocalGatewayRouteTable.struct_class = Types::LocalGatewayRouteTable
|
|
9572
9580
|
|
|
9573
9581
|
LocalGatewayRouteTableIdSet.member = Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, location_name: "item")
|
|
@@ -9941,6 +9949,15 @@ module Aws::EC2
|
|
|
9941
9949
|
ModifyLaunchTemplateResult.add_member(:launch_template, Shapes::ShapeRef.new(shape: LaunchTemplate, location_name: "launchTemplate"))
|
|
9942
9950
|
ModifyLaunchTemplateResult.struct_class = Types::ModifyLaunchTemplateResult
|
|
9943
9951
|
|
|
9952
|
+
ModifyLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DestinationCidrBlock"))
|
|
9953
|
+
ModifyLocalGatewayRouteRequest.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, required: true, location_name: "LocalGatewayRouteTableId"))
|
|
9954
|
+
ModifyLocalGatewayRouteRequest.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, required: true, location_name: "NetworkInterfaceId"))
|
|
9955
|
+
ModifyLocalGatewayRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
9956
|
+
ModifyLocalGatewayRouteRequest.struct_class = Types::ModifyLocalGatewayRouteRequest
|
|
9957
|
+
|
|
9958
|
+
ModifyLocalGatewayRouteResult.add_member(:route, Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "route"))
|
|
9959
|
+
ModifyLocalGatewayRouteResult.struct_class = Types::ModifyLocalGatewayRouteResult
|
|
9960
|
+
|
|
9944
9961
|
ModifyManagedPrefixListRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
9945
9962
|
ModifyManagedPrefixListRequest.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, required: true, location_name: "PrefixListId"))
|
|
9946
9963
|
ModifyManagedPrefixListRequest.add_member(:current_version, Shapes::ShapeRef.new(shape: Long, location_name: "CurrentVersion"))
|
|
@@ -17746,6 +17763,14 @@ module Aws::EC2
|
|
|
17746
17763
|
o.output = Shapes::ShapeRef.new(shape: ModifyLaunchTemplateResult)
|
|
17747
17764
|
end)
|
|
17748
17765
|
|
|
17766
|
+
api.add_operation(:modify_local_gateway_route, Seahorse::Model::Operation.new.tap do |o|
|
|
17767
|
+
o.name = "ModifyLocalGatewayRoute"
|
|
17768
|
+
o.http_method = "POST"
|
|
17769
|
+
o.http_request_uri = "/"
|
|
17770
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyLocalGatewayRouteRequest)
|
|
17771
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyLocalGatewayRouteResult)
|
|
17772
|
+
end)
|
|
17773
|
+
|
|
17749
17774
|
api.add_operation(:modify_managed_prefix_list, Seahorse::Model::Operation.new.tap do |o|
|
|
17750
17775
|
o.name = "ModifyManagedPrefixList"
|
|
17751
17776
|
o.http_method = "POST"
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -7924,7 +7924,7 @@ module Aws::EC2
|
|
|
7924
7924
|
# max: 1,
|
|
7925
7925
|
# },
|
|
7926
7926
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
7927
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
7927
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
7928
7928
|
# accelerator_total_memory_mi_b: {
|
|
7929
7929
|
# min: 1,
|
|
7930
7930
|
# max: 1,
|
|
@@ -9402,7 +9402,7 @@ module Aws::EC2
|
|
|
9402
9402
|
# max: 1,
|
|
9403
9403
|
# },
|
|
9404
9404
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
9405
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
9405
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
9406
9406
|
# accelerator_total_memory_mi_b: {
|
|
9407
9407
|
# min: 1,
|
|
9408
9408
|
# max: 1,
|
|
@@ -9710,7 +9710,7 @@ module Aws::EC2
|
|
|
9710
9710
|
# max: 1,
|
|
9711
9711
|
# },
|
|
9712
9712
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
9713
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
9713
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
9714
9714
|
# accelerator_total_memory_mi_b: {
|
|
9715
9715
|
# min: 1,
|
|
9716
9716
|
# max: 1,
|
|
@@ -9817,8 +9817,9 @@ module Aws::EC2
|
|
|
9817
9817
|
# {
|
|
9818
9818
|
# destination_cidr_block: "String", # required
|
|
9819
9819
|
# local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
|
|
9820
|
-
# local_gateway_virtual_interface_group_id: "LocalGatewayVirtualInterfaceGroupId",
|
|
9820
|
+
# local_gateway_virtual_interface_group_id: "LocalGatewayVirtualInterfaceGroupId",
|
|
9821
9821
|
# dry_run: false,
|
|
9822
|
+
# network_interface_id: "NetworkInterfaceId",
|
|
9822
9823
|
# }
|
|
9823
9824
|
#
|
|
9824
9825
|
# @!attribute [rw] destination_cidr_block
|
|
@@ -9841,13 +9842,18 @@ module Aws::EC2
|
|
|
9841
9842
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
9842
9843
|
# @return [Boolean]
|
|
9843
9844
|
#
|
|
9845
|
+
# @!attribute [rw] network_interface_id
|
|
9846
|
+
# The ID of the network interface.
|
|
9847
|
+
# @return [String]
|
|
9848
|
+
#
|
|
9844
9849
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRouteRequest AWS API Documentation
|
|
9845
9850
|
#
|
|
9846
9851
|
class CreateLocalGatewayRouteRequest < Struct.new(
|
|
9847
9852
|
:destination_cidr_block,
|
|
9848
9853
|
:local_gateway_route_table_id,
|
|
9849
9854
|
:local_gateway_virtual_interface_group_id,
|
|
9850
|
-
:dry_run
|
|
9855
|
+
:dry_run,
|
|
9856
|
+
:network_interface_id)
|
|
9851
9857
|
SENSITIVE = []
|
|
9852
9858
|
include Aws::Structure
|
|
9853
9859
|
end
|
|
@@ -34546,7 +34552,7 @@ module Aws::EC2
|
|
|
34546
34552
|
# max: 1,
|
|
34547
34553
|
# },
|
|
34548
34554
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
34549
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
34555
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
34550
34556
|
# accelerator_total_memory_mi_b: {
|
|
34551
34557
|
# min: 1,
|
|
34552
34558
|
# max: 1,
|
|
@@ -34723,7 +34729,7 @@ module Aws::EC2
|
|
|
34723
34729
|
# max: 1,
|
|
34724
34730
|
# },
|
|
34725
34731
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
34726
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
34732
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
34727
34733
|
# accelerator_total_memory_mi_b: {
|
|
34728
34734
|
# min: 1,
|
|
34729
34735
|
# max: 1,
|
|
@@ -36135,7 +36141,7 @@ module Aws::EC2
|
|
|
36135
36141
|
# max: 1,
|
|
36136
36142
|
# },
|
|
36137
36143
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
36138
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
36144
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
36139
36145
|
# accelerator_total_memory_mi_b: {
|
|
36140
36146
|
# min: 1,
|
|
36141
36147
|
# max: 1,
|
|
@@ -37115,7 +37121,7 @@ module Aws::EC2
|
|
|
37115
37121
|
# max: 1,
|
|
37116
37122
|
# },
|
|
37117
37123
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
37118
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
37124
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
37119
37125
|
# accelerator_total_memory_mi_b: {
|
|
37120
37126
|
# min: 1,
|
|
37121
37127
|
# max: 1,
|
|
@@ -41968,7 +41974,7 @@ module Aws::EC2
|
|
|
41968
41974
|
# max: 1,
|
|
41969
41975
|
# },
|
|
41970
41976
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
41971
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
41977
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
41972
41978
|
# accelerator_total_memory_mi_b: {
|
|
41973
41979
|
# min: 1,
|
|
41974
41980
|
# max: 1,
|
|
@@ -42369,7 +42375,7 @@ module Aws::EC2
|
|
|
42369
42375
|
# max: 1,
|
|
42370
42376
|
# },
|
|
42371
42377
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
42372
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
42378
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
42373
42379
|
# accelerator_total_memory_mi_b: {
|
|
42374
42380
|
# min: 1,
|
|
42375
42381
|
# max: 1,
|
|
@@ -42755,7 +42761,7 @@ module Aws::EC2
|
|
|
42755
42761
|
# max: 1,
|
|
42756
42762
|
# },
|
|
42757
42763
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
42758
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
42764
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
42759
42765
|
# accelerator_total_memory_mi_b: {
|
|
42760
42766
|
# min: 1,
|
|
42761
42767
|
# max: 1,
|
|
@@ -45040,7 +45046,7 @@ module Aws::EC2
|
|
|
45040
45046
|
# max: 1,
|
|
45041
45047
|
# },
|
|
45042
45048
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
45043
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
45049
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
45044
45050
|
# accelerator_total_memory_mi_b: {
|
|
45045
45051
|
# min: 1,
|
|
45046
45052
|
# max: 1,
|
|
@@ -46129,7 +46135,7 @@ module Aws::EC2
|
|
|
46129
46135
|
# max: 1,
|
|
46130
46136
|
# },
|
|
46131
46137
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
46132
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
46138
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
46133
46139
|
# accelerator_total_memory_mi_b: {
|
|
46134
46140
|
# min: 1,
|
|
46135
46141
|
# max: 1,
|
|
@@ -47057,6 +47063,18 @@ module Aws::EC2
|
|
|
47057
47063
|
# gateway route.
|
|
47058
47064
|
# @return [String]
|
|
47059
47065
|
#
|
|
47066
|
+
# @!attribute [rw] subnet_id
|
|
47067
|
+
# The ID of the subnet.
|
|
47068
|
+
# @return [String]
|
|
47069
|
+
#
|
|
47070
|
+
# @!attribute [rw] coip_pool_id
|
|
47071
|
+
# The ID of the customer-owned address pool.
|
|
47072
|
+
# @return [String]
|
|
47073
|
+
#
|
|
47074
|
+
# @!attribute [rw] network_interface_id
|
|
47075
|
+
# The ID of the network interface.
|
|
47076
|
+
# @return [String]
|
|
47077
|
+
#
|
|
47060
47078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRoute AWS API Documentation
|
|
47061
47079
|
#
|
|
47062
47080
|
class LocalGatewayRoute < Struct.new(
|
|
@@ -47066,7 +47084,10 @@ module Aws::EC2
|
|
|
47066
47084
|
:state,
|
|
47067
47085
|
:local_gateway_route_table_id,
|
|
47068
47086
|
:local_gateway_route_table_arn,
|
|
47069
|
-
:owner_id
|
|
47087
|
+
:owner_id,
|
|
47088
|
+
:subnet_id,
|
|
47089
|
+
:coip_pool_id,
|
|
47090
|
+
:network_interface_id)
|
|
47070
47091
|
SENSITIVE = []
|
|
47071
47092
|
include Aws::Structure
|
|
47072
47093
|
end
|
|
@@ -47102,6 +47123,10 @@ module Aws::EC2
|
|
|
47102
47123
|
# The tags assigned to the local gateway route table.
|
|
47103
47124
|
# @return [Array<Types::Tag>]
|
|
47104
47125
|
#
|
|
47126
|
+
# @!attribute [rw] mode
|
|
47127
|
+
# The mode of the local gateway route table.
|
|
47128
|
+
# @return [String]
|
|
47129
|
+
#
|
|
47105
47130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRouteTable AWS API Documentation
|
|
47106
47131
|
#
|
|
47107
47132
|
class LocalGatewayRouteTable < Struct.new(
|
|
@@ -47111,7 +47136,8 @@ module Aws::EC2
|
|
|
47111
47136
|
:outpost_arn,
|
|
47112
47137
|
:owner_id,
|
|
47113
47138
|
:state,
|
|
47114
|
-
:tags
|
|
47139
|
+
:tags,
|
|
47140
|
+
:mode)
|
|
47115
47141
|
SENSITIVE = []
|
|
47116
47142
|
include Aws::Structure
|
|
47117
47143
|
end
|
|
@@ -48124,7 +48150,7 @@ module Aws::EC2
|
|
|
48124
48150
|
# max: 1,
|
|
48125
48151
|
# },
|
|
48126
48152
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
48127
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
48153
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
48128
48154
|
# accelerator_total_memory_mi_b: {
|
|
48129
48155
|
# min: 1,
|
|
48130
48156
|
# max: 1,
|
|
@@ -49694,6 +49720,59 @@ module Aws::EC2
|
|
|
49694
49720
|
include Aws::Structure
|
|
49695
49721
|
end
|
|
49696
49722
|
|
|
49723
|
+
# @note When making an API call, you may pass ModifyLocalGatewayRouteRequest
|
|
49724
|
+
# data as a hash:
|
|
49725
|
+
#
|
|
49726
|
+
# {
|
|
49727
|
+
# destination_cidr_block: "String", # required
|
|
49728
|
+
# local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
|
|
49729
|
+
# network_interface_id: "NetworkInterfaceId", # required
|
|
49730
|
+
# dry_run: false,
|
|
49731
|
+
# }
|
|
49732
|
+
#
|
|
49733
|
+
# @!attribute [rw] destination_cidr_block
|
|
49734
|
+
# The CIDR block used for destination matches. The value that you
|
|
49735
|
+
# provide must match the CIDR of an existing route in the table.
|
|
49736
|
+
# @return [String]
|
|
49737
|
+
#
|
|
49738
|
+
# @!attribute [rw] local_gateway_route_table_id
|
|
49739
|
+
# The ID of the local gateway route table.
|
|
49740
|
+
# @return [String]
|
|
49741
|
+
#
|
|
49742
|
+
# @!attribute [rw] network_interface_id
|
|
49743
|
+
# The ID of the network interface.
|
|
49744
|
+
# @return [String]
|
|
49745
|
+
#
|
|
49746
|
+
# @!attribute [rw] dry_run
|
|
49747
|
+
# Checks whether you have the required permissions for the action,
|
|
49748
|
+
# without actually making the request, and provides an error response.
|
|
49749
|
+
# If you have the required permissions, the error response is
|
|
49750
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
49751
|
+
# @return [Boolean]
|
|
49752
|
+
#
|
|
49753
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLocalGatewayRouteRequest AWS API Documentation
|
|
49754
|
+
#
|
|
49755
|
+
class ModifyLocalGatewayRouteRequest < Struct.new(
|
|
49756
|
+
:destination_cidr_block,
|
|
49757
|
+
:local_gateway_route_table_id,
|
|
49758
|
+
:network_interface_id,
|
|
49759
|
+
:dry_run)
|
|
49760
|
+
SENSITIVE = []
|
|
49761
|
+
include Aws::Structure
|
|
49762
|
+
end
|
|
49763
|
+
|
|
49764
|
+
# @!attribute [rw] route
|
|
49765
|
+
# Describes a route for a local gateway route table.
|
|
49766
|
+
# @return [Types::LocalGatewayRoute]
|
|
49767
|
+
#
|
|
49768
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLocalGatewayRouteResult AWS API Documentation
|
|
49769
|
+
#
|
|
49770
|
+
class ModifyLocalGatewayRouteResult < Struct.new(
|
|
49771
|
+
:route)
|
|
49772
|
+
SENSITIVE = []
|
|
49773
|
+
include Aws::Structure
|
|
49774
|
+
end
|
|
49775
|
+
|
|
49697
49776
|
# @note When making an API call, you may pass ModifyManagedPrefixListRequest
|
|
49698
49777
|
# data as a hash:
|
|
49699
49778
|
#
|
|
@@ -50222,7 +50301,7 @@ module Aws::EC2
|
|
|
50222
50301
|
# max: 1,
|
|
50223
50302
|
# },
|
|
50224
50303
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
50225
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
50304
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
50226
50305
|
# accelerator_total_memory_mi_b: {
|
|
50227
50306
|
# min: 1,
|
|
50228
50307
|
# max: 1,
|
|
@@ -57362,7 +57441,7 @@ module Aws::EC2
|
|
|
57362
57441
|
# max: 1,
|
|
57363
57442
|
# },
|
|
57364
57443
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
57365
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
57444
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
57366
57445
|
# accelerator_total_memory_mi_b: {
|
|
57367
57446
|
# min: 1,
|
|
57368
57447
|
# max: 1,
|
|
@@ -57853,7 +57932,7 @@ module Aws::EC2
|
|
|
57853
57932
|
# max: 1,
|
|
57854
57933
|
# },
|
|
57855
57934
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
57856
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
57935
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
57857
57936
|
# accelerator_total_memory_mi_b: {
|
|
57858
57937
|
# min: 1,
|
|
57859
57938
|
# max: 1,
|
|
@@ -57917,7 +57996,7 @@ module Aws::EC2
|
|
|
57917
57996
|
# max: 1,
|
|
57918
57997
|
# },
|
|
57919
57998
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
57920
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
57999
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
57921
58000
|
# accelerator_total_memory_mi_b: {
|
|
57922
58001
|
# min: 1,
|
|
57923
58002
|
# max: 1,
|
|
@@ -63827,7 +63906,7 @@ module Aws::EC2
|
|
|
63827
63906
|
# max: 1,
|
|
63828
63907
|
# },
|
|
63829
63908
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
63830
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
63909
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
63831
63910
|
# accelerator_total_memory_mi_b: {
|
|
63832
63911
|
# min: 1,
|
|
63833
63912
|
# max: 1,
|
|
@@ -64216,7 +64295,7 @@ module Aws::EC2
|
|
|
64216
64295
|
# max: 1,
|
|
64217
64296
|
# },
|
|
64218
64297
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
64219
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
64298
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
64220
64299
|
# accelerator_total_memory_mi_b: {
|
|
64221
64300
|
# min: 1,
|
|
64222
64301
|
# max: 1,
|
|
@@ -64280,7 +64359,7 @@ module Aws::EC2
|
|
|
64280
64359
|
# max: 1,
|
|
64281
64360
|
# },
|
|
64282
64361
|
# accelerator_manufacturers: ["nvidia"], # accepts nvidia, amd, amazon-web-services, xilinx
|
|
64283
|
-
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p
|
|
64362
|
+
# accelerator_names: ["a100"], # accepts a100, v100, k80, t4, m60, radeon-pro-v520, vu9p, inferentia, k520
|
|
64284
64363
|
# accelerator_total_memory_mi_b: {
|
|
64285
64364
|
# min: 1,
|
|
64286
64365
|
# max: 1,
|
data/lib/aws-sdk-ec2.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ec2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.332.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: 2022-09-
|
|
11
|
+
date: 2022-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|