aws-sdk-ecs 1.79.0 → 1.80.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.rb +1 -1
- data/lib/aws-sdk-ecs/client.rb +6 -24
- data/lib/aws-sdk-ecs/types.rb +8 -22
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b958e282842cccdf6ff81deef2a2fd1f24ae49fbd252104eeb4a661182c094b3
|
4
|
+
data.tar.gz: d725abd51469334fa6ec45a000e561bc32ede7b51a4e23cd857b6f8bc4c34e3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4930b66d9a775a70752d7c8dcc95cbd5129b0a9a649aaaae3a68e70e200cf112a9379dbc00fab7fdcd1a1c804e064a87e0dc21c9ae87508208638b9e510de85
|
7
|
+
data.tar.gz: f0980d9be823d47c2171f0cc1796358701914eb50e5975a928bfa1d68925b034173de76056effc96116589a7cb0d7d3d09f0cfaee4cdc8b3c3d1294e16f9d2b9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
data/lib/aws-sdk-ecs.rb
CHANGED
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -2653,33 +2653,16 @@ module Aws::ECS
|
|
2653
2653
|
# assumed.
|
2654
2654
|
#
|
2655
2655
|
# @option params [Array<String>] :include
|
2656
|
-
# Whether to include additional information about
|
2657
|
-
# response. If this field is omitted,
|
2658
|
-
# tags are not included.
|
2656
|
+
# Whether to include additional information about the clusters in the
|
2657
|
+
# response. If this field is omitted, this information isn't included.
|
2659
2658
|
#
|
2660
2659
|
# If `ATTACHMENTS` is specified, the attachments for the container
|
2661
2660
|
# instances or tasks within the cluster are included.
|
2662
2661
|
#
|
2663
2662
|
# If `SETTINGS` is specified, the settings for the cluster are included.
|
2664
2663
|
#
|
2665
|
-
# If `STATISTICS` is specified, the
|
2666
|
-
# separated by launch type
|
2667
|
-
#
|
2668
|
-
# * runningEC2TasksCount
|
2669
|
-
#
|
2670
|
-
# * runningFargateTasksCount
|
2671
|
-
#
|
2672
|
-
# * pendingEC2TasksCount
|
2673
|
-
#
|
2674
|
-
# * pendingFargateTasksCount
|
2675
|
-
#
|
2676
|
-
# * activeEC2ServiceCount
|
2677
|
-
#
|
2678
|
-
# * activeFargateServiceCount
|
2679
|
-
#
|
2680
|
-
# * drainingEC2ServiceCount
|
2681
|
-
#
|
2682
|
-
# * drainingFargateServiceCount
|
2664
|
+
# If `STATISTICS` is specified, the task and service count is included,
|
2665
|
+
# separated by launch type.
|
2683
2666
|
#
|
2684
2667
|
# If `TAGS` is specified, the metadata tags associated with the cluster
|
2685
2668
|
# are included.
|
@@ -2774,8 +2757,7 @@ module Aws::ECS
|
|
2774
2757
|
req.send_request(options)
|
2775
2758
|
end
|
2776
2759
|
|
2777
|
-
# Describes
|
2778
|
-
# Returns metadata about registered and remaining resources on each
|
2760
|
+
# Describes one or more container instances. Returns metadata about each
|
2779
2761
|
# container instance requested.
|
2780
2762
|
#
|
2781
2763
|
# @option params [String] :cluster
|
@@ -8512,7 +8494,7 @@ module Aws::ECS
|
|
8512
8494
|
params: params,
|
8513
8495
|
config: config)
|
8514
8496
|
context[:gem_name] = 'aws-sdk-ecs'
|
8515
|
-
context[:gem_version] = '1.
|
8497
|
+
context[:gem_version] = '1.80.0'
|
8516
8498
|
Seahorse::Client::Request.new(handlers, context)
|
8517
8499
|
end
|
8518
8500
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -2061,7 +2061,9 @@ module Aws::ECS
|
|
2061
2061
|
# @return [String]
|
2062
2062
|
#
|
2063
2063
|
# @!attribute [rw] ec2_instance_id
|
2064
|
-
# The
|
2064
|
+
# The ID of the container instance. For Amazon EC2 instances, this
|
2065
|
+
# value is the Amazon EC2 instance ID. For external instances, this
|
2066
|
+
# value is the AWS Systems Manager managed instance ID.
|
2065
2067
|
# @return [String]
|
2066
2068
|
#
|
2067
2069
|
# @!attribute [rw] capacity_provider_name
|
@@ -4110,9 +4112,9 @@ module Aws::ECS
|
|
4110
4112
|
# @return [Array<String>]
|
4111
4113
|
#
|
4112
4114
|
# @!attribute [rw] include
|
4113
|
-
# Whether to include additional information about
|
4114
|
-
# response. If this field is omitted,
|
4115
|
-
#
|
4115
|
+
# Whether to include additional information about the clusters in the
|
4116
|
+
# response. If this field is omitted, this information isn't
|
4117
|
+
# included.
|
4116
4118
|
#
|
4117
4119
|
# If `ATTACHMENTS` is specified, the attachments for the container
|
4118
4120
|
# instances or tasks within the cluster are included.
|
@@ -4120,24 +4122,8 @@ module Aws::ECS
|
|
4120
4122
|
# If `SETTINGS` is specified, the settings for the cluster are
|
4121
4123
|
# included.
|
4122
4124
|
#
|
4123
|
-
# If `STATISTICS` is specified, the
|
4124
|
-
# separated by launch type
|
4125
|
-
#
|
4126
|
-
# * runningEC2TasksCount
|
4127
|
-
#
|
4128
|
-
# * runningFargateTasksCount
|
4129
|
-
#
|
4130
|
-
# * pendingEC2TasksCount
|
4131
|
-
#
|
4132
|
-
# * pendingFargateTasksCount
|
4133
|
-
#
|
4134
|
-
# * activeEC2ServiceCount
|
4135
|
-
#
|
4136
|
-
# * activeFargateServiceCount
|
4137
|
-
#
|
4138
|
-
# * drainingEC2ServiceCount
|
4139
|
-
#
|
4140
|
-
# * drainingFargateServiceCount
|
4125
|
+
# If `STATISTICS` is specified, the task and service count is
|
4126
|
+
# included, separated by launch type.
|
4141
4127
|
#
|
4142
4128
|
# If `TAGS` is specified, the metadata tags associated with the
|
4143
4129
|
# cluster are included.
|
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.
|
4
|
+
version: 1.80.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: 2021-
|
11
|
+
date: 2021-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|