aws-sdk-ecs 1.173.0 → 1.175.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.
@@ -257,11 +257,34 @@ module Aws::ECS
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -506,6 +529,46 @@ module Aws::ECS
506
529
  #
507
530
  # * {Types::CreateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
508
531
  #
532
+ #
533
+ # @example Example: To create a capacity provider
534
+ #
535
+ # # This example creates a capacity provider that uses the specified Auto Scaling group MyASG and has managed scaling and
536
+ # # manager termination protection enabled.
537
+ #
538
+ # resp = client.create_capacity_provider({
539
+ # name: "MyCapacityProvider",
540
+ # auto_scaling_group_provider: {
541
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-east-1:123456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG",
542
+ # managed_scaling: {
543
+ # status: "ENABLED",
544
+ # target_capacity: 100,
545
+ # },
546
+ # managed_termination_protection: "ENABLED",
547
+ # },
548
+ # })
549
+ #
550
+ # resp.to_h outputs the following:
551
+ # {
552
+ # capacity_provider: {
553
+ # name: "MyCapacityProvider",
554
+ # auto_scaling_group_provider: {
555
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG",
556
+ # managed_scaling: {
557
+ # instance_warmup_period: 300,
558
+ # maximum_scaling_step_size: 10000,
559
+ # minimum_scaling_step_size: 1,
560
+ # status: "ENABLED",
561
+ # target_capacity: 100,
562
+ # },
563
+ # managed_termination_protection: "ENABLED",
564
+ # },
565
+ # capacity_provider_arn: "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider",
566
+ # status: "ACTIVE",
567
+ # tags: [
568
+ # ],
569
+ # },
570
+ # }
571
+ #
509
572
  # @example Request syntax with placeholder values
510
573
  #
511
574
  # resp = client.create_capacity_provider({
@@ -1931,6 +1994,64 @@ module Aws::ECS
1931
1994
  #
1932
1995
  # * {Types::CreateTaskSetResponse#task_set #task_set} => Types::TaskSet
1933
1996
  #
1997
+ #
1998
+ # @example Example: To create a task set
1999
+ #
2000
+ # # This example creates a task set in a service that uses the EXTERNAL deployment controller.
2001
+ #
2002
+ # resp = client.create_task_set({
2003
+ # cluster: "MyCluster",
2004
+ # network_configuration: {
2005
+ # awsvpc_configuration: {
2006
+ # security_groups: [
2007
+ # "sg-12344321",
2008
+ # ],
2009
+ # subnets: [
2010
+ # "subnet-12344321",
2011
+ # ],
2012
+ # },
2013
+ # },
2014
+ # service: "MyService",
2015
+ # task_definition: "MyTaskDefinition:2",
2016
+ # })
2017
+ #
2018
+ # resp.to_h outputs the following:
2019
+ # {
2020
+ # task_set: {
2021
+ # computed_desired_count: 0,
2022
+ # created_at: Time.parse(1557128360.711),
2023
+ # id: "ecs-svc/1234567890123456789",
2024
+ # launch_type: "EC2",
2025
+ # load_balancers: [
2026
+ # ],
2027
+ # network_configuration: {
2028
+ # awsvpc_configuration: {
2029
+ # assign_public_ip: "DISABLED",
2030
+ # security_groups: [
2031
+ # "sg-12344321",
2032
+ # ],
2033
+ # subnets: [
2034
+ # "subnet-12344321",
2035
+ # ],
2036
+ # },
2037
+ # },
2038
+ # pending_count: 0,
2039
+ # running_count: 0,
2040
+ # scale: {
2041
+ # value: 0,
2042
+ # unit: "PERCENT",
2043
+ # },
2044
+ # service_registries: [
2045
+ # ],
2046
+ # stability_status: "STABILIZING",
2047
+ # stability_status_at: Time.parse(1557128360.711),
2048
+ # status: "ACTIVE",
2049
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/MyTaskDefinition:2",
2050
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
2051
+ # updated_at: Time.parse(1557128360.711),
2052
+ # },
2053
+ # }
2054
+ #
1934
2055
  # @example Request syntax with placeholder values
1935
2056
  #
1936
2057
  # resp = client.create_task_set({
@@ -2141,6 +2262,31 @@ module Aws::ECS
2141
2262
  #
2142
2263
  # * {Types::DeleteAttributesResponse#attributes #attributes} => Array<Types::Attribute>
2143
2264
  #
2265
+ #
2266
+ # @example Example: To delete a custom attribute from an Amazon ECS instance
2267
+ #
2268
+ # # This example deletes an attribute named stack from a container instance.
2269
+ #
2270
+ # resp = client.delete_attributes({
2271
+ # attributes: [
2272
+ # {
2273
+ # name: "stack",
2274
+ # target_id: "aws:ecs:us-west-2:130757420319:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
2275
+ # },
2276
+ # ],
2277
+ # })
2278
+ #
2279
+ # resp.to_h outputs the following:
2280
+ # {
2281
+ # attributes: [
2282
+ # {
2283
+ # name: "stack",
2284
+ # value: "production",
2285
+ # target_id: "aws:ecs:us-west-2:130757420319:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
2286
+ # },
2287
+ # ],
2288
+ # }
2289
+ #
2144
2290
  # @example Request syntax with placeholder values
2145
2291
  #
2146
2292
  # resp = client.delete_attributes({
@@ -2205,6 +2351,37 @@ module Aws::ECS
2205
2351
  #
2206
2352
  # * {Types::DeleteCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
2207
2353
  #
2354
+ #
2355
+ # @example Example: To delete a specified capacity provider
2356
+ #
2357
+ # # This example deletes a specified capacity provider.
2358
+ #
2359
+ # resp = client.delete_capacity_provider({
2360
+ # capacity_provider: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/ExampleCapacityProvider",
2361
+ # })
2362
+ #
2363
+ # resp.to_h outputs the following:
2364
+ # {
2365
+ # capacity_provider: {
2366
+ # name: "ExampleCapacityProvider",
2367
+ # auto_scaling_group_provider: {
2368
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup",
2369
+ # managed_scaling: {
2370
+ # maximum_scaling_step_size: 10000,
2371
+ # minimum_scaling_step_size: 1,
2372
+ # status: "ENABLED",
2373
+ # target_capacity: 100,
2374
+ # },
2375
+ # managed_termination_protection: "DISABLED",
2376
+ # },
2377
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/ExampleCapacityProvider",
2378
+ # status: "ACTIVE",
2379
+ # tags: [
2380
+ # ],
2381
+ # update_status: "DELETE_IN_PROGRESS",
2382
+ # },
2383
+ # }
2384
+ #
2208
2385
  # @example Request syntax with placeholder values
2209
2386
  #
2210
2387
  # resp = client.delete_capacity_provider({
@@ -2642,6 +2819,57 @@ module Aws::ECS
2642
2819
  # * {Types::DeleteTaskDefinitionsResponse#task_definitions #task_definitions} => Array<Types::TaskDefinition>
2643
2820
  # * {Types::DeleteTaskDefinitionsResponse#failures #failures} => Array<Types::Failure>
2644
2821
  #
2822
+ #
2823
+ # @example Example: To delete a task definition that has been deregistered
2824
+ #
2825
+ # # This example deletes a specified deregistered task definition.
2826
+ #
2827
+ # resp = client.delete_task_definitions({
2828
+ # task_definitions: [
2829
+ # "Example-task-definition:1",
2830
+ # ],
2831
+ # })
2832
+ #
2833
+ # resp.to_h outputs the following:
2834
+ # {
2835
+ # failures: [
2836
+ # ],
2837
+ # task_definitions: [
2838
+ # {
2839
+ # container_definitions: [
2840
+ # {
2841
+ # name: "wave",
2842
+ # command: [
2843
+ # "apt-get update; apt-get install stress; while true; do stress --cpu $(( RANDOM % 4 )) -t $(( RANDOM % 10 )); done",
2844
+ # ],
2845
+ # cpu: 50,
2846
+ # entry_point: [
2847
+ # "bash",
2848
+ # "-c",
2849
+ # ],
2850
+ # environment: [
2851
+ # ],
2852
+ # essential: true,
2853
+ # image: "ubuntu",
2854
+ # memory: 100,
2855
+ # mount_points: [
2856
+ # ],
2857
+ # port_mappings: [
2858
+ # ],
2859
+ # volumes_from: [
2860
+ # ],
2861
+ # },
2862
+ # ],
2863
+ # family: "cpu-wave",
2864
+ # revision: 1,
2865
+ # status: "DELETE_IN_PROGRESS",
2866
+ # task_definition_arn: "arn:aws:ecs:us-east-1:012345678910:task-definition/Example-task-definition:1",
2867
+ # volumes: [
2868
+ # ],
2869
+ # },
2870
+ # ],
2871
+ # }
2872
+ #
2645
2873
  # @example Request syntax with placeholder values
