aws-sdk-ec2 1.397.0 → 1.399.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 +160 -38
- data/lib/aws-sdk-ec2/client_api.rb +11 -0
- data/lib/aws-sdk-ec2/placement_group.rb +93 -8
- data/lib/aws-sdk-ec2/resource.rb +93 -8
- data/lib/aws-sdk-ec2/subnet.rb +93 -8
- data/lib/aws-sdk-ec2/types.rb +166 -31
- data/lib/aws-sdk-ec2/vpc.rb +93 -8
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -7573,8 +7573,7 @@ module Aws::EC2
|
|
|
7573
7573
|
# *Amazon Web Services Transit Gateway Guide*.
|
|
7574
7574
|
#
|
|
7575
7575
|
# Specify the fields using the `$\{field-id\}` format, separated by
|
|
7576
|
-
# spaces.
|
|
7577
|
-
# quotes on Linux or double quotes on Windows.
|
|
7576
|
+
# spaces.
|
|
7578
7577
|
#
|
|
7579
7578
|
#
|
|
7580
7579
|
#
|
|
@@ -10226,22 +10225,14 @@ module Aws::EC2
|
|
|
10226
10225
|
# @return [String]
|
|
10227
10226
|
#
|
|
10228
10227
|
# @!attribute [rw] reservation_type
|
|
10229
|
-
# The type of reservation.
|
|
10230
|
-
#
|
|
10231
|
-
# The following are valid values:
|
|
10232
|
-
#
|
|
10233
|
-
# * `prefix`: The Amazon EC2 Prefix Delegation feature assigns the IP
|
|
10234
|
-
# addresses to network interfaces that are associated with an
|
|
10235
|
-
# instance. For information about Prefix Delegation, see [Prefix
|
|
10236
|
-
# Delegation for Amazon EC2 network interfaces][1] in the *Amazon
|
|
10237
|
-
# Elastic Compute Cloud User Guide*.
|
|
10238
|
-
#
|
|
10239
|
-
# * `explicit`: You manually assign the IP addresses to resources that
|
|
10240
|
-
# reside in your subnet.
|
|
10241
|
-
#
|
|
10228
|
+
# The type of reservation. The reservation type determines how the
|
|
10229
|
+
# reserved IP addresses are assigned to resources.
|
|
10242
10230
|
#
|
|
10231
|
+
# * `prefix` - Amazon Web Services assigns the reserved IP addresses
|
|
10232
|
+
# to network interfaces.
|
|
10243
10233
|
#
|
|
10244
|
-
#
|
|
10234
|
+
# * `explicit` - You assign the reserved IP addresses to network
|
|
10235
|
+
# interfaces.
|
|
10245
10236
|
# @return [String]
|
|
10246
10237
|
#
|
|
10247
10238
|
# @!attribute [rw] description
|
|
@@ -10602,6 +10593,11 @@ module Aws::EC2
|
|
|
10602
10593
|
# If you do not want to mirror the entire packet, use the
|
|
10603
10594
|
# `PacketLength` parameter to specify the number of bytes in each
|
|
10604
10595
|
# packet to mirror.
|
|
10596
|
+
#
|
|
10597
|
+
# For sessions with Network Load Balancer (NLB) Traffic Mirror targets
|
|
10598
|
+
# the default `PacketLength` will be set to 8500. Valid values are
|
|
10599
|
+
# 1-8500. Setting a `PacketLength` greater than 8500 will result in an
|
|
10600
|
+
# error response.
|
|
10605
10601
|
# @return [Integer]
|
|
10606
10602
|
#
|
|
10607
10603
|
# @!attribute [rw] session_number
|
|
@@ -12128,13 +12124,13 @@ module Aws::EC2
|
|
|
12128
12124
|
#
|
|
12129
12125
|
# @!attribute [rw] subnet_ids
|
|
12130
12126
|
# (Interface and Gateway Load Balancer endpoints) The IDs of the
|
|
12131
|
-
# subnets in which to create
|
|
12127
|
+
# subnets in which to create endpoint network interfaces. For a
|
|
12132
12128
|
# Gateway Load Balancer endpoint, you can specify only one subnet.
|
|
12133
12129
|
# @return [Array<String>]
|
|
12134
12130
|
#
|
|
12135
12131
|
# @!attribute [rw] security_group_ids
|
|
12136
12132
|
# (Interface endpoint) The IDs of the security groups to associate
|
|
12137
|
-
# with the endpoint network
|
|
12133
|
+
# with the endpoint network interfaces. If this parameter is not
|
|
12138
12134
|
# specified, we use the default security group for the VPC.
|
|
12139
12135
|
# @return [Array<String>]
|
|
12140
12136
|
#
|
|
@@ -12177,6 +12173,10 @@ module Aws::EC2
|
|
|
12177
12173
|
# The tags to associate with the endpoint.
|
|
12178
12174
|
# @return [Array<Types::TagSpecification>]
|
|
12179
12175
|
#
|
|
12176
|
+
# @!attribute [rw] subnet_configurations
|
|
12177
|
+
# The subnet configurations for the endpoint.
|
|
12178
|
+
# @return [Array<Types::SubnetConfiguration>]
|
|
12179
|
+
#
|
|
12180
12180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpointRequest AWS API Documentation
|
|
12181
12181
|
#
|
|
12182
12182
|
class CreateVpcEndpointRequest < Struct.new(
|
|
@@ -12192,7 +12192,8 @@ module Aws::EC2
|
|
|
12192
12192
|
:dns_options,
|
|
12193
12193
|
:client_token,
|
|
12194
12194
|
:private_dns_enabled,
|
|
12195
|
-
:tag_specifications
|
|
12195
|
+
:tag_specifications,
|
|
12196
|
+
:subnet_configurations)
|
|
12196
12197
|
SENSITIVE = []
|
|
12197
12198
|
include Aws::Structure
|
|
12198
12199
|
end
|
|
@@ -13573,7 +13574,7 @@ module Aws::EC2
|
|
|
13573
13574
|
#
|
|
13574
13575
|
# @!attribute [rw] versions
|
|
13575
13576
|
# The version numbers of one or more launch template versions to
|
|
13576
|
-
# delete.
|
|
13577
|
+
# delete. You can specify up to 200 launch template version numbers.
|
|
13577
13578
|
# @return [Array<String>]
|
|
13578
13579
|
#
|
|
13579
13580
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLaunchTemplateVersionsRequest AWS API Documentation
|
|
@@ -19517,7 +19518,7 @@ module Aws::EC2
|
|
|
19517
19518
|
#
|
|
19518
19519
|
# * `block-device-mapping.attach-time` - The attach time for an EBS
|
|
19519
19520
|
# volume mapped to the instance, for example,
|
|
19520
|
-
# `
|
|
19521
|
+
# `2022-09-15T17:15:20.000Z`.
|
|
19521
19522
|
#
|
|
19522
19523
|
# * `block-device-mapping.delete-on-termination` - A Boolean that
|
|
19523
19524
|
# indicates whether the EBS volume is deleted on instance
|
|
@@ -19532,14 +19533,39 @@ module Aws::EC2
|
|
|
19532
19533
|
# * `block-device-mapping.volume-id` - The volume ID of the EBS
|
|
19533
19534
|
# volume.
|
|
19534
19535
|
#
|
|
19536
|
+
# * `boot-mode` - The boot mode that was specified by the AMI
|
|
19537
|
+
# (`legacy-bios` \| `uefi` \| `uefi-preferred`).
|
|
19538
|
+
#
|
|
19535
19539
|
# * `capacity-reservation-id` - The ID of the Capacity Reservation
|
|
19536
19540
|
# into which the instance was launched.
|
|
19537
19541
|
#
|
|
19542
|
+
# * `capacity-reservation-specification.capacity-reservation-preference`
|
|
19543
|
+
# - The instance's Capacity Reservation preference (`open` \|
|
|
19544
|
+
# `none`).
|
|
19545
|
+
#
|
|
19546
|
+
# * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id`
|
|
19547
|
+
# - The ID of the targeted Capacity Reservation.
|
|
19548
|
+
#
|
|
19549
|
+
# * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn`
|
|
19550
|
+
# - The ARN of the targeted Capacity Reservation group.
|
|
19551
|
+
#
|
|
19538
19552
|
# * `client-token` - The idempotency token you provided when you
|
|
19539
19553
|
# launched the instance.
|
|
19540
19554
|
#
|
|
19555
|
+
# * `current-instance-boot-mode` - The boot mode that is used to
|
|
19556
|
+
# launch the instance at launch or start (`legacy-bios` \| `uefi`).
|
|
19557
|
+
#
|
|
19541
19558
|
# * `dns-name` - The public DNS name of the instance.
|
|
19542
19559
|
#
|
|
19560
|
+
# * `ebs-optimized` - A Boolean that indicates whether the instance is
|
|
19561
|
+
# optimized for Amazon EBS I/O.
|
|
19562
|
+
#
|
|
19563
|
+
# * `ena-support` - A Boolean that indicates whether the instance is
|
|
19564
|
+
# enabled for enhanced networking with ENA.
|
|
19565
|
+
#
|
|
19566
|
+
# * `enclave-options.enabled` - A Boolean that indicates whether the
|
|
19567
|
+
# instance is enabled for Amazon Web Services Nitro Enclaves.
|
|
19568
|
+
#
|
|
19543
19569
|
# * `hibernation-options.configured` - A Boolean that indicates
|
|
19544
19570
|
# whether the instance is enabled for hibernation. A value of `true`
|
|
19545
19571
|
# means that the instance is enabled for hibernation.
|
|
@@ -19554,6 +19580,12 @@ module Aws::EC2
|
|
|
19554
19580
|
# * `iam-instance-profile.arn` - The instance profile associated with
|
|
19555
19581
|
# the instance. Specified as an ARN.
|
|
19556
19582
|
#
|
|
19583
|
+
# * `iam-instance-profile.id` - The instance profile associated with
|
|
19584
|
+
# the instance. Specified as an ID.
|
|
19585
|
+
#
|
|
19586
|
+
# * `iam-instance-profile.name` - The instance profile associated with
|
|
19587
|
+
# the instance. Specified as an name.
|
|
19588
|
+
#
|
|
19557
19589
|
# * `image-id` - The ID of the image used to launch the instance.
|
|
19558
19590
|
#
|
|
19559
19591
|
# * `instance-id` - The ID of the instance.
|
|
@@ -19581,6 +19613,8 @@ module Aws::EC2
|
|
|
19581
19613
|
#
|
|
19582
19614
|
# * `ip-address` - The public IPv4 address of the instance.
|
|
19583
19615
|
#
|
|
19616
|
+
# * `ipv6-address` - The IPv6 address of the instance.
|
|
19617
|
+
#
|
|
19584
19618
|
# * `kernel-id` - The kernel ID.
|
|
19585
19619
|
#
|
|
19586
19620
|
# * `key-name` - The name of the key pair used when the instance was
|
|
@@ -19595,30 +19629,44 @@ module Aws::EC2
|
|
|
19595
19629
|
# for example, `2021-09-29T11:04:43.305Z`. You can use a wildcard
|
|
19596
19630
|
# (`*`), for example, `2021-09-29T*`, which matches an entire day.
|
|
19597
19631
|
#
|
|
19598
|
-
# * `
|
|
19599
|
-
#
|
|
19632
|
+
# * `license-pool` -
|
|
19633
|
+
#
|
|
19634
|
+
# * `maintenance-options.auto-recovery` - The current automatic
|
|
19635
|
+
# recovery behavior of the instance (`disabled` \| `default`).
|
|
19636
|
+
#
|
|
19637
|
+
# * `metadata-options.http-endpoint` - The status of access to the
|
|
19638
|
+
# HTTP metadata endpoint on your instance (`enabled` \| `disabled`)
|
|
19639
|
+
#
|
|
19640
|
+
# * `metadata-options.http-protocol-ipv4` - Indicates whether the IPv4
|
|
19641
|
+
# endpoint is enabled (`disabled` \| `enabled`).
|
|
19642
|
+
#
|
|
19643
|
+
# * `metadata-options.http-protocol-ipv6` - Indicates whether the IPv6
|
|
19644
|
+
# endpoint is enabled (`disabled` \| `enabled`).
|
|
19600
19645
|
#
|
|
19601
19646
|
# * `metadata-options.http-put-response-hop-limit` - The HTTP metadata
|
|
19602
19647
|
# request put response hop limit (integer, possible values `1` to
|
|
19603
19648
|
# `64`)
|
|
19604
19649
|
#
|
|
19605
|
-
# * `metadata-options.http-
|
|
19606
|
-
#
|
|
19650
|
+
# * `metadata-options.http-tokens` - The metadata request
|
|
19651
|
+
# authorization state (`optional` \| `required`)
|
|
19607
19652
|
#
|
|
19608
19653
|
# * `metadata-options.instance-metadata-tags` - The status of access
|
|
19609
19654
|
# to instance tags from the instance metadata (`enabled` \|
|
|
19610
19655
|
# `disabled`)
|
|
19611
19656
|
#
|
|
19657
|
+
# * `metadata-options.state` - The state of the metadata option
|
|
19658
|
+
# changes (`pending` \| `applied`).
|
|
19659
|
+
#
|
|
19612
19660
|
# * `monitoring-state` - Indicates whether detailed monitoring is
|
|
19613
19661
|
# enabled (`disabled` \| `enabled`).
|
|
19614
19662
|
#
|
|
19615
|
-
# * `network-interface.addresses.private-ip-address` - The private
|
|
19616
|
-
# IPv4 address associated with the network interface.
|
|
19617
|
-
#
|
|
19618
19663
|
# * `network-interface.addresses.primary` - Specifies whether the IPv4
|
|
19619
19664
|
# address of the network interface is the primary private IPv4
|
|
19620
19665
|
# address.
|
|
19621
19666
|
#
|
|
19667
|
+
# * `network-interface.addresses.private-ip-address` - The private
|
|
19668
|
+
# IPv4 address associated with the network interface.
|
|
19669
|
+
#
|
|
19622
19670
|
# * `network-interface.addresses.association.public-ip` - The ID of
|
|
19623
19671
|
# the association of an Elastic IP address (IPv4) with a network
|
|
19624
19672
|
# interface.
|
|
@@ -19725,8 +19773,31 @@ module Aws::EC2
|
|
|
19725
19773
|
# * `platform` - The platform. To list only Windows instances, use
|
|
19726
19774
|
# `windows`.
|
|
19727
19775
|
#
|
|
19776
|
+
# * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
|
|
19777
|
+
# Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
|
|
19778
|
+
# with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
|
|
19779
|
+
# HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and
|
|
19780
|
+
# HA` \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red
|
|
19781
|
+
# Hat Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise
|
|
19782
|
+
# Linux with SQL Server Enterprise` \| `SQL Server Enterprise` \|
|
|
19783
|
+
# `SQL Server Standard` \| `SQL Server Web` \| `SUSE Linux` \|
|
|
19784
|
+
# `Ubuntu Pro` \| `Windows` \| `Windows BYOL` \| `Windows with SQL
|
|
19785
|
+
# Server Enterprise` \| `Windows with SQL Server Standard` \|
|
|
19786
|
+
# `Windows with SQL Server Web`).
|
|
19787
|
+
#
|
|
19728
19788
|
# * `private-dns-name` - The private IPv4 DNS name of the instance.
|
|
19729
19789
|
#
|
|
19790
|
+
# * `private-dns-name-options.enable-resource-name-dns-a-record` - A
|
|
19791
|
+
# Boolean that indicates whether to respond to DNS queries for
|
|
19792
|
+
# instance hostnames with DNS A records.
|
|
19793
|
+
#
|
|
19794
|
+
# * `private-dns-name-options.enable-resource-name-dns-aaaa-record` -
|
|
19795
|
+
# A Boolean that indicates whether to respond to DNS queries for
|
|
19796
|
+
# instance hostnames with DNS AAAA records.
|
|
19797
|
+
#
|
|
19798
|
+
# * `private-dns-name-options.hostname-type` - The type of hostname
|
|
19799
|
+
# (`ip-name` \| `resource-name`).
|
|
19800
|
+
#
|
|
19730
19801
|
# * `private-ip-address` - The private IPv4 address of the instance.
|
|
19731
19802
|
#
|
|
19732
19803
|
# * `product-code` - The product code associated with the AMI used to
|
|
@@ -19788,6 +19859,22 @@ module Aws::EC2
|
|
|
19788
19859
|
# * `tenancy` - The tenancy of an instance (`dedicated` \| `default`
|
|
19789
19860
|
# \| `host`).
|
|
19790
19861
|
#
|
|
19862
|
+
# * `tpm-support` - Indicates if the instance is configured for
|
|
19863
|
+
# NitroTPM support (`v2.0`).
|
|
19864
|
+
#
|
|
19865
|
+
# * `usage-operation` - The usage operation value for the instance
|
|
19866
|
+
# (`RunInstances` \| `RunInstances:00g0` \| `RunInstances:0010` \|
|
|
19867
|
+
# `RunInstances:1010` \| `RunInstances:1014` \| `RunInstances:1110`
|
|
19868
|
+
# \| `RunInstances:0014` \| `RunInstances:0210` \|
|
|
19869
|
+
# `RunInstances:0110` \| `RunInstances:0100` \| `RunInstances:0004`
|
|
19870
|
+
# \| `RunInstances:0200` \| `RunInstances:000g` \|
|
|
19871
|
+
# `RunInstances:0g00` \| `RunInstances:0002` \| `RunInstances:0800`
|
|
19872
|
+
# \| `RunInstances:0102` \| `RunInstances:0006` \|
|
|
19873
|
+
# `RunInstances:0202`).
|
|
19874
|
+
#
|
|
19875
|
+
# * `usage-operation-update-time` - The time that the usage operation
|
|
19876
|
+
# was last updated, for example, `2022-09-15T17:15:20.000Z`.
|
|
19877
|
+
#
|
|
19791
19878
|
# * `virtualization-type` - The virtualization type of the instance
|
|
19792
19879
|
# (`paravirtual` \| `hvm`).
|
|
19793
19880
|
#
|
|
@@ -46366,6 +46453,11 @@ module Aws::EC2
|
|
|
46366
46453
|
# the first 100 bytes that meet the filter criteria are copied to the
|
|
46367
46454
|
# target. Do not specify this parameter when you want to mirror the
|
|
46368
46455
|
# entire packet.
|
|
46456
|
+
#
|
|
46457
|
+
# For sessions with Network Load Balancer (NLB) traffic mirror
|
|
46458
|
+
# targets, the default `PacketLength` will be set to 8500. Valid
|
|
46459
|
+
# values are 1-8500. Setting a `PacketLength` greater than 8500 will
|
|
46460
|
+
# result in an error response.
|
|
46369
46461
|
# @return [Integer]
|
|
46370
46462
|
#
|
|
46371
46463
|
# @!attribute [rw] session_number
|
|
@@ -47421,12 +47513,12 @@ module Aws::EC2
|
|
|
47421
47513
|
#
|
|
47422
47514
|
# @!attribute [rw] add_security_group_ids
|
|
47423
47515
|
# (Interface endpoint) The IDs of the security groups to associate
|
|
47424
|
-
# with the network
|
|
47516
|
+
# with the endpoint network interfaces.
|
|
47425
47517
|
# @return [Array<String>]
|
|
47426
47518
|
#
|
|
47427
47519
|
# @!attribute [rw] remove_security_group_ids
|
|
47428
47520
|
# (Interface endpoint) The IDs of the security groups to disassociate
|
|
47429
|
-
# from the network
|
|
47521
|
+
# from the endpoint network interfaces.
|
|
47430
47522
|
# @return [Array<String>]
|
|
47431
47523
|
#
|
|
47432
47524
|
# @!attribute [rw] ip_address_type
|
|
@@ -47442,6 +47534,10 @@ module Aws::EC2
|
|
|
47442
47534
|
# associated with the VPC.
|
|
47443
47535
|
# @return [Boolean]
|
|
47444
47536
|
#
|
|
47537
|
+
# @!attribute [rw] subnet_configurations
|
|
47538
|
+
# The subnet configurations for the endpoint.
|
|
47539
|
+
# @return [Array<Types::SubnetConfiguration>]
|
|
47540
|
+
#
|
|
47445
47541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointRequest AWS API Documentation
|
|
47446
47542
|
#
|
|
47447
47543
|
class ModifyVpcEndpointRequest < Struct.new(
|
|
@@ -47457,7 +47553,8 @@ module Aws::EC2
|
|
|
47457
47553
|
:remove_security_group_ids,
|
|
47458
47554
|
:ip_address_type,
|
|
47459
47555
|
:dns_options,
|
|
47460
|
-
:private_dns_enabled
|
|
47556
|
+
:private_dns_enabled,
|
|
47557
|
+
:subnet_configurations)
|
|
47461
47558
|
SENSITIVE = []
|
|
47462
47559
|
include Aws::Structure
|
|
47463
47560
|
end
|
|
@@ -59899,6 +59996,44 @@ module Aws::EC2
|
|
|
59899
59996
|
include Aws::Structure
|
|
59900
59997
|
end
|
|
59901
59998
|
|
|
59999
|
+
# Describes the configuration of a subnet for a VPC endpoint.
|
|
60000
|
+
#
|
|
60001
|
+
# @!attribute [rw] subnet_id
|
|
60002
|
+
# The ID of the subnet.
|
|
60003
|
+
# @return [String]
|
|
60004
|
+
#
|
|
60005
|
+
# @!attribute [rw] ipv_4
|
|
60006
|
+
# The IPv4 address to assign to the endpoint network interface in the
|
|
60007
|
+
# subnet. You must provide an IPv4 address if the VPC endpoint
|
|
60008
|
+
# supports IPv4.
|
|
60009
|
+
#
|
|
60010
|
+
# If you specify an IPv4 address when modifying a VPC endpoint, we
|
|
60011
|
+
# replace the existing endpoint network interface with a new endpoint
|
|
60012
|
+
# network interface with this IP address. This process temporarily
|
|
60013
|
+
# disconnects the subnet and the VPC endpoint.
|
|
60014
|
+
# @return [String]
|
|
60015
|
+
#
|
|
60016
|
+
# @!attribute [rw] ipv_6
|
|
60017
|
+
# The IPv6 address to assign to the endpoint network interface in the
|
|
60018
|
+
# subnet. You must provide an IPv6 address if the VPC endpoint
|
|
60019
|
+
# supports IPv6.
|
|
60020
|
+
#
|
|
60021
|
+
# If you specify an IPv6 address when modifying a VPC endpoint, we
|
|
60022
|
+
# replace the existing endpoint network interface with a new endpoint
|
|
60023
|
+
# network interface with this IP address. This process temporarily
|
|
60024
|
+
# disconnects the subnet and the VPC endpoint.
|
|
60025
|
+
# @return [String]
|
|
60026
|
+
#
|
|
60027
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SubnetConfiguration AWS API Documentation
|
|
60028
|
+
#
|
|
60029
|
+
class SubnetConfiguration < Struct.new(
|
|
60030
|
+
:subnet_id,
|
|
60031
|
+
:ipv_4,
|
|
60032
|
+
:ipv_6)
|
|
60033
|
+
SENSITIVE = []
|
|
60034
|
+
include Aws::Structure
|
|
60035
|
+
end
|
|
60036
|
+
|
|
59902
60037
|
# Describes an association between a subnet and an IPv6 CIDR block.
|
|
59903
60038
|
#
|
|
59904
60039
|
# @!attribute [rw] association_id
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -997,7 +997,7 @@ module Aws::EC2
|
|
|
997
997
|
#
|
|
998
998
|
# * `block-device-mapping.attach-time` - The attach time for an EBS
|
|
999
999
|
# volume mapped to the instance, for example,
|
|
1000
|
-
# `
|
|
1000
|
+
# `2022-09-15T17:15:20.000Z`.
|
|
1001
1001
|
#
|
|
1002
1002
|
# * `block-device-mapping.delete-on-termination` - A Boolean that
|
|
1003
1003
|
# indicates whether the EBS volume is deleted on instance termination.
|
|
@@ -1010,14 +1010,39 @@ module Aws::EC2
|
|
|
1010
1010
|
#
|
|
1011
1011
|
# * `block-device-mapping.volume-id` - The volume ID of the EBS volume.
|
|
1012
1012
|
#
|
|
1013
|
+
# * `boot-mode` - The boot mode that was specified by the AMI
|
|
1014
|
+
# (`legacy-bios` \| `uefi` \| `uefi-preferred`).
|
|
1015
|
+
#
|
|
1013
1016
|
# * `capacity-reservation-id` - The ID of the Capacity Reservation into
|
|
1014
1017
|
# which the instance was launched.
|
|
1015
1018
|
#
|
|
1019
|
+
# * `capacity-reservation-specification.capacity-reservation-preference`
|
|
1020
|
+
# - The instance's Capacity Reservation preference (`open` \|
|
|
1021
|
+
# `none`).
|
|
1022
|
+
#
|
|
1023
|
+
# * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id`
|
|
1024
|
+
# - The ID of the targeted Capacity Reservation.
|
|
1025
|
+
#
|
|
1026
|
+
# * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn`
|
|
1027
|
+
# - The ARN of the targeted Capacity Reservation group.
|
|
1028
|
+
#
|
|
1016
1029
|
# * `client-token` - The idempotency token you provided when you
|
|
1017
1030
|
# launched the instance.
|
|
1018
1031
|
#
|
|
1032
|
+
# * `current-instance-boot-mode` - The boot mode that is used to launch
|
|
1033
|
+
# the instance at launch or start (`legacy-bios` \| `uefi`).
|
|
1034
|
+
#
|
|
1019
1035
|
# * `dns-name` - The public DNS name of the instance.
|
|
1020
1036
|
#
|
|
1037
|
+
# * `ebs-optimized` - A Boolean that indicates whether the instance is
|
|
1038
|
+
# optimized for Amazon EBS I/O.
|
|
1039
|
+
#
|
|
1040
|
+
# * `ena-support` - A Boolean that indicates whether the instance is
|
|
1041
|
+
# enabled for enhanced networking with ENA.
|
|
1042
|
+
#
|
|
1043
|
+
# * `enclave-options.enabled` - A Boolean that indicates whether the
|
|
1044
|
+
# instance is enabled for Amazon Web Services Nitro Enclaves.
|
|
1045
|
+
#
|
|
1021
1046
|
# * `hibernation-options.configured` - A Boolean that indicates whether
|
|
1022
1047
|
# the instance is enabled for hibernation. A value of `true` means
|
|
1023
1048
|
# that the instance is enabled for hibernation.
|
|
@@ -1031,6 +1056,12 @@ module Aws::EC2
|
|
|
1031
1056
|
# * `iam-instance-profile.arn` - The instance profile associated with
|
|
1032
1057
|
# the instance. Specified as an ARN.
|
|
1033
1058
|
#
|
|
1059
|
+
# * `iam-instance-profile.id` - The instance profile associated with the
|
|
1060
|
+
# instance. Specified as an ID.
|
|
1061
|
+
#
|
|
1062
|
+
# * `iam-instance-profile.name` - The instance profile associated with
|
|
1063
|
+
# the instance. Specified as an name.
|
|
1064
|
+
#
|
|
1034
1065
|
# * `image-id` - The ID of the image used to launch the instance.
|
|
1035
1066
|
#
|
|
1036
1067
|
# * `instance-id` - The ID of the instance.
|
|
@@ -1057,6 +1088,8 @@ module Aws::EC2
|
|
|
1057
1088
|
#
|
|
1058
1089
|
# * `ip-address` - The public IPv4 address of the instance.
|
|
1059
1090
|
#
|
|
1091
|
+
# * `ipv6-address` - The IPv6 address of the instance.
|
|
1092
|
+
#
|
|
1060
1093
|
# * `kernel-id` - The kernel ID.
|
|
1061
1094
|
#
|
|
1062
1095
|
# * `key-name` - The name of the key pair used when the instance was
|
|
@@ -1071,29 +1104,43 @@ module Aws::EC2
|
|
|
1071
1104
|
# example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
|
|
1072
1105
|
# for example, `2021-09-29T*`, which matches an entire day.
|
|
1073
1106
|
#
|
|
1074
|
-
# * `
|
|
1075
|
-
#
|
|
1107
|
+
# * `license-pool` -
|
|
1108
|
+
#
|
|
1109
|
+
# * `maintenance-options.auto-recovery` - The current automatic recovery
|
|
1110
|
+
# behavior of the instance (`disabled` \| `default`).
|
|
1111
|
+
#
|
|
1112
|
+
# * `metadata-options.http-endpoint` - The status of access to the HTTP
|
|
1113
|
+
# metadata endpoint on your instance (`enabled` \| `disabled`)
|
|
1114
|
+
#
|
|
1115
|
+
# * `metadata-options.http-protocol-ipv4` - Indicates whether the IPv4
|
|
1116
|
+
# endpoint is enabled (`disabled` \| `enabled`).
|
|
1117
|
+
#
|
|
1118
|
+
# * `metadata-options.http-protocol-ipv6` - Indicates whether the IPv6
|
|
1119
|
+
# endpoint is enabled (`disabled` \| `enabled`).
|
|
1076
1120
|
#
|
|
1077
1121
|
# * `metadata-options.http-put-response-hop-limit` - The HTTP metadata
|
|
1078
1122
|
# request put response hop limit (integer, possible values `1` to
|
|
1079
1123
|
# `64`)
|
|
1080
1124
|
#
|
|
1081
|
-
# * `metadata-options.http-
|
|
1082
|
-
#
|
|
1125
|
+
# * `metadata-options.http-tokens` - The metadata request authorization
|
|
1126
|
+
# state (`optional` \| `required`)
|
|
1083
1127
|
#
|
|
1084
1128
|
# * `metadata-options.instance-metadata-tags` - The status of access to
|
|
1085
1129
|
# instance tags from the instance metadata (`enabled` \| `disabled`)
|
|
1086
1130
|
#
|
|
1131
|
+
# * `metadata-options.state` - The state of the metadata option changes
|
|
1132
|
+
# (`pending` \| `applied`).
|
|
1133
|
+
#
|
|
1087
1134
|
# * `monitoring-state` - Indicates whether detailed monitoring is
|
|
1088
1135
|
# enabled (`disabled` \| `enabled`).
|
|
1089
1136
|
#
|
|
1090
|
-
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
|
1091
|
-
# address associated with the network interface.
|
|
1092
|
-
#
|
|
1093
1137
|
# * `network-interface.addresses.primary` - Specifies whether the IPv4
|
|
1094
1138
|
# address of the network interface is the primary private IPv4
|
|
1095
1139
|
# address.
|
|
1096
1140
|
#
|
|
1141
|
+
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
|
1142
|
+
# address associated with the network interface.
|
|
1143
|
+
#
|
|
1097
1144
|
# * `network-interface.addresses.association.public-ip` - The ID of the
|
|
1098
1145
|
# association of an Elastic IP address (IPv4) with a network
|
|
1099
1146
|
# interface.
|
|
@@ -1198,8 +1245,31 @@ module Aws::EC2
|
|
|
1198
1245
|
# * `platform` - The platform. To list only Windows instances, use
|
|
1199
1246
|
# `windows`.
|
|
1200
1247
|
#
|
|
1248
|
+
# * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
|
|
1249
|
+
# Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
|
|
1250
|
+
# with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
|
|
1251
|
+
# HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
|
|
1252
|
+
# \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
|
|
1253
|
+
# Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
|
|
1254
|
+
# with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
|
|
1255
|
+
# Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
|
|
1256
|
+
# \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
|
|
1257
|
+
# Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
|
|
1258
|
+
# SQL Server Web`).
|
|
1259
|
+
#
|
|
1201
1260
|
# * `private-dns-name` - The private IPv4 DNS name of the instance.
|
|
1202
1261
|
#
|
|
1262
|
+
# * `private-dns-name-options.enable-resource-name-dns-a-record` - A
|
|
1263
|
+
# Boolean that indicates whether to respond to DNS queries for
|
|
1264
|
+
# instance hostnames with DNS A records.
|
|
1265
|
+
#
|
|
1266
|
+
# * `private-dns-name-options.enable-resource-name-dns-aaaa-record` - A
|
|
1267
|
+
# Boolean that indicates whether to respond to DNS queries for
|
|
1268
|
+
# instance hostnames with DNS AAAA records.
|
|
1269
|
+
#
|
|
1270
|
+
# * `private-dns-name-options.hostname-type` - The type of hostname
|
|
1271
|
+
# (`ip-name` \| `resource-name`).
|
|
1272
|
+
#
|
|
1203
1273
|
# * `private-ip-address` - The private IPv4 address of the instance.
|
|
1204
1274
|
#
|
|
1205
1275
|
# * `product-code` - The product code associated with the AMI used to
|
|
@@ -1260,6 +1330,21 @@ module Aws::EC2
|
|
|
1260
1330
|
# * `tenancy` - The tenancy of an instance (`dedicated` \| `default` \|
|
|
1261
1331
|
# `host`).
|
|
1262
1332
|
#
|
|
1333
|
+
# * `tpm-support` - Indicates if the instance is configured for NitroTPM
|
|
1334
|
+
# support (`v2.0`).
|
|
1335
|
+
#
|
|
1336
|
+
# * `usage-operation` - The usage operation value for the instance
|
|
1337
|
+
# (`RunInstances` \| `RunInstances:00g0` \| `RunInstances:0010` \|
|
|
1338
|
+
# `RunInstances:1010` \| `RunInstances:1014` \| `RunInstances:1110` \|
|
|
1339
|
+
# `RunInstances:0014` \| `RunInstances:0210` \| `RunInstances:0110` \|
|
|
1340
|
+
# `RunInstances:0100` \| `RunInstances:0004` \| `RunInstances:0200` \|
|
|
1341
|
+
# `RunInstances:000g` \| `RunInstances:0g00` \| `RunInstances:0002` \|
|
|
1342
|
+
# `RunInstances:0800` \| `RunInstances:0102` \| `RunInstances:0006` \|
|
|
1343
|
+
# `RunInstances:0202`).
|
|
1344
|
+
#
|
|
1345
|
+
# * `usage-operation-update-time` - The time that the usage operation
|
|
1346
|
+
# was last updated, for example, `2022-09-15T17:15:20.000Z`.
|
|
1347
|
+
#
|
|
1263
1348
|
# * `virtualization-type` - The virtualization type of the instance
|
|
1264
1349
|
# (`paravirtual` \| `hvm`).
|
|
1265
1350
|
#
|
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.399.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: 2023-08-
|
|
11
|
+
date: 2023-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|