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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4631b5790bda3ccf2766cc2bd5e34361938e9840502afb42734a7cef6f9dfc52
4
- data.tar.gz: eee7f18d447f05624d12d04d6c37ed8083235353e88d7a275125ea566a1f423f
3
+ metadata.gz: a901dad155af359999a459ca8b8e99166eb83c0a6615caa3b6253c28625389cc
4
+ data.tar.gz: eaa1433a5a73d1b7875675204e610d1827cce8f68499fc281ad43a76e7943fc0
5
5
  SHA512:
6
- metadata.gz: 338330eb24fae8552a1bf18ff2d374afb9ed7bbb4b38b88083de3a74b66f7bef1e14b4d4eedfb2dc698d0078451052f3f87cf6d549c63c7d0a3795ce5b9c9598
7
- data.tar.gz: d03ee6c42221f9baea1c7757dcdddd3d93c3cbfc4385e08faf7d25e77f23833e91e92d6744a4c46e06f66ebc24fb3f93a2978c22c66c7c80713c2a6c412ee9a1
6
+ metadata.gz: e9be1d2959639cdb4b97a2b3d455bbe86b5d7ed4a79497e589e7980194704cf5b5616f7354b6251c9b05b4e9837ea4a5a71177e629ba95a3fb59e2987eaa2c3f
7
+ data.tar.gz: bc0f1b7fe2e8701091dccf4e5cc4b9ec79558bd1aee5cb837b82b48d13d6a3dad5f755f6b4e49460e445b88cfa811994c8e9980f9ff545207cb9433dd1979a72
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.10.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
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.10.0'
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`\: The resource operation hasn't yet started.
731
+ # * `PENDING`: The resource operation hasn't yet started.
732
732
  #
733
- # * `IN_PROGRESS`\: The resource operation is currently in progress.
733
+ # * `IN_PROGRESS`: The resource operation is currently in progress.
734
734
  #
735
- # * `SUCCESS`\: The resource operation has successfully completed.
735
+ # * `SUCCESS`: The resource operation has successfully completed.
736
736
  #
737
- # * `FAILED`\: The resource operation has failed. Refer to the error
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`\: The resource operation is in the process of
740
+ # * `CANCEL_IN_PROGRESS`: The resource operation is in the process of
741
741
  # being canceled.
742
742
  #
743
- # * `CANCEL_COMPLETE`\: The resource operation has been canceled.
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`\: The operation has been requested, but not yet
868
+ # * `PENDING`: The operation has been requested, but not yet
869
869
  # initiated.
870
870
  #
871
- # * `IN_PROGRESS`\: The operation is in progress.
871
+ # * `IN_PROGRESS`: The operation is in progress.
872
872
  #
873
- # * `SUCCESS`\: The operation completed.
873
+ # * `SUCCESS`: The operation completed.
874
874
  #
875
- # * `FAILED`\: The operation failed.
875
+ # * `FAILED`: The operation failed.
876
876
  #
877
- # * `CANCEL_IN_PROGRESS`\: The operation is in the process of being
877
+ # * `CANCEL_IN_PROGRESS`: The operation is in the process of being
878
878
  # canceled.
879
879
  #
880
- # * `CANCEL_COMPLETE`\: The operation has been canceled.
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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cloudcontrolapi/customizations'
53
53
  # @!group service
54
54
  module Aws::CloudControlApi
55
55
 
56
- GEM_VERSION = '1.10.0'
56
+ GEM_VERSION = '1.11.0'
57
57
 
58
58
  end
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.10.0
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-01-18 00:00:00.000000000 Z
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.165.0
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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement