aws-sdk-cloudcontrolapi 1.9.0 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudcontrolapi/client.rb +1 -1
- data/lib/aws-sdk-cloudcontrolapi/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-cloudcontrolapi/types.rb +0 -90
- data/lib/aws-sdk-cloudcontrolapi.rb +1 -1
- 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: 4631b5790bda3ccf2766cc2bd5e34361938e9840502afb42734a7cef6f9dfc52
|
4
|
+
data.tar.gz: eee7f18d447f05624d12d04d6c37ed8083235353e88d7a275125ea566a1f423f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 338330eb24fae8552a1bf18ff2d374afb9ed7bbb4b38b88083de3a74b66f7bef1e14b4d4eedfb2dc698d0078451052f3f87cf6d549c63c7d0a3795ce5b9c9598
|
7
|
+
data.tar.gz: d03ee6c42221f9baea1c7757dcdddd3d93c3cbfc4385e08faf7d25e77f23833e91e92d6744a4c46e06f66ebc24fb3f93a2978c22c66c7c80713c2a6c412ee9a1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
4
11
|
1.9.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -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.10.0'
|
1118
1118
|
Seahorse::Client::Request.new(handlers, context)
|
1119
1119
|
end
|
1120
1120
|
|
@@ -9,104 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::CloudControlApi
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudcontrolapi-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudcontrolapi-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
+
end
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
38
|
+
end
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudcontrolapi.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
42
|
+
end
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
44
|
+
end
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudcontrolapi.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
23
|
-
end
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
48
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
49
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2Nsb3VkY29udHJvbGFwaS1maXBzLntSZWdp
|
77
|
-
b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
|
78
|
-
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
79
|
-
XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3Rh
|
80
|
-
Y2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
|
81
|
-
dXBwb3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRp
|
82
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6
|
83
|
-
IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
|
84
|
-
b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
|
85
|
-
ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
|
86
|
-
c3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVs
|
87
|
-
ZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
88
|
-
eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9j
|
89
|
-
bG91ZGNvbnRyb2xhcGktZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
|
90
|
-
I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
|
91
|
-
eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
|
92
|
-
OiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
|
93
|
-
IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
|
94
|
-
IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VE
|
95
|
-
dWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
|
96
|
-
b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
|
97
|
-
ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
|
98
|
-
c3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUi
|
99
|
-
LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
|
100
|
-
Imh0dHBzOi8vY2xvdWRjb250cm9sYXBpLntSZWdpb259LntQYXJ0aXRpb25S
|
101
|
-
ZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
|
102
|
-
ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25z
|
103
|
-
IjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBw
|
104
|
-
YXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoi
|
105
|
-
ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
|
106
|
-
Imh0dHBzOi8vY2xvdWRjb250cm9sYXBpLntSZWdpb259LntQYXJ0aXRpb25S
|
107
|
-
ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
|
108
|
-
fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
109
|
-
|
110
|
-
JSON
|
111
50
|
end
|
112
51
|
end
|
@@ -23,13 +23,6 @@ module Aws::CloudControlApi
|
|
23
23
|
include Aws::Structure
|
24
24
|
end
|
25
25
|
|
26
|
-
# @note When making an API call, you may pass CancelResourceRequestInput
|
27
|
-
# data as a hash:
|
28
|
-
#
|
29
|
-
# {
|
30
|
-
# request_token: "RequestToken", # required
|
31
|
-
# }
|
32
|
-
#
|
33
26
|
# @!attribute [rw] request_token
|
34
27
|
# The `RequestToken` of the `ProgressEvent` object returned by the
|
35
28
|
# resource operation request.
|
@@ -105,17 +98,6 @@ module Aws::CloudControlApi
|
|
105
98
|
include Aws::Structure
|
106
99
|
end
|
107
100
|
|
108
|
-
# @note When making an API call, you may pass CreateResourceInput
|
109
|
-
# data as a hash:
|
110
|
-
#
|
111
|
-
# {
|
112
|
-
# type_name: "TypeName", # required
|
113
|
-
# type_version_id: "TypeVersionId",
|
114
|
-
# role_arn: "RoleArn",
|
115
|
-
# client_token: "ClientToken",
|
116
|
-
# desired_state: "Properties", # required
|
117
|
-
# }
|
118
|
-
#
|
119
101
|
# @!attribute [rw] type_name
|
120
102
|
# The name of the resource type.
|
121
103
|
# @return [String]
|
@@ -219,17 +201,6 @@ module Aws::CloudControlApi
|
|
219
201
|
include Aws::Structure
|
220
202
|
end
|
221
203
|
|
222
|
-
# @note When making an API call, you may pass DeleteResourceInput
|
223
|
-
# data as a hash:
|
224
|
-
#
|
225
|
-
# {
|
226
|
-
# type_name: "TypeName", # required
|
227
|
-
# type_version_id: "TypeVersionId",
|
228
|
-
# role_arn: "RoleArn",
|
229
|
-
# client_token: "ClientToken",
|
230
|
-
# identifier: "Identifier", # required
|
231
|
-
# }
|
232
|
-
#
|
233
204
|
# @!attribute [rw] type_name
|
234
205
|
# The name of the resource type.
|
235
206
|
# @return [String]
|
@@ -356,16 +327,6 @@ module Aws::CloudControlApi
|
|
356
327
|
include Aws::Structure
|
357
328
|
end
|
358
329
|
|
359
|
-
# @note When making an API call, you may pass GetResourceInput
|
360
|
-
# data as a hash:
|
361
|
-
#
|
362
|
-
# {
|
363
|
-
# type_name: "TypeName", # required
|
364
|
-
# type_version_id: "TypeVersionId",
|
365
|
-
# role_arn: "RoleArn",
|
366
|
-
# identifier: "Identifier", # required
|
367
|
-
# }
|
368
|
-
#
|
369
330
|
# @!attribute [rw] type_name
|
370
331
|
# The name of the resource type.
|
371
332
|
# @return [String]
|
@@ -446,13 +407,6 @@ module Aws::CloudControlApi
|
|
446
407
|
include Aws::Structure
|
447
408
|
end
|
448
409
|
|
449
|
-
# @note When making an API call, you may pass GetResourceRequestStatusInput
|
450
|
-
# data as a hash:
|
451
|
-
#
|
452
|
-
# {
|
453
|
-
# request_token: "RequestToken", # required
|
454
|
-
# }
|
455
|
-
#
|
456
410
|
# @!attribute [rw] request_token
|
457
411
|
# A unique token used to track the progress of the resource operation
|
458
412
|
# request.
|
@@ -537,18 +491,6 @@ module Aws::CloudControlApi
|
|
537
491
|
include Aws::Structure
|
538
492
|
end
|
539
493
|
|
540
|
-
# @note When making an API call, you may pass ListResourceRequestsInput
|
541
|
-
# data as a hash:
|
542
|
-
#
|
543
|
-
# {
|
544
|
-
# max_results: 1,
|
545
|
-
# next_token: "NextToken",
|
546
|
-
# resource_request_status_filter: {
|
547
|
-
# operations: ["CREATE"], # accepts CREATE, DELETE, UPDATE
|
548
|
-
# operation_statuses: ["PENDING"], # accepts PENDING, IN_PROGRESS, SUCCESS, FAILED, CANCEL_IN_PROGRESS, CANCEL_COMPLETE
|
549
|
-
# },
|
550
|
-
# }
|
551
|
-
#
|
552
494
|
# @!attribute [rw] max_results
|
553
495
|
# The maximum number of results to be returned with a single call. If
|
554
496
|
# the number of available results exceeds this maximum, the response
|
@@ -602,18 +544,6 @@ module Aws::CloudControlApi
|
|
602
544
|
include Aws::Structure
|
603
545
|
end
|
604
546
|
|
605
|
-
# @note When making an API call, you may pass ListResourcesInput
|
606
|
-
# data as a hash:
|
607
|
-
#
|
608
|
-
# {
|
609
|
-
# type_name: "TypeName", # required
|
610
|
-
# type_version_id: "TypeVersionId",
|
611
|
-
# role_arn: "RoleArn",
|
612
|
-
# next_token: "HandlerNextToken",
|
613
|
-
# max_results: 1,
|
614
|
-
# resource_model: "Properties",
|
615
|
-
# }
|
616
|
-
#
|
617
547
|
# @!attribute [rw] type_name
|
618
548
|
# The name of the resource type.
|
619
549
|
# @return [String]
|
@@ -928,14 +858,6 @@ module Aws::CloudControlApi
|
|
928
858
|
|
929
859
|
# The filter criteria to use in determining the requests returned.
|
930
860
|
#
|
931
|
-
# @note When making an API call, you may pass ResourceRequestStatusFilter
|
932
|
-
# data as a hash:
|
933
|
-
#
|
934
|
-
# {
|
935
|
-
# operations: ["CREATE"], # accepts CREATE, DELETE, UPDATE
|
936
|
-
# operation_statuses: ["PENDING"], # accepts PENDING, IN_PROGRESS, SUCCESS, FAILED, CANCEL_IN_PROGRESS, CANCEL_COMPLETE
|
937
|
-
# }
|
938
|
-
#
|
939
861
|
# @!attribute [rw] operations
|
940
862
|
# The operation types to include in the filter.
|
941
863
|
# @return [Array<String>]
|
@@ -1034,18 +956,6 @@ module Aws::CloudControlApi
|
|
1034
956
|
include Aws::Structure
|
1035
957
|
end
|
1036
958
|
|
1037
|
-
# @note When making an API call, you may pass UpdateResourceInput
|
1038
|
-
# data as a hash:
|
1039
|
-
#
|
1040
|
-
# {
|
1041
|
-
# type_name: "TypeName", # required
|
1042
|
-
# type_version_id: "TypeVersionId",
|
1043
|
-
# role_arn: "RoleArn",
|
1044
|
-
# client_token: "ClientToken",
|
1045
|
-
# identifier: "Identifier", # required
|
1046
|
-
# patch_document: "PatchDocument", # required
|
1047
|
-
# }
|
1048
|
-
#
|
1049
959
|
# @!attribute [rw] type_name
|
1050
960
|
# The name of the resource type.
|
1051
961
|
# @return [String]
|
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.10.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: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|