aws-sdk-ecs 1.148.0 → 1.149.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cbd70d693acebd4c5c76145c72742336235f47c90d72e4d8c6c4ee5686303c61
4
- data.tar.gz: '0658e24c79b4a89571e8b4de47680c13151416a691872db18caa2f80240e0e3b'
3
+ metadata.gz: e762527938ec0b2463151d79d945076781992c500ddf74b04c2813727bf83ae3
4
+ data.tar.gz: 512727b87361f0573c58971cd159f480a59336fdfe84ba7fa8ec7187754a8a62
5
5
  SHA512:
6
- metadata.gz: 1e8190752545c5e76b662185c42027c73c4b0772bf6f52936a9331d4528d01fefdead3899fe481b286e76cbc81d671c36928957dbc729aee9fe9196740351ee5
7
- data.tar.gz: 842b9bd925dea1367b1d52b03b7df9dafa7f55200a9b3306a7d6ad264fa34737ca9132f3419a3f7990876f35f5ded9cb5494bb7bd04beb11e59d1cb4f52134bd
6
+ metadata.gz: 6f7911ee8aeefbbaf947082f86575ff00031a9e8b6e4f76830c24276b06acb7f3f08d4672780373e869893d44963024165e0f46dac8d8d57d3958840dfe10929
7
+ data.tar.gz: af72fac83835225baabf35a95e67b83d63562965270a15dffbe9b04c51890731f459f716068e78d3b802eabe74b142d7482da2b81867d3cdce601ead1d941121
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.149.0 (2024-06-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.148.0 (2024-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.148.0
1
+ 1.149.0
@@ -89,6 +89,11 @@ module Aws::ECS
89
89
 
90
90
  # @overload initialize(options)
91
91
  # @param [Hash] options
92
+ #
93
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
94
+ # A list of plugins to apply to the client. Each plugin is either a
95
+ # class name or an instance of a plugin class.
96
+ #
92
97
  # @option options [required, Aws::CredentialProvider] :credentials
93
98
  # Your AWS credentials. This can be an instance of any one of the
94
99
  # following classes:
@@ -209,7 +214,6 @@ module Aws::ECS
209
214
  # 'https://example.com'
210
215
  # 'http://example.com:123'
211
216
  #
212
- #
213
217
  # @option options [Integer] :endpoint_cache_max_entries (1000)
214
218
  # Used for the maximum size limit of the LRU cache storing endpoints data
215
219
  # for endpoint discovery enabled operations. Defaults to 1000.
@@ -298,7 +302,6 @@ module Aws::ECS
298
302
  # throttling. This is a provisional mode that may change behavior
299
303
  # in the future.
300
304
  #
301
- #
302
305
  # @option options [String] :sdk_ua_app_id
303
306
  # A unique and opaque application ID that is appended to the
304
307
  # User-Agent header as app/sdk_ua_app_id. It should have a
@@ -712,6 +715,10 @@ module Aws::ECS
712
715
  # s3_key_prefix: "String",
713
716
  # },
714
717
  # },
718
+ # managed_storage_configuration: {
719
+ # kms_key_id: "String",
720
+ # fargate_ephemeral_storage_kms_key_id: "String",
721
+ # },
715
722
  # },
716
723
  # capacity_providers: ["String"],
717
724
  # default_capacity_provider_strategy: [
@@ -737,6 +744,8 @@ module Aws::ECS
737
744
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_bucket_name #=> String
738
745
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_encryption_enabled #=> Boolean
739
746
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_key_prefix #=> String
747
+ # resp.cluster.configuration.managed_storage_configuration.kms_key_id #=> String
748
+ # resp.cluster.configuration.managed_storage_configuration.fargate_ephemeral_storage_kms_key_id #=> String
740
749
  # resp.cluster.status #=> String
741
750
  # resp.cluster.registered_container_instances_count #=> Integer
742
751
  # resp.cluster.running_tasks_count #=> Integer
@@ -1619,6 +1628,7 @@ module Aws::ECS
1619
1628
  # resp.service.task_sets[0].tags #=> Array
1620
1629
  # resp.service.task_sets[0].tags[0].key #=> String
1621
1630
  # resp.service.task_sets[0].tags[0].value #=> String
1631
+ # resp.service.task_sets[0].fargate_ephemeral_storage.kms_key_id #=> String
1622
1632
  # resp.service.deployments #=> Array
1623
1633
  # resp.service.deployments[0].id #=> String
1624
1634
  # resp.service.deployments[0].status #=> String
@@ -1683,6 +1693,7 @@ module Aws::ECS
1683
1693
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.tag_specifications[0].propagate_tags #=> String, one of "TASK_DEFINITION", "SERVICE", "NONE"
1684
1694
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.role_arn #=> String
1685
1695
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.filesystem_type #=> String, one of "ext3", "ext4", "xfs"
1696
+ # resp.service.deployments[0].fargate_ephemeral_storage.kms_key_id #=> String
1686
1697
  # resp.service.role_arn #=> String
1687
1698
  # resp.service.events #=> Array
1688
1699
  # resp.service.events[0].id #=> String
@@ -1960,6 +1971,7 @@ module Aws::ECS
1960
1971
  # resp.task_set.tags #=> Array
1961
1972
  # resp.task_set.tags[0].key #=> String
1962
1973
  # resp.task_set.tags[0].value #=> String
1974
+ # resp.task_set.fargate_ephemeral_storage.kms_key_id #=> String
1963
1975
  #
1964
1976
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateTaskSet AWS API Documentation
1965
1977
  #
@@ -2223,6 +2235,8 @@ module Aws::ECS
2223
2235
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_bucket_name #=> String
2224
2236
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_encryption_enabled #=> Boolean
2225
2237
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_key_prefix #=> String
2238
+ # resp.cluster.configuration.managed_storage_configuration.kms_key_id #=> String
2239
+ # resp.cluster.configuration.managed_storage_configuration.fargate_ephemeral_storage_kms_key_id #=> String
2226
2240
  # resp.cluster.status #=> String
2227
2241
  # resp.cluster.registered_container_instances_count #=> Integer
2228
2242
  # resp.cluster.running_tasks_count #=> Integer
@@ -2402,6 +2416,7 @@ module Aws::ECS
2402
2416
  # resp.service.task_sets[0].tags #=> Array
2403
2417
  # resp.service.task_sets[0].tags[0].key #=> String
2404
2418
  # resp.service.task_sets[0].tags[0].value #=> String
2419
+ # resp.service.task_sets[0].fargate_ephemeral_storage.kms_key_id #=> String
2405
2420
  # resp.service.deployments #=> Array
2406
2421
  # resp.service.deployments[0].id #=> String
2407
2422
  # resp.service.deployments[0].status #=> String
@@ -2466,6 +2481,7 @@ module Aws::ECS
2466
2481
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.tag_specifications[0].propagate_tags #=> String, one of "TASK_DEFINITION", "SERVICE", "NONE"
2467
2482
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.role_arn #=> String
2468
2483
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.filesystem_type #=> String, one of "ext3", "ext4", "xfs"
2484
+ # resp.service.deployments[0].fargate_ephemeral_storage.kms_key_id #=> String
2469
2485
  # resp.service.role_arn #=> String
2470
2486
  # resp.service.events #=> Array
2471
2487
  # resp.service.events[0].id #=> String
@@ -2816,6 +2832,7 @@ module Aws::ECS
2816
2832
  # resp.task_set.tags #=> Array
2817
2833
  # resp.task_set.tags[0].key #=> String
2818
2834
  # resp.task_set.tags[0].value #=> String
2835
+ # resp.task_set.fargate_ephemeral_storage.kms_key_id #=> String
2819
2836
  #
2820
2837
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeleteTaskSet AWS API Documentation
2821
2838
  #
@@ -3347,6 +3364,8 @@ module Aws::ECS
3347
3364
  # resp.clusters[0].configuration.execute_command_configuration.log_configuration.s3_bucket_name #=> String
3348
3365
  # resp.clusters[0].configuration.execute_command_configuration.log_configuration.s3_encryption_enabled #=> Boolean
3349
3366
  # resp.clusters[0].configuration.execute_command_configuration.log_configuration.s3_key_prefix #=> String
3367
+ # resp.clusters[0].configuration.managed_storage_configuration.kms_key_id #=> String
3368
+ # resp.clusters[0].configuration.managed_storage_configuration.fargate_ephemeral_storage_kms_key_id #=> String
3350
3369
  # resp.clusters[0].status #=> String
3351
3370
  # resp.clusters[0].registered_container_instances_count #=> Integer
3352
3371
  # resp.clusters[0].running_tasks_count #=> Integer
@@ -3746,6 +3765,7 @@ module Aws::ECS
3746
3765
  # resp.services[0].task_sets[0].tags #=> Array
3747
3766
  # resp.services[0].task_sets[0].tags[0].key #=> String
3748
3767
  # resp.services[0].task_sets[0].tags[0].value #=> String
3768
+ # resp.services[0].task_sets[0].fargate_ephemeral_storage.kms_key_id #=> String
3749
3769
  # resp.services[0].deployments #=> Array
3750
3770
  # resp.services[0].deployments[0].id #=> String
3751
3771
  # resp.services[0].deployments[0].status #=> String
@@ -3810,6 +3830,7 @@ module Aws::ECS
3810
3830
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.tag_specifications[0].propagate_tags #=> String, one of "TASK_DEFINITION", "SERVICE", "NONE"
3811
3831
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.role_arn #=> String
3812
3832
  # resp.services[0].deployments[0].volume_configurations[0].managed_ebs_volume.filesystem_type #=> String, one of "ext3", "ext4", "xfs"
3833
+ # resp.services[0].deployments[0].fargate_ephemeral_storage.kms_key_id #=> String
3813
3834
  # resp.services[0].role_arn #=> String
3814
3835
  # resp.services[0].events #=> Array
3815
3836
  # resp.services[0].events[0].id #=> String
@@ -4215,6 +4236,7 @@ module Aws::ECS
4215
4236
  # resp.task_sets[0].tags #=> Array
4216
4237
  # resp.task_sets[0].tags[0].key #=> String
4217
4238
  # resp.task_sets[0].tags[0].value #=> String
4239
+ # resp.task_sets[0].fargate_ephemeral_storage.kms_key_id #=> String
4218
4240
  # resp.failures #=> Array
4219
4241
  # resp.failures[0].arn #=> String
4220
4242
  # resp.failures[0].reason #=> String
@@ -4424,6 +4446,8 @@ module Aws::ECS
4424
4446
  # resp.tasks[0].task_definition_arn #=> String
4425
4447
  # resp.tasks[0].version #=> Integer
4426
4448
  # resp.tasks[0].ephemeral_storage.size_in_gi_b #=> Integer
4449
+ # resp.tasks[0].fargate_ephemeral_storage.size_in_gi_b #=> Integer
4450
+ # resp.tasks[0].fargate_ephemeral_storage.kms_key_id #=> String
4427
4451
  # resp.failures #=> Array
4428
4452
  # resp.failures[0].arn #=> String
4429
4453
  # resp.failures[0].reason #=> String
@@ -6135,6 +6159,8 @@ module Aws::ECS
6135
6159
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_bucket_name #=> String
6136
6160
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_encryption_enabled #=> Boolean
6137
6161
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_key_prefix #=> String
6162
+ # resp.cluster.configuration.managed_storage_configuration.kms_key_id #=> String
6163
+ # resp.cluster.configuration.managed_storage_configuration.fargate_ephemeral_storage_kms_key_id #=> String
6138
6164
  # resp.cluster.status #=> String
6139
6165
  # resp.cluster.registered_container_instances_count #=> Integer
6140
6166
  # resp.cluster.running_tasks_count #=> Integer
@@ -6729,9 +6755,6 @@ module Aws::ECS
6729
6755
  # The operating system that your tasks definitions run on. A platform
6730
6756
  # family is specified only for tasks using the Fargate launch type.
6731
6757
  #
6732
- # When you specify a task definition in a service, this value must match
6733
- # the `runtimePlatform` value of the service.
6734
- #
6735
6758
  # @return [Types::RegisterTaskDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6736
6759
  #
6737
6760
  # * {Types::RegisterTaskDefinitionResponse#task_definition #task_definition} => Types::TaskDefinition
@@ -7772,6 +7795,8 @@ module Aws::ECS
7772
7795
  # resp.tasks[0].task_definition_arn #=> String
7773
7796
  # resp.tasks[0].version #=> Integer
7774
7797
  # resp.tasks[0].ephemeral_storage.size_in_gi_b #=> Integer
7798
+ # resp.tasks[0].fargate_ephemeral_storage.size_in_gi_b #=> Integer
7799
+ # resp.tasks[0].fargate_ephemeral_storage.kms_key_id #=> String
7775
7800
  # resp.failures #=> Array
7776
7801
  # resp.failures[0].arn #=> String
7777
7802
  # resp.failures[0].reason #=> String
@@ -8145,6 +8170,8 @@ module Aws::ECS
8145
8170
  # resp.tasks[0].task_definition_arn #=> String
8146
8171
  # resp.tasks[0].version #=> Integer
8147
8172
  # resp.tasks[0].ephemeral_storage.size_in_gi_b #=> Integer
8173
+ # resp.tasks[0].fargate_ephemeral_storage.size_in_gi_b #=> Integer
8174
+ # resp.tasks[0].fargate_ephemeral_storage.kms_key_id #=> String
8148
8175
  # resp.failures #=> Array
8149
8176
  # resp.failures[0].arn #=> String
8150
8177
  # resp.failures[0].reason #=> String
@@ -8169,16 +8196,22 @@ module Aws::ECS
8169
8196
  # the container handles the `SIGTERM` value gracefully and exits within
8170
8197
  # 30 seconds from receiving it, no `SIGKILL` value is sent.
8171
8198
  #
8199
+ # For Windows containers, POSIX signals do not work and runtime stops
8200
+ # the container by sending a `CTRL_SHUTDOWN_EVENT`. For more
8201
+ # information, see [Unable to react to graceful shutdown of (Windows)
8202
+ # container #25982][1] on GitHub.
8203
+ #
8172
8204
  # <note markdown="1"> The default 30-second timeout can be configured on the Amazon ECS
8173
8205
  # container agent with the `ECS_CONTAINER_STOP_TIMEOUT` variable. For
8174
- # more information, see [Amazon ECS Container Agent Configuration][1] in
8206
+ # more information, see [Amazon ECS Container Agent Configuration][2] in
8175
8207
  # the *Amazon Elastic Container Service Developer Guide*.
8176
8208
  #
8177
8209
  # </note>
8178
8210
  #
8179
8211
  #
8180
8212
  #
8181
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
8213
+ # [1]: https://github.com/moby/moby/issues/25982
8214
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
8182
8215
  #
8183
8216
  # @option params [String] :cluster
8184
8217
  # The short name or full Amazon Resource Name (ARN) of the cluster that
@@ -8312,6 +8345,8 @@ module Aws::ECS
8312
8345
  # resp.task.task_definition_arn #=> String
8313
8346
  # resp.task.version #=> Integer
8314
8347
  # resp.task.ephemeral_storage.size_in_gi_b #=> Integer
8348
+ # resp.task.fargate_ephemeral_storage.size_in_gi_b #=> Integer
8349
+ # resp.task.fargate_ephemeral_storage.kms_key_id #=> String
8315
8350
  #
8316
8351
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/StopTask AWS API Documentation
8317
8352
  #
@@ -8779,6 +8814,10 @@ module Aws::ECS
8779
8814
  # s3_key_prefix: "String",
8780
8815
  # },
8781
8816
  # },
8817
+ # managed_storage_configuration: {
8818
+ # kms_key_id: "String",
8819
+ # fargate_ephemeral_storage_kms_key_id: "String",
8820
+ # },
8782
8821
  # },
8783
8822
  # service_connect_defaults: {
8784
8823
  # namespace: "String", # required
@@ -8796,6 +8835,8 @@ module Aws::ECS
8796
8835
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_bucket_name #=> String
8797
8836
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_encryption_enabled #=> Boolean
8798
8837
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_key_prefix #=> String
8838
+ # resp.cluster.configuration.managed_storage_configuration.kms_key_id #=> String
8839
+ # resp.cluster.configuration.managed_storage_configuration.fargate_ephemeral_storage_kms_key_id #=> String
8799
8840
  # resp.cluster.status #=> String
8800
8841
  # resp.cluster.registered_container_instances_count #=> Integer
8801
8842
  # resp.cluster.running_tasks_count #=> Integer
@@ -8880,6 +8921,8 @@ module Aws::ECS
8880
8921
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_bucket_name #=> String
8881
8922
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_encryption_enabled #=> Boolean
8882
8923
  # resp.cluster.configuration.execute_command_configuration.log_configuration.s3_key_prefix #=> String
8924
+ # resp.cluster.configuration.managed_storage_configuration.kms_key_id #=> String
8925
+ # resp.cluster.configuration.managed_storage_configuration.fargate_ephemeral_storage_kms_key_id #=> String
8883
8926
  # resp.cluster.status #=> String
8884
8927
  # resp.cluster.registered_container_instances_count #=> Integer
8885
8928
  # resp.cluster.running_tasks_count #=> Integer
@@ -9808,6 +9851,7 @@ module Aws::ECS
9808
9851
  # resp.service.task_sets[0].tags #=> Array
9809
9852
  # resp.service.task_sets[0].tags[0].key #=> String
9810
9853
  # resp.service.task_sets[0].tags[0].value #=> String
9854
+ # resp.service.task_sets[0].fargate_ephemeral_storage.kms_key_id #=> String
9811
9855
  # resp.service.deployments #=> Array
9812
9856
  # resp.service.deployments[0].id #=> String
9813
9857
  # resp.service.deployments[0].status #=> String
@@ -9872,6 +9916,7 @@ module Aws::ECS
9872
9916
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.tag_specifications[0].propagate_tags #=> String, one of "TASK_DEFINITION", "SERVICE", "NONE"
9873
9917
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.role_arn #=> String
9874
9918
  # resp.service.deployments[0].volume_configurations[0].managed_ebs_volume.filesystem_type #=> String, one of "ext3", "ext4", "xfs"
9919
+ # resp.service.deployments[0].fargate_ephemeral_storage.kms_key_id #=> String
9875
9920
  # resp.service.role_arn #=> String
9876
9921
  # resp.service.events #=> Array
9877
9922
  # resp.service.events[0].id #=> String
@@ -9988,6 +10033,7 @@ module Aws::ECS
9988
10033
  # resp.task_set.tags #=> Array
9989
10034
  # resp.task_set.tags[0].key #=> String
9990
10035
  # resp.task_set.tags[0].value #=> String
10036
+ # resp.task_set.fargate_ephemeral_storage.kms_key_id #=> String
9991
10037
  #
9992
10038
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateServicePrimaryTaskSet AWS API Documentation
9993
10039
  #
@@ -10255,6 +10301,7 @@ module Aws::ECS
10255
10301
  # resp.task_set.tags #=> Array
10256
10302
  # resp.task_set.tags[0].key #=> String
10257
10303
  # resp.task_set.tags[0].value #=> String
10304
+ # resp.task_set.fargate_ephemeral_storage.kms_key_id #=> String
10258
10305
  #
10259
10306
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateTaskSet AWS API Documentation
10260
10307
  #
@@ -10278,7 +10325,7 @@ module Aws::ECS
10278
10325
  params: params,
10279
10326
  config: config)
10280
10327
  context[:gem_name] = 'aws-sdk-ecs'
10281
- context[:gem_version] = '1.148.0'
10328
+ context[:gem_version] = '1.149.0'
10282
10329
  Seahorse::Client::Request.new(handlers, context)
10283
10330
  end
10284
10331
 
@@ -107,6 +107,7 @@ module Aws::ECS
107
107
  DeploymentConfiguration = Shapes::StructureShape.new(name: 'DeploymentConfiguration')
108
108
  DeploymentController = Shapes::StructureShape.new(name: 'DeploymentController')
109
109
  DeploymentControllerType = Shapes::StringShape.new(name: 'DeploymentControllerType')
110
+ DeploymentEphemeralStorage = Shapes::StructureShape.new(name: 'DeploymentEphemeralStorage')
110
111
  DeploymentRolloutState = Shapes::StringShape.new(name: 'DeploymentRolloutState')
111
112
  Deployments = Shapes::ListShape.new(name: 'Deployments')
112
113
  DeregisterContainerInstanceRequest = Shapes::StructureShape.new(name: 'DeregisterContainerInstanceRequest')
@@ -228,6 +229,7 @@ module Aws::ECS
228
229
  ManagedScalingStatus = Shapes::StringShape.new(name: 'ManagedScalingStatus')
229
230
  ManagedScalingStepSize = Shapes::IntegerShape.new(name: 'ManagedScalingStepSize')
230
231
  ManagedScalingTargetCapacity = Shapes::IntegerShape.new(name: 'ManagedScalingTargetCapacity')
232
+ ManagedStorageConfiguration = Shapes::StructureShape.new(name: 'ManagedStorageConfiguration')
231
233
  ManagedTerminationProtection = Shapes::StringShape.new(name: 'ManagedTerminationProtection')
232
234
  MissingVersionException = Shapes::StructureShape.new(name: 'MissingVersionException')
233
235
  MountPoint = Shapes::StructureShape.new(name: 'MountPoint')
@@ -360,6 +362,7 @@ module Aws::ECS
360
362
  TaskDefinitionPlacementConstraintType = Shapes::StringShape.new(name: 'TaskDefinitionPlacementConstraintType')
361
363
  TaskDefinitionPlacementConstraints = Shapes::ListShape.new(name: 'TaskDefinitionPlacementConstraints')
362
364
  TaskDefinitionStatus = Shapes::StringShape.new(name: 'TaskDefinitionStatus')
365
+ TaskEphemeralStorage = Shapes::StructureShape.new(name: 'TaskEphemeralStorage')
363
366
  TaskField = Shapes::StringShape.new(name: 'TaskField')
364
367
  TaskFieldList = Shapes::ListShape.new(name: 'TaskFieldList')
365
368
  TaskFilesystemType = Shapes::StringShape.new(name: 'TaskFilesystemType')
@@ -499,6 +502,7 @@ module Aws::ECS
499
502
  Cluster.struct_class = Types::Cluster
500
503
 
501
504
  ClusterConfiguration.add_member(:execute_command_configuration, Shapes::ShapeRef.new(shape: ExecuteCommandConfiguration, location_name: "executeCommandConfiguration"))
505
+ ClusterConfiguration.add_member(:managed_storage_configuration, Shapes::ShapeRef.new(shape: ManagedStorageConfiguration, location_name: "managedStorageConfiguration"))
502
506
  ClusterConfiguration.struct_class = Types::ClusterConfiguration
503
507
 
504
508
  ClusterContainsContainerInstancesException.struct_class = Types::ClusterContainsContainerInstancesException
@@ -788,6 +792,7 @@ module Aws::ECS
788
792
  Deployment.add_member(:service_connect_configuration, Shapes::ShapeRef.new(shape: ServiceConnectConfiguration, location_name: "serviceConnectConfiguration"))
789
793
  Deployment.add_member(:service_connect_resources, Shapes::ShapeRef.new(shape: ServiceConnectServiceResourceList, location_name: "serviceConnectResources"))
790
794
  Deployment.add_member(:volume_configurations, Shapes::ShapeRef.new(shape: ServiceVolumeConfigurations, location_name: "volumeConfigurations"))
795
+ Deployment.add_member(:fargate_ephemeral_storage, Shapes::ShapeRef.new(shape: DeploymentEphemeralStorage, location_name: "fargateEphemeralStorage"))
791
796
  Deployment.struct_class = Types::Deployment
792
797
 
793
798
  DeploymentAlarms.add_member(:alarm_names, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "alarmNames"))
