aws-sdk-ec2 1.510.0 → 1.511.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0aee6ca86e5de2aeb4f0d10108b6bd2fc77039f781c833f13bbde42df9d584d
4
- data.tar.gz: bef59a3237e8d6087fe8576df6479fe23cba495e931ab45ac6b9bdc1b53a327d
3
+ metadata.gz: 01fcf4c573be22d5df6baaee10bcc31d55e28f705a890813e42c8eae5cf9445c
4
+ data.tar.gz: 5e267f949bda84a0057b50f51bfa984cba05e58b2b7ae8c3ca900185ebd63827
5
5
  SHA512:
6
- metadata.gz: ac34931a7e0690cfacdc8c5372317bd0b76187d02934cd82b9eec9ade1173f98a20cba515fe9bdfddc6b17ffca6dcfe223fc328c6c0e8d3434b5aa61e53fe910
7
- data.tar.gz: 7b1637993d4412b29168c1d0beb2e8a6e9d5747214d9b3700595f00ee7477dffcbfd0cce78913d267ce8a3451ee4916d98413f3cbf9c4d105f1e2e825f85d621
6
+ metadata.gz: d81987eea06f1fb31793a584d56a361e113eeb706e3dd6565c3f18e214d2d33a1da95ae2cbfb3b3df06b83c879b49e9cf5550b27dc2ea9cb1ab02a5a615280c8
7
+ data.tar.gz: 53b0a810e0c7f7e367500298ccc32571876e62d518137f422d411d2380cd6de3b4d030199dd1ef401849411acc3dc0d1c2923afec617a4bf2b33582216a9d3b2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.511.0 (2025-03-11)
5
+ ------------------
6
+
7
+ * Feature - This release adds the GroupLongName field to the response of the DescribeAvailabilityZones API.
8
+
4
9
  1.510.0 (2025-03-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.510.0
1
+ 1.511.0
@@ -7095,7 +7095,7 @@ module Aws::EC2
7095
7095
  # },
7096
7096
  # },
7097
7097
  # },
7098
- # image_id: "ImageId",
7098
+ # image_id: "String",
7099
7099
  # },
7100
7100
  # ],
7101
7101
  # },
@@ -21190,6 +21190,12 @@ module Aws::EC2
21190
21190
  # @option params [Array<Types::Filter>] :filters
21191
21191
  # The filters.
21192
21192
  #
21193
+ # * `group-long-name` - The long name of the zone group for the
21194
+ # Availability Zone (for example, `US West (Oregon) 1`), the Local
21195
+ # Zone (for example, for Zone group `us-west-2-lax-1`, it is `US West
21196
+ # (Los Angeles)`, or the Wavelength Zone (for example, for Zone group
21197
+ # `us-east-1-wl1`, it is `US East (Verizon)`.
21198
+ #
21193
21199
  # * `group-name` - The name of the zone group for the Availability Zone
21194
21200
  # (for example, `us-east-1-zg-1`), the Local Zone (for example,
21195
21201
  # `us-west-2-lax-1`), or the Wavelength Zone (for example,
@@ -21301,6 +21307,7 @@ module Aws::EC2
21301
21307
  # resp.availability_zones[0].zone_type #=> String
21302
21308
  # resp.availability_zones[0].parent_zone_name #=> String
21303
21309
  # resp.availability_zones[0].parent_zone_id #=> String
21310
+ # resp.availability_zones[0].group_long_name #=> String
21304
21311
  # resp.availability_zones[0].state #=> String, one of "available", "information", "impaired", "unavailable", "constrained"
21305
21312
  #
21306
21313
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAvailabilityZones AWS API Documentation
@@ -49612,7 +49619,7 @@ module Aws::EC2
49612
49619
  # },
49613
49620
  # },
49614
49621
  # },
49615
- # image_id: "ImageId",
49622
+ # image_id: "String",
49616
49623
  # },
49617
49624
  # ],
49618
49625
  # },
@@ -63382,7 +63389,7 @@ module Aws::EC2
63382
63389
  tracer: tracer
63383
63390
  )
