aws-sdk-ec2 1.509.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: 3480fb73277e9a0aa43d2f3daf83132fcb7e66ccd2da80b898231f9e1319a8cf
4
- data.tar.gz: 8d0fcab303d8b33aa05a3cb1cbed4167a943af1d49c8cc130f1867126c46dc5b
3
+ metadata.gz: 01fcf4c573be22d5df6baaee10bcc31d55e28f705a890813e42c8eae5cf9445c
4
+ data.tar.gz: 5e267f949bda84a0057b50f51bfa984cba05e58b2b7ae8c3ca900185ebd63827
5
5
  SHA512:
6
- metadata.gz: 23ac30cc1e421f8284b9f1803a6045a4bf73757fe55db9382e4574486327f8c88394cc43caa083ff1b03cf2afd47edbd6af0cea2f38d3cae4d37739f6bbb526e
7
- data.tar.gz: a1eed39ec76b36ef3df58f22beb9f98eeb235cd29de60ca864080985dae0f1c05c08ab0982cd4cf2d0be6694f83724089a823b0d56beb8390e6f4eeb75f13cf8
6
+ metadata.gz: d81987eea06f1fb31793a584d56a361e113eeb706e3dd6565c3f18e214d2d33a1da95ae2cbfb3b3df06b83c879b49e9cf5550b27dc2ea9cb1ab02a5a615280c8
7
+ data.tar.gz: 53b0a810e0c7f7e367500298ccc32571876e62d518137f422d411d2380cd6de3b4d030199dd1ef401849411acc3dc0d1c2923afec617a4bf2b33582216a9d3b2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.510.0 (2025-03-07)
10
+ ------------------
11
+
12
+ * Feature - Add serviceManaged field to DescribeAddresses API response.
13
+
4
14
  1.509.0 (2025-03-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.509.0
1
+ 1.511.0
@@ -111,6 +111,16 @@ module Aws::EC2
111
111
  data[:carrier_ip]
112
112
  end
113
113
 
114
+ # The service that manages the elastic IP address.
115
+ #
116
+ # <note markdown="1"> The only option supported today is `alb`.
117
+ #
118
+ # </note>
119
+ # @return [String]
120
+ def service_managed
121
+ data[:service_managed]
122
+ end
123
+
114
124
  # The ID of the instance that the address is associated with (if any).
115
125
  # @return [String]
116
126
  def instance_id
@@ -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
  # },
@@ -12223,9 +12223,10 @@ module Aws::EC2
12223
12223
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
12224
12224
  #
12225
12225
  # @option params [required, String] :group_name
12226
- # The name of the security group.
12226
+ # The name of the security group. Names are case-insensitive and must be
12227
+ # unique within the VPC.
12227
12228
  #
12228
- # Constraints: Up to 255 characters in length. Cannot start with `sg-`.
12229
+ # Constraints: Up to 255 characters in length. Can't start with `sg-`.
12229
12230
  #
12230
12231
  # Valid characters: a-z, A-Z, 0-9, spaces, and
12231
12232
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
@@ -21016,6 +21017,7 @@ module Aws::EC2
21016
21017
  # resp.addresses[0].customer_owned_ip #=> String
21017
21018
  # resp.addresses[0].customer_owned_ipv_4_pool #=> String
21018
21019
  # resp.addresses[0].carrier_ip #=> String
21020
+ # resp.addresses[0].service_managed #=> String, one of "alb", "nlb"
21019
21021
  # resp.addresses[0].instance_id #=> String
21020
21022
  # resp.addresses[0].public_ip #=> String
21021
21023
  #
@@ -21188,6 +21190,12 @@ module Aws::EC2
21188
21190
  # @option params [Array<Types::Filter>] :filters
21189
21191
  # The filters.
21190
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
+ #
21191
21199
  # * `group-name` - The name of the zone group for the Availability Zone
21192
21200
  # (for example, `us-east-1-zg-1`), the Local Zone (for example,
21193
21201
  # `us-west-2-lax-1`), or the Wavelength Zone (for example,
@@ -21299,6 +21307,7 @@ module Aws::EC2
21299
21307
  # resp.availability_zones[0].zone_type #=> String
21300
21308
  # resp.availability_zones[0].parent_zone_name #=> String
21301
21309
  # resp.availability_zones[0].parent_zone_id #=> String
21310
+ # resp.availability_zones[0].group_long_name #=> String
21302
21311
  # resp.availability_zones[0].state #=> String, one of "available", "information", "impaired", "unavailable", "constrained"
21303
21312
  #
21304
21313
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAvailabilityZones AWS API Documentation
@@ -49610,7 +49619,7 @@ module Aws::EC2
49610
49619
  # },
49611
49620
  # },
49612
49621
  # },
49613
- # image_id: "ImageId",
49622
+ # image_id: "String",
49614
49623
  # },
49615
49624
  # ],
49616
49625
  # },
@@ -63380,7 +63389,7 @@ module Aws::EC2
63380
63389
  tracer: tracer
63381
63390
  )