2646
2874
  #
2647
2875
  # resp = client.delete_task_definitions({
@@ -2864,6 +3092,55 @@ module Aws::ECS
2864
3092
  #
2865
3093
  # * {Types::DeleteTaskSetResponse#task_set #task_set} => Types::TaskSet
2866
3094
  #
3095
+ #
3096
+ # @example Example: To delete a task set within a service that uses the EXTERNAL deployment controller type
3097
+ #
3098
+ # # This example deletes a task set and uses the force flag to force deletion if it hasn't scaled to zero.
3099
+ #
3100
+ # resp = client.delete_task_set({
3101
+ # cluster: "MyCluster",
3102
+ # force: true,
3103
+ # service: "MyService",
3104
+ # task_set: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
3105
+ # })
3106
+ #
3107
+ # resp.to_h outputs the following:
3108
+ # {
3109
+ # task_set: {
3110
+ # computed_desired_count: 0,
3111
+ # created_at: Time.parse(1557130260.276),
3112
+ # id: "ecs-svc/1234567890123456789",
3113
+ # launch_type: "EC2",
3114
+ # load_balancers: [
3115
+ # ],
3116
+ # network_configuration: {
3117
+ # awsvpc_configuration: {
3118
+ # assign_public_ip: "DISABLED",
3119
+ # security_groups: [
3120
+ # "sg-12345678",
3121
+ # ],
3122
+ # subnets: [
3123
+ # "subnet-12345678",
3124
+ # ],
3125
+ # },
3126
+ # },
3127
+ # pending_count: 0,
3128
+ # running_count: 0,
3129
+ # scale: {
3130
+ # value: 0,
3131
+ # unit: "PERCENT",
3132
+ # },
3133
+ # service_registries: [
3134
+ # ],
3135
+ # stability_status: "STABILIZING",
3136
+ # stability_status_at: Time.parse(1557130290.707),
3137
+ # status: "DRAINING",
3138
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
3139
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
3140
+ # updated_at: Time.parse(1557130290.707),
3141
+ # },
3142
+ # }
3143
+ #
2867
3144
  # @example Request syntax with placeholder values
2868
3145
  #
2869
3146
  # resp = client.delete_task_set({
@@ -3106,6 +3383,49 @@ module Aws::ECS
3106
3383
  #
3107
3384
  # * {Types::DeregisterTaskDefinitionResponse#task_definition #task_definition} => Types::TaskDefinition
3108
3385
  #
3386
+ #
3387
+ # @example Example: To deregister a revision of a task definition
3388
+ #
3389
+ # # This example deregisters the first revision of the curler task definition
3390
+ #
3391
+ # resp = client.deregister_task_definition({
3392
+ # task_definition: "curler:1",
3393
+ # })
3394
+ #
3395
+ # resp.to_h outputs the following:
3396
+ # {
3397
+ # task_definition: {
3398
+ # container_definitions: [
3399
+ # {
3400
+ # name: "curler",
3401
+ # command: [
3402
+ # "curl -v http://example.com/",
3403
+ # ],
3404
+ # cpu: 100,
3405
+ # entry_point: [
3406
+ # ],
3407
+ # environment: [
3408
+ # ],
3409
+ # essential: true,
3410
+ # image: "curl:latest",
3411
+ # memory: 256,
3412
+ # mount_points: [
3413
+ # ],
3414
+ # port_mappings: [
3415
+ # ],
3416
+ # volumes_from: [
3417
+ # ],
3418
+ # },
3419
+ # ],
3420
+ # family: "curler",
3421
+ # revision: 1,
3422
+ # status: "INACTIVE",
3423
+ # task_definition_arn: "arn:aws:ecs:us-west-2:123456789012:task-definition/curler:1",
3424
+ # volumes: [
3425
+ # ],
3426
+ # },
3427
+ # }
3428
+ #
3109
3429
  # @example Request syntax with placeholder values
3110
3430
  #
3111
3431
  # resp = client.deregister_task_definition({
@@ -3337,6 +3657,91 @@ module Aws::ECS
3337
3657
  # * {Types::DescribeCapacityProvidersResponse#failures #failures} => Array<Types::Failure>
3338
3658
  # * {Types::DescribeCapacityProvidersResponse#next_token #next_token} => String
3339
3659
  #
3660
+ #
3661
+ # @example Example: To describe all capacity providers
3662
+ #
3663
+ # # This example retrieves details about all capacity providers.
3664
+ #
3665
+ # resp = client.describe_capacity_providers({
3666
+ # })
3667
+ #
3668
+ # resp.to_h outputs the following:
3669
+ # {
3670
+ # capacity_providers: [
3671
+ # {
3672
+ # name: "MyCapacityProvider",
3673
+ # auto_scaling_group_provider: {
3674
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup",
3675
+ # managed_scaling: {
3676
+ # maximum_scaling_step_size: 1000,
3677
+ # minimum_scaling_step_size: 1,
3678
+ # status: "ENABLED",
3679
+ # target_capacity: 100,
3680
+ # },
3681
+ # managed_termination_protection: "ENABLED",
3682
+ # },
3683
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/MyCapacityProvider",
3684
+ # status: "ACTIVE",
3685
+ # tags: [
3686
+ # ],
3687
+ # },
3688
+ # {
3689
+ # name: "FARGATE",
3690
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/FARGATE",
3691
+ # status: "ACTIVE",
3692
+ # tags: [
3693
+ # ],
3694
+ # },
3695
+ # {
3696
+ # name: "FARGATE_SPOT",
3697
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/FARGATE_SPOT",
3698
+ # status: "ACTIVE",
3699
+ # tags: [
3700
+ # ],
3701
+ # },
3702
+ # ],
3703
+ # }
3704
+ #
3705
+ # @example Example: To describe a specific capacity provider
3706
+ #
3707
+ # # This example retrieves details about the capacity provider MyCapacityProvider
3708
+ #
3709
+ # resp = client.describe_capacity_providers({
3710
+ # capacity_providers: [
3711
+ # "MyCapacityProvider",
3712
+ # ],
3713
+ # include: [
3714
+ # "TAGS",
3715
+ # ],
3716
+ # })
3717
+ #
3718
+ # resp.to_h outputs the following:
3719
+ # {
3720
+ # capacity_providers: [
3721
+ # {
3722
+ # name: "MyCapacityProvider",
3723
+ # auto_scaling_group_provider: {
3724
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup",
3725
+ # managed_scaling: {
3726
+ # maximum_scaling_step_size: 1000,
3727
+ # minimum_scaling_step_size: 1,
3728
+ # status: "ENABLED",
3729
+ # target_capacity: 100,
3730
+ # },
3731
+ # managed_termination_protection: "ENABLED",
3732
+ # },
3733
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/MyCapacityProvider",
3734
+ # status: "ACTIVE",
3735
+ # tags: [
3736
+ # {
3737
+ # key: "environment",
3738
+ # value: "production",
3739
+ # },
3740
+ # ],
3741
+ # },
3742
+ # ],
3743
+ # }
3744
+ #
3340
3745
  # @example Request syntax with placeholder values
3341
3746
  #
3342
3747
  # resp = client.describe_capacity_providers({
@@ -3717,6 +4122,46 @@ module Aws::ECS
3717
4122
  # * {Types::DescribeServiceDeploymentsResponse#service_deployments #service_deployments} => Array<Types::ServiceDeployment>
3718
4123
  # * {Types::DescribeServiceDeploymentsResponse#failures #failures} => Array<Types::Failure>
3719
4124
  #
4125
+ #
4126
+ # @example Example: To describe a service deployment
4127
+ #
4128
+ # # This example describes a service deployment for the service sd-example in the example cluster.
4129
+ #
4130
+ # resp = client.describe_service_deployments({
4131
+ # service_deployment_arns: [
4132
+ # "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5",
4133
+ # ],
4134
+ # })
4135
+ #
4136
+ # resp.to_h outputs the following:
4137
+ # {
4138
+ # failures: [
4139
+ # ],
4140
+ # service_deployments: [
4141
+ # {
4142
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/example",
4143
+ # deployment_configuration: {
4144
+ # deployment_circuit_breaker: {
4145
+ # enable: false,
4146
+ # rollback: false,
4147
+ # },
4148
+ # maximum_percent: 200,
4149
+ # minimum_healthy_percent: 100,
4150
+ # },
4151
+ # service_arn: "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example",
4152
+ # service_deployment_arn: "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5",
4153
+ # status: "PENDING",
4154
+ # target_service_revision: {
4155
+ # arn: "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095",
4156
+ # pending_task_count: 0,
4157
+ # requested_task_count: 0,
4158
+ # running_task_count: 0,
4159
+ # },
4160
+ # updated_at: Time.parse("2024-09-10T16:49:35.572000+00:00"),
4161
+ # },
4162
+ # ],
4163
+ # }
4164
+ #
3720
4165
  # @example Request syntax with placeholder values
3721
4166
  #
3722
4167
  # resp = client.describe_service_deployments({
@@ -3809,6 +4254,46 @@ module Aws::ECS
3809
4254
  # * {Types::DescribeServiceRevisionsResponse#service_revisions #service_revisions} => Array<Types::ServiceRevision>
3810
4255
  # * {Types::DescribeServiceRevisionsResponse#failures #failures} => Array<Types::Failure>
3811
4256
  #
4257
+ #
4258
+ # @example Example: To describe a service revision
4259
+ #
4260
+ # # This example describes a service revision with the specified ARN
4261
+ #
4262
+ # resp = client.describe_service_revisions({
4263
+ # service_revision_arns: [
4264
+ # "arn:aws:ecs:us-west-2:123456789012:service-revision/testc/sd1/4980306466373577095",
4265
+ # ],
4266
+ # })
4267
+ #
4268
+ # resp.to_h outputs the following:
4269
+ # {
4270
+ # failures: [
4271
+ # ],
4272
+ # service_revisions: [
4273
+ # {
4274
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/example",
4275
+ # created_at: Time.parse("2024-09-10T16:49:26.388000+00:00"),
4276
+ # launch_type: "FARGATE",
4277
+ # network_configuration: {
4278
+ # awsvpc_configuration: {
4279
+ # assign_public_ip: "ENABLED",
4280
+ # security_groups: [
4281
+ # "sg-09605d60a6bc1b296",
4282
+ # ],
4283
+ # subnets: [
4284
+ # "subnet-0a4040e73895f04e1",
4285
+ # ],
4286
+ # },
4287
+ # },
4288
+ # platform_family: "DockerLinux",
4289
+ # platform_version: "1.4.0",
4290
+ # service_arn: "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example",
4291
+ # service_revision_arn: "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095",
4292
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/large-ngingx:1",
4293
+ # },
4294
+ # ],
4295
+ # }
4296
+ #
3812
4297
  # @example Request syntax with placeholder values
3813
4298
  #
3814
4299
  # resp = client.describe_service_revisions({
@@ -4499,14 +4984,68 @@ module Aws::ECS
4499
4984
  # * {Types::DescribeTaskSetsResponse#task_sets #task_sets} => Array<Types::TaskSet>
4500
4985
  # * {Types::DescribeTaskSetsResponse#failures #failures} => Array<Types::Failure>
4501
4986
  #
4502
- # @example Request syntax with placeholder values
4503
4987
  #
4504
- # resp = client.describe_task_sets({
4505
- # cluster: "String", # required
4506
- # service: "String", # required
4507
- # task_sets: ["String"],
4508
- # include: ["TAGS"], # accepts TAGS
4509
- # })
4988
+ # @example Example: To describe a task set
4989
+ #
4990
+ # # This example describes a task set in service MyService that uses an EXTERNAL deployment controller.
4991
+ #
4992
+ # resp = client.describe_task_sets({
4993
+ # cluster: "MyCluster",
4994
+ # service: "MyService",
4995
+ # task_sets: [
4996
+ # "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
4997
+ # ],
4998
+ # })
4999
+ #
5000
+ # resp.to_h outputs the following:
5001
+ # {
5002
+ # failures: [
5003
+ # ],
5004
+ # task_sets: [
5005
+ # {
5006
+ # computed_desired_count: 0,
5007
+ # created_at: Time.parse(1557207715.195),
5008
+ # id: "ecs-svc/1234567890123456789",
5009
+ # launch_type: "EC2",
5010
+ # load_balancers: [
5011
+ # ],
5012
+ # network_configuration: {
5013
+ # awsvpc_configuration: {
5014
+ # assign_public_ip: "DISABLED",
5015
+ # security_groups: [
5016
+ # "sg-1234431",
5017
+ # ],
5018
+ # subnets: [
5019
+ # "subnet-12344321",
5020
+ # ],
5021
+ # },
5022
+ # },
5023
+ # pending_count: 0,
5024
+ # running_count: 0,
5025
+ # scale: {
5026
+ # value: 0,
5027
+ # unit: "PERCENT",
5028
+ # },
5029
+ # service_registries: [
5030
+ # ],
5031
+ # stability_status: "STEADY_STATE",
5032
+ # stability_status_at: Time.parse(1557207740.014),
5033
+ # status: "ACTIVE",
5034
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
5035
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
5036
+ # updated_at: Time.parse(1557207740.014),
5037
+ # },
5038
+ # ],
5039
+ # }
5040
+ #
5041
+ # @example Request syntax with placeholder values
5042
+ #
5043
+ # resp = client.describe_task_sets({
5044
+ # cluster: "String", # required
5045
+ # service: "String", # required
5046
+ # task_sets: ["String"],
5047
+ # include: ["TAGS"], # accepts TAGS
5048
+ # })
4510
5049
  #
4511
5050
  # @example Response structure
4512
5051
  #
@@ -4876,6 +5415,33 @@ module Aws::ECS
4876
5415
  # * {Types::ExecuteCommandResponse#session #session} => Types::Session
4877
5416
  # * {Types::ExecuteCommandResponse#task_arn #task_arn} => String
4878
5417
  #
5418
+ #
5419
+ # @example Example: To run a command remotely on a container in a task
5420
+ #
5421
+ # # This example runs an interactive /bin/sh command on a container MyContainer.
5422
+ #
5423
+ # resp = client.execute_command({
5424
+ # cluster: "MyCluster",
5425
+ # command: "/bin/sh",
5426
+ # container: "MyContainer",
5427
+ # interactive: true,
5428
+ # task: "arn:aws:ecs:us-east-1:123456789012:task/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE",
5429
+ # })
5430
+ #
5431
+ # resp.to_h outputs the following:
5432
+ # {
5433
+ # cluster_arn: "arn:aws:ecs:us-east-1:123456789012:cluster/MyCluster",
5434
+ # container_arn: "arn:aws:ecs:us-east-1:123456789012:container/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE/43ba4b77-37f7-4a41-b923-69d4abEXAMPLE",
5435
+ # container_name: "MyContainer",
5436
+ # interactive: true,
5437
+ # session: {
5438
+ # session_id: "ecs-execute-command-794nnsxobsg4p2hiur6gxu9a9e",
5439
+ # stream_url: "wss://ssmmessages.us-east-1.amazonaws.com/v1/data-channel/ecs-execute-command-794nnsxobsg4p2hiur6gxu9a9e?role=publish_subscribe&cell-number=AAEAAfiZG4oybxqsYj3Zhm15s4J0W1k7d9nxVRenNO8Kl5nzAAAAAGdbWGl479/y/4IrTWPadUic3eBrMu3vmB7aPvI+s12lbpDc142y1KZy",
5440
+ # token_value: "AAEAAcVb7ww10N9aNUI5Cl7K7DbHjbD2Ed4Mw6uaGYIc+UFNAAAAAGdbWGmMDaPbGfDkzrVIhyKEsc4CPT2hcToPU6yzlddPm7rRZvYQtpaAgsvQdjbCAd9OB6ohtDYfqZI9gzMqLKegXq0E+KbDcGPnQVODFNHmQxnR1BvC6vNcHqh6HAJuKnQD7RSYx/J5bfYNHj4hCYHuN0HNcueSDOOTRB/MBt5DBDY7Djv2uzs9FD0N1kcsGljZkZWLuPTVKHHyrU3zh0awfrFFC3RXvgaUCBnloIIvZeq2CjTesxn9JJS+3N4I0DVxfkHdWWBbBY/5+wH82JVTJpqN3yOAt74u/W7TvYBd7Xu2lQbvtpuAnEszl++bFG2ZoV3dfnmBkSnfD/qV1FJcEskbxUHKgmqe0Paouv4zwrQKNfWYfcv9xkWskqcExh07IeaxZz1tp/WegZ5D76sD6xYeuH+35TMNXMoY7oudLgxIXsA7b39ElM7orGi4Jy3W2tLyuNIvDoI2JI6ww4tYdEjYZnld9rhKwV9rDHk1Z8wjHMs++3BIkHrFQRsv7BFUWlZ9lyqO9GWlXeBe7dQtOeFNahBuJUE9z/xLHJn1x13VkdROKqUVHTJrT4sXAnI5roWiGPoQPVY7aHVYJnwjSxrPRWJBsgyHiVN3dAWTmeVMjp0VbOiJaLlpBI+AUWs8OeVRzuJSZ+1alETpK7Ukag7ma9K4lxq/N7IxYo2ub0cG/bvX42zQqdJAW+9St9sQ1QMaMvkSq1tdbLoOuY0QjN7JrkuKLFQA5bhs+o1YwItzIp7bNrzQ9Z9IN51qoGL5HDXQzi1kNFfYtAryhwt6BgtQU9Z0k+RpE+V5G+V68E0MMUvb313f0nRBYj1u5VKonWb708wADPbUU+s7nvbWuD5oLp1Z6A4iqI9Om0R4RrFASj/7fVY7r3raNXcIYA=",
5441
+ # },
5442
+ # task_arn: "arn:aws:ecs:us-east-1:123456789012:task/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE",
5443
+ # }
5444
+ #
4879
5445
  # @example Request syntax with placeholder values
