aws-sdk-ec2 1.484.0 → 1.485.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 +149 -6
- data/lib/aws-sdk-ec2/client_api.rb +54 -0
- data/lib/aws-sdk-ec2/types.rb +274 -18
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +20 -0
- data/sig/types.rbs +40 -0
- 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: a0cbaef59c0daa43e081bbcafa6181e8c84f11421d559b9cb23bf53e52704e32
|
|
4
|
+
data.tar.gz: c76c27d80a85d6e881a89dcd80746ae0f732f5bbbb137d55ab11625ec10ba4e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80847f1c6ab6172d6cbbaa11e235082d13467d1cdf0eb2735debe8e6125276b101d3e117ee223f3d2aa176f45996b2f758133f9f2b7575792e3b8100823fec0c
|
|
7
|
+
data.tar.gz: 846462e1b5ae438dddbe8c419c385ce775d0ee561b048f69e54d2d16f4546d45b2b147a1c563fb52fe05c79a4880563759a46cd92727f5c4ec4d0348a468a0d8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.485.0 (2024-10-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release includes a new API to describe some details of the Amazon Machine Images (AMIs) that were used to launch EC2 instances, even if those AMIs are no longer available for use.
|
|
8
|
+
|
|
4
9
|
1.484.0 (2024-10-23)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.485.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -8016,9 +8016,6 @@ module Aws::EC2
|
|
|
8016
8016
|
# Local Zones][1]). This option is only available for IPAM IPv4 pools
|
|
8017
8017
|
# in the public scope.
|
|
8018
8018
|
#
|
|
8019
|
-
# If you do not choose a locale, resources in Regions others than the
|
|
8020
|
-
# IPAM's home region cannot use CIDRs from this pool.
|
|
8021
|
-
#
|
|
8022
8019
|
# Possible values: Any Amazon Web Services Region or supported Amazon
|
|
8023
8020
|
# Web Services Local Zone. Default is `none` and means any locale.
|
|
8024
8021
|
#
|
|
@@ -8054,8 +8051,9 @@ module Aws::EC2
|
|
|
8054
8051
|
# A locale must be set on the pool for this feature to work.
|
|
8055
8052
|
#
|
|
8056
8053
|
# @option params [Boolean] :publicly_advertisable
|
|
8057
|
-
# Determines if the pool is publicly advertisable.
|
|
8058
|
-
#
|
|
8054
|
+
# Determines if the pool is publicly advertisable. The request can only
|
|
8055
|
+
# contain `PubliclyAdvertisable` if `AddressFamily` is `ipv6` and
|
|
8056
|
+
# `PublicIpSource` is `byoip`.
|
|
8059
8057
|
#
|
|
8060
8058
|
# @option params [Integer] :allocation_min_netmask_length
|
|
8061
8059
|
# The minimum netmask length required for CIDR allocations in this IPAM
|
|
@@ -25052,6 +25050,151 @@ module Aws::EC2
|
|
|
25052
25050
|
req.send_request(options)
|
|
25053
25051
|
end
|
|
25054
25052
|
|
|
25053
|
+
# Describes the AMI that was used to launch an instance, even if the AMI
|
|
25054
|
+
# is deprecated, deregistered, or made private (no longer public or
|
|
25055
|
+
# shared with your account).
|
|
25056
|
+
#
|
|
25057
|
+
# If you specify instance IDs, the output includes information for only
|
|
25058
|
+
# the specified instances. If you specify filters, the output includes
|
|
25059
|
+
# information for only those instances that meet the filter criteria. If
|
|
25060
|
+
# you do not specify instance IDs or filters, the output includes
|
|
25061
|
+
# information for all instances, which can affect performance.
|
|
25062
|
+
#
|
|
25063
|
+
# If you specify an instance ID that is not valid, an instance that
|
|
25064
|
+
# doesn't exist, or an instance that you do not own, an error
|
|
25065
|
+
# (`InvalidInstanceID.NotFound`) is returned.
|
|
25066
|
+
#
|
|
25067
|
+
# Recently terminated instances might appear in the returned results.
|
|
25068
|
+
# This interval is usually less than one hour.
|
|
25069
|
+
#
|
|
25070
|
+
# In the rare case where an Availability Zone is experiencing a service
|
|
25071
|
+
# disruption and you specify instance IDs that are in the affected
|
|
25072
|
+
# Availability Zone, or do not specify any instance IDs at all, the call
|
|
25073
|
+
# fails. If you specify only instance IDs that are in an unaffected
|
|
25074
|
+
# Availability Zone, the call works normally.
|
|
25075
|
+
#
|
|
25076
|
+
# <note markdown="1"> The order of the elements in the response, including those within
|
|
25077
|
+
# nested structures, might vary. Applications should not assume the
|
|
25078
|
+
# elements appear in a particular order.
|
|
25079
|
+
#
|
|
25080
|
+
# </note>
|
|
25081
|
+
#
|
|
25082
|
+
# @option params [Array<Types::Filter>] :filters
|
|
25083
|
+
# The filters.
|
|
25084
|
+
#
|
|
25085
|
+
# * `availability-zone` - The name of the Availability Zone (for
|
|
25086
|
+
# example, `us-west-2a`) or Local Zone (for example,
|
|
25087
|
+
# `us-west-2-lax-1b`) of the instance.
|
|
25088
|
+
#
|
|
25089
|
+
# * `instance-id` - The ID of the instance.
|
|
25090
|
+
#
|
|
25091
|
+
# * `instance-state-name` - The state of the instance (`pending` \|
|
|
25092
|
+
# `running` \| `shutting-down` \| `terminated` \| `stopping` \|
|
|
25093
|
+
# `stopped`).
|
|
25094
|
+
#
|
|
25095
|
+
# * `instance-type` - The type of instance (for example, `t3.micro`).
|
|
25096
|
+
#
|
|
25097
|
+
# * `launch-time` - The time when the instance was launched, in the ISO
|
|
25098
|
+
# 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for
|
|
25099
|
+
# example, `2023-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
|
|
25100
|
+
# for example, `2023-09-29T*`, which matches an entire day.
|
|
25101
|
+
#
|
|
25102
|
+
# * `tag:<key>` - The key/value combination of a tag assigned to the
|
|
25103
|
+
# resource. Use the tag key in the filter name and the tag value as
|
|
25104
|
+
# the filter value. For example, to find all resources that have a tag
|
|
25105
|
+
# with the key `Owner` and the value `TeamA`, specify `tag:Owner` for
|
|
25106
|
+
# the filter name and `TeamA` for the filter value.
|
|
25107
|
+
#
|
|
25108
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
|
25109
|
+
# filter to find all resources assigned a tag with a specific key,
|
|
25110
|
+
# regardless of the tag value.
|
|
25111
|
+
#
|
|
25112
|
+
# * `zone-id` - The ID of the Availability Zone (for example,
|
|
25113
|
+
# `usw2-az2`) or Local Zone (for example, `usw2-lax1-az1`) of the
|
|
25114
|
+
# instance.
|
|
25115
|
+
#
|
|
25116
|
+
# @option params [Array<String>] :instance_ids
|
|
25117
|
+
# The instance IDs.
|
|
25118
|
+
#
|
|
25119
|
+
# If you don't specify an instance ID or filters, the output includes
|
|
25120
|
+
# information for all instances.
|
|
25121
|
+
#
|
|
25122
|
+
# @option params [Integer] :max_results
|
|
25123
|
+
# The maximum number of items to return for this request. To get the
|
|
25124
|
+
# next page of items, make another request with the token returned in
|
|
25125
|
+
# the output. For more information, see [Pagination][1].
|
|
25126
|
+
#
|
|
25127
|
+
# Default: 1000
|
|
25128
|
+
#
|
|
25129
|
+
#
|
|
25130
|
+
#
|
|
25131
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
25132
|
+
#
|
|
25133
|
+
# @option params [String] :next_token
|
|
25134
|
+
# The token returned from a previous paginated request. Pagination
|
|
25135
|
+
# continues from the end of the items returned by the previous request.
|
|
25136
|
+
#
|
|
25137
|
+
# @option params [Boolean] :dry_run
|
|
25138
|
+
# Checks whether you have the required permissions for the action,
|
|
25139
|
+
# without actually making the request, and provides an error response.
|
|
25140
|
+
# If you have the required permissions, the error response is
|
|
25141
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
25142
|
+
#
|
|
25143
|
+
# @return [Types::DescribeInstanceImageMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
25144
|
+
#
|
|
25145
|
+
# * {Types::DescribeInstanceImageMetadataResult#instance_image_metadata #instance_image_metadata} => Array<Types::InstanceImageMetadata>
|
|
25146
|
+
# * {Types::DescribeInstanceImageMetadataResult#next_token #next_token} => String
|
|
25147
|
+
#
|
|
25148
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
25149
|
+
#
|
|
25150
|
+
# @example Request syntax with placeholder values
|
|
25151
|
+
#
|
|
25152
|
+
# resp = client.describe_instance_image_metadata({
|
|
25153
|
+
# filters: [
|
|
25154
|
+
# {
|
|
25155
|
+
# name: "String",
|
|
25156
|
+
# values: ["String"],
|
|
25157
|
+
# },
|
|
25158
|
+
# ],
|
|
25159
|
+
# instance_ids: ["InstanceId"],
|
|
25160
|
+
# max_results: 1,
|
|
25161
|
+
# next_token: "String",
|
|
25162
|
+
# dry_run: false,
|
|
25163
|
+
# })
|
|
25164
|
+
#
|
|
25165
|
+
# @example Response structure
|
|
25166
|
+
#
|
|
25167
|
+
# resp.instance_image_metadata #=> Array
|
|
25168
|
+
# resp.instance_image_metadata[0].instance_id #=> String
|
|
25169
|
+
# resp.instance_image_metadata[0].instance_type #=> String, one of "a1.medium", "a1.large", "a1.xlarge", "a1.2xlarge", "a1.4xlarge", "a1.metal", "c1.medium", "c1.xlarge", "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge", "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge", "c5.large", "c5.xlarge", "c5.2xlarge", "c5.4xlarge", "c5.9xlarge", "c5.12xlarge", "c5.18xlarge", "c5.24xlarge", "c5.metal", "c5a.large", "c5a.xlarge", "c5a.2xlarge", "c5a.4xlarge", "c5a.8xlarge", "c5a.12xlarge", "c5a.16xlarge", "c5a.24xlarge", "c5ad.large", "c5ad.xlarge", "c5ad.2xlarge", "c5ad.4xlarge", "c5ad.8xlarge", "c5ad.12xlarge", "c5ad.16xlarge", "c5ad.24xlarge", "c5d.large", "c5d.xlarge", "c5d.2xlarge", "c5d.4xlarge", "c5d.9xlarge", "c5d.12xlarge", "c5d.18xlarge", "c5d.24xlarge", "c5d.metal", "c5n.large", "c5n.xlarge", "c5n.2xlarge", "c5n.4xlarge", "c5n.9xlarge", "c5n.18xlarge", "c5n.metal", "c6g.medium", "c6g.large", "c6g.xlarge", "c6g.2xlarge", "c6g.4xlarge", "c6g.8xlarge", "c6g.12xlarge", "c6g.16xlarge", "c6g.metal", "c6gd.medium", "c6gd.large", "c6gd.xlarge", "c6gd.2xlarge", "c6gd.4xlarge", "c6gd.8xlarge", "c6gd.12xlarge", "c6gd.16xlarge", "c6gd.metal", "c6gn.medium", "c6gn.large", "c6gn.xlarge", "c6gn.2xlarge", "c6gn.4xlarge", "c6gn.8xlarge", "c6gn.12xlarge", "c6gn.16xlarge", "c6i.large", "c6i.xlarge", "c6i.2xlarge", "c6i.4xlarge", "c6i.8xlarge", "c6i.12xlarge", "c6i.16xlarge", "c6i.24xlarge", "c6i.32xlarge", "c6i.metal", "cc1.4xlarge", "cc2.8xlarge", "cg1.4xlarge", "cr1.8xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", "d3.xlarge", "d3.2xlarge", "d3.4xlarge", "d3.8xlarge", "d3en.xlarge", "d3en.2xlarge", "d3en.4xlarge", "d3en.6xlarge", "d3en.8xlarge", "d3en.12xlarge", "dl1.24xlarge", "f1.2xlarge", "f1.4xlarge", "f1.16xlarge", "g2.2xlarge", "g2.8xlarge", "g3.4xlarge", "g3.8xlarge", "g3.16xlarge", "g3s.xlarge", "g4ad.xlarge", "g4ad.2xlarge", "g4ad.4xlarge", "g4ad.8xlarge", "g4ad.16xlarge", "g4dn.xlarge", "g4dn.2xlarge", "g4dn.4xlarge", "g4dn.8xlarge", "g4dn.12xlarge", "g4dn.16xlarge", "g4dn.metal", "g5.xlarge", "g5.2xlarge", "g5.4xlarge", "g5.8xlarge", "g5.12xlarge", "g5.16xlarge", "g5.24xlarge", "g5.48xlarge", "g5g.xlarge", "g5g.2xlarge", "g5g.4xlarge", "g5g.8xlarge", "g5g.16xlarge", "g5g.metal", "hi1.4xlarge", "hpc6a.48xlarge", "hs1.8xlarge", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", "h1.16xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge", "i2.8xlarge", "i3.large", "i3.xlarge", "i3.2xlarge", "i3.4xlarge", "i3.8xlarge", "i3.16xlarge", "i3.metal", "i3en.large", "i3en.xlarge", "i3en.2xlarge", "i3en.3xlarge", "i3en.6xlarge", "i3en.12xlarge", "i3en.24xlarge", "i3en.metal", "im4gn.large", "im4gn.xlarge", "im4gn.2xlarge", "im4gn.4xlarge", "im4gn.8xlarge", "im4gn.16xlarge", "inf1.xlarge", "inf1.2xlarge", "inf1.6xlarge", "inf1.24xlarge", "is4gen.medium", "is4gen.large", "is4gen.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge", "m4.4xlarge", "m4.10xlarge", "m4.16xlarge", "m5.large", "m5.xlarge", "m5.2xlarge", "m5.4xlarge", "m5.8xlarge", "m5.12xlarge", "m5.16xlarge", "m5.24xlarge", "m5.metal", "m5a.large", "m5a.xlarge", "m5a.2xlarge", "m5a.4xlarge", "m5a.8xlarge", "m5a.12xlarge", "m5a.16xlarge", "m5a.24xlarge", "m5ad.large", "m5ad.xlarge", "m5ad.2xlarge", "m5ad.4xlarge", "m5ad.8xlarge", "m5ad.12xlarge", "m5ad.16xlarge", "m5ad.24xlarge", "m5d.large", "m5d.xlarge", "m5d.2xlarge", "m5d.4xlarge", "m5d.8xlarge", "m5d.12xlarge", "m5d.16xlarge", "m5d.24xlarge", "m5d.metal", "m5dn.large", "m5dn.xlarge", "m5dn.2xlarge", "m5dn.4xlarge", "m5dn.8xlarge", "m5dn.12xlarge", "m5dn.16xlarge", "m5dn.24xlarge", "m5dn.metal", "m5n.large", "m5n.xlarge", "m5n.2xlarge", "m5n.4xlarge", "m5n.8xlarge", "m5n.12xlarge", "m5n.16xlarge", "m5n.24xlarge", "m5n.metal", "m5zn.large", "m5zn.xlarge", "m5zn.2xlarge", "m5zn.3xlarge", "m5zn.6xlarge", "m5zn.12xlarge", "m5zn.metal", "m6a.large", "m6a.xlarge", "m6a.2xlarge", "m6a.4xlarge", "m6a.8xlarge", "m6a.12xlarge", "m6a.16xlarge", "m6a.24xlarge", "m6a.32xlarge", "m6a.48xlarge", "m6g.metal", "m6g.medium", "m6g.large", "m6g.xlarge", "m6g.2xlarge", "m6g.4xlarge", "m6g.8xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6gd.metal", "m6gd.medium", "m6gd.large", "m6gd.xlarge", "m6gd.2xlarge", "m6gd.4xlarge", "m6gd.8xlarge", "m6gd.12xlarge", "m6gd.16xlarge", "m6i.large", "m6i.xlarge", "m6i.2xlarge", "m6i.4xlarge", "m6i.8xlarge", "m6i.12xlarge", "m6i.16xlarge", "m6i.24xlarge", "m6i.32xlarge", "m6i.metal", "mac1.metal", "p2.xlarge", "p2.8xlarge", "p2.16xlarge", "p3.2xlarge", "p3.8xlarge", "p3.16xlarge", "p3dn.24xlarge", "p4d.24xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", "r4.large", "r4.xlarge", "r4.2xlarge", "r4.4xlarge", "r4.8xlarge", "r4.16xlarge", "r5.large", "r5.xlarge", "r5.2xlarge", "r5.4xlarge", "r5.8xlarge", "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", "r5.metal", "r5a.large", "r5a.xlarge", "r5a.2xlarge", "r5a.4xlarge", "r5a.8xlarge", "r5a.12xlarge", "r5a.16xlarge", "r5a.24xlarge", "r5ad.large", "r5ad.xlarge", "r5ad.2xlarge", "r5ad.4xlarge", "r5ad.8xlarge", "r5ad.12xlarge", "r5ad.16xlarge", "r5ad.24xlarge", "r5b.large", "r5b.xlarge", "r5b.2xlarge", "r5b.4xlarge", "r5b.8xlarge", "r5b.12xlarge", "r5b.16xlarge", "r5b.24xlarge", "r5b.metal", "r5d.large", "r5d.xlarge", "r5d.2xlarge", "r5d.4xlarge", "r5d.8xlarge", "r5d.12xlarge", "r5d.16xlarge", "r5d.24xlarge", "r5d.metal", "r5dn.large", "r5dn.xlarge", "r5dn.2xlarge", "r5dn.4xlarge", "r5dn.8xlarge", "r5dn.12xlarge", "r5dn.16xlarge", "r5dn.24xlarge", "r5dn.metal", "r5n.large", "r5n.xlarge", "r5n.2xlarge", "r5n.4xlarge", "r5n.8xlarge", "r5n.12xlarge", "r5n.16xlarge", "r5n.24xlarge", "r5n.metal", "r6g.medium", "r6g.large", "r6g.xlarge", "r6g.2xlarge", "r6g.4xlarge", "r6g.8xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6g.metal", "r6gd.medium", "r6gd.large", "r6gd.xlarge", "r6gd.2xlarge", "r6gd.4xlarge", "r6gd.8xlarge", "r6gd.12xlarge", "r6gd.16xlarge", "r6gd.metal", "r6i.large", "r6i.xlarge", "r6i.2xlarge", "r6i.4xlarge", "r6i.8xlarge", "r6i.12xlarge", "r6i.16xlarge", "r6i.24xlarge", "r6i.32xlarge", "r6i.metal", "t1.micro", "t2.nano", "t2.micro", "t2.small", "t2.medium", "t2.large", "t2.xlarge", "t2.2xlarge", "t3.nano", "t3.micro", "t3.small", "t3.medium", "t3.large", "t3.xlarge", "t3.2xlarge", "t3a.nano", "t3a.micro", "t3a.small", "t3a.medium", "t3a.large", "t3a.xlarge", "t3a.2xlarge", "t4g.nano", "t4g.micro", "t4g.small", "t4g.medium", "t4g.large", "t4g.xlarge", "t4g.2xlarge", "u-6tb1.56xlarge", "u-6tb1.112xlarge", "u-9tb1.112xlarge", "u-12tb1.112xlarge", "u-6tb1.metal", "u-9tb1.metal", "u-12tb1.metal", "u-18tb1.metal", "u-24tb1.metal", "vt1.3xlarge", "vt1.6xlarge", "vt1.24xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.xlarge", "x1e.2xlarge", "x1e.4xlarge", "x1e.8xlarge", "x1e.16xlarge", "x1e.32xlarge", "x2iezn.2xlarge", "x2iezn.4xlarge", "x2iezn.6xlarge", "x2iezn.8xlarge", "x2iezn.12xlarge", "x2iezn.metal", "x2gd.medium", "x2gd.large", "x2gd.xlarge", "x2gd.2xlarge", "x2gd.4xlarge", "x2gd.8xlarge", "x2gd.12xlarge", "x2gd.16xlarge", "x2gd.metal", "z1d.large", "z1d.xlarge", "z1d.2xlarge", "z1d.3xlarge", "z1d.6xlarge", "z1d.12xlarge", "z1d.metal", "x2idn.16xlarge", "x2idn.24xlarge", "x2idn.32xlarge", "x2iedn.xlarge", "x2iedn.2xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", "x2iedn.16xlarge", "x2iedn.24xlarge", "x2iedn.32xlarge", "c6a.large", "c6a.xlarge", "c6a.2xlarge", "c6a.4xlarge", "c6a.8xlarge", "c6a.12xlarge", "c6a.16xlarge", "c6a.24xlarge", "c6a.32xlarge", "c6a.48xlarge", "c6a.metal", "m6a.metal", "i4i.large", "i4i.xlarge", "i4i.2xlarge", "i4i.4xlarge", "i4i.8xlarge", "i4i.16xlarge", "i4i.32xlarge", "i4i.metal", "x2idn.metal", "x2iedn.metal", "c7g.medium", "c7g.large", "c7g.xlarge", "c7g.2xlarge", "c7g.4xlarge", "c7g.8xlarge", "c7g.12xlarge", "c7g.16xlarge", "mac2.metal", "c6id.large", "c6id.xlarge", "c6id.2xlarge", "c6id.4xlarge", "c6id.8xlarge", "c6id.12xlarge", "c6id.16xlarge", "c6id.24xlarge", "c6id.32xlarge", "c6id.metal", "m6id.large", "m6id.xlarge", "m6id.2xlarge", "m6id.4xlarge", "m6id.8xlarge", "m6id.12xlarge", "m6id.16xlarge", "m6id.24xlarge", "m6id.32xlarge", "m6id.metal", "r6id.large", "r6id.xlarge", "r6id.2xlarge", "r6id.4xlarge", "r6id.8xlarge", "r6id.12xlarge", "r6id.16xlarge", "r6id.24xlarge", "r6id.32xlarge", "r6id.metal", "r6a.large", "r6a.xlarge", "r6a.2xlarge", "r6a.4xlarge", "r6a.8xlarge", "r6a.12xlarge", "r6a.16xlarge", "r6a.24xlarge", "r6a.32xlarge", "r6a.48xlarge", "r6a.metal", "p4de.24xlarge", "u-3tb1.56xlarge", "u-18tb1.112xlarge", "u-24tb1.112xlarge", "trn1.2xlarge", "trn1.32xlarge", "hpc6id.32xlarge", "c6in.large", "c6in.xlarge", "c6in.2xlarge", "c6in.4xlarge", "c6in.8xlarge", "c6in.12xlarge", "c6in.16xlarge", "c6in.24xlarge", "c6in.32xlarge", "m6in.large", "m6in.xlarge", "m6in.2xlarge", "m6in.4xlarge", "m6in.8xlarge", "m6in.12xlarge", "m6in.16xlarge", "m6in.24xlarge", "m6in.32xlarge", "m6idn.large", "m6idn.xlarge", "m6idn.2xlarge", "m6idn.4xlarge", "m6idn.8xlarge", "m6idn.12xlarge", "m6idn.16xlarge", "m6idn.24xlarge", "m6idn.32xlarge", "r6in.large", "r6in.xlarge", "r6in.2xlarge", "r6in.4xlarge", "r6in.8xlarge", "r6in.12xlarge", "r6in.16xlarge", "r6in.24xlarge", "r6in.32xlarge", "r6idn.large", "r6idn.xlarge", "r6idn.2xlarge", "r6idn.4xlarge", "r6idn.8xlarge", "r6idn.12xlarge", "r6idn.16xlarge", "r6idn.24xlarge", "r6idn.32xlarge", "c7g.metal", "m7g.medium", "m7g.large", "m7g.xlarge", "m7g.2xlarge", "m7g.4xlarge", "m7g.8xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.metal", "r7g.medium", "r7g.large", "r7g.xlarge", "r7g.2xlarge", "r7g.4xlarge", "r7g.8xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.metal", "c6in.metal", "m6in.metal", "m6idn.metal", "r6in.metal", "r6idn.metal", "inf2.xlarge", "inf2.8xlarge", "inf2.24xlarge", "inf2.48xlarge", "trn1n.32xlarge", "i4g.large", "i4g.xlarge", "i4g.2xlarge", "i4g.4xlarge", "i4g.8xlarge", "i4g.16xlarge", "hpc7g.4xlarge", "hpc7g.8xlarge", "hpc7g.16xlarge", "c7gn.medium", "c7gn.large", "c7gn.xlarge", "c7gn.2xlarge", "c7gn.4xlarge", "c7gn.8xlarge", "c7gn.12xlarge", "c7gn.16xlarge", "p5.48xlarge", "m7i.large", "m7i.xlarge", "m7i.2xlarge", "m7i.4xlarge", "m7i.8xlarge", "m7i.12xlarge", "m7i.16xlarge", "m7i.24xlarge", "m7i.48xlarge", "m7i-flex.large", "m7i-flex.xlarge", "m7i-flex.2xlarge", "m7i-flex.4xlarge", "m7i-flex.8xlarge", "m7a.medium", "m7a.large", "m7a.xlarge", "m7a.2xlarge", "m7a.4xlarge", "m7a.8xlarge", "m7a.12xlarge", "m7a.16xlarge", "m7a.24xlarge", "m7a.32xlarge", "m7a.48xlarge", "m7a.metal-48xl", "hpc7a.12xlarge", "hpc7a.24xlarge", "hpc7a.48xlarge", "hpc7a.96xlarge", "c7gd.medium", "c7gd.large", "c7gd.xlarge", "c7gd.2xlarge", "c7gd.4xlarge", "c7gd.8xlarge", "c7gd.12xlarge", "c7gd.16xlarge", "m7gd.medium", "m7gd.large", "m7gd.xlarge", "m7gd.2xlarge", "m7gd.4xlarge", "m7gd.8xlarge", "m7gd.12xlarge", "m7gd.16xlarge", "r7gd.medium", "r7gd.large", "r7gd.xlarge", "r7gd.2xlarge", "r7gd.4xlarge", "r7gd.8xlarge", "r7gd.12xlarge", "r7gd.16xlarge", "r7a.medium", "r7a.large", "r7a.xlarge", "r7a.2xlarge", "r7a.4xlarge", "r7a.8xlarge", "r7a.12xlarge", "r7a.16xlarge", "r7a.24xlarge", "r7a.32xlarge", "r7a.48xlarge", "c7i.large", "c7i.xlarge", "c7i.2xlarge", "c7i.4xlarge", "c7i.8xlarge", "c7i.12xlarge", "c7i.16xlarge", "c7i.24xlarge", "c7i.48xlarge", "mac2-m2pro.metal", "r7iz.large", "r7iz.xlarge", "r7iz.2xlarge", "r7iz.4xlarge", "r7iz.8xlarge", "r7iz.12xlarge", "r7iz.16xlarge", "r7iz.32xlarge", "c7a.medium", "c7a.large", "c7a.xlarge", "c7a.2xlarge", "c7a.4xlarge", "c7a.8xlarge", "c7a.12xlarge", "c7a.16xlarge", "c7a.24xlarge", "c7a.32xlarge", "c7a.48xlarge", "c7a.metal-48xl", "r7a.metal-48xl", "r7i.large", "r7i.xlarge", "r7i.2xlarge", "r7i.4xlarge", "r7i.8xlarge", "r7i.12xlarge", "r7i.16xlarge", "r7i.24xlarge", "r7i.48xlarge", "dl2q.24xlarge", "mac2-m2.metal", "i4i.12xlarge", "i4i.24xlarge", "c7i.metal-24xl", "c7i.metal-48xl", "m7i.metal-24xl", "m7i.metal-48xl", "r7i.metal-24xl", "r7i.metal-48xl", "r7iz.metal-16xl", "r7iz.metal-32xl", "c7gd.metal", "m7gd.metal", "r7gd.metal", "g6.xlarge", "g6.2xlarge", "g6.4xlarge", "g6.8xlarge", "g6.12xlarge", "g6.16xlarge", "g6.24xlarge", "g6.48xlarge", "gr6.4xlarge", "gr6.8xlarge", "c7i-flex.large", "c7i-flex.xlarge", "c7i-flex.2xlarge", "c7i-flex.4xlarge", "c7i-flex.8xlarge", "u7i-12tb.224xlarge", "u7in-16tb.224xlarge", "u7in-24tb.224xlarge", "u7in-32tb.224xlarge", "u7ib-12tb.224xlarge", "c7gn.metal", "r8g.medium", "r8g.large", "r8g.xlarge", "r8g.2xlarge", "r8g.4xlarge", "r8g.8xlarge", "r8g.12xlarge", "r8g.16xlarge", "r8g.24xlarge", "r8g.48xlarge", "r8g.metal-24xl", "r8g.metal-48xl", "mac2-m1ultra.metal", "g6e.xlarge", "g6e.2xlarge", "g6e.4xlarge", "g6e.8xlarge", "g6e.12xlarge", "g6e.16xlarge", "g6e.24xlarge", "g6e.48xlarge", "c8g.medium", "c8g.large", "c8g.xlarge", "c8g.2xlarge", "c8g.4xlarge", "c8g.8xlarge", "c8g.12xlarge", "c8g.16xlarge", "c8g.24xlarge", "c8g.48xlarge", "c8g.metal-24xl", "c8g.metal-48xl", "m8g.medium", "m8g.large", "m8g.xlarge", "m8g.2xlarge", "m8g.4xlarge", "m8g.8xlarge", "m8g.12xlarge", "m8g.16xlarge", "m8g.24xlarge", "m8g.48xlarge", "m8g.metal-24xl", "m8g.metal-48xl", "x8g.medium", "x8g.large", "x8g.xlarge", "x8g.2xlarge", "x8g.4xlarge", "x8g.8xlarge", "x8g.12xlarge", "x8g.16xlarge", "x8g.24xlarge", "x8g.48xlarge", "x8g.metal-24xl", "x8g.metal-48xl"
|
|
25170
|
+
# resp.instance_image_metadata[0].launch_time #=> Time
|
|
25171
|
+
# resp.instance_image_metadata[0].availability_zone #=> String
|
|
25172
|
+
# resp.instance_image_metadata[0].zone_id #=> String
|
|
25173
|
+
# resp.instance_image_metadata[0].state.code #=> Integer
|
|
25174
|
+
# resp.instance_image_metadata[0].state.name #=> String, one of "pending", "running", "shutting-down", "terminated", "stopping", "stopped"
|
|
25175
|
+
# resp.instance_image_metadata[0].owner_id #=> String
|
|
25176
|
+
# resp.instance_image_metadata[0].tags #=> Array
|
|
25177
|
+
# resp.instance_image_metadata[0].tags[0].key #=> String
|
|
25178
|
+
# resp.instance_image_metadata[0].tags[0].value #=> String
|
|
25179
|
+
# resp.instance_image_metadata[0].image_metadata.image_id #=> String
|
|
25180
|
+
# resp.instance_image_metadata[0].image_metadata.name #=> String
|
|
25181
|
+
# resp.instance_image_metadata[0].image_metadata.owner_id #=> String
|
|
25182
|
+
# resp.instance_image_metadata[0].image_metadata.state #=> String, one of "pending", "available", "invalid", "deregistered", "transient", "failed", "error", "disabled"
|
|
25183
|
+
# resp.instance_image_metadata[0].image_metadata.image_owner_alias #=> String
|
|
25184
|
+
# resp.instance_image_metadata[0].image_metadata.creation_date #=> String
|
|
25185
|
+
# resp.instance_image_metadata[0].image_metadata.deprecation_time #=> String
|
|
25186
|
+
# resp.instance_image_metadata[0].image_metadata.is_public #=> Boolean
|
|
25187
|
+
# resp.next_token #=> String
|
|
25188
|
+
#
|
|
25189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceImageMetadata AWS API Documentation
|
|
25190
|
+
#
|
|
25191
|
+
# @overload describe_instance_image_metadata(params = {})
|
|
25192
|
+
# @param [Hash] params ({})
|
|
25193
|
+
def describe_instance_image_metadata(params = {}, options = {})
|
|
25194
|
+
req = build_request(:describe_instance_image_metadata, params)
|
|
25195
|
+
req.send_request(options)
|
|
25196
|
+
end
|
|
25197
|
+
|
|
25055
25198
|
# Describes the status of the specified instances or all of your
|
|
25056
25199
|
# instances. By default, only running instances are described, unless
|
|
25057
25200
|
# you specifically indicate to return the status of all instances.
|
|
@@ -60468,7 +60611,7 @@ module Aws::EC2
|
|
|
60468
60611
|
tracer: tracer
|
|
60469
60612
|
)
|
|
60470
60613
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
60471
|
-
context[:gem_version] = '1.
|
|
60614
|
+
context[:gem_version] = '1.485.0'
|
|
60472
60615
|
Seahorse::Client::Request.new(handlers, context)
|
|
60473
60616
|
end
|
|
60474
60617
|
|
|
@@ -908,6 +908,9 @@ module Aws::EC2
|
|
|
908
908
|
DescribeInstanceEventNotificationAttributesResult = Shapes::StructureShape.new(name: 'DescribeInstanceEventNotificationAttributesResult')
|
|
909
909
|
DescribeInstanceEventWindowsRequest = Shapes::StructureShape.new(name: 'DescribeInstanceEventWindowsRequest')
|
|
910
910
|
DescribeInstanceEventWindowsResult = Shapes::StructureShape.new(name: 'DescribeInstanceEventWindowsResult')
|
|
911
|
+
DescribeInstanceImageMetadataMaxResults = Shapes::IntegerShape.new(name: 'DescribeInstanceImageMetadataMaxResults')
|
|
912
|
+
DescribeInstanceImageMetadataRequest = Shapes::StructureShape.new(name: 'DescribeInstanceImageMetadataRequest')
|
|
913
|
+
DescribeInstanceImageMetadataResult = Shapes::StructureShape.new(name: 'DescribeInstanceImageMetadataResult')
|
|
911
914
|
DescribeInstanceStatusRequest = Shapes::StructureShape.new(name: 'DescribeInstanceStatusRequest')
|
|
912
915
|
DescribeInstanceStatusResult = Shapes::StructureShape.new(name: 'DescribeInstanceStatusResult')
|
|
913
916
|
DescribeInstanceTopologyGroupNameSet = Shapes::ListShape.new(name: 'DescribeInstanceTopologyGroupNameSet')
|
|
@@ -1639,6 +1642,7 @@ module Aws::EC2
|
|
|
1639
1642
|
ImageIdList = Shapes::ListShape.new(name: 'ImageIdList')
|
|
1640
1643
|
ImageIdStringList = Shapes::ListShape.new(name: 'ImageIdStringList')
|
|
1641
1644
|
ImageList = Shapes::ListShape.new(name: 'ImageList')
|
|
1645
|
+
ImageMetadata = Shapes::StructureShape.new(name: 'ImageMetadata')
|
|
1642
1646
|
ImageRecycleBinInfo = Shapes::StructureShape.new(name: 'ImageRecycleBinInfo')
|
|
1643
1647
|
ImageRecycleBinInfoList = Shapes::ListShape.new(name: 'ImageRecycleBinInfoList')
|
|
1644
1648
|
ImageState = Shapes::StringShape.new(name: 'ImageState')
|
|
@@ -1732,6 +1736,8 @@ module Aws::EC2
|
|
|
1732
1736
|
InstanceIdStringList = Shapes::ListShape.new(name: 'InstanceIdStringList')
|
|
1733
1737
|
InstanceIdWithVolumeResolver = Shapes::StringShape.new(name: 'InstanceIdWithVolumeResolver')
|
|
1734
1738
|
InstanceIdsSet = Shapes::ListShape.new(name: 'InstanceIdsSet')
|
|
1739
|
+
InstanceImageMetadata = Shapes::StructureShape.new(name: 'InstanceImageMetadata')
|
|
1740
|
+
InstanceImageMetadataList = Shapes::ListShape.new(name: 'InstanceImageMetadataList')
|
|
1735
1741
|
InstanceInterruptionBehavior = Shapes::StringShape.new(name: 'InstanceInterruptionBehavior')
|
|
1736
1742
|
InstanceIpv4Prefix = Shapes::StructureShape.new(name: 'InstanceIpv4Prefix')
|
|
1737
1743
|
InstanceIpv4PrefixList = Shapes::ListShape.new(name: 'InstanceIpv4PrefixList')
|
|
@@ -6881,6 +6887,17 @@ module Aws::EC2
|
|
|
6881
6887
|
DescribeInstanceEventWindowsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
6882
6888
|
DescribeInstanceEventWindowsResult.struct_class = Types::DescribeInstanceEventWindowsResult
|
|
6883
6889
|
|
|
6890
|
+
DescribeInstanceImageMetadataRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
|
6891
|
+
DescribeInstanceImageMetadataRequest.add_member(:instance_ids, Shapes::ShapeRef.new(shape: InstanceIdStringList, location_name: "InstanceId"))
|
|
6892
|
+
DescribeInstanceImageMetadataRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeInstanceImageMetadataMaxResults, location_name: "MaxResults"))
|
|
6893
|
+
DescribeInstanceImageMetadataRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
|
6894
|
+
DescribeInstanceImageMetadataRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
6895
|
+
DescribeInstanceImageMetadataRequest.struct_class = Types::DescribeInstanceImageMetadataRequest
|
|
6896
|
+
|
|
6897
|
+
DescribeInstanceImageMetadataResult.add_member(:instance_image_metadata, Shapes::ShapeRef.new(shape: InstanceImageMetadataList, location_name: "instanceImageMetadataSet"))
|
|
6898
|
+
DescribeInstanceImageMetadataResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
6899
|
+
DescribeInstanceImageMetadataResult.struct_class = Types::DescribeInstanceImageMetadataResult
|
|
6900
|
+
|
|
6884
6901
|
DescribeInstanceStatusRequest.add_member(:instance_ids, Shapes::ShapeRef.new(shape: InstanceIdStringList, location_name: "InstanceId"))
|
|
6885
6902
|
DescribeInstanceStatusRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
|
|
6886
6903
|
DescribeInstanceStatusRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
|
@@ -9861,6 +9878,16 @@ module Aws::EC2
|
|
|
9861
9878
|
|
|
9862
9879
|
ImageList.member = Shapes::ShapeRef.new(shape: Image, location_name: "item")
|
|
9863
9880
|
|
|
9881
|
+
ImageMetadata.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "imageId"))
|
|
9882
|
+
ImageMetadata.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
9883
|
+
ImageMetadata.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "imageOwnerId"))
|
|
9884
|
+
ImageMetadata.add_member(:state, Shapes::ShapeRef.new(shape: ImageState, location_name: "imageState"))
|
|
9885
|
+
ImageMetadata.add_member(:image_owner_alias, Shapes::ShapeRef.new(shape: String, location_name: "imageOwnerAlias"))
|
|
9886
|
+
ImageMetadata.add_member(:creation_date, Shapes::ShapeRef.new(shape: String, location_name: "creationDate"))
|
|
9887
|
+
ImageMetadata.add_member(:deprecation_time, Shapes::ShapeRef.new(shape: String, location_name: "deprecationTime"))
|
|
9888
|
+
ImageMetadata.add_member(:is_public, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPublic"))
|
|
9889
|
+
ImageMetadata.struct_class = Types::ImageMetadata
|
|
9890
|
+
|
|
9864
9891
|
ImageRecycleBinInfo.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "imageId"))
|
|
9865
9892
|
ImageRecycleBinInfo.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
9866
9893
|
ImageRecycleBinInfo.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
@@ -10250,6 +10277,19 @@ module Aws::EC2
|
|
|
10250
10277
|
|
|
10251
10278
|
InstanceIdsSet.member = Shapes::ShapeRef.new(shape: InstanceId, location_name: "item")
|
|
10252
10279
|
|
|
10280
|
+
InstanceImageMetadata.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "instanceId"))
|
|
10281
|
+
InstanceImageMetadata.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "instanceType"))
|
|
10282
|
+
InstanceImageMetadata.add_member(:launch_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "launchTime"))
|
|
10283
|
+
InstanceImageMetadata.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
|
10284
|
+
InstanceImageMetadata.add_member(:zone_id, Shapes::ShapeRef.new(shape: String, location_name: "zoneId"))
|
|
10285
|
+
InstanceImageMetadata.add_member(:state, Shapes::ShapeRef.new(shape: InstanceState, location_name: "instanceState"))
|
|
10286
|
+
InstanceImageMetadata.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceOwnerId"))
|
|
10287
|
+
InstanceImageMetadata.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
|
10288
|
+
InstanceImageMetadata.add_member(:image_metadata, Shapes::ShapeRef.new(shape: ImageMetadata, location_name: "imageMetadata"))
|
|
10289
|
+
InstanceImageMetadata.struct_class = Types::InstanceImageMetadata
|
|
10290
|
+
|
|
10291
|
+
InstanceImageMetadataList.member = Shapes::ShapeRef.new(shape: InstanceImageMetadata, location_name: "item")
|
|
10292
|
+
|
|
10253
10293
|
InstanceIpv4Prefix.add_member(:ipv_4_prefix, Shapes::ShapeRef.new(shape: String, location_name: "ipv4Prefix"))
|
|
10254
10294
|
InstanceIpv4Prefix.struct_class = Types::InstanceIpv4Prefix
|
|
10255
10295
|
|
|
@@ -18364,6 +18404,20 @@ module Aws::EC2
|
|
|
18364
18404
|
)
|
|
18365
18405
|
end)
|
|
18366
18406
|
|
|
18407
|
+
api.add_operation(:describe_instance_image_metadata, Seahorse::Model::Operation.new.tap do |o|
|
|
18408
|
+
o.name = "DescribeInstanceImageMetadata"
|
|
18409
|
+
o.http_method = "POST"
|
|
18410
|
+
o.http_request_uri = "/"
|
|
18411
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeInstanceImageMetadataRequest)
|
|
18412
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeInstanceImageMetadataResult)
|
|
18413
|
+
o[:pager] = Aws::Pager.new(
|
|
18414
|
+
limit_key: "max_results",
|
|
18415
|
+
tokens: {
|
|
18416
|
+
"next_token" => "next_token"
|
|
18417
|
+
}
|
|
18418
|
+
)
|
|
18419
|
+
end)
|
|
18420
|
+
|
|
18367
18421
|
api.add_operation(:describe_instance_status, Seahorse::Model::Operation.new.tap do |o|
|
|
18368
18422
|
o.name = "DescribeInstanceStatus"
|
|
18369
18423
|
o.http_method = "POST"
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -8828,9 +8828,6 @@ module Aws::EC2
|
|
|
8828
8828
|
# ([supported Local Zones][1]). This option is only available for
|
|
8829
8829
|
# IPAM IPv4 pools in the public scope.
|
|
8830
8830
|
#
|
|
8831
|
-
# If you do not choose a locale, resources in Regions others than the
|
|
8832
|
-
# IPAM's home region cannot use CIDRs from this pool.
|
|
8833
|
-
#
|
|
8834
8831
|
# Possible values: Any Amazon Web Services Region or supported Amazon
|
|
8835
8832
|
# Web Services Local Zone. Default is `none` and means any locale.
|
|
8836
8833
|
#
|
|
@@ -8871,8 +8868,9 @@ module Aws::EC2
|
|
|
8871
8868
|
# @return [Boolean]
|
|
8872
8869
|
#
|
|
8873
8870
|
# @!attribute [rw] publicly_advertisable
|
|
8874
|
-
# Determines if the pool is publicly advertisable.
|
|
8875
|
-
#
|
|
8871
|
+
# Determines if the pool is publicly advertisable. The request can
|
|
8872
|
+
# only contain `PubliclyAdvertisable` if `AddressFamily` is `ipv6` and
|
|
8873
|
+
# `PublicIpSource` is `byoip`.
|
|
8876
8874
|
# @return [Boolean]
|
|
8877
8875
|
#
|
|
8878
8876
|
# @!attribute [rw] allocation_min_netmask_length
|
|
@@ -20317,6 +20315,104 @@ module Aws::EC2
|
|
|
20317
20315
|
include Aws::Structure
|
|
20318
20316
|
end
|
|
20319
20317
|
|
|
20318
|
+
# @!attribute [rw] filters
|
|
20319
|
+
# The filters.
|
|
20320
|
+
#
|
|
20321
|
+
# * `availability-zone` - The name of the Availability Zone (for
|
|
20322
|
+
# example, `us-west-2a`) or Local Zone (for example,
|
|
20323
|
+
# `us-west-2-lax-1b`) of the instance.
|
|
20324
|
+
#
|
|
20325
|
+
# * `instance-id` - The ID of the instance.
|
|
20326
|
+
#
|
|
20327
|
+
# * `instance-state-name` - The state of the instance (`pending` \|
|
|
20328
|
+
# `running` \| `shutting-down` \| `terminated` \| `stopping` \|
|
|
20329
|
+
# `stopped`).
|
|
20330
|
+
#
|
|
20331
|
+
# * `instance-type` - The type of instance (for example, `t3.micro`).
|
|
20332
|
+
#
|
|
20333
|
+
# * `launch-time` - The time when the instance was launched, in the
|
|
20334
|
+
# ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ),
|
|
20335
|
+
# for example, `2023-09-29T11:04:43.305Z`. You can use a wildcard
|
|
20336
|
+
# (`*`), for example, `2023-09-29T*`, which matches an entire day.
|
|
20337
|
+
#
|
|
20338
|
+
# * `tag:<key>` - The key/value combination of a tag assigned to the
|
|
20339
|
+
# resource. Use the tag key in the filter name and the tag value as
|
|
20340
|
+
# the filter value. For example, to find all resources that have a
|
|
20341
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
|
20342
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
|
20343
|
+
#
|
|
20344
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
|
20345
|
+
# filter to find all resources assigned a tag with a specific key,
|
|
20346
|
+
# regardless of the tag value.
|
|
20347
|
+
#
|
|
20348
|
+
# * `zone-id` - The ID of the Availability Zone (for example,
|
|
20349
|
+
# `usw2-az2`) or Local Zone (for example, `usw2-lax1-az1`) of the
|
|
20350
|
+
# instance.
|
|
20351
|
+
# @return [Array<Types::Filter>]
|
|
20352
|
+
#
|
|
20353
|
+
# @!attribute [rw] instance_ids
|
|
20354
|
+
# The instance IDs.
|
|
20355
|
+
#
|
|
20356
|
+
# If you don't specify an instance ID or filters, the output includes
|
|
20357
|
+
# information for all instances.
|
|
20358
|
+
# @return [Array<String>]
|
|
20359
|
+
#
|
|
20360
|
+
# @!attribute [rw] max_results
|
|
20361
|
+
# The maximum number of items to return for this request. To get the
|
|
20362
|
+
# next page of items, make another request with the token returned in
|
|
20363
|
+
# the output. For more information, see [Pagination][1].
|
|
20364
|
+
#
|
|
20365
|
+
# Default: 1000
|
|
20366
|
+
#
|
|
20367
|
+
#
|
|
20368
|
+
#
|
|
20369
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
20370
|
+
# @return [Integer]
|
|
20371
|
+
#
|
|
20372
|
+
# @!attribute [rw] next_token
|
|
20373
|
+
# The token returned from a previous paginated request. Pagination
|
|
20374
|
+
# continues from the end of the items returned by the previous
|
|
20375
|
+
# request.
|
|
20376
|
+
# @return [String]
|
|
20377
|
+
#
|
|
20378
|
+
# @!attribute [rw] dry_run
|
|
20379
|
+
# Checks whether you have the required permissions for the action,
|
|
20380
|
+
# without actually making the request, and provides an error response.
|
|
20381
|
+
# If you have the required permissions, the error response is
|
|
20382
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
20383
|
+
# @return [Boolean]
|
|
20384
|
+
#
|
|
20385
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceImageMetadataRequest AWS API Documentation
|
|
20386
|
+
#
|
|
20387
|
+
class DescribeInstanceImageMetadataRequest < Struct.new(
|
|
20388
|
+
:filters,
|
|
20389
|
+
:instance_ids,
|
|
20390
|
+
:max_results,
|
|
20391
|
+
:next_token,
|
|
20392
|
+
:dry_run)
|
|
20393
|
+
SENSITIVE = []
|
|
20394
|
+
include Aws::Structure
|
|
20395
|
+
end
|
|
20396
|
+
|
|
20397
|
+
# @!attribute [rw] instance_image_metadata
|
|
20398
|
+
# Information about the instance and the AMI used to launch the
|
|
20399
|
+
# instance.
|
|
20400
|
+
# @return [Array<Types::InstanceImageMetadata>]
|
|
20401
|
+
#
|
|
20402
|
+
# @!attribute [rw] next_token
|
|
20403
|
+
# The token to include in another request to get the next page of
|
|
20404
|
+
# items. This value is `null` when there are no more items to return.
|
|
20405
|
+
# @return [String]
|
|
20406
|
+
#
|
|
20407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceImageMetadataResult AWS API Documentation
|
|
20408
|
+
#
|
|
20409
|
+
class DescribeInstanceImageMetadataResult < Struct.new(
|
|
20410
|
+
:instance_image_metadata,
|
|
20411
|
+
:next_token)
|
|
20412
|
+
SENSITIVE = []
|
|
20413
|
+
include Aws::Structure
|
|
20414
|
+
end
|
|
20415
|
+
|
|
20320
20416
|
# @!attribute [rw] instance_ids
|
|
20321
20417
|
# The instance IDs.
|
|
20322
20418
|
#
|
|
@@ -31262,14 +31358,22 @@ module Aws::EC2
|
|
|
31262
31358
|
include Aws::Structure
|
|
31263
31359
|
end
|
|
31264
31360
|
|
|
31265
|
-
#
|
|
31361
|
+
# Deprecated.
|
|
31266
31362
|
#
|
|
31267
|
-
#
|
|
31363
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
|
31364
|
+
# workloads that require graphics acceleration, we recommend that you
|
|
31365
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
|
31268
31366
|
#
|
|
31269
|
-
#
|
|
31367
|
+
# </note>
|
|
31270
31368
|
#
|
|
31271
31369
|
# @!attribute [rw] type
|
|
31272
|
-
#
|
|
31370
|
+
# Deprecated.
|
|
31371
|
+
#
|
|
31372
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
|
31373
|
+
# workloads that require graphics acceleration, we recommend that you
|
|
31374
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
|
31375
|
+
#
|
|
31376
|
+
# </note>
|
|
31273
31377
|
# @return [String]
|
|
31274
31378
|
#
|
|
31275
31379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ElasticGpuSpecificationResponse AWS API Documentation
|
|
@@ -38470,6 +38574,62 @@ module Aws::EC2
|
|
|
38470
38574
|
include Aws::Structure
|
|
38471
38575
|
end
|
|
38472
38576
|
|
|
38577
|
+
# Information about the AMI.
|
|
38578
|
+
#
|
|
38579
|
+
# @!attribute [rw] image_id
|
|
38580
|
+
# The ID of the AMI.
|
|
38581
|
+
# @return [String]
|
|
38582
|
+
#
|
|
38583
|
+
# @!attribute [rw] name
|
|
38584
|
+
# The name of the AMI.
|
|
38585
|
+
# @return [String]
|
|
38586
|
+
#
|
|
38587
|
+
# @!attribute [rw] owner_id
|
|
38588
|
+
# The ID of the Amazon Web Services account that owns the AMI.
|
|
38589
|
+
# @return [String]
|
|
38590
|
+
#
|
|
38591
|
+
# @!attribute [rw] state
|
|
38592
|
+
# The current state of the AMI. If the state is `available`, the AMI
|
|
38593
|
+
# is successfully registered and can be used to launch an instance.
|
|
38594
|
+
# @return [String]
|
|
38595
|
+
#
|
|
38596
|
+
# @!attribute [rw] image_owner_alias
|
|
38597
|
+
# The alias of the AMI owner.
|
|
38598
|
+
#
|
|
38599
|
+
# Valid values: `amazon` \| `aws-marketplace`
|
|
38600
|
+
# @return [String]
|
|
38601
|
+
#
|
|
38602
|
+
# @!attribute [rw] creation_date
|
|
38603
|
+
# The date and time the AMI was created.
|
|
38604
|
+
# @return [String]
|
|
38605
|
+
#
|
|
38606
|
+
# @!attribute [rw] deprecation_time
|
|
38607
|
+
# The deprecation date and time of the AMI, in UTC, in the following
|
|
38608
|
+
# format: *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z.
|
|
38609
|
+
# @return [String]
|
|
38610
|
+
#
|
|
38611
|
+
# @!attribute [rw] is_public
|
|
38612
|
+
# Indicates whether the AMI has public launch permissions. A value of
|
|
38613
|
+
# `true` means this AMI has public launch permissions, while `false`
|
|
38614
|
+
# means it has only implicit (AMI owner) or explicit (shared with your
|
|
38615
|
+
# account) launch permissions.
|
|
38616
|
+
# @return [Boolean]
|
|
38617
|
+
#
|
|
38618
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageMetadata AWS API Documentation
|
|
38619
|
+
#
|
|
38620
|
+
class ImageMetadata < Struct.new(
|
|
38621
|
+
:image_id,
|
|
38622
|
+
:name,
|
|
38623
|
+
:owner_id,
|
|
38624
|
+
:state,
|
|
38625
|
+
:image_owner_alias,
|
|
38626
|
+
:creation_date,
|
|
38627
|
+
:deprecation_time,
|
|
38628
|
+
:is_public)
|
|
38629
|
+
SENSITIVE = []
|
|
38630
|
+
include Aws::Structure
|
|
38631
|
+
end
|
|
38632
|
+
|
|
38473
38633
|
# Information about an AMI that is currently in the Recycle Bin.
|
|
38474
38634
|
#
|
|
38475
38635
|
# @!attribute [rw] image_id
|
|
@@ -40426,6 +40586,61 @@ module Aws::EC2
|
|
|
40426
40586
|
include Aws::Structure
|
|
40427
40587
|
end
|
|
40428
40588
|
|
|
40589
|
+
# Information about the instance and the AMI used to launch the
|
|
40590
|
+
# instance.
|
|
40591
|
+
#
|
|
40592
|
+
# @!attribute [rw] instance_id
|
|
40593
|
+
# The ID of the instance.
|
|
40594
|
+
# @return [String]
|
|
40595
|
+
#
|
|
40596
|
+
# @!attribute [rw] instance_type
|
|
40597
|
+
# The instance type.
|
|
40598
|
+
# @return [String]
|
|
40599
|
+
#
|
|
40600
|
+
# @!attribute [rw] launch_time
|
|
40601
|
+
# The time the instance was launched.
|
|
40602
|
+
# @return [Time]
|
|
40603
|
+
#
|
|
40604
|
+
# @!attribute [rw] availability_zone
|
|
40605
|
+
# The Availability Zone or Local Zone of the instance.
|
|
40606
|
+
# @return [String]
|
|
40607
|
+
#
|
|
40608
|
+
# @!attribute [rw] zone_id
|
|
40609
|
+
# The ID of the Availability Zone or Local Zone of the instance.
|
|
40610
|
+
# @return [String]
|
|
40611
|
+
#
|
|
40612
|
+
# @!attribute [rw] state
|
|
40613
|
+
# The current state of the instance.
|
|
40614
|
+
# @return [Types::InstanceState]
|
|
40615
|
+
#
|
|
40616
|
+
# @!attribute [rw] owner_id
|
|
40617
|
+
# The ID of the Amazon Web Services account that owns the instance.
|
|
40618
|
+
# @return [String]
|
|
40619
|
+
#
|
|
40620
|
+
# @!attribute [rw] tags
|
|
40621
|
+
# Any tags assigned to the instance.
|
|
40622
|
+
# @return [Array<Types::Tag>]
|
|
40623
|
+
#
|
|
40624
|
+
# @!attribute [rw] image_metadata
|
|
40625
|
+
# Information about the AMI used to launch the instance.
|
|
40626
|
+
# @return [Types::ImageMetadata]
|
|
40627
|
+
#
|
|
40628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceImageMetadata AWS API Documentation
|
|
40629
|
+
#
|
|
40630
|
+
class InstanceImageMetadata < Struct.new(
|
|
40631
|
+
:instance_id,
|
|
40632
|
+
:instance_type,
|
|
40633
|
+
:launch_time,
|
|
40634
|
+
:availability_zone,
|
|
40635
|
+
:zone_id,
|
|
40636
|
+
:state,
|
|
40637
|
+
:owner_id,
|
|
40638
|
+
:tags,
|
|
40639
|
+
:image_metadata)
|
|
40640
|
+
SENSITIVE = []
|
|
40641
|
+
include Aws::Structure
|
|
40642
|
+
end
|
|
40643
|
+
|
|
40429
40644
|
# Information about an IPv4 prefix.
|
|
40430
40645
|
#
|
|
40431
40646
|
# @!attribute [rw] ipv_4_prefix
|
|
@@ -45142,7 +45357,8 @@ module Aws::EC2
|
|
|
45142
45357
|
# @return [Integer]
|
|
45143
45358
|
#
|
|
45144
45359
|
# @!attribute [rw] kms_key_id
|
|
45145
|
-
#
|
|
45360
|
+
# Identifier (key ID, key alias, key ARN, or alias ARN) of the
|
|
45361
|
+
# customer managed KMS key to use for EBS encryption.
|
|
45146
45362
|
# @return [String]
|
|
45147
45363
|
#
|
|
45148
45364
|
# @!attribute [rw] snapshot_id
|
|
@@ -45217,8 +45433,8 @@ module Aws::EC2
|
|
|
45217
45433
|
# @return [Integer]
|
|
45218
45434
|
#
|
|
45219
45435
|
# @!attribute [rw] kms_key_id
|
|
45220
|
-
#
|
|
45221
|
-
# encryption.
|
|
45436
|
+
# Identifier (key ID, key alias, key ARN, or alias ARN) of the
|
|
45437
|
+
# customer managed KMS key to use for EBS encryption.
|
|
45222
45438
|
# @return [String]
|
|
45223
45439
|
#
|
|
45224
45440
|
# @!attribute [rw] snapshot_id
|
|
@@ -57648,17 +57864,37 @@ module Aws::EC2
|
|
|
57648
57864
|
# @!attribute [rw] elastic_gpu_specifications
|
|
57649
57865
|
# Deprecated.
|
|
57650
57866
|
#
|
|
57651
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
57867
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
|
57868
|
+
# workloads that require graphics acceleration, we recommend that you
|
|
57869
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
|
57652
57870
|
#
|
|
57653
57871
|
# </note>
|
|
57654
57872
|
# @return [Array<Types::ElasticGpuSpecification>]
|
|
57655
57873
|
#
|
|
57656
57874
|
# @!attribute [rw] elastic_inference_accelerators
|
|
57657
|
-
# Deprecated.
|
|
57658
|
-
#
|
|
57659
57875
|
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
|
57660
57876
|
#
|
|
57661
57877
|
# </note>
|
|
57878
|
+
#
|
|
57879
|
+
# An elastic inference accelerator to associate with the instance.
|
|
57880
|
+
# Elastic inference accelerators are a resource you can attach to your
|
|
57881
|
+
# Amazon EC2 instances to accelerate your Deep Learning (DL) inference
|
|
57882
|
+
# workloads.
|
|
57883
|
+
#
|
|
57884
|
+
# You cannot specify accelerators from different generations in the
|
|
57885
|
+
# same request.
|
|
57886
|
+
#
|
|
57887
|
+
# <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
|
|
57888
|
+
# customers to Amazon Elastic Inference (EI), and will help current
|
|
57889
|
+
# customers migrate their workloads to options that offer better price
|
|
57890
|
+
# and performance. After April 15, 2023, new customers will not be
|
|
57891
|
+
# able to launch instances with Amazon EI accelerators in Amazon
|
|
57892
|
+
# SageMaker, Amazon ECS, or Amazon EC2. However, customers who have
|
|
57893
|
+
# used Amazon EI at least once during the past 30-day period are
|
|
57894
|
+
# considered current customers and will be able to continue using the
|
|
57895
|
+
# service.
|
|
57896
|
+
#
|
|
57897
|
+
# </note>
|
|
57662
57898
|
# @return [Array<Types::LaunchTemplateElasticInferenceAccelerator>]
|
|
57663
57899
|
#
|
|
57664
57900
|
# @!attribute [rw] security_group_ids
|
|
@@ -59090,17 +59326,37 @@ module Aws::EC2
|
|
|
59090
59326
|
# @!attribute [rw] elastic_gpu_specifications
|
|
59091
59327
|
# Deprecated.
|
|
59092
59328
|
#
|
|
59093
|
-
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
59329
|
+
# <note markdown="1"> Amazon Elastic Graphics reached end of life on January 8, 2024. For
|
|
59330
|
+
# workloads that require graphics acceleration, we recommend that you
|
|
59331
|
+
# use Amazon EC2 G4ad, G4dn, or G5 instances.
|
|
59094
59332
|
#
|
|
59095
59333
|
# </note>
|
|
59096
59334
|
# @return [Array<Types::ElasticGpuSpecificationResponse>]
|
|
59097
59335
|
#
|
|
59098
59336
|
# @!attribute [rw] elastic_inference_accelerators
|
|
59099
|
-
# Deprecated.
|
|
59100
|
-
#
|
|
59101
59337
|
# <note markdown="1"> Amazon Elastic Inference is no longer available.
|
|
59102
59338
|
#
|
|
59103
59339
|
# </note>
|
|
59340
|
+
#
|
|
59341
|
+
# An elastic inference accelerator to associate with the instance.
|
|
59342
|
+
# Elastic inference accelerators are a resource you can attach to your
|
|
59343
|
+
# Amazon EC2 instances to accelerate your Deep Learning (DL) inference
|
|
59344
|
+
# workloads.
|
|
59345
|
+
#
|
|
59346
|
+
# You cannot specify accelerators from different generations in the
|
|
59347
|
+
# same request.
|
|
59348
|
+
#
|
|
59349
|
+
# <note markdown="1"> Starting April 15, 2023, Amazon Web Services will not onboard new
|
|
59350
|
+
# customers to Amazon Elastic Inference (EI), and will help current
|
|
59351
|
+
# customers migrate their workloads to options that offer better price
|
|
59352
|
+
# and performance. After April 15, 2023, new customers will not be
|
|
59353
|
+
# able to launch instances with Amazon EI accelerators in Amazon
|
|
59354
|
+
# SageMaker, Amazon ECS, or Amazon EC2. However, customers who have
|
|
59355
|
+
# used Amazon EI at least once during the past 30-day period are
|
|
59356
|
+
# considered current customers and will be able to continue using the
|
|
59357
|
+
# service.
|
|
59358
|
+
#
|
|
59359
|
+
# </note>
|
|
59104
59360
|
# @return [Array<Types::LaunchTemplateElasticInferenceAcceleratorResponse>]
|
|
59105
59361
|
#
|
|
59106
59362
|
# @!attribute [rw] security_group_ids
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -5876,6 +5876,26 @@ module Aws
|
|
|
5876
5876
|
) -> _DescribeInstanceEventWindowsResponseSuccess
|
|
5877
5877
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceEventWindowsResponseSuccess
|
|
5878
5878
|
|
|
5879
|
+
interface _DescribeInstanceImageMetadataResponseSuccess
|
|
5880
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceImageMetadataResult]
|
|
5881
|
+
def instance_image_metadata: () -> ::Array[Types::InstanceImageMetadata]
|
|
5882
|
+
def next_token: () -> ::String
|
|
5883
|
+
end
|
|
5884
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#describe_instance_image_metadata-instance_method
|
|
5885
|
+
def describe_instance_image_metadata: (
|
|
5886
|
+
?filters: Array[
|
|
5887
|
+
{
|
|
5888
|
+
name: ::String?,
|
|
5889
|
+
values: Array[::String]?
|
|
5890
|
+
},
|
|
5891
|
+
],
|
|
5892
|
+
?instance_ids: Array[::String],
|
|
5893
|
+
?max_results: ::Integer,
|
|
5894
|
+
?next_token: ::String,
|
|
5895
|
+
?dry_run: bool
|
|
5896
|
+
) -> _DescribeInstanceImageMetadataResponseSuccess
|
|
5897
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceImageMetadataResponseSuccess
|
|
5898
|
+
|
|
5879
5899
|
interface _DescribeInstanceStatusResponseSuccess
|
|
5880
5900
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceStatusResult]
|
|
5881
5901
|
def instance_statuses: () -> ::Array[Types::InstanceStatus]
|
data/sig/types.rbs
CHANGED
|
@@ -4755,6 +4755,21 @@ module Aws::EC2
|
|
|
4755
4755
|
SENSITIVE: []
|
|
4756
4756
|
end
|
|
4757
4757
|
|
|
4758
|
+
class DescribeInstanceImageMetadataRequest
|
|
4759
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
4760
|
+
attr_accessor instance_ids: ::Array[::String]
|
|
4761
|
+
attr_accessor max_results: ::Integer
|
|
4762
|
+
attr_accessor next_token: ::String
|
|
4763
|
+
attr_accessor dry_run: bool
|
|
4764
|
+
SENSITIVE: []
|
|
4765
|
+
end
|
|
4766
|
+
|
|
4767
|
+
class DescribeInstanceImageMetadataResult
|
|
4768
|
+
attr_accessor instance_image_metadata: ::Array[Types::InstanceImageMetadata]
|
|
4769
|
+
attr_accessor next_token: ::String
|
|
4770
|
+
SENSITIVE: []
|
|
4771
|
+
end
|
|
4772
|
+
|
|
4758
4773
|
class DescribeInstanceStatusRequest
|
|
4759
4774
|
attr_accessor instance_ids: ::Array[::String]
|
|
4760
4775
|
attr_accessor max_results: ::Integer
|
|
@@ -8631,6 +8646,18 @@ module Aws::EC2
|
|
|
8631
8646
|
SENSITIVE: [:url]
|
|
8632
8647
|
end
|
|
8633
8648
|
|
|
8649
|
+
class ImageMetadata
|
|
8650
|
+
attr_accessor image_id: ::String
|
|
8651
|
+
attr_accessor name: ::String
|
|
8652
|
+
attr_accessor owner_id: ::String
|
|
8653
|
+
attr_accessor state: ("pending" | "available" | "invalid" | "deregistered" | "transient" | "failed" | "error" | "disabled")
|
|
8654
|
+
attr_accessor image_owner_alias: ::String
|
|
8655
|
+
attr_accessor creation_date: ::String
|
|
8656
|
+
attr_accessor deprecation_time: ::String
|
|
8657
|
+
attr_accessor is_public: bool
|
|
8658
|
+
SENSITIVE: []
|
|
8659
|
+
end
|
|
8660
|
+
|
|
8634
8661
|
class ImageRecycleBinInfo
|
|
8635
8662
|
attr_accessor image_id: ::String
|
|
8636
8663
|
attr_accessor name: ::String
|
|
@@ -9056,6 +9083,19 @@ module Aws::EC2
|
|
|
9056
9083
|
SENSITIVE: []
|
|
9057
9084
|
end
|
|
9058
9085
|
|
|
9086
|
+
class InstanceImageMetadata
|
|
9087
|
+
attr_accessor instance_id: ::String
|
|
9088
|
+
attr_accessor instance_type: ("a1.medium" | "a1.large" | "a1.xlarge" | "a1.2xlarge" | "a1.4xlarge" | "a1.metal" | "c1.medium" | "c1.xlarge" | "c3.large" | "c3.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c4.large" | "c4.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c5.large" | "c5.xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.metal" | "c5a.large" | "c5a.xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5d.large" | "c5d.xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.metal" | "c5n.large" | "c5n.xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.18xlarge" | "c5n.metal" | "c6g.medium" | "c6g.large" | "c6g.xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.metal" | "c6gd.medium" | "c6gd.large" | "c6gd.xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.metal" | "c6gn.medium" | "c6gn.large" | "c6gn.xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6i.large" | "c6i.xlarge" | "c6i.2xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.32xlarge" | "c6i.metal" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d3.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3en.xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.12xlarge" | "dl1.24xlarge" | "f1.2xlarge" | "f1.4xlarge" | "f1.16xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3.16xlarge" | "g3s.xlarge" | "g4ad.xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.16xlarge" | "g4dn.xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.metal" | "g5.xlarge" | "g5.2xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.48xlarge" | "g5g.xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.16xlarge" | "g5g.metal" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "h1.16xlarge" | "i2.xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i3.large" | "i3.xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.16xlarge" | "i3.metal" | "i3en.large" | "i3en.xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.metal" | "im4gn.large" | "im4gn.xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.16xlarge" | "inf1.xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.24xlarge" | "is4gen.medium" | "is4gen.large" | "is4gen.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "m1.small" | "m1.medium" | "m1.large" | "m1.xlarge" | "m2.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m3.medium" | "m3.large" | "m3.xlarge" | "m3.2xlarge" | "m4.large" | "m4.xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m5.large" | "m5.xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.metal" | "m5a.large" | "m5a.xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5d.large" | "m5d.xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.metal" | "m5dn.large" | "m5dn.xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.metal" | "m5n.large" | "m5n.xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.metal" | "m5zn.large" | "m5zn.xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.12xlarge" | "m5zn.metal" | "m6a.large" | "m6a.xlarge" | "m6a.2xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6g.metal" | "m6g.medium" | "m6g.large" | "m6g.xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6gd.metal" | "m6gd.medium" | "m6gd.large" | "m6gd.xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6i.large" | "m6i.xlarge" | "m6i.2xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.32xlarge" | "m6i.metal" | "mac1.metal" | "p2.xlarge" | "p2.8xlarge" | "p2.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3.16xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.large" | "r3.xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r4.large" | "r4.xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.16xlarge" | "r5.large" | "r5.xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.metal" | "r5a.large" | "r5a.xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5b.large" | "r5b.xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.metal" | "r5d.large" | "r5d.xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.metal" | "r5dn.large" | "r5dn.xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.metal" | "r5n.large" | "r5n.xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.metal" | "r6g.medium" | "r6g.large" | "r6g.xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.metal" | "r6gd.medium" | "r6gd.large" | "r6gd.xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.metal" | "r6i.large" | "r6i.xlarge" | "r6i.2xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.32xlarge" | "r6i.metal" | "t1.micro" | "t2.nano" | "t2.micro" | "t2.small" | "t2.medium" | "t2.large" | "t2.xlarge" | "t2.2xlarge" | "t3.nano" | "t3.micro" | "t3.small" | "t3.medium" | "t3.large" | "t3.xlarge" | "t3.2xlarge" | "t3a.nano" | "t3a.micro" | "t3a.small" | "t3a.medium" | "t3a.large" | "t3a.xlarge" | "t3a.2xlarge" | "t4g.nano" | "t4g.micro" | "t4g.small" | "t4g.medium" | "t4g.large" | "t4g.xlarge" | "t4g.2xlarge" | "u-6tb1.56xlarge" | "u-6tb1.112xlarge" | "u-9tb1.112xlarge" | "u-12tb1.112xlarge" | "u-6tb1.metal" | "u-9tb1.metal" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "vt1.3xlarge" | "vt1.6xlarge" | "vt1.24xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.xlarge" | "x1e.2xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.16xlarge" | "x1e.32xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.12xlarge" | "x2iezn.metal" | "x2gd.medium" | "x2gd.large" | "x2gd.xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.metal" | "z1d.large" | "z1d.xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.12xlarge" | "z1d.metal" | "x2idn.16xlarge" | "x2idn.24xlarge" | "x2idn.32xlarge" | "x2iedn.xlarge" | "x2iedn.2xlarge" | "x2iedn.4xlarge" | "x2iedn.8xlarge" | "x2iedn.16xlarge" | "x2iedn.24xlarge" | "x2iedn.32xlarge" | "c6a.large" | "c6a.xlarge" | "c6a.2xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6a.32xlarge" | "c6a.48xlarge" | "c6a.metal" | "m6a.metal" | "i4i.large" | "i4i.xlarge" | "i4i.2xlarge" | "i4i.4xlarge" | "i4i.8xlarge" | "i4i.16xlarge" | "i4i.32xlarge" | "i4i.metal" | "x2idn.metal" | "x2iedn.metal" | "c7g.medium" | "c7g.large" | "c7g.xlarge" | "c7g.2xlarge" | "c7g.4xlarge" | "c7g.8xlarge" | "c7g.12xlarge" | "c7g.16xlarge" | "mac2.metal" | "c6id.large" | "c6id.xlarge" | "c6id.2xlarge" | "c6id.4xlarge" | "c6id.8xlarge" | "c6id.12xlarge" | "c6id.16xlarge" | "c6id.24xlarge" | "c6id.32xlarge" | "c6id.metal" | "m6id.large" | "m6id.xlarge" | "m6id.2xlarge" | "m6id.4xlarge" | "m6id.8xlarge" | "m6id.12xlarge" | "m6id.16xlarge" | "m6id.24xlarge" | "m6id.32xlarge" | "m6id.metal" | "r6id.large" | "r6id.xlarge" | "r6id.2xlarge" | "r6id.4xlarge" | "r6id.8xlarge" | "r6id.12xlarge" | "r6id.16xlarge" | "r6id.24xlarge" | "r6id.32xlarge" | "r6id.metal" | "r6a.large" | "r6a.xlarge" | "r6a.2xlarge" | "r6a.4xlarge" | "r6a.8xlarge" | "r6a.12xlarge" | "r6a.16xlarge" | "r6a.24xlarge" | "r6a.32xlarge" | "r6a.48xlarge" | "r6a.metal" | "p4de.24xlarge" | "u-3tb1.56xlarge" | "u-18tb1.112xlarge" | "u-24tb1.112xlarge" | "trn1.2xlarge" | "trn1.32xlarge" | "hpc6id.32xlarge" | "c6in.large" | "c6in.xlarge" | "c6in.2xlarge" | "c6in.4xlarge" | "c6in.8xlarge" | "c6in.12xlarge" | "c6in.16xlarge" | "c6in.24xlarge" | "c6in.32xlarge" | "m6in.large" | "m6in.xlarge" | "m6in.2xlarge" | "m6in.4xlarge" | "m6in.8xlarge" | "m6in.12xlarge" | "m6in.16xlarge" | "m6in.24xlarge" | "m6in.32xlarge" | "m6idn.large" | "m6idn.xlarge" | "m6idn.2xlarge" | "m6idn.4xlarge" | "m6idn.8xlarge" | "m6idn.12xlarge" | "m6idn.16xlarge" | "m6idn.24xlarge" | "m6idn.32xlarge" | "r6in.large" | "r6in.xlarge" | "r6in.2xlarge" | "r6in.4xlarge" | "r6in.8xlarge" | "r6in.12xlarge" | "r6in.16xlarge" | "r6in.24xlarge" | "r6in.32xlarge" | "r6idn.large" | "r6idn.xlarge" | "r6idn.2xlarge" | "r6idn.4xlarge" | "r6idn.8xlarge" | "r6idn.12xlarge" | "r6idn.16xlarge" | "r6idn.24xlarge" | "r6idn.32xlarge" | "c7g.metal" | "m7g.medium" | "m7g.large" | "m7g.xlarge" | "m7g.2xlarge" | "m7g.4xlarge" | "m7g.8xlarge" | "m7g.12xlarge" | "m7g.16xlarge" | "m7g.metal" | "r7g.medium" | "r7g.large" | "r7g.xlarge" | "r7g.2xlarge" | "r7g.4xlarge" | "r7g.8xlarge" | "r7g.12xlarge" | "r7g.16xlarge" | "r7g.metal" | "c6in.metal" | "m6in.metal" | "m6idn.metal" | "r6in.metal" | "r6idn.metal" | "inf2.xlarge" | "inf2.8xlarge" | "inf2.24xlarge" | "inf2.48xlarge" | "trn1n.32xlarge" | "i4g.large" | "i4g.xlarge" | "i4g.2xlarge" | "i4g.4xlarge" | "i4g.8xlarge" | "i4g.16xlarge" | "hpc7g.4xlarge" | "hpc7g.8xlarge" | "hpc7g.16xlarge" | "c7gn.medium" | "c7gn.large" | "c7gn.xlarge" | "c7gn.2xlarge" | "c7gn.4xlarge" | "c7gn.8xlarge" | "c7gn.12xlarge" | "c7gn.16xlarge" | "p5.48xlarge" | "m7i.large" | "m7i.xlarge" | "m7i.2xlarge" | "m7i.4xlarge" | "m7i.8xlarge" | "m7i.12xlarge" | "m7i.16xlarge" | "m7i.24xlarge" | "m7i.48xlarge" | "m7i-flex.large" | "m7i-flex.xlarge" | "m7i-flex.2xlarge" | "m7i-flex.4xlarge" | "m7i-flex.8xlarge" | "m7a.medium" | "m7a.large" | "m7a.xlarge" | "m7a.2xlarge" | "m7a.4xlarge" | "m7a.8xlarge" | "m7a.12xlarge" | "m7a.16xlarge" | "m7a.24xlarge" | "m7a.32xlarge" | "m7a.48xlarge" | "m7a.metal-48xl" | "hpc7a.12xlarge" | "hpc7a.24xlarge" | "hpc7a.48xlarge" | "hpc7a.96xlarge" | "c7gd.medium" | "c7gd.large" | "c7gd.xlarge" | "c7gd.2xlarge" | "c7gd.4xlarge" | "c7gd.8xlarge" | "c7gd.12xlarge" | "c7gd.16xlarge" | "m7gd.medium" | "m7gd.large" | "m7gd.xlarge" | "m7gd.2xlarge" | "m7gd.4xlarge" | "m7gd.8xlarge" | "m7gd.12xlarge" | "m7gd.16xlarge" | "r7gd.medium" | "r7gd.large" | "r7gd.xlarge" | "r7gd.2xlarge" | "r7gd.4xlarge" | "r7gd.8xlarge" | "r7gd.12xlarge" | "r7gd.16xlarge" | "r7a.medium" | "r7a.large" | "r7a.xlarge" | "r7a.2xlarge" | "r7a.4xlarge" | "r7a.8xlarge" | "r7a.12xlarge" | "r7a.16xlarge" | "r7a.24xlarge" | "r7a.32xlarge" | "r7a.48xlarge" | "c7i.large" | "c7i.xlarge" | "c7i.2xlarge" | "c7i.4xlarge" | "c7i.8xlarge" | "c7i.12xlarge" | "c7i.16xlarge" | "c7i.24xlarge" | "c7i.48xlarge" | "mac2-m2pro.metal" | "r7iz.large" | "r7iz.xlarge" | "r7iz.2xlarge" | "r7iz.4xlarge" | "r7iz.8xlarge" | "r7iz.12xlarge" | "r7iz.16xlarge" | "r7iz.32xlarge" | "c7a.medium" | "c7a.large" | "c7a.xlarge" | "c7a.2xlarge" | "c7a.4xlarge" | "c7a.8xlarge" | "c7a.12xlarge" | "c7a.16xlarge" | "c7a.24xlarge" | "c7a.32xlarge" | "c7a.48xlarge" | "c7a.metal-48xl" | "r7a.metal-48xl" | "r7i.large" | "r7i.xlarge" | "r7i.2xlarge" | "r7i.4xlarge" | "r7i.8xlarge" | "r7i.12xlarge" | "r7i.16xlarge" | "r7i.24xlarge" | "r7i.48xlarge" | "dl2q.24xlarge" | "mac2-m2.metal" | "i4i.12xlarge" | "i4i.24xlarge" | "c7i.metal-24xl" | "c7i.metal-48xl" | "m7i.metal-24xl" | "m7i.metal-48xl" | "r7i.metal-24xl" | "r7i.metal-48xl" | "r7iz.metal-16xl" | "r7iz.metal-32xl" | "c7gd.metal" | "m7gd.metal" | "r7gd.metal" | "g6.xlarge" | "g6.2xlarge" | "g6.4xlarge" | "g6.8xlarge" | "g6.12xlarge" | "g6.16xlarge" | "g6.24xlarge" | "g6.48xlarge" | "gr6.4xlarge" | "gr6.8xlarge" | "c7i-flex.large" | "c7i-flex.xlarge" | "c7i-flex.2xlarge" | "c7i-flex.4xlarge" | "c7i-flex.8xlarge" | "u7i-12tb.224xlarge" | "u7in-16tb.224xlarge" | "u7in-24tb.224xlarge" | "u7in-32tb.224xlarge" | "u7ib-12tb.224xlarge" | "c7gn.metal" | "r8g.medium" | "r8g.large" | "r8g.xlarge" | "r8g.2xlarge" | "r8g.4xlarge" | "r8g.8xlarge" | "r8g.12xlarge" | "r8g.16xlarge" | "r8g.24xlarge" | "r8g.48xlarge" | "r8g.metal-24xl" | "r8g.metal-48xl" | "mac2-m1ultra.metal" | "g6e.xlarge" | "g6e.2xlarge" | "g6e.4xlarge" | "g6e.8xlarge" | "g6e.12xlarge" | "g6e.16xlarge" | "g6e.24xlarge" | "g6e.48xlarge" | "c8g.medium" | "c8g.large" | "c8g.xlarge" | "c8g.2xlarge" | "c8g.4xlarge" | "c8g.8xlarge" | "c8g.12xlarge" | "c8g.16xlarge" | "c8g.24xlarge" | "c8g.48xlarge" | "c8g.metal-24xl" | "c8g.metal-48xl" | "m8g.medium" | "m8g.large" | "m8g.xlarge" | "m8g.2xlarge" | "m8g.4xlarge" | "m8g.8xlarge" | "m8g.12xlarge" | "m8g.16xlarge" | "m8g.24xlarge" | "m8g.48xlarge" | "m8g.metal-24xl" | "m8g.metal-48xl" | "x8g.medium" | "x8g.large" | "x8g.xlarge" | "x8g.2xlarge" | "x8g.4xlarge" | "x8g.8xlarge" | "x8g.12xlarge" | "x8g.16xlarge" | "x8g.24xlarge" | "x8g.48xlarge" | "x8g.metal-24xl" | "x8g.metal-48xl")
|
|
9089
|
+
attr_accessor launch_time: ::Time
|
|
9090
|
+
attr_accessor availability_zone: ::String
|
|
9091
|
+
attr_accessor zone_id: ::String
|
|
9092
|
+
attr_accessor state: Types::InstanceState
|
|
9093
|
+
attr_accessor owner_id: ::String
|
|
9094
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
9095
|
+
attr_accessor image_metadata: Types::ImageMetadata
|
|
9096
|
+
SENSITIVE: []
|
|
9097
|
+
end
|
|
9098
|
+
|
|
9059
9099
|
class InstanceIpv4Prefix
|
|
9060
9100
|
attr_accessor ipv_4_prefix: ::String
|
|
9061
9101
|
SENSITIVE: []
|
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.485.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: 2024-10-
|
|
11
|
+
date: 2024-10-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|