@@ -808,6 +813,9 @@ module Aws::ECS
808
813
  DeploymentController.add_member(:type, Shapes::ShapeRef.new(shape: DeploymentControllerType, required: true, location_name: "type"))
809
814
  DeploymentController.struct_class = Types::DeploymentController
810
815
 
816
+ DeploymentEphemeralStorage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
817
+ DeploymentEphemeralStorage.struct_class = Types::DeploymentEphemeralStorage
818
+
811
819
  Deployments.member = Shapes::ShapeRef.new(shape: Deployment)
812
820
 
813
821
  DeregisterContainerInstanceRequest.add_member(:cluster, Shapes::ShapeRef.new(shape: String, location_name: "cluster"))
@@ -1206,6 +1214,10 @@ module Aws::ECS
1206
1214
  ManagedScaling.add_member(:instance_warmup_period, Shapes::ShapeRef.new(shape: ManagedScalingInstanceWarmupPeriod, location_name: "instanceWarmupPeriod"))
1207
1215
  ManagedScaling.struct_class = Types::ManagedScaling
1208
1216
 
1217
+ ManagedStorageConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
1218
+ ManagedStorageConfiguration.add_member(:fargate_ephemeral_storage_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "fargateEphemeralStorageKmsKeyId"))
1219
+ ManagedStorageConfiguration.struct_class = Types::ManagedStorageConfiguration
1220
+
1209
1221
  MissingVersionException.struct_class = Types::MissingVersionException