4880
5446
  #
4881
5447
  # resp = client.execute_command({
@@ -5170,6 +5736,29 @@ module Aws::ECS
5170
5736
  #
5171
5737
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5172
5738
  #
5739
+ #
5740
+ # @example Example: To list container instances that have a specific attribute
5741
+ #
5742
+ # # This example lists attributes for a container instance with the attribute "stack" equal to the value "production".
5743
+ #
5744
+ # resp = client.list_attributes({
5745
+ # attribute_name: "stack",
5746
+ # attribute_value: "production",
5747
+ # cluster: "MyCluster",
5748
+ # target_type: "container-instance",
5749
+ # })
5750
+ #
5751
+ # resp.to_h outputs the following:
5752
+ # {
5753
+ # attributes: [
5754
+ # {
5755
+ # name: "stack",
5756
+ # value: "production",
5757
+ # target_id: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
5758
+ # },
5759
+ # ],
5760
+ # }
5761
+ #
5173
5762
  # @example Request syntax with placeholder values
5174
5763
  #
5175
5764
  # resp = client.list_attributes({
@@ -5380,9 +5969,9 @@ module Aws::ECS
5380
5969
  # This operation lists all the service deployments that meet the
5381
5970
  # specified filter criteria.
5382
5971
  #
5383
- # A service deployment happens when you release a softwre update for the
5384
- # service. You route traffic from the running service revisions to the
5385
- # new service revison and control the number of running tasks.
5972
+ # A service deployment happens when you release a software update for
5973
+ # the service. You route traffic from the running service revisions to
5974
+ # the new service revison and control the number of running tasks.
5386
5975
  #
5387
5976
  # This API returns the values that you use for the request parameters in
5388
5977
  # [DescribeServiceRevisions][1].
@@ -5434,6 +6023,32 @@ module Aws::ECS
5434
6023
  # * {Types::ListServiceDeploymentsResponse#service_deployments #service_deployments} => Array<Types::ServiceDeploymentBrief>
5435
6024
  # * {Types::ListServiceDeploymentsResponse#next_token #next_token} => String
5436
6025
  #
6026
+ #
6027
+ # @example Example: To list service deployments that meet the specified criteria
6028
+ #
6029
+ # # This example lists all successful service deployments for the service "sd-example" in the cluster "example".
6030
+ #
6031
+ # resp = client.list_service_deployments({
6032
+ # cluster: "example",
6033
+ # service: "sd-example",
6034
+ # status: [
6035
+ # "SUCCESSFUL",
6036
+ # ],
6037
+ # })
6038
+ #
6039
+ # resp.to_h outputs the following:
6040
+ # {
6041
+ # service_deployments: [
6042
+ # {
6043
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/example",
6044
+ # service_arn: "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example",
6045
+ # service_deployment_arn: "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5",
6046
+ # status: "SUCCESSFUL",
6047
+ # target_service_revision_arn: "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095",
6048
+ # },
6049
+ # ],
6050
+ # }
6051
+ #
5437
6052
  # @example Request syntax with placeholder values
5438
6053
  #
5439
6054
  # resp = client.list_service_deployments({
@@ -6484,6 +7099,33 @@ module Aws::ECS
6484
7099
  #
6485
7100
  # * {Types::PutAttributesResponse#attributes #attributes} => Array<Types::Attribute>
6486
7101
  #
7102
+ #
7103
+ # @example Example: To create or update an attribute on a resource
7104
+ #
7105
+ # # This example adds an attribute "stack" with the value "production" to a container instance.
7106
+ #
7107
+ # resp = client.put_attributes({
7108
+ # attributes: [
7109
+ # {
7110
+ # name: "stack",
7111
+ # value: "production",
7112
+ # target_id: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
7113
+ # },
7114
+ # ],
7115
+ # cluster: "MyCluster",
7116
+ # })
7117
+ #
7118
+ # resp.to_h outputs the following:
7119
+ # {
7120
+ # attributes: [
7121
+ # {
7122
+ # name: "stack",
7123
+ # value: "production",
7124
+ # target_id: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
7125
+ # },
7126
+ # ],
7127
+ # }
7128
+ #
6487
7129
  # @example Request syntax with placeholder values
6488
7130
  #
6489
7131
  # resp = client.put_attributes({
@@ -6592,6 +7234,260 @@ module Aws::ECS
6592
7234
  #
6593
7235
  # * {Types::PutClusterCapacityProvidersResponse#cluster #cluster} => Types::Cluster
6594
7236
  #