63384
63391
  context[:gem_name] = 'aws-sdk-ec2'
63385
- context[:gem_version] = '1.510.0'
63392
+ context[:gem_version] = '1.511.0'
63386
63393
  Seahorse::Client::Request.new(handlers, context)
63387
63394
  end
63388
63395
 
@@ -4167,6 +4167,7 @@ module Aws::EC2
4167
4167
  AvailabilityZone.add_member(:zone_type, Shapes::ShapeRef.new(shape: String, location_name: "zoneType"))
4168
4168
  AvailabilityZone.add_member(:parent_zone_name, Shapes::ShapeRef.new(shape: String, location_name: "parentZoneName"))
4169
4169
  AvailabilityZone.add_member(:parent_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "parentZoneId"))
4170
+ AvailabilityZone.add_member(:group_long_name, Shapes::ShapeRef.new(shape: String, location_name: "groupLongName"))
4170
4171
  AvailabilityZone.add_member(:state, Shapes::ShapeRef.new(shape: AvailabilityZoneState, location_name: "zoneState"))
4171
4172
  AvailabilityZone.struct_class = Types::AvailabilityZone
4172
4173
 
@@ -9550,7 +9551,7 @@ module Aws::EC2
9550
9551
  FleetLaunchTemplateOverridesRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "Placement"))
9551
9552
  FleetLaunchTemplateOverridesRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequestList, location_name: "BlockDeviceMapping"))
9552
9553
  FleetLaunchTemplateOverridesRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
9553
- FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
9554
+ FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "ImageId"))
9554
9555
  FleetLaunchTemplateOverridesRequest.struct_class = Types::FleetLaunchTemplateOverridesRequest
9555
9556
 
9556
9557
  FleetLaunchTemplateSpecification.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
@@ -3707,6 +3707,11 @@ module Aws::EC2
3707
3707
  # Zone control plane operations, such as API calls.
3708
3708
  # @return [String]
3709
3709
  #
3710
+ # @!attribute [rw] group_long_name
3711
+ # The long name of the Availability Zone group, Local Zone group, or
3712
+ # Wavelength Zone group.
3713
+ # @return [String]
3714
+ #
3710
3715
  # @!attribute [rw] state
3711
3716
  # The state of the Availability Zone, Local Zone, or Wavelength Zone.
3712
3717
  # This value is always `available`.
@@ -3725,6 +3730,7 @@ module Aws::EC2
3725
3730
  :zone_type,
3726
3731
  :parent_zone_name,
3727
3732
  :parent_zone_id,
3733
+ :group_long_name,
3728
3734
  :state)
3729
3735
  SENSITIVE = []
3730
3736
  include Aws::Structure
@@ -18093,6 +18099,12 @@ module Aws::EC2
18093
18099
  # @!attribute [rw] filters
18094
18100
  # The filters.
18095
18101
  #
18102
+ # * `group-long-name` - The long name of the zone group for the
18103
+ # Availability Zone (for example, `US West (Oregon) 1`), the Local
18104
+ # Zone (for example, for Zone group `us-west-2-lax-1`, it is `US
18105
+ # West (Los Angeles)`, or the Wavelength Zone (for example, for Zone
18106
+ # group `us-east-1-wl1`, it is `US East (Verizon)`.
18107
+ #
18096
18108
  # * `group-name` - The name of the zone group for the Availability
18097
18109
  # Zone (for example, `us-east-1-zg-1`), the Local Zone (for example,
18098
18110
  # `us-west-2-lax-1`), or the Wavelength Zone (for example,
@@ -35974,14 +35986,14 @@ module Aws::EC2
35974
35986
  # customer managed KMS key to use for EBS encryption.
35975
35987
  #