1210
1222
 
1211
1223
  MountPoint.add_member(:source_volume, Shapes::ShapeRef.new(shape: String, location_name: "sourceVolume"))
@@ -1673,6 +1685,7 @@ module Aws::ECS
1673
1685
  Task.add_member(:task_definition_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskDefinitionArn"))
1674
1686
  Task.add_member(:version, Shapes::ShapeRef.new(shape: Long, location_name: "version"))
1675
1687
  Task.add_member(:ephemeral_storage, Shapes::ShapeRef.new(shape: EphemeralStorage, location_name: "ephemeralStorage"))
1688
+ Task.add_member(:fargate_ephemeral_storage, Shapes::ShapeRef.new(shape: TaskEphemeralStorage, location_name: "fargateEphemeralStorage"))
1676
1689
  Task.struct_class = Types::Task
1677
1690
 
1678
1691
  TaskDefinition.add_member(:task_definition_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskDefinitionArn"))
@@ -1711,6 +1724,10 @@ module Aws::ECS
1711
1724
 
1712
1725
  TaskDefinitionPlacementConstraints.member = Shapes::ShapeRef.new(shape: TaskDefinitionPlacementConstraint)
1713
1726
 
1727
+ TaskEphemeralStorage.add_member(:size_in_gi_b, Shapes::ShapeRef.new(shape: Integer, location_name: "sizeInGiB"))
1728
+ TaskEphemeralStorage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
1729
+ TaskEphemeralStorage.struct_class = Types::TaskEphemeralStorage
1730
+
1714
1731
  TaskFieldList.member = Shapes::ShapeRef.new(shape: TaskField)
1715
1732
 
1716
1733
  TaskManagedEBSVolumeConfiguration.add_member(:encrypted, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "encrypted"))
@@ -1762,6 +1779,7 @@ module Aws::ECS
1762
1779
  TaskSet.add_member(:stability_status, Shapes::ShapeRef.new(shape: StabilityStatus, location_name: "stabilityStatus"))
1763
1780
  TaskSet.add_member(:stability_status_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "stabilityStatusAt"))