7237
+ #
7238
+ # @example Example: To add an existing capacity provider to a cluuster
7239
+ #
7240
+ # # This example adds an existing capacity provider "MyCapacityProvider2" to a cluster that already has the capacity
7241
+ # # provider "MyCapacityProvider1" associated with it. Both "MyCapacityProvider2" and "MyCapacityProvider1" need to be
7242
+ # # specified.
7243
+ #
7244
+ # resp = client.put_cluster_capacity_providers({
7245
+ # capacity_providers: [
7246
+ # "MyCapacityProvider1",
7247
+ # "MyCapacityProvider2",
7248
+ # ],
7249
+ # cluster: "MyCluster",
7250
+ # default_capacity_provider_strategy: [
7251
+ # {
7252
+ # capacity_provider: "MyCapacityProvider1",
7253
+ # weight: 1,
7254
+ # },
7255
+ # {
7256
+ # capacity_provider: "MyCapacityProvider2",
7257
+ # weight: 1,
7258
+ # },
7259
+ # ],
7260
+ # })
7261
+ #
7262
+ # resp.to_h outputs the following:
7263
+ # {
7264
+ # cluster: {
7265
+ # active_services_count: 0,
7266
+ # attachments: [
7267
+ # {
7268
+ # type: "as_policy",
7269
+ # details: [
7270
+ # {
7271
+ # name: "capacityProviderName",
7272
+ # value: "MyCapacityProvider1",
7273
+ # },
7274
+ # {
7275
+ # name: "scalingPolicyName",
7276
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7277
+ # },
7278
+ # ],
7279
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7280
+ # status: "ACTIVE",
7281
+ # },
7282
+ # {
7283
+ # type: "as_policy",
7284
+ # details: [
7285
+ # {
7286
+ # name: "capacityProviderName",
7287
+ # value: "MyCapacityProvider2",
7288
+ # },
7289
+ # {
7290
+ # name: "scalingPolicyName",
7291
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7292
+ # },
7293
+ # ],
7294
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7295
+ # status: "ACTIVE",
7296
+ # },
7297
+ # ],
7298
+ # attachments_status: "UPDATE_IN_PROGRESS",
7299
+ # capacity_providers: [
7300
+ # "MyCapacityProvider1",
7301
+ # "MyCapacityProvider2",
7302
+ # ],
7303
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7304
+ # cluster_name: "MyCluster",
7305
+ # default_capacity_provider_strategy: [
7306
+ # {
7307
+ # base: 0,
7308
+ # capacity_provider: "MyCapacityProvider1",
7309
+ # weight: 1,
7310
+ # },
7311
+ # {
7312
+ # base: 0,
7313
+ # capacity_provider: "MyCapacityProvider2",
7314
+ # weight: 1,
7315
+ # },
7316
+ # ],
7317
+ # pending_tasks_count: 0,
7318
+ # registered_container_instances_count: 0,
7319
+ # running_tasks_count: 0,
7320
+ # settings: [
7321
+ # {
7322
+ # name: "containerInsights",
7323
+ # value: "enabled",
7324
+ # },
7325
+ # ],
7326
+ # statistics: [
7327
+ # ],
7328
+ # status: "ACTIVE",
7329
+ # tags: [
7330
+ # ],
7331
+ # },
7332
+ # }
7333
+ #
7334
+ # @example Example: To remove a capacity provider from a cluster
7335
+ #
7336
+ # # This example removes a capacity provider "MyCapacityProvider2" from a cluster that has both "MyCapacityProvider2" and
7337
+ # # "MyCapacityProvider1" associated with it. Only "MyCapacityProvider1" needs to be specified in this scenario.
7338
+ #
7339
+ # resp = client.put_cluster_capacity_providers({
7340
+ # capacity_providers: [
7341
+ # "MyCapacityProvider1",
7342
+ # ],
7343
+ # cluster: "MyCluster",
7344
+ # default_capacity_provider_strategy: [
7345
+ # {
7346
+ # base: 0,
7347
+ # capacity_provider: "MyCapacityProvider1",
7348
+ # weight: 1,
7349
+ # },
7350
+ # ],
7351
+ # })
7352
+ #
7353
+ # resp.to_h outputs the following:
7354
+ # {
7355
+ # cluster: {
7356
+ # active_services_count: 0,
7357
+ # attachments: [
7358
+ # {
7359
+ # type: "as_policy",
7360
+ # details: [
7361
+ # {
7362
+ # name: "capacityProviderName",
7363
+ # value: "MyCapacityProvider1",
7364
+ # },
7365
+ # {
7366
+ # name: "scalingPolicyName",
7367
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7368
+ # },
7369
+ # ],
7370
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7371
+ # status: "ACTIVE",
7372
+ # },
7373
+ # {
7374
+ # type: "as_policy",
7375
+ # details: [
7376
+ # {
7377
+ # name: "capacityProviderName",
7378
+ # value: "MyCapacityProvider2",
7379
+ # },
7380
+ # {
7381
+ # name: "scalingPolicyName",
7382
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7383
+ # },
7384
+ # ],
7385
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7386
+ # status: "DELETING",
7387
+ # },
7388
+ # ],
7389
+ # attachments_status: "UPDATE_IN_PROGRESS",
7390
+ # capacity_providers: [
7391
+ # "MyCapacityProvider1",
7392
+ # ],
7393
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7394
+ # cluster_name: "MyCluster",
7395
+ # default_capacity_provider_strategy: [
7396
+ # {
7397
+ # base: 0,
7398
+ # capacity_provider: "MyCapacityProvider1",
7399
+ # weight: 1,
7400
+ # },
7401
+ # ],
7402
+ # pending_tasks_count: 0,
7403
+ # registered_container_instances_count: 0,
7404
+ # running_tasks_count: 0,
7405
+ # settings: [
7406
+ # {
7407
+ # name: "containerInsights",
7408
+ # value: "enabled",
7409
+ # },
7410
+ # ],
7411
+ # statistics: [
7412
+ # ],
7413
+ # status: "ACTIVE",
7414
+ # tags: [
7415
+ # ],
7416
+ # },
7417
+ # }
7418
+ #
7419
+ # @example Example: To remove all capacity providers from a cluster
7420
+ #
7421
+ # # This example removes all capacity providers associated with a cluster.
7422
+ #
7423
+ # resp = client.put_cluster_capacity_providers({
7424
+ # capacity_providers: [
7425
+ # ],
7426
+ # cluster: "MyCluster",
7427
+ # default_capacity_provider_strategy: [
7428
+ # ],
7429
+ # })
7430
+ #
7431
+ # resp.to_h outputs the following:
7432
+ # {
7433
+ # cluster: {
7434
+ # active_services_count: 0,
7435
+ # attachments: [
7436
+ # {
7437
+ # type: "as_policy",
7438
+ # details: [
7439
+ # {
7440
+ # name: "capacityProviderName",
7441
+ # value: "MyCapacityProvider1",
7442
+ # },
7443
+ # {
7444
+ # name: "scalingPolicyName",
7445
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7446
+ # },
7447
+ # ],
7448
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7449
+ # status: "DELETING",
7450
+ # },
7451
+ # {
7452
+ # type: "as_policy",
7453
+ # details: [
7454
+ # {
7455
+ # name: "capacityProviderName",
7456
+ # value: "MyCapacityProvider2",
7457
+ # },
7458
+ # {
7459
+ # name: "scalingPolicyName",
7460
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7461
+ # },
7462
+ # ],
7463
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7464
+ # status: "DELETING",
7465
+ # },
7466
+ # ],
7467
+ # attachments_status: "UPDATE_IN_PROGRESS",
7468
+ # capacity_providers: [
7469
+ # ],
7470
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7471
+ # cluster_name: "MyCluster",
7472
+ # default_capacity_provider_strategy: [
7473
+ # ],
7474
+ # pending_tasks_count: 0,
7475
+ # registered_container_instances_count: 0,
7476
+ # running_tasks_count: 0,
7477
+ # settings: [
7478
+ # {
7479
+ # name: "containerInsights",
7480
+ # value: "enabled",
7481
+ # },
7482
+ # ],
7483
+ # statistics: [
7484
+ # ],
7485
+ # status: "ACTIVE",
7486
+ # tags: [
7487
+ # ],
7488
+ # },
7489
+ # }
7490
+ #
6595
7491
  # @example Request syntax with placeholder values
6596
7492
  #
6597
7493
  # resp = client.put_cluster_capacity_providers({
@@ -8427,31 +9323,87 @@ module Aws::ECS
8427
9323
  # * {Types::StartTaskResponse#tasks #tasks} => Array<Types::Task>
8428
9324
  # * {Types::StartTaskResponse#failures #failures} => Array<Types::Failure>
8429
9325
  #
8430
- # @example Request syntax with placeholder values
9326
+ #
9327
+ # @example Example: To start a new task
9328
+ #
9329
+ # # This example starts a new task in the cluster "MyCluster" on the specified container instance using the latest revision
9330
+ # # of the "hello-world" task definition.
8431
9331
  #
8432
9332
  # resp = client.start_task({
8433
- # cluster: "String",
8434
- # container_instances: ["String"], # required
8435
- # enable_ecs_managed_tags: false,
8436
- # enable_execute_command: false,
8437
- # group: "String",
8438
- # network_configuration: {
8439
- # awsvpc_configuration: {
8440
- # subnets: ["String"], # required
8441
- # security_groups: ["String"],
8442
- # assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
8443
- # },
8444
- # },
8445
- # overrides: {
8446
- # container_overrides: [
8447
- # {
8448
- # name: "String",
8449
- # command: ["String"],
8450
- # environment: [
8451
- # {
8452
- # name: "String",
8453
- # value: "String",
8454
- # },
9333
+ # cluster: "MyCluster",
9334
+ # container_instances: [
9335
+ # "4c543eed-f83f-47da-b1d8-3d23f1da4c64",
9336
+ # ],
9337
+ # task_definition: "hello-world",
9338
+ # })
9339
+ #
9340
+ # resp.to_h outputs the following:
9341
+ # {
9342
+ # failures: [
9343
+ # ],
9344
+ # tasks: [
9345
+ # {
9346
+ # version: 1,
9347
+ # cluster_arn: "arn:aws:ecs:us-east-1:012345678910:cluster/default",
9348
+ # container_instance_arn: "arn:aws:ecs:us-east-1:012345678910:container-instance/default/4c543eed-f83f-47da-b1d8-3d23f1da4c64",
9349
+ # containers: [
9350
+ # {
9351
+ # name: "wordpress",
9352
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/e76594d4-27e1-4c74-98b5-46a6435eb769",
9353
+ # last_status: "PENDING",
9354
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9355
+ # },
9356
+ # {
9357
+ # name: "mysql",
9358
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/default/b19106ea-4fa8-4f1d-9767-96922c82b070",
9359
+ # last_status: "PENDING",
9360
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9361
+ # },
9362
+ # ],
9363
+ # created_at: Time.parse(1479765460.842),
9364
+ # desired_status: "RUNNING",
9365
+ # last_status: "PENDING",
9366
+ # overrides: {
9367
+ # container_overrides: [
9368
+ # {
9369
+ # name: "wordpress",
9370
+ # },
9371
+ # {
9372
+ # name: "mysql",
9373
+ # },
9374
+ # ],
9375
+ # },
9376
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9377
+ # task_definition_arn: "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6",
9378
+ # },
9379
+ # ],
9380
+ # }
9381
+ #
9382
+ # @example Request syntax with placeholder values
9383
+ #
9384
+ # resp = client.start_task({
9385
+ # cluster: "String",
9386
+ # container_instances: ["String"], # required
9387
+ # enable_ecs_managed_tags: false,
9388
+ # enable_execute_command: false,
9389
+ # group: "String",
9390
+ # network_configuration: {
9391
+ # awsvpc_configuration: {
9392
+ # subnets: ["String"], # required
9393
+ # security_groups: ["String"],
9394
+ # assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
9395
+ # },
9396
+ # },
9397
+ # overrides: {
9398
+ # container_overrides: [
9399
+ # {
9400
+ # name: "String",
9401
+ # command: ["String"],
9402
+ # environment: [
9403
+ # {
9404
+ # name: "String",
9405
+ # value: "String",
9406
+ # },
8455
9407
  # ],