35976
35988
  # This parameter is only supported on `BlockDeviceMapping` objects
35977
- # called by [RunInstances][1], [RequestSpotFleet][2], and
35978
- # [RequestSpotInstances][3].
35989
+ # called by [CreateFleet][1], [RequestSpotInstances][2], and
35990
+ # [RunInstances][3].
35979
35991
  #
35980
35992
  #
35981
35993
  #
35982
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
35983
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet.html
35984
- # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotInstances.html
35994
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet.html
35995
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotInstances.html
35996
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
35985
35997
  # @return [String]
35986
35998
  #
35987
35999
  # @!attribute [rw] snapshot_id
@@ -36323,22 +36335,6 @@ module Aws::EC2
36323
36335
  # information, see [Block device mappings for volumes on Amazon EC2
36324
36336
  # instances][1] in the *Amazon EC2 User Guide*.
36325
36337
  #
36326
- # To override a block device mapping specified in the launch template:
36327
- #
36328
- # * Specify the exact same `DeviceName` here as specified in the
36329
- # launch template.
36330
- #
36331
- # * Only specify the parameters you want to change.
36332
- #
36333
- # * Any parameters you don't specify here will keep their original
36334
- # launch template values.
36335
- #
36336
- # To add a new block device mapping:
36337
- #
36338
- # * Specify a `DeviceName` that doesn't exist in the launch template.
36339
- #
36340
- # * Specify all desired parameters here.
36341
- #
36342
36338
  #
36343
36339
  #
36344
36340
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
@@ -42990,6 +42986,11 @@ module Aws::EC2
42990
42986
  # @!attribute [rw] tags
42991
42987
  # The instance tags associated with the event window. Any instances
42992
42988
  # associated with the tags will be associated with the event window.
42989
+ #
42990
+ # Note that while you can't create tag keys beginning with `aws:`,
42991
+ # you can specify existing Amazon Web Services managed tag keys (with
42992
+ # the `aws:` prefix) when specifying them as targets to associate with
42993
+ # the event window.
42993
42994
  # @return [Array<Types::Tag>]
42994
42995
  #
42995
42996
  # @!attribute [rw] dedicated_host_ids
@@ -44374,9 +44375,6 @@ module Aws::EC2
44374
44375
  # * For instance types with Inference accelerators, specify
44375
44376
  # `inference`.
44376
44377
  #
44377
- # * For instance types with Inference accelerators, specify
44378
- # `inference`.
44379
- #
44380
44378
  # Default: Any accelerator type
44381
44379
  # @return [Array<String>]
44382
44380
  #
@@ -57587,11 +57585,11 @@ module Aws::EC2
57587
57585
  include Aws::Structure
57588
57586
  end
57589
57587
 
57590
- # Describes whether the resource is managed by an service provider and,
57588
+ # Describes whether the resource is managed by a service provider and,
57591
57589
  # if so, describes the service provider that manages it.
57592
57590
  #
57593
57591
  # @!attribute [rw] managed
57594
- # If `true`, the resource is managed by an service provider.
57592
+ # If `true`, the resource is managed by a service provider.
57595
57593
  # @return [Boolean]
57596
57594
  #
57597
57595
  # @!attribute [rw] principal
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.510.0'
81
+ GEM_VERSION = '1.511.0'
82
82
 
83
83
  end
84
84
 
data/sig/types.rbs CHANGED
@@ -922,6 +922,7 @@ module Aws::EC2
922
922
  attr_accessor zone_type: ::String
923
923
  attr_accessor parent_zone_name: ::String
924
924
  attr_accessor parent_zone_id: ::String
925
+ attr_accessor group_long_name: ::String
925
926
  attr_accessor state: ("available" | "information" | "impaired" | "unavailable" | "constrained")
926
927
  SENSITIVE: []
927
928
  end
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.510.0
4
+ version: 1.511.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: 2025-03-07 00:00:00.000000000 Z
11
+ date: 2025-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core