aws-sdk-ecs 1.224.0 → 1.225.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-ecs/client.rb +11 -1
- data/lib/aws-sdk-ecs/client_api.rb +6 -0
- data/lib/aws-sdk-ecs/types.rb +38 -3
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +6 -0
- data/sig/types.rbs +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc50875a1868a72acf8705c658c611db21f8a68d75fad3168586db30a5ca9ff3
|
|
4
|
+
data.tar.gz: bfd5099fdac5211e4caca38beeccbe3ec29f218d4d5483c4f5e20ca5ce4e0f60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f66f0b7096a90036e482bba541282da2334f5224c5d4199920159b9012121d06a2ca70bdc793c23fbf6427ad9c66283bbdc8813c0c33de1a5fd689bca82af6b4
|
|
7
|
+
data.tar.gz: d6e85c4b49f3cc105b9d2aad90e92f01b2844970e38c58f2dd3eb0dcc03b7b2b8f84552643ff218eb95141fb7e3012588c0bb769d8f539427543c5d5613547c2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.225.0 (2026-03-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding Local Storage support for ECS Managed Instances by introducing a new field "localStorageConfiguration" for CreateCapacityProvider and UpdateCapacityProvider APIs.
|
|
8
|
+
|
|
4
9
|
1.224.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.225.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -611,6 +611,9 @@ module Aws::ECS
|
|
|
611
611
|
# storage_configuration: {
|
|
612
612
|
# storage_size_gi_b: 1,
|
|
613
613
|
# },
|
|
614
|
+
# local_storage_configuration: {
|
|
615
|
+
# use_local_storage: false,
|
|
616
|
+
# },
|
|
614
617
|
# monitoring: "BASIC", # accepts BASIC, DETAILED
|
|
615
618
|
# capacity_option_type: "ON_DEMAND", # accepts ON_DEMAND, SPOT, RESERVED
|
|
616
619
|
# instance_metadata_tags_propagation: false,
|
|
@@ -707,6 +710,7 @@ module Aws::ECS
|
|
|
707
710
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.network_configuration.security_groups #=> Array
|
|
708
711
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.network_configuration.security_groups[0] #=> String
|
|
709
712
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.storage_configuration.storage_size_gi_b #=> Integer
|
|
713
|
+
# resp.capacity_provider.managed_instances_provider.instance_launch_template.local_storage_configuration.use_local_storage #=> Boolean
|
|
710
714
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.monitoring #=> String, one of "BASIC", "DETAILED"
|
|
711
715
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.capacity_option_type #=> String, one of "ON_DEMAND", "SPOT", "RESERVED"
|
|
712
716
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.instance_metadata_tags_propagation #=> Boolean
|
|
@@ -2989,6 +2993,7 @@ module Aws::ECS
|
|
|
2989
2993
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.network_configuration.security_groups #=> Array
|
|
2990
2994
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.network_configuration.security_groups[0] #=> String
|
|
2991
2995
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.storage_configuration.storage_size_gi_b #=> Integer
|
|
2996
|
+
# resp.capacity_provider.managed_instances_provider.instance_launch_template.local_storage_configuration.use_local_storage #=> Boolean
|
|
2992
2997
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.monitoring #=> String, one of "BASIC", "DETAILED"
|
|
2993
2998
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.capacity_option_type #=> String, one of "ON_DEMAND", "SPOT", "RESERVED"
|
|
2994
2999
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.instance_metadata_tags_propagation #=> Boolean
|
|
@@ -4528,6 +4533,7 @@ module Aws::ECS
|
|
|
4528
4533
|
# resp.capacity_providers[0].managed_instances_provider.instance_launch_template.network_configuration.security_groups #=> Array
|
|
4529
4534
|
# resp.capacity_providers[0].managed_instances_provider.instance_launch_template.network_configuration.security_groups[0] #=> String
|
|
4530
4535
|
# resp.capacity_providers[0].managed_instances_provider.instance_launch_template.storage_configuration.storage_size_gi_b #=> Integer
|
|
4536
|
+
# resp.capacity_providers[0].managed_instances_provider.instance_launch_template.local_storage_configuration.use_local_storage #=> Boolean
|
|
4531
4537
|
# resp.capacity_providers[0].managed_instances_provider.instance_launch_template.monitoring #=> String, one of "BASIC", "DETAILED"
|
|
4532
4538
|
# resp.capacity_providers[0].managed_instances_provider.instance_launch_template.capacity_option_type #=> String, one of "ON_DEMAND", "SPOT", "RESERVED"
|
|
4533
4539
|
# resp.capacity_providers[0].managed_instances_provider.instance_launch_template.instance_metadata_tags_propagation #=> Boolean
|
|
@@ -11478,6 +11484,9 @@ module Aws::ECS
|
|
|
11478
11484
|
# storage_size_gi_b: 1,
|
|
11479
11485
|
# },
|
|
11480
11486
|
# instance_metadata_tags_propagation: false,
|
|
11487
|
+
# local_storage_configuration: {
|
|
11488
|
+
# use_local_storage: false,
|
|
11489
|
+
# },
|
|
11481
11490
|
# monitoring: "BASIC", # accepts BASIC, DETAILED
|
|
11482
11491
|
# instance_requirements: {
|
|
11483
11492
|
# v_cpu_count: { # required
|
|
@@ -11565,6 +11574,7 @@ module Aws::ECS
|
|
|
11565
11574
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.network_configuration.security_groups #=> Array
|
|
11566
11575
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.network_configuration.security_groups[0] #=> String
|
|
11567
11576
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.storage_configuration.storage_size_gi_b #=> Integer
|
|
11577
|
+
# resp.capacity_provider.managed_instances_provider.instance_launch_template.local_storage_configuration.use_local_storage #=> Boolean
|
|
11568
11578
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.monitoring #=> String, one of "BASIC", "DETAILED"
|
|
11569
11579
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.capacity_option_type #=> String, one of "ON_DEMAND", "SPOT", "RESERVED"
|
|
11570
11580
|
# resp.capacity_provider.managed_instances_provider.instance_launch_template.instance_metadata_tags_propagation #=> Boolean
|
|
@@ -14068,7 +14078,7 @@ module Aws::ECS
|
|
|
14068
14078
|
tracer: tracer
|
|
14069
14079
|
)
|
|
14070
14080
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
14071
|
-
context[:gem_version] = '1.
|
|
14081
|
+
context[:gem_version] = '1.225.0'
|
|
14072
14082
|
Seahorse::Client::Request.new(handlers, context)
|
|
14073
14083
|
end
|
|
14074
14084
|
|
|
@@ -308,6 +308,7 @@ module Aws::ECS
|
|
|
308
308
|
ManagedDraining = Shapes::StringShape.new(name: 'ManagedDraining')
|
|
309
309
|
ManagedIngressPath = Shapes::StructureShape.new(name: 'ManagedIngressPath')
|
|
310
310
|
ManagedIngressPaths = Shapes::ListShape.new(name: 'ManagedIngressPaths')
|
|
311
|
+
ManagedInstancesLocalStorageConfiguration = Shapes::StructureShape.new(name: 'ManagedInstancesLocalStorageConfiguration')
|
|
311
312
|
ManagedInstancesMonitoringOptions = Shapes::StringShape.new(name: 'ManagedInstancesMonitoringOptions')
|
|
312
313
|
ManagedInstancesNetworkConfiguration = Shapes::StructureShape.new(name: 'ManagedInstancesNetworkConfiguration')
|
|
313
314
|
ManagedInstancesProvider = Shapes::StructureShape.new(name: 'ManagedInstancesProvider')
|
|
@@ -1409,6 +1410,7 @@ module Aws::ECS
|
|
|
1409
1410
|
InstanceLaunchTemplate.add_member(:ec2_instance_profile_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ec2InstanceProfileArn"))
|
|
1410
1411
|
InstanceLaunchTemplate.add_member(:network_configuration, Shapes::ShapeRef.new(shape: ManagedInstancesNetworkConfiguration, required: true, location_name: "networkConfiguration"))
|
|
1411
1412
|
InstanceLaunchTemplate.add_member(:storage_configuration, Shapes::ShapeRef.new(shape: ManagedInstancesStorageConfiguration, location_name: "storageConfiguration"))
|
|
1413
|
+
InstanceLaunchTemplate.add_member(:local_storage_configuration, Shapes::ShapeRef.new(shape: ManagedInstancesLocalStorageConfiguration, location_name: "localStorageConfiguration"))
|
|
1412
1414
|
InstanceLaunchTemplate.add_member(:monitoring, Shapes::ShapeRef.new(shape: ManagedInstancesMonitoringOptions, location_name: "monitoring"))
|
|
1413
1415
|
InstanceLaunchTemplate.add_member(:capacity_option_type, Shapes::ShapeRef.new(shape: CapacityOptionType, location_name: "capacityOptionType"))
|
|
1414
1416
|
InstanceLaunchTemplate.add_member(:instance_metadata_tags_propagation, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "instanceMetadataTagsPropagation"))
|
|
@@ -1421,6 +1423,7 @@ module Aws::ECS
|
|
|
1421
1423
|
InstanceLaunchTemplateUpdate.add_member(:network_configuration, Shapes::ShapeRef.new(shape: ManagedInstancesNetworkConfiguration, location_name: "networkConfiguration"))
|
|
1422
1424
|
InstanceLaunchTemplateUpdate.add_member(:storage_configuration, Shapes::ShapeRef.new(shape: ManagedInstancesStorageConfiguration, location_name: "storageConfiguration"))
|
|
1423
1425
|
InstanceLaunchTemplateUpdate.add_member(:instance_metadata_tags_propagation, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "instanceMetadataTagsPropagation"))
|
|
1426
|
+
InstanceLaunchTemplateUpdate.add_member(:local_storage_configuration, Shapes::ShapeRef.new(shape: ManagedInstancesLocalStorageConfiguration, location_name: "localStorageConfiguration"))
|
|
1424
1427
|
InstanceLaunchTemplateUpdate.add_member(:monitoring, Shapes::ShapeRef.new(shape: ManagedInstancesMonitoringOptions, location_name: "monitoring"))
|
|
1425
1428
|
InstanceLaunchTemplateUpdate.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "instanceRequirements"))
|
|
1426
1429
|
InstanceLaunchTemplateUpdate.add_member(:capacity_reservations, Shapes::ShapeRef.new(shape: CapacityReservationRequest, location_name: "capacityReservations"))
|
|
@@ -1666,6 +1669,9 @@ module Aws::ECS
|
|
|
1666
1669
|
|
|
1667
1670
|
ManagedIngressPaths.member = Shapes::ShapeRef.new(shape: ManagedIngressPath)
|
|
1668
1671
|
|
|
1672
|
+
ManagedInstancesLocalStorageConfiguration.add_member(:use_local_storage, Shapes::ShapeRef.new(shape: Boolean, location_name: "useLocalStorage"))
|
|
1673
|
+
ManagedInstancesLocalStorageConfiguration.struct_class = Types::ManagedInstancesLocalStorageConfiguration
|
|
1674
|
+
|
|
1669
1675
|
ManagedInstancesNetworkConfiguration.add_member(:subnets, Shapes::ShapeRef.new(shape: StringList, location_name: "subnets"))
|
|
1670
1676
|
ManagedInstancesNetworkConfiguration.add_member(:security_groups, Shapes::ShapeRef.new(shape: StringList, location_name: "securityGroups"))
|
|
1671
1677
|
ManagedInstancesNetworkConfiguration.struct_class = Types::ManagedInstancesNetworkConfiguration
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
|
@@ -6996,9 +6996,15 @@ module Aws::ECS
|
|
|
6996
6996
|
#
|
|
6997
6997
|
# @!attribute [rw] storage_configuration
|
|
6998
6998
|
# The storage configuration for Amazon ECS Managed Instances. This
|
|
6999
|
-
# defines the
|
|
6999
|
+
# defines the data volume properties for the instances.
|
|
7000
7000
|
# @return [Types::ManagedInstancesStorageConfiguration]
|
|
7001
7001
|
#
|
|
7002
|
+
# @!attribute [rw] local_storage_configuration
|
|
7003
|
+
# The local storage configuration for Amazon ECS Managed Instances.
|
|
7004
|
+
# This defines how ECS uses instance store volumes available on the
|
|
7005
|
+
# container instance.
|
|
7006
|
+
# @return [Types::ManagedInstancesLocalStorageConfiguration]
|
|
7007
|
+
#
|
|
7002
7008
|
# @!attribute [rw] monitoring
|
|
7003
7009
|
# CloudWatch provides two categories of monitoring: basic monitoring
|
|
7004
7010
|
# and detailed monitoring. By default, your managed instance is
|
|
@@ -7105,6 +7111,7 @@ module Aws::ECS
|
|
|
7105
7111
|
:ec2_instance_profile_arn,
|
|
7106
7112
|
:network_configuration,
|
|
7107
7113
|
:storage_configuration,
|
|
7114
|
+
:local_storage_configuration,
|
|
7108
7115
|
:monitoring,
|
|
7109
7116
|
:capacity_option_type,
|
|
7110
7117
|
:instance_metadata_tags_propagation,
|
|
@@ -7173,6 +7180,12 @@ module Aws::ECS
|
|
|
7173
7180
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS
|
|
7174
7181
|
# @return [Boolean]
|
|
7175
7182
|
#
|
|
7183
|
+
# @!attribute [rw] local_storage_configuration
|
|
7184
|
+
# The updated local storage configuration for Amazon ECS Managed
|
|
7185
|
+
# Instances. Changes to local storage settings apply to new instances
|
|
7186
|
+
# launched after the update.
|
|
7187
|
+
# @return [Types::ManagedInstancesLocalStorageConfiguration]
|
|
7188
|
+
#
|
|
7176
7189
|
# @!attribute [rw] monitoring
|
|
7177
7190
|
# CloudWatch provides two categories of monitoring: basic monitoring
|
|
7178
7191
|
# and detailed monitoring. By default, your managed instance is
|
|
@@ -7207,6 +7220,7 @@ module Aws::ECS
|
|
|
7207
7220
|
:network_configuration,
|
|
7208
7221
|
:storage_configuration,
|
|
7209
7222
|
:instance_metadata_tags_propagation,
|
|
7223
|
+
:local_storage_configuration,
|
|
7210
7224
|
:monitoring,
|
|
7211
7225
|
:instance_requirements,
|
|
7212
7226
|
:capacity_reservations)
|
|
@@ -9206,6 +9220,27 @@ module Aws::ECS
|
|
|
9206
9220
|
include Aws::Structure
|
|
9207
9221
|
end
|
|
9208
9222
|
|
|
9223
|
+
# The local storage configuration for Amazon ECS Managed Instances. This
|
|
9224
|
+
# defines how ECS uses and configures instance store volumes available
|
|
9225
|
+
# on container instance.
|
|
9226
|
+
#
|
|
9227
|
+
# @!attribute [rw] use_local_storage
|
|
9228
|
+
# Use instance store volumes for data storage when available. EBS
|
|
9229
|
+
# volumes are not provisioned for data storage. If the container
|
|
9230
|
+
# instance has multiple instance store volumes, a single data volume
|
|
9231
|
+
# is created. Consider defining instance store requirements using the
|
|
9232
|
+
# `localStorage`, `localStorageTypes` and `totalLocalStorageGB`
|
|
9233
|
+
# properties.
|
|
9234
|
+
# @return [Boolean]
|
|
9235
|
+
#
|
|
9236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ManagedInstancesLocalStorageConfiguration AWS API Documentation
|
|
9237
|
+
#
|
|
9238
|
+
class ManagedInstancesLocalStorageConfiguration < Struct.new(
|
|
9239
|
+
:use_local_storage)
|
|
9240
|
+
SENSITIVE = []
|
|
9241
|
+
include Aws::Structure
|
|
9242
|
+
end
|
|
9243
|
+
|
|
9209
9244
|
# The network configuration for Amazon ECS Managed Instances. This
|
|
9210
9245
|
# specifies the VPC subnets and security groups that instances use for
|
|
9211
9246
|
# network connectivity. Amazon ECS Managed Instances support multiple
|
|
@@ -9298,10 +9333,10 @@ module Aws::ECS
|
|
|
9298
9333
|
end
|
|
9299
9334
|
|
|
9300
9335
|
# The storage configuration for Amazon ECS Managed Instances. This
|
|
9301
|
-
# defines the
|
|
9336
|
+
# defines the data volume configuration for the instances.
|
|
9302
9337
|
#
|
|
9303
9338
|
# @!attribute [rw] storage_size_gi_b
|
|
9304
|
-
# The size of the
|
|
9339
|
+
# The size of the data volume.
|
|
9305
9340
|
# @return [Integer]
|
|
9306
9341
|
#
|
|
9307
9342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ManagedInstancesStorageConfiguration AWS API Documentation
|
data/lib/aws-sdk-ecs.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -110,6 +110,9 @@ module Aws
|
|
|
110
110
|
storage_configuration: {
|
|
111
111
|
storage_size_gi_b: ::Integer?
|
|
112
112
|
}?,
|
|
113
|
+
local_storage_configuration: {
|
|
114
|
+
use_local_storage: bool?
|
|
115
|
+
}?,
|
|
113
116
|
monitoring: ("BASIC" | "DETAILED")?,
|
|
114
117
|
capacity_option_type: ("ON_DEMAND" | "SPOT" | "RESERVED")?,
|
|
115
118
|
instance_metadata_tags_propagation: bool?,
|
|
@@ -1761,6 +1764,9 @@ module Aws
|
|
|
1761
1764
|
storage_size_gi_b: ::Integer?
|
|
1762
1765
|
}?,
|
|
1763
1766
|
instance_metadata_tags_propagation: bool?,
|
|
1767
|
+
local_storage_configuration: {
|
|
1768
|
+
use_local_storage: bool?
|
|
1769
|
+
}?,
|
|
1764
1770
|
monitoring: ("BASIC" | "DETAILED")?,
|
|
1765
1771
|
instance_requirements: {
|
|
1766
1772
|
v_cpu_count: {
|
data/sig/types.rbs
CHANGED
|
@@ -1023,6 +1023,7 @@ module Aws::ECS
|
|
|
1023
1023
|
attr_accessor ec2_instance_profile_arn: ::String
|
|
1024
1024
|
attr_accessor network_configuration: Types::ManagedInstancesNetworkConfiguration
|
|
1025
1025
|
attr_accessor storage_configuration: Types::ManagedInstancesStorageConfiguration
|
|
1026
|
+
attr_accessor local_storage_configuration: Types::ManagedInstancesLocalStorageConfiguration
|
|
1026
1027
|
attr_accessor monitoring: ("BASIC" | "DETAILED")
|
|
1027
1028
|
attr_accessor capacity_option_type: ("ON_DEMAND" | "SPOT" | "RESERVED")
|
|
1028
1029
|
attr_accessor instance_metadata_tags_propagation: bool
|
|
@@ -1037,6 +1038,7 @@ module Aws::ECS
|
|
|
1037
1038
|
attr_accessor network_configuration: Types::ManagedInstancesNetworkConfiguration
|
|
1038
1039
|
attr_accessor storage_configuration: Types::ManagedInstancesStorageConfiguration
|
|
1039
1040
|
attr_accessor instance_metadata_tags_propagation: bool
|
|
1041
|
+
attr_accessor local_storage_configuration: Types::ManagedInstancesLocalStorageConfiguration
|
|
1040
1042
|
attr_accessor monitoring: ("BASIC" | "DETAILED")
|
|
1041
1043
|
attr_accessor instance_requirements: Types::InstanceRequirementsRequest
|
|
1042
1044
|
attr_accessor capacity_reservations: Types::CapacityReservationRequest
|
|
@@ -1338,6 +1340,11 @@ module Aws::ECS
|
|
|
1338
1340
|
SENSITIVE: []
|
|
1339
1341
|
end
|
|
1340
1342
|
|
|
1343
|
+
class ManagedInstancesLocalStorageConfiguration
|
|
1344
|
+
attr_accessor use_local_storage: bool
|
|
1345
|
+
SENSITIVE: []
|
|
1346
|
+
end
|
|
1347
|
+
|
|
1341
1348
|
class ManagedInstancesNetworkConfiguration
|
|
1342
1349
|
attr_accessor subnets: ::Array[::String]
|
|
1343
1350
|
attr_accessor security_groups: ::Array[::String]
|