8456
9408
  # environment_files: [
8457
9409
  # {
@@ -8699,6 +9651,68 @@ module Aws::ECS
8699
9651
  #
8700
9652
  # * {Types::StopTaskResponse#task #task} => Types::Task
8701
9653
  #
9654
+ #
9655
+ # @example Example: To stop a task
9656
+ #
9657
+ # # This example stops a task with ID "1dc5c17a-422b-4dc4-b493-371970c6c4d6" in cluster "MyCluster".
9658
+ #
9659
+ # resp = client.stop_task({
9660
+ # cluster: "MyCluster",
9661
+ # reason: "testing stop task.",
9662
+ # task: "1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9663
+ # })
9664
+ #
9665
+ # resp.to_h outputs the following:
9666
+ # {
9667
+ # task: {
9668
+ # version: 0,
9669
+ # cluster_arn: "arn:aws:ecs:us-east-1:012345678910:cluster/MyCluster",
9670
+ # container_instance_arn: "arn:aws:ecs:us-east-1:012345678910:container-instance/MyCluster/5991d8da-1d59-49d2-a31f-4230f9e73140",
9671
+ # containers: [
9672
+ # {
9673
+ # name: "simple-app",
9674
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/4df26bb4-f057-467b-a079-961675296e64",
9675
+ # last_status: "RUNNING",
9676
+ # network_bindings: [
9677
+ # {
9678
+ # bind_ip: "0.0.0.0",
9679
+ # container_port: 80,
9680
+ # host_port: 32774,
9681
+ # protocol: "tcp",
9682
+ # },
9683
+ # ],
9684
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9685
+ # },
9686
+ # {
9687
+ # name: "busybox",
9688
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/e09064f7-7361-4c87-8ab9-8d073bbdbcb9",
9689
+ # last_status: "RUNNING",
9690
+ # network_bindings: [
9691
+ # ],
9692
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9693
+ # },
9694
+ # ],
9695
+ # created_at: Time.parse(1476822811.295),
9696
+ # desired_status: "STOPPED",
9697
+ # last_status: "RUNNING",
9698
+ # overrides: {
9699
+ # container_overrides: [
9700
+ # {
9701
+ # name: "simple-app",
9702
+ # },
9703
+ # {
9704
+ # name: "busybox",
9705
+ # },
9706
+ # ],
9707
+ # },
9708
+ # started_at: Time.parse(1476822833.998),
9709
+ # started_by: "ecs-svc/9223370560032507596",
9710
+ # stopped_reason: "testing stop task.",
9711
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9712
+ # task_definition_arn: "arn:aws:ecs:us-east-1:012345678910:task-definition/console-sample-app-dynamic-ports:1",
9713
+ # },
9714
+ # }
9715
+ #
8702
9716
  # @example Request syntax with placeholder values
8703
9717
  #
8704
9718
  # resp = client.stop_task({
@@ -9178,6 +10192,46 @@ module Aws::ECS
9178
10192
  #
9179
10193
  # * {Types::UpdateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
9180
10194
  #
10195
+ #
10196
+ # @example Example: To update a capacity provider's parameters
10197
+ #
10198
+ # # This example updates the targetCapacity and instanceWarmupPeriod parameters for the capacity provider MyCapacityProvider
10199
+ # # to 90 and 150 respectively.
10200
+ #
10201
+ # resp = client.update_capacity_provider({
10202
+ # name: "MyCapacityProvider",
10203
+ # auto_scaling_group_provider: {
10204
+ # managed_scaling: {
10205
+ # instance_warmup_period: 150,
10206
+ # status: "ENABLED",
10207
+ # target_capacity: 90,
10208
+ # },
10209
+ # },
10210
+ # })
10211
+ #
10212
+ # resp.to_h outputs the following:
10213
+ # {
10214
+ # capacity_provider: {
10215
+ # name: "MyCapacityProvider",
10216
+ # auto_scaling_group_provider: {
10217
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG",
10218
+ # managed_scaling: {
10219
+ # instance_warmup_period: 150,
10220
+ # maximum_scaling_step_size: 10000,
10221
+ # minimum_scaling_step_size: 1,
10222
+ # status: "ENABLED",
10223
+ # target_capacity: 90,
10224
+ # },
10225
+ # managed_termination_protection: "ENABLED",
10226
+ # },
10227
+ # capacity_provider_arn: "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider",
10228
+ # status: "ACTIVE",
10229
+ # tags: [
10230
+ # ],
10231
+ # update_status: "UPDATE_COMPLETE",
10232
+ # },
10233
+ # }
10234
+ #
9181
10235
  # @example Request syntax with placeholder values
9182
10236
  #
9183
10237
  # resp = client.update_capacity_provider({
@@ -9260,6 +10314,198 @@ module Aws::ECS
9260
10314
  #
9261
10315
  # * {Types::UpdateClusterResponse#cluster #cluster} => Types::Cluster
9262
10316
  #
10317
+ #
10318
+ # @example Example: To update a cluster's observability settings.
10319
+ #
10320
+ # # This example turns on enhanced containerInsights in an existing cluster.
10321
+ #
10322
+ # resp = client.update_cluster({
10323
+ # cluster: "ECS-project-update-cluster",
10324
+ # settings: [
10325
+ # {
10326
+ # name: "containerInsights",
10327
+ # value: "enhanced",
10328
+ # },
10329
+ # ],
10330
+ # })
10331
+ #
10332
+ # resp.to_h outputs the following:
10333
+ # {
10334
+ # cluster: {
10335
+ # active_services_count: 0,
10336
+ # attachments: [
10337
+ # {
10338
+ # type: "as_policy",
10339
+ # details: [
10340
+ # {
10341
+ # name: "capacityProviderName",
10342
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10343
+ # },
10344
+ # {
10345
+ # name: "scalingPolicyName",
10346
+ # value: "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93",
10347
+ # },
10348
+ # ],
10349
+ # id: "069d002b-7634-42e4-b1d4-544f4c8f6380",
10350
+ # status: "CREATED",
10351
+ # },
10352
+ # {
10353
+ # type: "managed_draining",
10354
+ # details: [
10355
+ # {
10356
+ # name: "capacityProviderName",
10357
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10358
+ # },
10359
+ # {
10360
+ # name: "autoScalingLifecycleHookName",
10361
+ # value: "ecs-managed-draining-termination-hook",
10362
+ # },
10363
+ # ],
10364
+ # id: "08b5b6ca-45e9-4209-a65d-e962a27c490a",
10365
+ # status: "CREATED",
10366
+ # },
10367
+ # {
10368
+ # type: "sc",
10369
+ # details: [
10370
+ # ],
10371
+ # id: "45d0b36f-8cff-46b6-9380-1288744802ab",
10372
+ # status: "ATTACHED",
10373
+ # },
10374
+ # ],
10375
+ # attachments_status: "UPDATE_COMPLETE",
10376
+ # capacity_providers: [
10377
+ # "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10378
+ # ],
10379
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster",
10380
+ # cluster_name: "ECS-project-update-cluster",
10381
+ # default_capacity_provider_strategy: [
10382
+ # {
10383
+ # base: 0,
10384
+ # capacity_provider: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10385
+ # weight: 1,
10386
+ # },
10387
+ # ],
10388
+ # pending_tasks_count: 0,
10389
+ # registered_container_instances_count: 0,
10390
+ # running_tasks_count: 0,
10391
+ # service_connect_defaults: {
10392
+ # namespace: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-igwrsylmy3kwvcdx",
10393
+ # },
10394
+ # settings: [
10395
+ # {
10396
+ # name: "containerInsights",
10397
+ # value: "enhanced",
10398
+ # },
10399
+ # ],
10400
+ # statistics: [
10401
+ # ],
10402
+ # status: "ACTIVE",
10403
+ # tags: [
10404
+ # ],
10405
+ # },
10406
+ # }
10407
+ #
10408
+ # @example Example: To update a cluster's Service Connect defaults.
10409
+ #
10410
+ # # This example sets a default Service Connect namespace.
10411
+ #
10412
+ # resp = client.update_cluster({
10413
+ # cluster: "ECS-project-update-cluster",
10414
+ # service_connect_defaults: {
10415
+ # namespace: "test",
10416
+ # },
10417
+ # })
10418
+ #
10419
+ # resp.to_h outputs the following:
10420
+ # {
10421
+ # cluster: {
10422
+ # active_services_count: 0,
10423
+ # attachments: [
10424
+ # {
10425
+ # type: "as_policy",
10426
+ # details: [
10427
+ # {
10428
+ # name: "capacityProviderName",
10429
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10430
+ # },
10431
+ # {
10432
+ # name: "scalingPolicyName",
10433
+ # value: "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93",
10434
+ # },
10435
+ # ],
10436
+ # id: "069d002b-7634-42e4-b1d4-544f4c8f6380",
10437
+ # status: "CREATED",
10438
+ # },
10439
+ # {
10440
+ # type: "managed_draining",
10441
+ # details: [
10442
+ # {
10443
+ # name: "capacityProviderName",
10444
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10445
+ # },
10446
+ # {
10447
+ # name: "autoScalingLifecycleHookName",
10448
+ # value: "ecs-managed-draining-termination-hook",
10449
+ # },
10450
+ # ],
10451
+ # id: "08b5b6ca-45e9-4209-a65d-e962a27c490a",
10452
+ # status: "CREATED",
10453
+ # },
10454
+ # {
10455
+ # type: "sc",
10456
+ # details: [
10457
+ # ],
10458
+ # id: "45d0b36f-8cff-46b6-9380-1288744802ab",
10459
+ # status: "DELETED",
10460
+ # },
10461
+ # {
10462
+ # type: "sc",
10463
+ # details: [
10464
+ # ],
10465
+ # id: "3e6890c3-609c-4832-91de-d6ca891b3ef1",
10466
+ # status: "ATTACHED",
10467
+ # },
10468
+ # {
10469
+ # type: "sc",
10470
+ # details: [
10471
+ # ],
10472
+ # id: "961b8ec1-c2f1-4070-8495-e669b7668e90",
10473
+ # status: "DELETED",
10474
+ # },
10475
+ # ],
10476
+ # attachments_status: "UPDATE_COMPLETE",
10477
+ # capacity_providers: [
10478
+ # "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10479
+ # ],
10480
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster",
10481
+ # cluster_name: "ECS-project-update-cluster",
10482
+ # default_capacity_provider_strategy: [
10483
+ # {
10484
+ # base: 0,
10485
+ # capacity_provider: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10486
+ # weight: 1,
10487
+ # },
10488
+ # ],
10489
+ # pending_tasks_count: 0,
10490
+ # registered_container_instances_count: 0,
10491
+ # running_tasks_count: 0,
10492
+ # service_connect_defaults: {
10493
+ # namespace: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-dtjmxqpfi46ht7dr",
10494
+ # },
10495
+ # settings: [
10496
+ # {
10497
+ # name: "containerInsights",
10498
+ # value: "enhanced",
10499
+ # },
10500
+ # ],
10501
+ # statistics: [
10502
+ # ],
10503
+ # status: "ACTIVE",
10504
+ # tags: [
10505
+ # ],
10506
+ # },
10507
+ # }
10508
+ #
9263
10509
  # @example Request syntax with placeholder values
9264
10510
  #
9265
10511
  # resp = client.update_cluster({
@@ -9371,6 +10617,44 @@ module Aws::ECS
9371
10617
  #
9372
10618
  # * {Types::UpdateClusterSettingsResponse#cluster #cluster} => Types::Cluster
9373
10619
  #
10620
+ #
10621
+ # @example Example: To update a cluster's settings
10622
+ #
10623
+ # # This example enables CloudWatch Container Insights for the default cluster.
10624
+ #
10625
+ # resp = client.update_cluster_settings({
10626
+ # cluster: "default",
10627
+ # settings: [
10628
+ # {
10629
+ # name: "containerInsights",
10630
+ # value: "enabled",
10631
+ # },
10632
+ # ],
10633
+ # })
10634
+ #
10635
+ # resp.to_h outputs the following:
10636
+ # {
10637
+ # cluster: {
10638
+ # active_services_count: 0,
10639
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
10640
+ # cluster_name: "default",
10641
+ # pending_tasks_count: 0,
10642
+ # registered_container_instances_count: 0,
10643
+ # running_tasks_count: 0,
10644
+ # settings: [
10645
+ # {
10646
+ # name: "containerInsights",
10647
+ # value: "enabled",
10648
+ # },
10649
+ # ],
10650
+ # statistics: [
10651
+ # ],
10652
+ # status: "ACTIVE",
10653
+ # tags: [
10654
+ # ],
10655
+ # },
10656
+ # }
10657
+ #
9374
10658
  # @example Request syntax with placeholder values
9375
10659
  #
9376
10660
  # resp = client.update_cluster_settings({
@@ -9483,6 +10767,29 @@ module Aws::ECS
9483
10767
  #
9484
10768
  # * {Types::UpdateContainerAgentResponse#container_instance #container_instance} => Types::ContainerInstance
9485
10769
  #
10770
+ #
10771
+ # @example Example: To update the container agent version on a container instance
10772
+ #
10773
+ # # This example updates the container agent version on the specified container instance in cluster MyCluster.
10774
+ #
10775
+ # resp = client.update_container_agent({
10776
+ # cluster: "MyCluster",
10777
+ # container_instance: "53ac7152-dcd1-4102-81f5-208962864132",
10778
+ # })
10779
+ #
10780
+ # resp.to_h outputs the following:
10781
+ # {
10782
+ # container_instance: {
10783
+ # agent_connected: true,
10784
+ # agent_update_status: "PENDING",
10785
+ # version_info: {
10786
+ # agent_hash: "4023248",
10787
+ # agent_version: "1.0.0",
10788
+ # docker_version: "DockerVersion: 1.5.0",
10789
+ # },
10790
+ # },
10791
+ # }
10792
+ #
9486
10793
  # @example Request syntax with placeholder values
9487
10794
  #
9488
10795
  # resp = client.update_container_agent({
@@ -9635,6 +10942,179 @@ module Aws::ECS
9635
10942
  # * {Types::UpdateContainerInstancesStateResponse#container_instances #container_instances} => Array<Types::ContainerInstance>
9636
10943
  # * {Types::UpdateContainerInstancesStateResponse#failures #failures} => Array<Types::Failure>
9637
10944
  #