1764
1781
  TaskSet.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
1782
+ TaskSet.add_member(:fargate_ephemeral_storage, Shapes::ShapeRef.new(shape: DeploymentEphemeralStorage, location_name: "fargateEphemeralStorage"))
1765
1783
  TaskSet.struct_class = Types::TaskSet
1766
1784
 
1767
1785
  TaskSetFieldList.member = Shapes::ShapeRef.new(shape: TaskSetField)
@@ -1925,9 +1943,11 @@ module Aws::ECS
1925
1943
 
1926
1944
  api.metadata = {
1927
1945
  "apiVersion" => "2014-11-13",
1946
+ "auth" => ["aws.auth#sigv4"],
1928
1947
  "endpointPrefix" => "ecs",
1929
1948
  "jsonVersion" => "1.1",
1930
1949
  "protocol" => "json",
1950
+ "protocols" => ["json"],
1931
1951
  "serviceAbbreviation" => "Amazon ECS",
1932
1952
  "serviceFullName" => "Amazon EC2 Container Service",
1933
1953
  "serviceId" => "ECS",
@@ -396,6 +396,13 @@ module Aws::ECS
396
396
  # available to all accounts and only need to be associated with a
397
397
  # cluster to be used in a capacity provider strategy.
398
398
  #
399
+ # With `FARGATE_SPOT`, you can run interruption tolerant tasks at a rate
400
+ # that's discounted compared to the `FARGATE` price. `FARGATE_SPOT`
401
+ # runs tasks on spare compute capacity. When Amazon Web Services needs
402
+ # the capacity back, your tasks are interrupted with a two-minute
403
+ # warning. `FARGATE_SPOT` only supports Linux tasks with the X86\_64
404
+ # architecture on platform version 1.3.0 or later.
405
+ #
399
406
  # A capacity provider strategy may contain a maximum of 6 capacity
400
407
  # providers.
401
408
  #
@@ -674,16 +681,21 @@ module Aws::ECS
674
681
  include Aws::Structure
675
682
  end
676
683
 
677
- # The execute command configuration for the cluster.
684
+ # The execute command and managed storage configuration for the cluster.
678
685
  #
679
686
  # @!attribute [rw] execute_command_configuration
680
687
  # The details of the execute command configuration.
681
688
  # @return [Types::ExecuteCommandConfiguration]
682
689
  #
690
+ # @!attribute [rw] managed_storage_configuration
691
+ # The details of the managed storage configuration.
692
+ # @return [Types::ManagedStorageConfiguration]
693
+ #
683
694
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ClusterConfiguration AWS API Documentation
684
695
  #
685
696
  class ClusterConfiguration < Struct.new(
686
- :execute_command_configuration)
697
+ :execute_command_configuration,
698
+ :managed_storage_configuration)
687
699
  SENSITIVE = []
