aws-sdk-cloudcontrolapi 1.10.0 → 1.11.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-cloudcontrolapi/client.rb +6 -1
- data/lib/aws-sdk-cloudcontrolapi/types.rb +12 -12
- data/lib/aws-sdk-cloudcontrolapi.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a901dad155af359999a459ca8b8e99166eb83c0a6615caa3b6253c28625389cc
|
|
4
|
+
data.tar.gz: eaa1433a5a73d1b7875675204e610d1827cce8f68499fc281ad43a76e7943fc0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9be1d2959639cdb4b97a2b3d455bbe86b5d7ed4a79497e589e7980194704cf5b5616f7354b6251c9b05b4e9837ea4a5a71177e629ba95a3fb59e2987eaa2c3f
|
|
7
|
+
data.tar.gz: bc0f1b7fe2e8701091dccf4e5cc4b9ec79558bd1aee5cb837b82b48d13d6a3dad5f755f6b4e49460e445b88cfa811994c8e9980f9ff545207cb9433dd1979a72
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.11.0
|
|
@@ -275,6 +275,11 @@ module Aws::CloudControlApi
|
|
|
275
275
|
# in the future.
|
|
276
276
|
#
|
|
277
277
|
#
|
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
|
279
|
+
# A unique and opaque application ID that is appended to the
|
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
|
281
|
+
# maximum length of 50.
|
|
282
|
+
#
|
|
278
283
|
# @option options [String] :secret_access_key
|
|
279
284
|
#
|
|
280
285
|
# @option options [String] :session_token
|
|
@@ -1114,7 +1119,7 @@ module Aws::CloudControlApi
|
|
|
1114
1119
|
params: params,
|
|
1115
1120
|
config: config)
|
|
1116
1121
|
context[:gem_name] = 'aws-sdk-cloudcontrolapi'
|
|
1117
|
-
context[:gem_version] = '1.
|
|
1122
|
+
context[:gem_version] = '1.11.0'
|
|
1118
1123
|
Seahorse::Client::Request.new(handlers, context)
|
|
1119
1124
|
end
|
|
1120
1125
|
|
|
@@ -728,19 +728,19 @@ module Aws::CloudControlApi
|
|
|
728
728
|
# @!attribute [rw] operation_status
|
|
729
729
|
# The current status of the resource operation request.
|
|
730
730
|
#
|
|
731
|
-
# * `PENDING
|
|
731
|
+
# * `PENDING`: The resource operation hasn't yet started.
|
|
732
732
|
#
|
|
733
|
-
# * `IN_PROGRESS
|
|
733
|
+
# * `IN_PROGRESS`: The resource operation is currently in progress.
|
|
734
734
|
#
|
|
735
|
-
# * `SUCCESS
|
|
735
|
+
# * `SUCCESS`: The resource operation has successfully completed.
|
|
736
736
|
#
|
|
737
|
-
# * `FAILED
|
|
737
|
+
# * `FAILED`: The resource operation has failed. Refer to the error
|
|
738
738
|
# code and status message for more information.
|
|
739
739
|
#
|
|
740
|
-
# * `CANCEL_IN_PROGRESS
|
|
740
|
+
# * `CANCEL_IN_PROGRESS`: The resource operation is in the process of
|
|
741
741
|
# being canceled.
|
|
742
742
|
#
|
|
743
|
-
# * `CANCEL_COMPLETE
|
|
743
|
+
# * `CANCEL_COMPLETE`: The resource operation has been canceled.
|
|
744
744
|
# @return [String]
|
|
745
745
|
#
|
|
746
746
|
# @!attribute [rw] event_time
|
|
@@ -865,19 +865,19 @@ module Aws::CloudControlApi
|
|
|
865
865
|
# @!attribute [rw] operation_statuses
|
|
866
866
|
# The operation statuses to include in the filter.
|
|
867
867
|
#
|
|
868
|
-
# * `PENDING
|
|
868
|
+
# * `PENDING`: The operation has been requested, but not yet
|
|
869
869
|
# initiated.
|
|
870
870
|
#
|
|
871
|
-
# * `IN_PROGRESS
|
|
871
|
+
# * `IN_PROGRESS`: The operation is in progress.
|
|
872
872
|
#
|
|
873
|
-
# * `SUCCESS
|
|
873
|
+
# * `SUCCESS`: The operation completed.
|
|
874
874
|
#
|
|
875
|
-
# * `FAILED
|
|
875
|
+
# * `FAILED`: The operation failed.
|
|
876
876
|
#
|
|
877
|
-
# * `CANCEL_IN_PROGRESS
|
|
877
|
+
# * `CANCEL_IN_PROGRESS`: The operation is in the process of being
|
|
878
878
|
# canceled.
|
|
879
879
|
#
|
|
880
|
-
# * `CANCEL_COMPLETE
|
|
880
|
+
# * `CANCEL_COMPLETE`: The operation has been canceled.
|
|
881
881
|
# @return [Array<String>]
|
|
882
882
|
#
|
|
883
883
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudcontrol-2021-09-30/ResourceRequestStatusFilter AWS API Documentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cloudcontrolapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.11.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: 2023-
|
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.174.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.174.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|