10945
+ #
10946
+ # @example Example: To update the state of a container instance
10947
+ #
10948
+ # # This example updates the state of the specified container instance in the default cluster to DRAINING.
10949
+ #
10950
+ # resp = client.update_container_instances_state({
10951
+ # cluster: "default",
10952
+ # container_instances: [
10953
+ # "1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
10954
+ # ],
10955
+ # status: "DRAINING",
10956
+ # })
10957
+ #
10958
+ # resp.to_h outputs the following:
10959
+ # {
10960
+ # container_instances: [
10961
+ # {
10962
+ # version: 30,
10963
+ # agent_connected: true,
10964
+ # attributes: [
10965
+ # {
10966
+ # name: "ecs.availability-zone",
10967
+ # value: "us-west-2b",
10968
+ # },
10969
+ # {
10970
+ # name: "com.amazonaws.ecs.capability.logging-driver.syslog",
10971
+ # },
10972
+ # {
10973
+ # name: "ecs.instance-type",
10974
+ # value: "c4.xlarge",
10975
+ # },
10976
+ # {
10977
+ # name: "ecs.ami-id",
10978
+ # value: "ami-a2ca61c2",
10979
+ # },
10980
+ # {
10981
+ # name: "com.amazonaws.ecs.capability.task-iam-role-network-host",
10982
+ # },
10983
+ # {
10984
+ # name: "com.amazonaws.ecs.capability.logging-driver.awslogs",
10985
+ # },
10986
+ # {
10987
+ # name: "com.amazonaws.ecs.capability.logging-driver.json-file",
10988
+ # },
10989
+ # {
10990
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.17",
10991
+ # },
10992
+ # {
10993
+ # name: "com.amazonaws.ecs.capability.privileged-container",
10994
+ # },
10995
+ # {
10996
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.18",
10997
+ # },
10998
+ # {
10999
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.19",
11000
+ # },
11001
+ # {
11002
+ # name: "com.amazonaws.ecs.capability.ecr-auth",
11003
+ # },
11004
+ # {
11005
+ # name: "ecs.os-type",
11006
+ # value: "linux",
11007
+ # },
11008
+ # {
11009
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.20",
11010
+ # },
11011
+ # {
11012
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.21",
11013
+ # },
11014
+ # {
11015
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.22",
11016
+ # },
11017
+ # {
11018
+ # name: "com.amazonaws.ecs.capability.task-iam-role",
11019
+ # },
11020
+ # {
11021
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.23",
11022
+ # },
11023
+ # ],
11024
+ # container_instance_arn: "arn:aws:ecs:us-west-2:012345678910:container-instance/default/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
11025
+ # ec2_instance_id: "i-05d99c76955727ec6",
11026
+ # pending_tasks_count: 0,
11027
+ # registered_resources: [
11028
+ # {
11029
+ # name: "CPU",
11030
+ # type: "INTEGER",
11031
+ # double_value: 0,
11032
+ # integer_value: 4096,
11033
+ # long_value: 0,
11034
+ # },
11035
+ # {
11036
+ # name: "MEMORY",
11037
+ # type: "INTEGER",
11038
+ # double_value: 0,
11039
+ # integer_value: 7482,
11040
+ # long_value: 0,
11041
+ # },
11042
+ # {
11043
+ # name: "PORTS",
11044
+ # type: "STRINGSET",
11045
+ # double_value: 0,
11046
+ # integer_value: 0,
11047
+ # long_value: 0,
11048
+ # string_set_value: [
11049
+ # "22",
11050
+ # "2376",
11051
+ # "2375",
11052
+ # "51678",
11053
+ # "51679",
11054
+ # ],
11055
+ # },
11056
+ # {
11057
+ # name: "PORTS_UDP",
11058
+ # type: "STRINGSET",
11059
+ # double_value: 0,
11060
+ # integer_value: 0,
11061
+ # long_value: 0,
11062
+ # string_set_value: [
11063
+ # ],
11064
+ # },
11065
+ # ],
11066
+ # remaining_resources: [
11067
+ # {
11068
+ # name: "CPU",
11069
+ # type: "INTEGER",
11070
+ # double_value: 0,
11071
+ # integer_value: 4096,
11072
+ # long_value: 0,
11073
+ # },
11074
+ # {
11075
+ # name: "MEMORY",
11076
+ # type: "INTEGER",
11077
+ # double_value: 0,
11078
+ # integer_value: 7482,
11079
+ # long_value: 0,
11080
+ # },
11081
+ # {
11082
+ # name: "PORTS",
11083
+ # type: "STRINGSET",
11084
+ # double_value: 0,
11085
+ # integer_value: 0,
11086
+ # long_value: 0,
11087
+ # string_set_value: [
11088
+ # "22",
11089
+ # "2376",
11090
+ # "2375",
11091
+ # "51678",
11092
+ # "51679",
11093
+ # ],
11094
+ # },
11095
+ # {
11096
+ # name: "PORTS_UDP",
11097
+ # type: "STRINGSET",
11098
+ # double_value: 0,
11099
+ # integer_value: 0,
11100
+ # long_value: 0,
11101
+ # string_set_value: [
11102
+ # ],
11103
+ # },
11104
+ # ],
11105
+ # running_tasks_count: 0,
11106
+ # status: "DRAINING",
11107
+ # version_info: {
11108
+ # agent_hash: "efe53c6",
11109
+ # agent_version: "1.13.1",
11110
+ # docker_version: "DockerVersion: 1.11.2",
11111
+ # },
11112
+ # },
11113
+ # ],
11114
+ # failures: [
11115
+ # ],
11116
+ # }
11117
+ #
9638
11118
  # @example Request syntax with placeholder values
9639
11119
  #
9640
11120
  # resp = client.update_container_instances_state({
@@ -10500,6 +11980,54 @@ module Aws::ECS
10500
11980
  #
10501
11981
  # * {Types::UpdateServicePrimaryTaskSetResponse#task_set #task_set} => Types::TaskSet
10502
11982
  #
11983
+ #
11984
+ # @example Example: To update the primary task set for a service
11985
+ #
11986
+ # # This example updates the primary task set for a service MyService that uses the EXTERNAL deployment controller type.
11987
+ #
11988
+ # resp = client.update_service_primary_task_set({
11989
+ # cluster: "MyCluster",
11990
+ # primary_task_set: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
11991
+ # service: "MyService",
11992
+ # })
11993
+ #
11994
+ # resp.to_h outputs the following:
11995
+ # {
11996
+ # task_set: {
11997
+ # computed_desired_count: 1,
11998
+ # created_at: Time.parse(1557128360.711),
11999
+ # id: "ecs-svc/1234567890123456789",
12000
+ # launch_type: "EC2",
12001
+ # load_balancers: [
12002
+ # ],
12003
+ # network_configuration: {
12004
+ # awsvpc_configuration: {
12005
+ # assign_public_ip: "DISABLED",
12006
+ # security_groups: [
12007
+ # "sg-12344312",
12008
+ # ],
12009
+ # subnets: [
12010
+ # "subnet-12344321",
12011
+ # ],
12012
+ # },
12013
+ # },
12014
+ # pending_count: 0,
12015
+ # running_count: 0,
12016
+ # scale: {
12017
+ # value: 50,
12018
+ # unit: "PERCENT",
12019
+ # },
12020
+ # service_registries: [
12021
+ # ],
12022
+ # stability_status: "STABILIZING",
12023
+ # stability_status_at: Time.parse(1557129279.914),
12024
+ # status: "PRIMARY",
12025
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
12026
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12027
+ # updated_at: Time.parse(1557129412.653),
12028
+ # },
12029
+ # }
12030
+ #
10503
12031
  # @example Request syntax with placeholder values
10504
12032
  #
10505
12033
  # resp = client.update_service_primary_task_set({
@@ -10764,6 +12292,58 @@ module Aws::ECS
10764
12292
  #
10765
12293
  # * {Types::UpdateTaskSetResponse#task_set #task_set} => Types::TaskSet
10766
12294
  #
12295
+ #
12296
+ # @example Example: To update a task set
12297
+ #
12298
+ # # This example updates the task set to adjust the scale.
12299
+ #
12300
+ # resp = client.update_task_set({
12301
+ # cluster: "MyCluster",
12302
+ # scale: {
12303
+ # value: 50,
12304
+ # unit: "PERCENT",
12305
+ # },
12306
+ # service: "MyService",
12307
+ # task_set: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12308
+ # })
12309
+ #
12310
+ # resp.to_h outputs the following:
12311
+ # {
12312
+ # task_set: {
12313
+ # computed_desired_count: 0,
12314
+ # created_at: Time.parse(1557128360.711),
12315
+ # id: "ecs-svc/1234567890123456789",
12316
+ # launch_type: "EC2",
12317
+ # load_balancers: [
12318
+ # ],
12319
+ # network_configuration: {
12320
+ # awsvpc_configuration: {
12321
+ # assign_public_ip: "DISABLED",
12322
+ # security_groups: [
12323
+ # "sg-12344321",
12324
+ # ],
12325
+ # subnets: [
12326
+ # "subnet-12344321",
12327
+ # ],
12328
+ # },
12329
+ # },
12330
+ # pending_count: 0,
12331
+ # running_count: 0,
12332
+ # scale: {
12333
+ # value: 50,
12334
+ # unit: "PERCENT",
12335
+ # },
12336
+ # service_registries: [
12337
+ # ],
12338
+ # stability_status: "STABILIZING",
12339
+ # stability_status_at: Time.parse(1557129279.914),
12340
+ # status: "ACTIVE",
12341
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
12342
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12343
+ # updated_at: Time.parse(1557129279.914),
12344
+ # },
12345
+ # }
12346
+ #
10767
12347
  # @example Request syntax with placeholder values
10768
12348
  #
10769
12349
  # resp = client.update_task_set({
@@ -10849,7 +12429,7 @@ module Aws::ECS
10849
12429
  tracer: tracer
10850
12430
  )
10851
12431
  context[:gem_name] = 'aws-sdk-ecs'
10852
- context[:gem_version] = '1.173.0'
12432
+ context[:gem_version] = '1.175.0'
10853
12433
  Seahorse::Client::Request.new(handlers, context)
10854
12434
  end
10855
12435