688
700
  include Aws::Structure
689
701
  end
@@ -3628,6 +3640,10 @@ module Aws::ECS
3628
3640
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ServiceManagedEBSVolumeConfiguration.html
3629
3641
  # @return [Array<Types::ServiceVolumeConfiguration>]
3630
3642
  #
3643
+ # @!attribute [rw] fargate_ephemeral_storage
3644
+ # The Fargate ephemeral storage settings for the deployment.
3645
+ # @return [Types::DeploymentEphemeralStorage]
3646
+ #
3631
3647
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Deployment AWS API Documentation
3632
3648
  #
3633
3649
  class Deployment < Struct.new(
@@ -3649,7 +3665,8 @@ module Aws::ECS
3649
3665
  :rollout_state_reason,
3650
3666
  :service_connect_configuration,
3651
3667
  :service_connect_resources,
3652
- :volume_configurations)
3668
+ :volume_configurations,
3669
+ :fargate_ephemeral_storage)
3653
3670
  SENSITIVE = []
3654
3671
  include Aws::Structure
3655
3672
  end
@@ -3914,6 +3931,21 @@ module Aws::ECS
3914
3931
  include Aws::Structure
3915
3932
  end
3916
3933
 
3934
+ # The amount of ephemeral storage to allocate for the deployment.
3935
+ #
3936
+ # @!attribute [rw] kms_key_id
3937
+ # Specify an Key Management Service key ID to encrypt the ephemeral
3938
+ # storage for deployment.
3939
+ # @return [String]
3940
+ #
3941
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeploymentEphemeralStorage AWS API Documentation
3942
+ #
3943
+ class DeploymentEphemeralStorage < Struct.new(
3944
+ :kms_key_id)
3945
+ SENSITIVE = []
3946
+ include Aws::Structure
3947
+ end
3948
+
3917
3949
  # @!attribute [rw] cluster
