aws-sdk-cloudcontrolapi 1.4.0 → 1.7.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudcontrolapi/client.rb +24 -24
- data/lib/aws-sdk-cloudcontrolapi/types.rb +43 -49
- 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: 0e92fe62792acb6b58879d4e106005eea7a5514efda5652553b1fefcac178297
|
|
4
|
+
data.tar.gz: 5f56275d02b5b3c9ef6e430d3eaa403fed4de2abb9cae2a01b63595d5f7c0332
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e38d3a967d8c9156b8f5afabeb416b3ddc4588df53a77de8416d7e3e666b6f1799ebe1dc86fd9ee3af1dca1b9152bd9aee5638bcded7123f18ec6556e4fd4cdf
|
|
7
|
+
data.tar.gz: ec82f9889b9479a162a5bc501f8b6d1c49a47d46a8c26830bb5e0d97aa6d7bf0d527c780aa572dca329b9e42cc4f6fe5f2405ed12095ff81794cea1c4c4d77ba
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.7.0 (2022-03-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - SDK release for Cloud Control API in Amazon Web Services China (Beijing) Region, operated by Sinnet, and Amazon Web Services China (Ningxia) Region, operated by NWCD
|
|
8
|
+
|
|
9
|
+
1.6.0 (2022-02-24)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.5.0 (2022-02-03)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
4
19
|
1.4.0 (2021-12-21)
|
|
5
20
|
------------------
|
|
6
21
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.7.0
|
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
32
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
33
35
|
|
|
@@ -74,7 +76,9 @@ module Aws::CloudControlApi
|
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
79
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
80
84
|
|
|
@@ -362,7 +366,7 @@ module Aws::CloudControlApi
|
|
|
362
366
|
# *Amazon Web Services Cloud Control API User Guide*.
|
|
363
367
|
#
|
|
364
368
|
# Only resource operations requests with a status of `PENDING` or
|
|
365
|
-
# `IN_PROGRESS` can be
|
|
369
|
+
# `IN_PROGRESS` can be canceled.
|
|
366
370
|
#
|
|
367
371
|
#
|
|
368
372
|
#
|
|
@@ -428,7 +432,7 @@ module Aws::CloudControlApi
|
|
|
428
432
|
#
|
|
429
433
|
# @option params [String] :role_arn
|
|
430
434
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
431
|
-
# (IAM) for Cloud Control API to use when performing this resource
|
|
435
|
+
# (IAM) role for Cloud Control API to use when performing this resource
|
|
432
436
|
# operation. The role specified must have the permissions required for
|
|
433
437
|
# this operation. The necessary permissions for each event handler are
|
|
434
438
|
# defined in the ` handlers ` section of the [resource type definition
|
|
@@ -488,8 +492,7 @@ module Aws::CloudControlApi
|
|
|
488
492
|
#
|
|
489
493
|
# For more information about the properties of a specific resource,
|
|
490
494
|
# refer to the related topic for the resource in the [Resource and
|
|
491
|
-
# property types reference][2] in the *
|
|
492
|
-
# CloudFormation Users Guide*.
|
|
495
|
+
# property types reference][2] in the *CloudFormation Users Guide*.
|
|
493
496
|
#
|
|
494
497
|
#
|
|
495
498
|
#
|
|
@@ -556,7 +559,7 @@ module Aws::CloudControlApi
|
|
|
556
559
|
#
|
|
557
560
|
# @option params [String] :role_arn
|
|
558
561
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
559
|
-
# (IAM) for Cloud Control API to use when performing this resource
|
|
562
|
+
# (IAM) role for Cloud Control API to use when performing this resource
|
|
560
563
|
# operation. The role specified must have the permissions required for
|
|
561
564
|
# this operation. The necessary permissions for each event handler are
|
|
562
565
|
# defined in the ` handlers ` section of the [resource type definition
|
|
@@ -656,8 +659,8 @@ module Aws::CloudControlApi
|
|
|
656
659
|
# For details, see [Reading a resource's current state][1].
|
|
657
660
|
#
|
|
658
661
|
# You can use this action to return information about an existing
|
|
659
|
-
# resource in your account and Amazon Web Services Region, whether
|
|
660
|
-
#
|
|
662
|
+
# resource in your account and Amazon Web Services Region, whether those
|
|
663
|
+
# resources were provisioned using Cloud Control API.
|
|
661
664
|
#
|
|
662
665
|
#
|
|
663
666
|
#
|
|
@@ -673,7 +676,7 @@ module Aws::CloudControlApi
|
|
|
673
676
|
#
|
|
674
677
|
# @option params [String] :role_arn
|
|
675
678
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
676
|
-
# (IAM) for Cloud Control API to use when performing this resource
|
|
679
|
+
# (IAM) role for Cloud Control API to use when performing this resource
|
|
677
680
|
# operation. The role specified must have the permissions required for
|
|
678
681
|
# this operation. The necessary permissions for each event handler are
|
|
679
682
|
# defined in the ` handlers ` section of the [resource type definition
|
|
@@ -797,7 +800,7 @@ module Aws::CloudControlApi
|
|
|
797
800
|
# resource operation requests][1] in the *Amazon Web Services Cloud
|
|
798
801
|
# Control API User Guide*.
|
|
799
802
|
#
|
|
800
|
-
# <note markdown="1"> Resource operation requests expire after
|
|
803
|
+
# <note markdown="1"> Resource operation requests expire after 7 days.
|
|
801
804
|
#
|
|
802
805
|
# </note>
|
|
803
806
|
#
|
|
@@ -867,14 +870,17 @@ module Aws::CloudControlApi
|
|
|
867
870
|
end
|
|
868
871
|
|
|
869
872
|
# Returns information about the specified resources. For more
|
|
870
|
-
# information, see [Discovering
|
|
871
|
-
#
|
|
872
|
-
# in the *Amazon Web Services Cloud Control API User Guide*.
|
|
873
|
+
# information, see [Discovering resources][1] in the *Amazon Web
|
|
874
|
+
# Services Cloud Control API User Guide*.
|
|
873
875
|
#
|
|
874
876
|
# You can use this action to return information about existing resources
|
|
875
|
-
# in your account and Amazon Web Services Region, whether
|
|
877
|
+
# in your account and Amazon Web Services Region, whether those
|
|
876
878
|
# resources were provisioned using Cloud Control API.
|
|
877
879
|
#
|
|
880
|
+
#
|
|
881
|
+
#
|
|
882
|
+
# [1]: https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-list.html
|
|
883
|
+
#
|
|
878
884
|
# @option params [required, String] :type_name
|
|
879
885
|
# The name of the resource type.
|
|
880
886
|
#
|
|
@@ -885,7 +891,7 @@ module Aws::CloudControlApi
|
|
|
885
891
|
#
|
|
886
892
|
# @option params [String] :role_arn
|
|
887
893
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
888
|
-
# (IAM) for Cloud Control API to use when performing this resource
|
|
894
|
+
# (IAM) role for Cloud Control API to use when performing this resource
|
|
889
895
|
# operation. The role specified must have the permissions required for
|
|
890
896
|
# this operation. The necessary permissions for each event handler are
|
|
891
897
|
# defined in the ` handlers ` section of the [resource type definition
|
|
@@ -911,12 +917,7 @@ module Aws::CloudControlApi
|
|
|
911
917
|
# `NextToken` parameter is set to `null`.
|
|
912
918
|
#
|
|
913
919
|
# @option params [Integer] :max_results
|
|
914
|
-
#
|
|
915
|
-
# the number of available results exceeds this maximum, the response
|
|
916
|
-
# includes a `NextToken` value that you can assign to the `NextToken`
|
|
917
|
-
# request parameter to get the next set of results.
|
|
918
|
-
#
|
|
919
|
-
# The default is `20`.
|
|
920
|
+
# Reserved.
|
|
920
921
|
#
|
|
921
922
|
# @option params [String] :resource_model
|
|
922
923
|
# The resource model to use to select the resources to return.
|
|
@@ -974,8 +975,7 @@ module Aws::CloudControlApi
|
|
|
974
975
|
#
|
|
975
976
|
# For more information about the properties of a specific resource,
|
|
976
977
|
# refer to the related topic for the resource in the [Resource and
|
|
977
|
-
# property types reference][4] in the *
|
|
978
|
-
# CloudFormation Users Guide*.
|
|
978
|
+
# property types reference][4] in the *CloudFormation Users Guide*.
|
|
979
979
|
#
|
|
980
980
|
#
|
|
981
981
|
#
|
|
@@ -994,7 +994,7 @@ module Aws::CloudControlApi
|
|
|
994
994
|
#
|
|
995
995
|
# @option params [String] :role_arn
|
|
996
996
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
997
|
-
# (IAM) for Cloud Control API to use when performing this resource
|
|
997
|
+
# (IAM) role for Cloud Control API to use when performing this resource
|
|
998
998
|
# operation. The role specified must have the permissions required for
|
|
999
999
|
# this operation. The necessary permissions for each event handler are
|
|
1000
1000
|
# defined in the ` handlers ` section of the [resource type definition
|
|
@@ -1114,7 +1114,7 @@ module Aws::CloudControlApi
|
|
|
1114
1114
|
params: params,
|
|
1115
1115
|
config: config)
|
|
1116
1116
|
context[:gem_name] = 'aws-sdk-cloudcontrolapi'
|
|
1117
|
-
context[:gem_version] = '1.
|
|
1117
|
+
context[:gem_version] = '1.7.0'
|
|
1118
1118
|
Seahorse::Client::Request.new(handlers, context)
|
|
1119
1119
|
end
|
|
1120
1120
|
|
|
@@ -64,7 +64,7 @@ module Aws::CloudControlApi
|
|
|
64
64
|
# The specified client token has already been used in another resource
|
|
65
65
|
# request.
|
|
66
66
|
#
|
|
67
|
-
# It
|
|
67
|
+
# It's best practice for client tokens to be unique for each resource
|
|
68
68
|
# operation request. However, client token expire after 36 hours.
|
|
69
69
|
#
|
|
70
70
|
# @!attribute [rw] message
|
|
@@ -128,11 +128,11 @@ module Aws::CloudControlApi
|
|
|
128
128
|
#
|
|
129
129
|
# @!attribute [rw] role_arn
|
|
130
130
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
131
|
-
# (IAM) for Cloud Control API to use when performing this
|
|
132
|
-
# operation. The role specified must have the permissions
|
|
133
|
-
# this operation. The necessary permissions for each
|
|
134
|
-
# defined in the ` handlers ` section of the
|
|
135
|
-
# schema][1].
|
|
131
|
+
# (IAM) role for Cloud Control API to use when performing this
|
|
132
|
+
# resource operation. The role specified must have the permissions
|
|
133
|
+
# required for this operation. The necessary permissions for each
|
|
134
|
+
# event handler are defined in the ` handlers ` section of the
|
|
135
|
+
# [resource type definition schema][1].
|
|
136
136
|
#
|
|
137
137
|
# If you do not specify a role, Cloud Control API uses a temporary
|
|
138
138
|
# session created using your Amazon Web Services user credentials.
|
|
@@ -195,8 +195,7 @@ module Aws::CloudControlApi
|
|
|
195
195
|
#
|
|
196
196
|
# For more information about the properties of a specific resource,
|
|
197
197
|
# refer to the related topic for the resource in the [Resource and
|
|
198
|
-
# property types reference][2] in the *
|
|
199
|
-
# CloudFormation Users Guide*.
|
|
198
|
+
# property types reference][2] in the *CloudFormation Users Guide*.
|
|
200
199
|
#
|
|
201
200
|
#
|
|
202
201
|
#
|
|
@@ -260,11 +259,11 @@ module Aws::CloudControlApi
|
|
|
260
259
|
#
|
|
261
260
|
# @!attribute [rw] role_arn
|
|
262
261
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
263
|
-
# (IAM) for Cloud Control API to use when performing this
|
|
264
|
-
# operation. The role specified must have the permissions
|
|
265
|
-
# this operation. The necessary permissions for each
|
|
266
|
-
# defined in the ` handlers ` section of the
|
|
267
|
-
# schema][1].
|
|
262
|
+
# (IAM) role for Cloud Control API to use when performing this
|
|
263
|
+
# resource operation. The role specified must have the permissions
|
|
264
|
+
# required for this operation. The necessary permissions for each
|
|
265
|
+
# event handler are defined in the ` handlers ` section of the
|
|
266
|
+
# [resource type definition schema][1].
|
|
268
267
|
#
|
|
269
268
|
# If you do not specify a role, Cloud Control API uses a temporary
|
|
270
269
|
# session created using your Amazon Web Services user credentials.
|
|
@@ -361,7 +360,7 @@ module Aws::CloudControlApi
|
|
|
361
360
|
end
|
|
362
361
|
|
|
363
362
|
# The resource handler has returned that the downstream service
|
|
364
|
-
# generated an error that
|
|
363
|
+
# generated an error that doesn't map to any other handler error code.
|
|
365
364
|
#
|
|
366
365
|
# @!attribute [rw] message
|
|
367
366
|
# @return [String]
|
|
@@ -396,11 +395,11 @@ module Aws::CloudControlApi
|
|
|
396
395
|
#
|
|
397
396
|
# @!attribute [rw] role_arn
|
|
398
397
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
399
|
-
# (IAM) for Cloud Control API to use when performing this
|
|
400
|
-
# operation. The role specified must have the permissions
|
|
401
|
-
# this operation. The necessary permissions for each
|
|
402
|
-
# defined in the ` handlers ` section of the
|
|
403
|
-
# schema][1].
|
|
398
|
+
# (IAM) role for Cloud Control API to use when performing this
|
|
399
|
+
# resource operation. The role specified must have the permissions
|
|
400
|
+
# required for this operation. The necessary permissions for each
|
|
401
|
+
# event handler are defined in the ` handlers ` section of the
|
|
402
|
+
# [resource type definition schema][1].
|
|
404
403
|
#
|
|
405
404
|
# If you do not specify a role, Cloud Control API uses a temporary
|
|
406
405
|
# session created using your Amazon Web Services user credentials.
|
|
@@ -644,11 +643,11 @@ module Aws::CloudControlApi
|
|
|
644
643
|
#
|
|
645
644
|
# @!attribute [rw] role_arn
|
|
646
645
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
647
|
-
# (IAM) for Cloud Control API to use when performing this
|
|
648
|
-
# operation. The role specified must have the permissions
|
|
649
|
-
# this operation. The necessary permissions for each
|
|
650
|
-
# defined in the ` handlers ` section of the
|
|
651
|
-
# schema][1].
|
|
646
|
+
# (IAM) role for Cloud Control API to use when performing this
|
|
647
|
+
# resource operation. The role specified must have the permissions
|
|
648
|
+
# required for this operation. The necessary permissions for each
|
|
649
|
+
# event handler are defined in the ` handlers ` section of the
|
|
650
|
+
# [resource type definition schema][1].
|
|
652
651
|
#
|
|
653
652
|
# If you do not specify a role, Cloud Control API uses a temporary
|
|
654
653
|
# session created using your Amazon Web Services user credentials.
|
|
@@ -672,12 +671,7 @@ module Aws::CloudControlApi
|
|
|
672
671
|
# @return [String]
|
|
673
672
|
#
|
|
674
673
|
# @!attribute [rw] max_results
|
|
675
|
-
#
|
|
676
|
-
# the number of available results exceeds this maximum, the response
|
|
677
|
-
# includes a `NextToken` value that you can assign to the `NextToken`
|
|
678
|
-
# request parameter to get the next set of results.
|
|
679
|
-
#
|
|
680
|
-
# The default is `20`.
|
|
674
|
+
# Reserved.
|
|
681
675
|
# @return [Integer]
|
|
682
676
|
#
|
|
683
677
|
# @!attribute [rw] resource_model
|
|
@@ -724,7 +718,7 @@ module Aws::CloudControlApi
|
|
|
724
718
|
include Aws::Structure
|
|
725
719
|
end
|
|
726
720
|
|
|
727
|
-
# The resource handler has returned that the request
|
|
721
|
+
# The resource handler has returned that the request couldn't be
|
|
728
722
|
# completed due to networking issues, such as a failure to receive a
|
|
729
723
|
# response from the server.
|
|
730
724
|
#
|
|
@@ -754,7 +748,7 @@ module Aws::CloudControlApi
|
|
|
754
748
|
end
|
|
755
749
|
|
|
756
750
|
# One or more properties included in this resource operation are defined
|
|
757
|
-
# as create-only, and therefore
|
|
751
|
+
# as create-only, and therefore can't be updated.
|
|
758
752
|
#
|
|
759
753
|
# @!attribute [rw] message
|
|
760
754
|
# @return [String]
|
|
@@ -767,7 +761,7 @@ module Aws::CloudControlApi
|
|
|
767
761
|
include Aws::Structure
|
|
768
762
|
end
|
|
769
763
|
|
|
770
|
-
# Cloud Control API
|
|
764
|
+
# Cloud Control API hasn't received a valid response from the resource
|
|
771
765
|
# handler, due to a configuration error. This includes issues such as
|
|
772
766
|
# the resource handler returning an invalid response, or timing out.
|
|
773
767
|
#
|
|
@@ -821,7 +815,7 @@ module Aws::CloudControlApi
|
|
|
821
815
|
# @!attribute [rw] operation_status
|
|
822
816
|
# The current status of the resource operation request.
|
|
823
817
|
#
|
|
824
|
-
# * `PENDING`\: The resource operation
|
|
818
|
+
# * `PENDING`\: The resource operation hasn't yet started.
|
|
825
819
|
#
|
|
826
820
|
# * `IN_PROGRESS`\: The resource operation is currently in progress.
|
|
827
821
|
#
|
|
@@ -882,7 +876,7 @@ module Aws::CloudControlApi
|
|
|
882
876
|
include Aws::Structure
|
|
883
877
|
end
|
|
884
878
|
|
|
885
|
-
# A resource operation with the specified request token
|
|
879
|
+
# A resource operation with the specified request token can't be found.
|
|
886
880
|
#
|
|
887
881
|
# @!attribute [rw] message
|
|
888
882
|
# @return [String]
|
|
@@ -896,7 +890,7 @@ module Aws::CloudControlApi
|
|
|
896
890
|
end
|
|
897
891
|
|
|
898
892
|
# The resource is temporarily unavailable to be acted upon. For example,
|
|
899
|
-
# if the resource is currently undergoing an operation and
|
|
893
|
+
# if the resource is currently undergoing an operation and can't be
|
|
900
894
|
# acted upon until that operation is finished.
|
|
901
895
|
#
|
|
902
896
|
# @!attribute [rw] message
|
|
@@ -936,7 +930,7 @@ module Aws::CloudControlApi
|
|
|
936
930
|
include Aws::Structure
|
|
937
931
|
end
|
|
938
932
|
|
|
939
|
-
# A resource with the specified identifier
|
|
933
|
+
# A resource with the specified identifier can't be found.
|
|
940
934
|
#
|
|
941
935
|
# @!attribute [rw] message
|
|
942
936
|
# @return [String]
|
|
@@ -969,14 +963,14 @@ module Aws::CloudControlApi
|
|
|
969
963
|
# * `PENDING`\: The operation has been requested, but not yet
|
|
970
964
|
# initiated.
|
|
971
965
|
#
|
|
972
|
-
# * `IN_PROGRESS`\: The operation is
|
|
966
|
+
# * `IN_PROGRESS`\: The operation is in progress.
|
|
973
967
|
#
|
|
974
|
-
# * `SUCCESS`\: The operation
|
|
968
|
+
# * `SUCCESS`\: The operation completed.
|
|
975
969
|
#
|
|
976
|
-
# * `FAILED`\: The operation
|
|
970
|
+
# * `FAILED`\: The operation failed.
|
|
977
971
|
#
|
|
978
|
-
# * `CANCEL_IN_PROGRESS`\: The operation is
|
|
979
|
-
#
|
|
972
|
+
# * `CANCEL_IN_PROGRESS`\: The operation is in the process of being
|
|
973
|
+
# canceled.
|
|
980
974
|
#
|
|
981
975
|
# * `CANCEL_COMPLETE`\: The operation has been canceled.
|
|
982
976
|
# @return [Array<String>]
|
|
@@ -1031,7 +1025,7 @@ module Aws::CloudControlApi
|
|
|
1031
1025
|
include Aws::Structure
|
|
1032
1026
|
end
|
|
1033
1027
|
|
|
1034
|
-
# The specified extension
|
|
1028
|
+
# The specified extension doesn't exist in the CloudFormation registry.
|
|
1035
1029
|
#
|
|
1036
1030
|
# @!attribute [rw] message
|
|
1037
1031
|
# @return [String]
|
|
@@ -1044,7 +1038,7 @@ module Aws::CloudControlApi
|
|
|
1044
1038
|
include Aws::Structure
|
|
1045
1039
|
end
|
|
1046
1040
|
|
|
1047
|
-
# The specified resource
|
|
1041
|
+
# The specified resource doesn't support this resource operation.
|
|
1048
1042
|
#
|
|
1049
1043
|
# @!attribute [rw] message
|
|
1050
1044
|
# @return [String]
|
|
@@ -1081,11 +1075,11 @@ module Aws::CloudControlApi
|
|
|
1081
1075
|
#
|
|
1082
1076
|
# @!attribute [rw] role_arn
|
|
1083
1077
|
# The Amazon Resource Name (ARN) of the Identity and Access Management
|
|
1084
|
-
# (IAM) for Cloud Control API to use when performing this
|
|
1085
|
-
# operation. The role specified must have the permissions
|
|
1086
|
-
# this operation. The necessary permissions for each
|
|
1087
|
-
# defined in the ` handlers ` section of the
|
|
1088
|
-
# schema][1].
|
|
1078
|
+
# (IAM) role for Cloud Control API to use when performing this
|
|
1079
|
+
# resource operation. The role specified must have the permissions
|
|
1080
|
+
# required for this operation. The necessary permissions for each
|
|
1081
|
+
# event handler are defined in the ` handlers ` section of the
|
|
1082
|
+
# [resource type definition schema][1].
|
|
1089
1083
|
#
|
|
1090
1084
|
# If you do not specify a role, Cloud Control API uses a temporary
|
|
1091
1085
|
# session created using your Amazon Web Services user credentials.
|
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.7.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:
|
|
11
|
+
date: 2022-03-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.127.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.127.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|