aws-sdk-ecs 1.246.0 → 1.247.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +52 -5
- data/lib/aws-sdk-ecs/client_api.rb +4 -0
- data/lib/aws-sdk-ecs/types.rb +70 -4
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/types.rbs +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07c6e1db08f44c0ab92aed43722fed55423650ef3ee50e9af0b742397400093e
|
|
4
|
+
data.tar.gz: 67bc2f27e7aacfee84eca0750993ae64d3517ea1bd276f27c7fa3b907ec1add4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a950d48be97d42f4046341d4f9e54849db2541532506874608d639511d6d7fea51be488ea166d42cb05295108d0913c33df7661925f28526ed7a7d381e6f1dd
|
|
7
|
+
data.tar.gz: ca10f96137e8a9348a9c7550f6f86a0ebe7d8a0bf458316fcf6c8c086c63a3cbb1f69111fbbd1141e2c20076743ae0288c658412d776e596a2389ad68a5b3409
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.247.0 (2026-09-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This feature adds support for setting the cpu architecture type that should be used to launch tasks for an Express Gateway Service.
|
|
8
|
+
|
|
4
9
|
1.246.0 (2026-09-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.247.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
|
@@ -1446,6 +1446,26 @@ module Aws::ECS
|
|
|
1446
1446
|
# determines the memory allocation for each task in the Express service.
|
|
1447
1447
|
# The default value for an express service is 512 MiB.
|
|
1448
1448
|
#
|
|
1449
|
+
# @option params [String] :cpu_architecture
|
|
1450
|
+
# The CPU architecture that the tasks in the Express service run on.
|
|
1451
|
+
# Amazon ECS applies this value to the task definition revision that it
|
|
1452
|
+
# registers for the service. If you don't specify a value, the default
|
|
1453
|
+
# is `X86_64`.
|
|
1454
|
+
#
|
|
1455
|
+
# Valid values:
|
|
1456
|
+
#
|
|
1457
|
+
# * `X86_64` - The x86 64-bit architecture.
|
|
1458
|
+
#
|
|
1459
|
+
# * `ARM64` - The 64-bit ARM architecture.
|
|
1460
|
+
#
|
|
1461
|
+
# Make sure that the container image that you specify supports the
|
|
1462
|
+
# architecture that you choose. The operating system family for an
|
|
1463
|
+
# Express service is always `LINUX`.
|
|
1464
|
+
#
|
|
1465
|
+
# You can't specify `cpuArchitecture` when you also specify
|
|
1466
|
+
# `taskDefinitionArn`, because this value applies only to a task
|
|
1467
|
+
# definition that Amazon ECS registers on your behalf.
|
|
1468
|
+
#
|
|
1449
1469
|
# @option params [Types::ExpressGatewayScalingTarget] :scaling_target
|
|
1450
1470
|
# The auto-scaling configuration for the Express service. This defines
|
|
1451
1471
|
# how the service automatically adjusts the number of running tasks
|
|
@@ -1472,8 +1492,8 @@ module Aws::ECS
|
|
|
1472
1492
|
# task definition must also have `FARGATE` compatibility.
|
|
1473
1493
|
#
|
|
1474
1494
|
# If you provide a task definition ARN, you cannot also specify
|
|
1475
|
-
# `primaryContainer`, `executionRoleArn`, `taskRoleArn`, `cpu`,
|
|
1476
|
-
# `memory`.
|
|
1495
|
+
# `primaryContainer`, `executionRoleArn`, `taskRoleArn`, `cpu`,
|
|
1496
|
+
# `memory`, or `cpuArchitecture`.
|
|
1477
1497
|
#
|
|
1478
1498
|
# @return [Types::CreateExpressGatewayServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1479
1499
|
#
|
|
@@ -1518,6 +1538,7 @@ module Aws::ECS
|
|
|
1518
1538
|
# },
|
|
1519
1539
|
# cpu: "String",
|
|
1520
1540
|
# memory: "String",
|
|
1541
|
+
# cpu_architecture: "X86_64", # accepts X86_64, ARM64
|
|
1521
1542
|
# scaling_target: {
|
|
1522
1543
|
# min_task_count: 1,
|
|
1523
1544
|
# max_task_count: 1,
|
|
@@ -1549,6 +1570,7 @@ module Aws::ECS
|
|
|
1549
1570
|
# resp.service.active_configurations[0].task_definition_arn #=> String
|
|
1550
1571
|
# resp.service.active_configurations[0].cpu #=> String
|
|
1551
1572
|
# resp.service.active_configurations[0].memory #=> String
|
|
1573
|
+
# resp.service.active_configurations[0].cpu_architecture #=> String, one of "X86_64", "ARM64"
|
|
1552
1574
|
# resp.service.active_configurations[0].network_configuration.security_groups #=> Array
|
|
1553
1575
|
# resp.service.active_configurations[0].network_configuration.security_groups[0] #=> String
|
|
1554
1576
|
# resp.service.active_configurations[0].network_configuration.subnets #=> Array
|
|
@@ -3789,6 +3811,7 @@ module Aws::ECS
|
|
|
3789
3811
|
# resp.service.active_configurations[0].task_definition_arn #=> String
|
|
3790
3812
|
# resp.service.active_configurations[0].cpu #=> String
|
|
3791
3813
|
# resp.service.active_configurations[0].memory #=> String
|
|
3814
|
+
# resp.service.active_configurations[0].cpu_architecture #=> String, one of "X86_64", "ARM64"
|
|
3792
3815
|
# resp.service.active_configurations[0].network_configuration.security_groups #=> Array
|
|
3793
3816
|
# resp.service.active_configurations[0].network_configuration.security_groups[0] #=> String
|
|
3794
3817
|
# resp.service.active_configurations[0].network_configuration.subnets #=> Array
|
|
@@ -6080,6 +6103,7 @@ module Aws::ECS
|
|
|
6080
6103
|
# resp.service.active_configurations[0].task_definition_arn #=> String
|
|
6081
6104
|
# resp.service.active_configurations[0].cpu #=> String
|
|
6082
6105
|
# resp.service.active_configurations[0].memory #=> String
|
|
6106
|
+
# resp.service.active_configurations[0].cpu_architecture #=> String, one of "X86_64", "ARM64"
|
|
6083
6107
|
# resp.service.active_configurations[0].network_configuration.security_groups #=> Array
|
|
6084
6108
|
# resp.service.active_configurations[0].network_configuration.security_groups[0] #=> String
|
|
6085
6109
|
# resp.service.active_configurations[0].network_configuration.subnets #=> Array
|
|
@@ -14726,6 +14750,27 @@ module Aws::ECS
|
|
|
14726
14750
|
# @option params [String] :memory
|
|
14727
14751
|
# The amount of memory (in MiB) used by the task.
|
|
14728
14752
|
#
|
|
14753
|
+
# @option params [String] :cpu_architecture
|
|
14754
|
+
# The CPU architecture that the tasks in the Express service run on.
|
|
14755
|
+
# Amazon ECS applies this value to the task definition revision that it
|
|
14756
|
+
# registers for the service. If you don't specify a value, the service
|
|
14757
|
+
# keeps the architecture that it currently runs on.
|
|
14758
|
+
#
|
|
14759
|
+
# Valid values:
|
|
14760
|
+
#
|
|
14761
|
+
# * `X86_64` - The x86 64-bit architecture.
|
|
14762
|
+
#
|
|
14763
|
+
# * `ARM64` - The 64-bit ARM architecture.
|
|
14764
|
+
#
|
|
14765
|
+
# Changing the architecture starts a new deployment that replaces the
|
|
14766
|
+
# running tasks. Make sure that the container image that the service
|
|
14767
|
+
# uses supports the architecture that you choose. The operating system
|
|
14768
|
+
# family for an Express service is always `LINUX`.
|
|
14769
|
+
#
|
|
14770
|
+
# You can't specify `cpuArchitecture` when you also specify
|
|
14771
|
+
# `taskDefinitionArn`, because this value applies only to a task
|
|
14772
|
+
# definition that Amazon ECS registers on your behalf.
|
|
14773
|
+
#
|
|
14729
14774
|
# @option params [Types::ExpressGatewayScalingTarget] :scaling_target
|
|
14730
14775
|
# The auto-scaling configuration for the Express service.
|
|
14731
14776
|
#
|
|
@@ -14740,8 +14785,8 @@ module Aws::ECS
|
|
|
14740
14785
|
# task definition must also have `FARGATE` compatibility.
|
|
14741
14786
|
#
|
|
14742
14787
|
# If you provide a task definition ARN, you cannot also specify
|
|
14743
|
-
# `primaryContainer`, `executionRoleArn`, `taskRoleArn`, `cpu`,
|
|
14744
|
-
# `memory`.
|
|
14788
|
+
# `primaryContainer`, `executionRoleArn`, `taskRoleArn`, `cpu`,
|
|
14789
|
+
# `memory`, or `cpuArchitecture`.
|
|
14745
14790
|
#
|
|
14746
14791
|
# @return [Types::UpdateExpressGatewayServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
14747
14792
|
#
|
|
@@ -14784,6 +14829,7 @@ module Aws::ECS
|
|
|
14784
14829
|
# },
|
|
14785
14830
|
# cpu: "String",
|
|
14786
14831
|
# memory: "String",
|
|
14832
|
+
# cpu_architecture: "X86_64", # accepts X86_64, ARM64
|
|
14787
14833
|
# scaling_target: {
|
|
14788
14834
|
# min_task_count: 1,
|
|
14789
14835
|
# max_task_count: 1,
|
|
@@ -14806,6 +14852,7 @@ module Aws::ECS
|
|
|
14806
14852
|
# resp.service.target_configuration.task_definition_arn #=> String
|
|
14807
14853
|
# resp.service.target_configuration.cpu #=> String
|
|
14808
14854
|
# resp.service.target_configuration.memory #=> String
|
|
14855
|
+
# resp.service.target_configuration.cpu_architecture #=> String, one of "X86_64", "ARM64"
|
|
14809
14856
|
# resp.service.target_configuration.network_configuration.security_groups #=> Array
|
|
14810
14857
|
# resp.service.target_configuration.network_configuration.security_groups[0] #=> String
|
|
14811
14858
|
# resp.service.target_configuration.network_configuration.subnets #=> Array
|
|
@@ -16319,7 +16366,7 @@ module Aws::ECS
|
|
|
16319
16366
|
tracer: tracer
|
|
16320
16367
|
)
|
|
16321
16368
|
context[:gem_name] = 'aws-sdk-ecs'
|
|
16322
|
-
context[:gem_version] = '1.
|
|
16369
|
+
context[:gem_version] = '1.247.0'
|
|
16323
16370
|
Seahorse::Client::Request.new(handlers, context)
|
|
16324
16371
|
end
|
|
16325
16372
|
|
|
@@ -281,6 +281,7 @@ module Aws::ECS
|
|
|
281
281
|
ExecuteCommandLogging = Shapes::StringShape.new(name: 'ExecuteCommandLogging')
|
|
282
282
|
ExecuteCommandRequest = Shapes::StructureShape.new(name: 'ExecuteCommandRequest')
|
|
283
283
|
ExecuteCommandResponse = Shapes::StructureShape.new(name: 'ExecuteCommandResponse')
|
|
284
|
+
ExpressCpuArchitecture = Shapes::StringShape.new(name: 'ExpressCpuArchitecture')
|
|
284
285
|
ExpressGatewayContainer = Shapes::StructureShape.new(name: 'ExpressGatewayContainer')
|
|
285
286
|
ExpressGatewayRepositoryCredentials = Shapes::StructureShape.new(name: 'ExpressGatewayRepositoryCredentials')
|
|
286
287
|
ExpressGatewayScalingTarget = Shapes::StructureShape.new(name: 'ExpressGatewayScalingTarget')
|
|
@@ -1026,6 +1027,7 @@ module Aws::ECS
|
|
|
1026
1027
|
CreateExpressGatewayServiceRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: ExpressGatewayServiceNetworkConfiguration, location_name: "networkConfiguration"))
|
|
1027
1028
|
CreateExpressGatewayServiceRequest.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
|
|
1028
1029
|
CreateExpressGatewayServiceRequest.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
1030
|
+
CreateExpressGatewayServiceRequest.add_member(:cpu_architecture, Shapes::ShapeRef.new(shape: ExpressCpuArchitecture, location_name: "cpuArchitecture"))
|
|
1029
1031
|
CreateExpressGatewayServiceRequest.add_member(:scaling_target, Shapes::ShapeRef.new(shape: ExpressGatewayScalingTarget, location_name: "scalingTarget"))
|
|
1030
1032
|
CreateExpressGatewayServiceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
1031
1033
|
CreateExpressGatewayServiceRequest.add_member(:task_definition_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskDefinitionArn"))
|
|
@@ -1718,6 +1720,7 @@ module Aws::ECS
|
|
|
1718
1720
|
ExpressGatewayServiceConfiguration.add_member(:task_definition_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskDefinitionArn"))
|
|
1719
1721
|
ExpressGatewayServiceConfiguration.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
|
|
1720
1722
|
ExpressGatewayServiceConfiguration.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
1723
|
+
ExpressGatewayServiceConfiguration.add_member(:cpu_architecture, Shapes::ShapeRef.new(shape: ExpressCpuArchitecture, location_name: "cpuArchitecture"))
|
|
1721
1724
|
ExpressGatewayServiceConfiguration.add_member(:network_configuration, Shapes::ShapeRef.new(shape: ExpressGatewayServiceNetworkConfiguration, location_name: "networkConfiguration"))
|
|
1722
1725
|
ExpressGatewayServiceConfiguration.add_member(:health_check_path, Shapes::ShapeRef.new(shape: String, location_name: "healthCheckPath"))
|
|
1723
1726
|
ExpressGatewayServiceConfiguration.add_member(:primary_container, Shapes::ShapeRef.new(shape: ExpressGatewayContainer, location_name: "primaryContainer"))
|
|
@@ -3098,6 +3101,7 @@ module Aws::ECS
|
|
|
3098
3101
|
UpdateExpressGatewayServiceRequest.add_member(:network_configuration, Shapes::ShapeRef.new(shape: ExpressGatewayServiceNetworkConfiguration, location_name: "networkConfiguration"))
|
|
3099
3102
|
UpdateExpressGatewayServiceRequest.add_member(:cpu, Shapes::ShapeRef.new(shape: String, location_name: "cpu"))
|
|
3100
3103
|
UpdateExpressGatewayServiceRequest.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
|
|
3104
|
+
UpdateExpressGatewayServiceRequest.add_member(:cpu_architecture, Shapes::ShapeRef.new(shape: ExpressCpuArchitecture, location_name: "cpuArchitecture"))
|
|
3101
3105
|
UpdateExpressGatewayServiceRequest.add_member(:scaling_target, Shapes::ShapeRef.new(shape: ExpressGatewayScalingTarget, location_name: "scalingTarget"))
|
|
3102
3106
|
UpdateExpressGatewayServiceRequest.add_member(:task_definition_arn, Shapes::ShapeRef.new(shape: String, location_name: "taskDefinitionArn"))
|
|
3103
3107
|
UpdateExpressGatewayServiceRequest.struct_class = Types::UpdateExpressGatewayServiceRequest
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
|
@@ -3289,6 +3289,27 @@ module Aws::ECS
|
|
|
3289
3289
|
# service. The default value for an express service is 512 MiB.
|
|
3290
3290
|
# @return [String]
|
|
3291
3291
|
#
|
|
3292
|
+
# @!attribute [rw] cpu_architecture
|
|
3293
|
+
# The CPU architecture that the tasks in the Express service run on.
|
|
3294
|
+
# Amazon ECS applies this value to the task definition revision that
|
|
3295
|
+
# it registers for the service. If you don't specify a value, the
|
|
3296
|
+
# default is `X86_64`.
|
|
3297
|
+
#
|
|
3298
|
+
# Valid values:
|
|
3299
|
+
#
|
|
3300
|
+
# * `X86_64` - The x86 64-bit architecture.
|
|
3301
|
+
#
|
|
3302
|
+
# * `ARM64` - The 64-bit ARM architecture.
|
|
3303
|
+
#
|
|
3304
|
+
# Make sure that the container image that you specify supports the
|
|
3305
|
+
# architecture that you choose. The operating system family for an
|
|
3306
|
+
# Express service is always `LINUX`.
|
|
3307
|
+
#
|
|
3308
|
+
# You can't specify `cpuArchitecture` when you also specify
|
|
3309
|
+
# `taskDefinitionArn`, because this value applies only to a task
|
|
3310
|
+
# definition that Amazon ECS registers on your behalf.
|
|
3311
|
+
# @return [String]
|
|
3312
|
+
#
|
|
3292
3313
|
# @!attribute [rw] scaling_target
|
|
3293
3314
|
# The auto-scaling configuration for the Express service. This defines
|
|
3294
3315
|
# how the service automatically adjusts the number of running tasks
|
|
@@ -3317,8 +3338,8 @@ module Aws::ECS
|
|
|
3317
3338
|
# task definition must also have `FARGATE` compatibility.
|
|
3318
3339
|
#
|
|
3319
3340
|
# If you provide a task definition ARN, you cannot also specify
|
|
3320
|
-
# `primaryContainer`, `executionRoleArn`, `taskRoleArn`, `cpu`,
|
|
3321
|
-
# `memory`.
|
|
3341
|
+
# `primaryContainer`, `executionRoleArn`, `taskRoleArn`, `cpu`,
|
|
3342
|
+
# `memory`, or `cpuArchitecture`.
|
|
3322
3343
|
# @return [String]
|
|
3323
3344
|
#
|
|
3324
3345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CreateExpressGatewayServiceRequest AWS API Documentation
|
|
@@ -3334,6 +3355,7 @@ module Aws::ECS
|
|
|
3334
3355
|
:network_configuration,
|
|
3335
3356
|
:cpu,
|
|
3336
3357
|
:memory,
|
|
3358
|
+
:cpu_architecture,
|
|
3337
3359
|
:scaling_target,
|
|
3338
3360
|
:tags,
|
|
3339
3361
|
:task_definition_arn)
|
|
@@ -8027,6 +8049,26 @@ module Aws::ECS
|
|
|
8027
8049
|
# The memory allocation for tasks in this service revision.
|
|
8028
8050
|
# @return [String]
|
|
8029
8051
|
#
|
|
8052
|
+
# @!attribute [rw] cpu_architecture
|
|
8053
|
+
# The CPU architecture that the tasks in this service revision run on.
|
|
8054
|
+
# This is the architecture from the task definition that the service
|
|
8055
|
+
# revision uses, so it reflects the default or the previously
|
|
8056
|
+
# configured architecture when the request that created the revision
|
|
8057
|
+
# didn't specify one.
|
|
8058
|
+
#
|
|
8059
|
+
# Valid values:
|
|
8060
|
+
#
|
|
8061
|
+
# * `X86_64` - The x86 64-bit architecture.
|
|
8062
|
+
#
|
|
8063
|
+
# * `ARM64` - The 64-bit ARM architecture.
|
|
8064
|
+
#
|
|
8065
|
+
# This value isn't returned when the task definition for the service
|
|
8066
|
+
# revision doesn't specify a runtime platform. Because the
|
|
8067
|
+
# architecture comes from each service revision's own task
|
|
8068
|
+
# definition, revisions of the same service can report different
|
|
8069
|
+
# architectures.
|
|
8070
|
+
# @return [String]
|
|
8071
|
+
#
|
|
8030
8072
|
# @!attribute [rw] network_configuration
|
|
8031
8073
|
# The network configuration for tasks in this service revision.
|
|
8032
8074
|
# @return [Types::ExpressGatewayServiceNetworkConfiguration]
|
|
@@ -8060,6 +8102,7 @@ module Aws::ECS
|
|
|
8060
8102
|
:task_definition_arn,
|
|
8061
8103
|
:cpu,
|
|
8062
8104
|
:memory,
|
|
8105
|
+
:cpu_architecture,
|
|
8063
8106
|
:network_configuration,
|
|
8064
8107
|
:health_check_path,
|
|
8065
8108
|
:primary_container,
|
|
@@ -18964,6 +19007,28 @@ module Aws::ECS
|
|
|
18964
19007
|
# The amount of memory (in MiB) used by the task.
|
|
18965
19008
|
# @return [String]
|
|
18966
19009
|
#
|
|
19010
|
+
# @!attribute [rw] cpu_architecture
|
|
19011
|
+
# The CPU architecture that the tasks in the Express service run on.
|
|
19012
|
+
# Amazon ECS applies this value to the task definition revision that
|
|
19013
|
+
# it registers for the service. If you don't specify a value, the
|
|
19014
|
+
# service keeps the architecture that it currently runs on.
|
|
19015
|
+
#
|
|
19016
|
+
# Valid values:
|
|
19017
|
+
#
|
|
19018
|
+
# * `X86_64` - The x86 64-bit architecture.
|
|
19019
|
+
#
|
|
19020
|
+
# * `ARM64` - The 64-bit ARM architecture.
|
|
19021
|
+
#
|
|
19022
|
+
# Changing the architecture starts a new deployment that replaces the
|
|
19023
|
+
# running tasks. Make sure that the container image that the service
|
|
19024
|
+
# uses supports the architecture that you choose. The operating system
|
|
19025
|
+
# family for an Express service is always `LINUX`.
|
|
19026
|
+
#
|
|
19027
|
+
# You can't specify `cpuArchitecture` when you also specify
|
|
19028
|
+
# `taskDefinitionArn`, because this value applies only to a task
|
|
19029
|
+
# definition that Amazon ECS registers on your behalf.
|
|
19030
|
+
# @return [String]
|
|
19031
|
+
#
|
|
18967
19032
|
# @!attribute [rw] scaling_target
|
|
18968
19033
|
# The auto-scaling configuration for the Express service.
|
|
18969
19034
|
# @return [Types::ExpressGatewayScalingTarget]
|
|
@@ -18979,8 +19044,8 @@ module Aws::ECS
|
|
|
18979
19044
|
# task definition must also have `FARGATE` compatibility.
|
|
18980
19045
|
#
|
|
18981
19046
|
# If you provide a task definition ARN, you cannot also specify
|
|
18982
|
-
# `primaryContainer`, `executionRoleArn`, `taskRoleArn`, `cpu`,
|
|
18983
|
-
# `memory`.
|
|
19047
|
+
# `primaryContainer`, `executionRoleArn`, `taskRoleArn`, `cpu`,
|
|
19048
|
+
# `memory`, or `cpuArchitecture`.
|
|
18984
19049
|
# @return [String]
|
|
18985
19050
|
#
|
|
18986
19051
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateExpressGatewayServiceRequest AWS API Documentation
|
|
@@ -18994,6 +19059,7 @@ module Aws::ECS
|
|
|
18994
19059
|
:network_configuration,
|
|
18995
19060
|
:cpu,
|
|
18996
19061
|
:memory,
|
|
19062
|
+
:cpu_architecture,
|
|
18997
19063
|
:scaling_target,
|
|
18998
19064
|
:task_definition_arn)
|
|
18999
19065
|
SENSITIVE = []
|
data/lib/aws-sdk-ecs.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -233,6 +233,7 @@ module Aws
|
|
|
233
233
|
},
|
|
234
234
|
?cpu: ::String,
|
|
235
235
|
?memory: ::String,
|
|
236
|
+
?cpu_architecture: ("X86_64" | "ARM64"),
|
|
236
237
|
?scaling_target: {
|
|
237
238
|
min_task_count: ::Integer?,
|
|
238
239
|
max_task_count: ::Integer?,
|
|
@@ -1810,6 +1811,7 @@ module Aws
|
|
|
1810
1811
|
},
|
|
1811
1812
|
?cpu: ::String,
|
|
1812
1813
|
?memory: ::String,
|
|
1814
|
+
?cpu_architecture: ("X86_64" | "ARM64"),
|
|
1813
1815
|
?scaling_target: {
|
|
1814
1816
|
min_task_count: ::Integer?,
|
|
1815
1817
|
max_task_count: ::Integer?,
|
data/sig/types.rbs
CHANGED
|
@@ -424,6 +424,7 @@ module Aws::ECS
|
|
|
424
424
|
attr_accessor network_configuration: Types::ExpressGatewayServiceNetworkConfiguration
|
|
425
425
|
attr_accessor cpu: ::String
|
|
426
426
|
attr_accessor memory: ::String
|
|
427
|
+
attr_accessor cpu_architecture: ("X86_64" | "ARM64")
|
|
427
428
|
attr_accessor scaling_target: Types::ExpressGatewayScalingTarget
|
|
428
429
|
attr_accessor tags: ::Array[Types::Tag]
|
|
429
430
|
attr_accessor task_definition_arn: ::String
|
|
@@ -1289,6 +1290,7 @@ module Aws::ECS
|
|
|
1289
1290
|
attr_accessor task_definition_arn: ::String
|
|
1290
1291
|
attr_accessor cpu: ::String
|
|
1291
1292
|
attr_accessor memory: ::String
|
|
1293
|
+
attr_accessor cpu_architecture: ("X86_64" | "ARM64")
|
|
1292
1294
|
attr_accessor network_configuration: Types::ExpressGatewayServiceNetworkConfiguration
|
|
1293
1295
|
attr_accessor health_check_path: ::String
|
|
1294
1296
|
attr_accessor primary_container: Types::ExpressGatewayContainer
|
|
@@ -2926,6 +2928,7 @@ module Aws::ECS
|
|
|
2926
2928
|
attr_accessor network_configuration: Types::ExpressGatewayServiceNetworkConfiguration
|
|
2927
2929
|
attr_accessor cpu: ::String
|
|
2928
2930
|
attr_accessor memory: ::String
|
|
2931
|
+
attr_accessor cpu_architecture: ("X86_64" | "ARM64")
|
|
2929
2932
|
attr_accessor scaling_target: Types::ExpressGatewayScalingTarget
|
|
2930
2933
|
attr_accessor task_definition_arn: ::String
|
|
2931
2934
|
SENSITIVE: []
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ecs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.247.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.256.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.256.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|