3918
3950
  # The short name or full Amazon Resource Name (ARN) of the cluster
3919
3951
  # that hosts the container instance to deregister. If you do not
@@ -5206,14 +5238,17 @@ module Aws::ECS
5206
5238
  #
5207
5239
  # The following are notes about container health check support:
5208
5240
  #
5209
- # * When the Amazon ECS agent cannot connect to the Amazon ECS service,
5210
- # the service reports the container as `UNHEALTHY`.
5211
- #
5212
- # * The health check statuses are the "last heard from" response from
5213
- # the Amazon ECS agent. There are no assumptions made about the status
5214
- # of the container health checks.
5215
- #
5216
- # * Container health checks require version 1.17.0 or greater of the
5241
+ # * If the Amazon ECS container agent becomes disconnected from the
5242
+ # Amazon ECS service, this won't cause a container to transition to
5243
+ # an `UNHEALTHY` status. This is by design, to ensure that containers
5244
+ # remain running during agent restarts or temporary unavailability.
5245
+ # The health check status is the "last heard from" response from the
5246
+ # Amazon ECS agent, so if the container was considered `HEALTHY` prior
5247
+ # to the disconnect, that status will remain until the agent
5248
+ # reconnects and another health check occurs. There are no assumptions
5249
+ # made about the status of the container health checks.
5250
+ #
5251
+ # * Container health checks require version `1.17.0` or greater of the
5217
5252
  # Amazon ECS container agent. For more information, see [Updating the
5218
5253
  # Amazon ECS container agent][2].
5219
5254
  #
@@ -6766,6 +6801,27 @@ module Aws::ECS
6766
6801
  include Aws::Structure
6767
6802
  end
6768
6803
 