63382
63391
  context[:gem_name] = 'aws-sdk-ec2'
63383
- context[:gem_version] = '1.509.0'
63392
+ context[:gem_version] = '1.511.0'
63384
63393
  Seahorse::Client::Request.new(handlers, context)
63385
63394
  end
63386
63395
 
@@ -2901,6 +2901,7 @@ module Aws::EC2
2901
2901
  ServiceConnectivityType = Shapes::StringShape.new(name: 'ServiceConnectivityType')
2902
2902
  ServiceDetail = Shapes::StructureShape.new(name: 'ServiceDetail')
2903
2903
  ServiceDetailSet = Shapes::ListShape.new(name: 'ServiceDetailSet')
2904
+ ServiceManaged = Shapes::StringShape.new(name: 'ServiceManaged')
2904
2905
  ServiceNetworkArn = Shapes::StringShape.new(name: 'ServiceNetworkArn')
2905
2906
  ServiceState = Shapes::StringShape.new(name: 'ServiceState')
2906
2907
  ServiceType = Shapes::StringShape.new(name: 'ServiceType')
@@ -3601,6 +3602,7 @@ module Aws::EC2
3601
3602
  Address.add_member(:customer_owned_ip, Shapes::ShapeRef.new(shape: String, location_name: "customerOwnedIp"))
3602
3603
  Address.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: String, location_name: "customerOwnedIpv4Pool"))
3603
3604
  Address.add_member(:carrier_ip, Shapes::ShapeRef.new(shape: String, location_name: "carrierIp"))
3605
+ Address.add_member(:service_managed, Shapes::ShapeRef.new(shape: ServiceManaged, location_name: "serviceManaged"))
3604
3606
  Address.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
3605
3607
  Address.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "publicIp"))
3606
3608
  Address.struct_class = Types::Address
@@ -4165,6 +4167,7 @@ module Aws::EC2
4165
4167
  AvailabilityZone.add_member(:zone_type, Shapes::ShapeRef.new(shape: String, location_name: "zoneType"))
4166
4168
  AvailabilityZone.add_member(:parent_zone_name, Shapes::ShapeRef.new(shape: String, location_name: "parentZoneName"))
4167
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"))
4168
4171
  AvailabilityZone.add_member(:state, Shapes::ShapeRef.new(shape: AvailabilityZoneState, location_name: "zoneState"))
4169
4172
  AvailabilityZone.struct_class = Types::AvailabilityZone
4170
4173
 
@@ -9548,7 +9551,7 @@ module Aws::EC2
9548
9551
  FleetLaunchTemplateOverridesRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "Placement"))
9549
9552
  FleetLaunchTemplateOverridesRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequestList, location_name: "BlockDeviceMapping"))
9550
9553
  FleetLaunchTemplateOverridesRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
9551
- 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"))
9552
9555
  FleetLaunchTemplateOverridesRequest.struct_class = Types::FleetLaunchTemplateOverridesRequest
9553
9556
 
9554
9557
  FleetLaunchTemplateSpecification.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
@@ -1173,9 +1173,10 @@ module Aws::EC2
1173
1173
  # Valid characters: a-z, A-Z, 0-9, spaces, and
1174
1174
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
1175
1175
  # @option options [required, String] :group_name
1176
- # The name of the security group.
1176
+ # The name of the security group. Names are case-insensitive and must be
1177
+ # unique within the VPC.
1177
1178
  #
1178
- # Constraints: Up to 255 characters in length. Cannot start with `sg-`.
1179
+ # Constraints: Up to 255 characters in length. Can't start with `sg-`.
1179
1180
  #
1180
1181
  # Valid characters: a-z, A-Z, 0-9, spaces, and
1181
1182
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
@@ -771,6 +771,14 @@ module Aws::EC2
771
771
  # (for example an EC2 instance).
772
772
  # @return [String]
773
773
  #
774
+ # @!attribute [rw] service_managed
775
+ # The service that manages the elastic IP address.
776
+ #
777
+ # <note markdown="1"> The only option supported today is `alb`.
778
+ #
779
+ # </note>
780
+ # @return [String]
781
+ #
774
782
  # @!attribute [rw] instance_id
775
783
  # The ID of the instance that the address is associated with (if any).
776
784
  # @return [String]
@@ -794,6 +802,7 @@ module Aws::EC2
794
802
  :customer_owned_ip,
795
803
  :customer_owned_ipv_4_pool,
796
804
  :carrier_ip,
805
+ :service_managed,
797
806
  :instance_id,
798
807
  :public_ip)
799
808
  SENSITIVE = []
@@ -3698,6 +3707,11 @@ module Aws::EC2
3698
3707
  # Zone control plane operations, such as API calls.
3699
3708
  # @return [String]
3700
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
+ #
3701
3715
  # @!attribute [rw] state
3702
3716
  # The state of the Availability Zone, Local Zone, or Wavelength Zone.
3703
3717
  # This value is always `available`.
@@ -3716,6 +3730,7 @@ module Aws::EC2
3716
3730
  :zone_type,
3717
3731
  :parent_zone_name,
3718
3732
  :parent_zone_id,
3733
+ :group_long_name,
3719
3734
  :state)
3720
3735
  SENSITIVE = []
3721
3736
  include Aws::Structure
@@ -11529,9 +11544,10 @@ module Aws::EC2
11529
11544
  # @return [String]
11530
11545
  #
11531
11546
  # @!attribute [rw] group_name
11532
- # The name of the security group.
11547
+ # The name of the security group. Names are case-insensitive and must
11548
+ # be unique within the VPC.
11533
11549
  #
11534
- # Constraints: Up to 255 characters in length. Cannot start with
11550
+ # Constraints: Up to 255 characters in length. Can't start with
11535
11551
  # `sg-`.
11536
11552
  #
11537
11553
  # Valid characters: a-z, A-Z, 0-9, spaces, and
@@ -18083,6 +18099,12 @@ module Aws::EC2
18083
18099
  # @!attribute [rw] filters
18084
18100
  # The filters.
18085
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
+ #
18086
18108
  # * `group-name` - The name of the zone group for the Availability
18087
18109
  # Zone (for example, `us-east-1-zg-1`), the Local Zone (for example,
18088
18110
  # `us-west-2-lax-1`), or the Wavelength Zone (for example,
@@ -35964,14 +35986,14 @@ module Aws::EC2
35964
35986
  # customer managed KMS key to use for EBS encryption.
35965
35987
  #
35966
35988
  # This parameter is only supported on `BlockDeviceMapping` objects
35967
- # called by [RunInstances][1], [RequestSpotFleet][2], and
35968
- # [RequestSpotInstances][3].
35989
+ # called by [CreateFleet][1], [RequestSpotInstances][2], and
35990
+ # [RunInstances][3].
35969
35991
  #
35970
35992
  #
35971
35993
  #
35972
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
35973
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RequestSpotFleet.html
35974
- # [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
35975
35997
  # @return [String]
35976
35998
  #
35977
35999
  # @!attribute [rw] snapshot_id
@@ -36313,22 +36335,6 @@ module Aws::EC2
36313
36335
  # information, see [Block device mappings for volumes on Amazon EC2
36314
36336
  # instances][1] in the *Amazon EC2 User Guide*.
36315
36337
  #
36316
- # To override a block device mapping specified in the launch template:
36317
- #
36318
- # * Specify the exact same `DeviceName` here as specified in the
36319
- # launch template.
36320
- #
36321
- # * Only specify the parameters you want to change.
36322
- #
36323
- # * Any parameters you don't specify here will keep their original
36324
- # launch template values.
36325
- #
36326
- # To add a new block device mapping:
36327
- #
36328
- # * Specify a `DeviceName` that doesn't exist in the launch template.
36329
- #
36330
- # * Specify all desired parameters here.
36331
- #
36332
36338
  #
36333
36339
  #
36334
36340
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
@@ -42980,6 +42986,11 @@ module Aws::EC2
42980
42986
  # @!attribute [rw] tags
42981
42987
  # The instance tags associated with the event window. Any instances
42982
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.
42983
42994
  # @return [Array<Types::Tag>]
42984
42995
  #
42985
42996
  # @!attribute [rw] dedicated_host_ids
@@ -44364,9 +44375,6 @@ module Aws::EC2
44364
44375
  # * For instance types with Inference accelerators, specify
44365
44376
  # `inference`.
44366
44377
  #
44367
- # * For instance types with Inference accelerators, specify
44368
- # `inference`.
44369
- #
44370
44378
  # Default: Any accelerator type
44371
44379
  # @return [Array<String>]
44372
44380
  #
@@ -57577,11 +57585,11 @@ module Aws::EC2
57577
57585
  include Aws::Structure
57578
57586
  end
57579
57587
 
57580
- # Describes whether the resource is managed by an service provider and,
57588
+ # Describes whether the resource is managed by a service provider and,
57581
57589
  # if so, describes the service provider that manages it.
57582
57590
  #
57583
57591
  # @!attribute [rw] managed
57584
- # If `true`, the resource is managed by an service provider.
57592
+ # If `true`, the resource is managed by a service provider.
57585
57593
  # @return [Boolean]
57586
57594
  #
57587
57595
  # @!attribute [rw] principal
@@ -483,9 +483,10 @@ module Aws::EC2
483
483
  # Valid characters: a-z, A-Z, 0-9, spaces, and
484
484
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
485
485
  # @option options [required, String] :group_name
486
- # The name of the security group.
486
+ # The name of the security group. Names are case-insensitive and must be
487
+ # unique within the VPC.
487
488
  #
488
- # Constraints: Up to 255 characters in length. Cannot start with `sg-`.
489
+ # Constraints: Up to 255 characters in length. Can't start with `sg-`.
489
490
  #
490
491
  # Valid characters: a-z, A-Z, 0-9, spaces, and
491
492
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
@@ -105,6 +105,16 @@ module Aws::EC2
105
105
  data[:carrier_ip]
106
106
  end
107
107
 
108
+ # The service that manages the elastic IP address.
109
+ #
110
+ # <note markdown="1"> The only option supported today is `alb`.
111
+ #
112
+ # </note>
113
+ # @return [String]
114
+ def service_managed
115
+ data[:service_managed]
116
+ end
117
+
108
118
  # The ID of the instance that the address is associated with (if any).
109
119
  # @return [String]
110
120
  def instance_id
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.509.0'
81
+ GEM_VERSION = '1.511.0'
82
82
 
83
83
  end
84
84
 
@@ -53,6 +53,9 @@ module Aws
53
53
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#carrier_ip-instance_method
54
54
  def carrier_ip: () -> ::String
55
55
 
56
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#service_managed-instance_method
57
+ def service_managed: () -> ("alb" | "nlb")
58
+
56
59
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#instance_id-instance_method
57
60
  def instance_id: () -> ::String
58
61
 
data/sig/types.rbs CHANGED
@@ -215,6 +215,7 @@ module Aws::EC2
215
215
  attr_accessor customer_owned_ip: ::String
216
216
  attr_accessor customer_owned_ipv_4_pool: ::String
217
217
  attr_accessor carrier_ip: ::String
218
+ attr_accessor service_managed: ("alb" | "nlb")
218
219
  attr_accessor instance_id: ::String
219
220
  attr_accessor public_ip: ::String
220
221
  SENSITIVE: []
@@ -921,6 +922,7 @@ module Aws::EC2
921
922
  attr_accessor zone_type: ::String
922
923
  attr_accessor parent_zone_name: ::String
923
924
  attr_accessor parent_zone_id: ::String
925
+ attr_accessor group_long_name: ::String
924
926
  attr_accessor state: ("available" | "information" | "impaired" | "unavailable" | "constrained")
925
927
  SENSITIVE: []
926
928
  end
data/sig/vpc_address.rbs CHANGED
@@ -50,6 +50,9 @@ module Aws
50
50
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#carrier_ip-instance_method
51
51
  def carrier_ip: () -> ::String
52
52
 
53
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#service_managed-instance_method
54
+ def service_managed: () -> ("alb" | "nlb")
55
+
53
56
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#instance_id-instance_method
54
57
  def instance_id: () -> ::String
55
58
 
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.509.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-03 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