6804
+ # The managed storage configuration for the cluster.
6805
+ #
6806
+ # @!attribute [rw] kms_key_id
6807
+ # Specify a Key Management Service key ID to encrypt the managed
6808
+ # storage.
6809
+ # @return [String]
6810
+ #
6811
+ # @!attribute [rw] fargate_ephemeral_storage_kms_key_id
6812
+ # Specify the Key Management Service key ID for the Fargate ephemeral
6813
+ # storage.
6814
+ # @return [String]
6815
+ #
6816
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ManagedStorageConfiguration AWS API Documentation
6817
+ #
6818
+ class ManagedStorageConfiguration < Struct.new(
6819
+ :kms_key_id,
6820
+ :fargate_ephemeral_storage_kms_key_id)
6821
+ SENSITIVE = []
6822
+ include Aws::Structure
6823
+ end
6824
+
6769
6825
  # Amazon ECS can't determine the current version of the Amazon ECS
6770
6826
  # container agent on the container instance and doesn't have enough
6771
6827
  # information to proceed with an update. This could be because the agent
@@ -8245,9 +8301,6 @@ module Aws::ECS
8245
8301
  # @!attribute [rw] runtime_platform
8246
8302
  # The operating system that your tasks definitions run on. A platform
8247
8303
  # family is specified only for tasks using the Fargate launch type.
8248
- #
8249
- # When you specify a task definition in a service, this value must
8250
- # match the `runtimePlatform` value of the service.
8251
8304
  # @return [Types::RuntimePlatform]
8252
8305
  #
8253
8306
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterTaskDefinitionRequest AWS API Documentation
@@ -8385,13 +8438,13 @@ module Aws::ECS
8385
8438
  # @!attribute [rw] value
8386
8439
  # The value for the specified resource type.
8387
8440
  #
8388
- # If the `GPU` type is used, the value is the number of physical
8389
- # `GPUs` the Amazon ECS container agent reserves for the container.
8390
- # The number of GPUs that's reserved for all containers in a task
8391
- # can't exceed the number of available GPUs on the container instance
8392
- # that the task is launched on.
8441
+ # When the type is `GPU`, the value is the number of physical `GPUs`
8442
+ # the Amazon ECS container agent reserves for the container. The
8443
+ # number of GPUs that's reserved for all containers in a task can't
8444
+ # exceed the number of available GPUs on the container instance that
8445
+ # the task is launched on.
8393
8446
  #
8394
- # If the `InferenceAccelerator` type is used, the `value` matches the
8447
+ # When the type is `InferenceAccelerator`, the `value` matches the
8395
8448
  # `deviceName` for an [InferenceAccelerator][1] specified in a task
8396
8449
  # definition.
8397
8450
  #
@@ -8401,8 +8454,7 @@ module Aws::ECS
8401
8454
  # @return [String]
8402
8455
  #
8403
8456
  # @!attribute [rw] type
8404
- # The type of resource to assign to a container. The supported values
8405
- # are `GPU` or `InferenceAccelerator`.
8457
+ # The type of resource to assign to a container.
8406
8458
  # @return [String]
8407
8459
  #
8408
8460
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ResourceRequirement AWS API Documentation
@@ -9412,8 +9464,7 @@ module Aws::ECS
9412
9464
  include Aws::Structure
9413
9465
  end
9414
9466
 
9415
- # An object that represents the Amazon Web Services Private Certificate
9416
- # Authority certificate.
9467
+ # The certificate root authority that secures your service.
9417
9468
  #
9418
9469
  # @!attribute [rw] aws_pca_authority_arn
9419
9470
  # The ARN of the Amazon Web Services Private Certificate Authority
@@ -9428,7 +9479,8 @@ module Aws::ECS
9428
9479
  include Aws::Structure
9429
9480
  end
9430
9481
 
9431
- # An object that represents the configuration for Service Connect TLS.
9482
+ # The key that encrypts and decrypts your resources for Service Connect
9483
+ # TLS.
9432
9484
  #
9433
9485
  # @!attribute [rw] issuer_certificate_authority
9434
9486
  # The signer certificate authority.
@@ -10725,6 +10777,10 @@ module Aws::ECS
10725
10777
  # The ephemeral storage settings for the task.
10726
10778
  # @return [Types::EphemeralStorage]
10727
10779
  #
10780
+ # @!attribute [rw] fargate_ephemeral_storage
10781
+ # The Fargate ephemeral storage settings for the task.
10782
+ # @return [Types::TaskEphemeralStorage]
10783
+ #
10728
10784
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Task AWS API Documentation
10729
10785
  #
10730
10786
  class Task < Struct.new(
@@ -10763,7 +10819,8 @@ module Aws::ECS
10763
10819
  :task_arn,
10764
10820
  :task_definition_arn,
10765
10821
  :version,
10766
- :ephemeral_storage)
10822
+ :ephemeral_storage,
10823
+ :fargate_ephemeral_storage)
10767
10824
  SENSITIVE = []
10768
10825
  include Aws::Structure
10769
10826
  end
@@ -11232,6 +11289,28 @@ module Aws::ECS
11232
11289
  include Aws::Structure
11233
11290
  end
11234
11291
 
11292
+ # The amount of ephemeral storage to allocate for the task.
11293
+ #
11294
+ # @!attribute [rw] size_in_gi_b
11295
+ # The total amount, in GiB, of the ephemeral storage to set for the
11296
+ # task. The minimum supported value is `20` GiB and the maximum
11297
+ # supported value is
 `200` GiB.
11298
+ # @return [Integer]
11299
+ #
11300
+ # @!attribute [rw] kms_key_id
11301
+ # Specify an Key Management Service key ID to encrypt the ephemeral
11302
+ # storage for the task.
11303
+ # @return [String]
11304
+ #
11305
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/TaskEphemeralStorage AWS API Documentation
11306
+ #
11307
+ class TaskEphemeralStorage < Struct.new(
11308
+ :size_in_gi_b,
11309
+ :kms_key_id)
11310
+ SENSITIVE = []
11311
+ include Aws::Structure
11312
+ end
11313
+
11235
11314
  # The configuration for the Amazon EBS volume that Amazon ECS creates
11236
11315
  # and manages on your behalf. These settings are used to create each
11237
11316
  # Amazon EBS volume, with one volume created for each task.
@@ -11723,6 +11802,10 @@ module Aws::ECS
11723
11802
  # against your tags per resource limit.
11724
11803
  # @return [Array<Types::Tag>]
11725
11804
  #
11805
+ # @!attribute [rw] fargate_ephemeral_storage
11806
+ # The Fargate ephemeral storage settings for the task set.
11807
+ # @return [Types::DeploymentEphemeralStorage]
11808
+ #
11726
11809
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/TaskSet AWS API Documentation
11727
11810
  #
11728
11811
  class TaskSet < Struct.new(
@@ -11749,7 +11832,8 @@ module Aws::ECS
11749
11832
  :scale,
11750
11833
  :stability_status,
11751
11834
  :stability_status_at,
11752
- :tags)
11835
+ :tags,
11836
+ :fargate_ephemeral_storage)
11753
11837
  SENSITIVE = []
11754
11838
  include Aws::Structure
11755
11839
  end
data/lib/aws-sdk-ecs.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ecs/customizations'
53
53
  # @!group service
54
54
  module Aws::ECS
55
55
 
56
- GEM_VERSION = '1.148.0'
56
+ GEM_VERSION = '1.149.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -131,6 +131,10 @@ module Aws
131
131
  s3_encryption_enabled: bool?,
132
132
  s3_key_prefix: ::String?
133
133
  }?
134
+ }?,
135
+ managed_storage_configuration: {
136
+ kms_key_id: ::String?,
137
+ fargate_ephemeral_storage_kms_key_id: ::String?
134
138
  }?
135
139
  },
136
140
  ?capacity_providers: Array[::String],
@@ -1492,6 +1496,10 @@ module Aws
1492
1496
  s3_encryption_enabled: bool?,
1493
1497
  s3_key_prefix: ::String?
1494
1498
  }?
1499
+ }?,
1500
+ managed_storage_configuration: {
1501
+ kms_key_id: ::String?,
1502
+ fargate_ephemeral_storage_kms_key_id: ::String?
1495
1503
  }?
1496
1504
  },
1497
1505
  ?service_connect_defaults: {
data/sig/types.rbs CHANGED
@@ -106,6 +106,7 @@ module Aws::ECS
106
106
 
107
107
  class ClusterConfiguration
108
108
  attr_accessor execute_command_configuration: Types::ExecuteCommandConfiguration
109
+ attr_accessor managed_storage_configuration: Types::ManagedStorageConfiguration
109
110
  SENSITIVE: []
110
111
  end
111
112
 
@@ -445,6 +446,7 @@ module Aws::ECS
445
446
  attr_accessor service_connect_configuration: Types::ServiceConnectConfiguration
446
447
  attr_accessor service_connect_resources: ::Array[Types::ServiceConnectServiceResource]
447
448
  attr_accessor volume_configurations: ::Array[Types::ServiceVolumeConfiguration]
449
+ attr_accessor fargate_ephemeral_storage: Types::DeploymentEphemeralStorage
448
450
  SENSITIVE: []
449
451
  end
450
452
 
@@ -474,6 +476,11 @@ module Aws::ECS
474
476
  SENSITIVE: []
475
477
  end
476
478
 
479
+ class DeploymentEphemeralStorage
480
+ attr_accessor kms_key_id: ::String
481
+ SENSITIVE: []
482
+ end
483
+
477
484
  class DeregisterContainerInstanceRequest
478
485
  attr_accessor cluster: ::String
479
486
  attr_accessor container_instance: ::String
@@ -977,6 +984,12 @@ module Aws::ECS
977
984
  SENSITIVE: []
978
985
  end
979
986
 
987
+ class ManagedStorageConfiguration
988
+ attr_accessor kms_key_id: ::String
989
+ attr_accessor fargate_ephemeral_storage_kms_key_id: ::String
990
+ SENSITIVE: []
991
+ end
992
+
980
993
  class MissingVersionException < Aws::EmptyStructure
981
994
  end
982
995
 
@@ -1512,6 +1525,7 @@ module Aws::ECS
1512
1525
  attr_accessor task_definition_arn: ::String
1513
1526
  attr_accessor version: ::Integer
1514
1527
  attr_accessor ephemeral_storage: Types::EphemeralStorage
1528
+ attr_accessor fargate_ephemeral_storage: Types::TaskEphemeralStorage
1515
1529
  SENSITIVE: []
1516
1530
  end
1517
1531
 
@@ -1549,6 +1563,12 @@ module Aws::ECS
1549
1563
  SENSITIVE: []
1550
1564
  end
1551
1565
 
1566
+ class TaskEphemeralStorage
1567
+ attr_accessor size_in_gi_b: ::Integer
1568
+ attr_accessor kms_key_id: ::String
1569
+ SENSITIVE: []
1570
+ end
1571
+
1552
1572
  class TaskManagedEBSVolumeConfiguration
1553
1573
  attr_accessor encrypted: bool
1554
1574
  attr_accessor kms_key_id: ::String
@@ -1605,6 +1625,7 @@ module Aws::ECS
1605
1625
  attr_accessor stability_status: ("STEADY_STATE" | "STABILIZING")
1606
1626
  attr_accessor stability_status_at: ::Time
1607
1627
  attr_accessor tags: ::Array[Types::Tag]
1628
+ attr_accessor fargate_ephemeral_storage: Types::DeploymentEphemeralStorage
1608
1629
  SENSITIVE: []
1609
1630
  end
1610
1631
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.148.0
4
+ version: 1.149.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-06-05 00:00:00.000000000 Z
11
+ date: 2024-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.197.0
22
+ version: 3.198.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.197.0
32
+ version: 3.198.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement