aws-sdk-cloudcontrolapi 1.9.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d98e76146a98bcf9c8f557cc2b424db63a5947161fefeae48148421c7768b90b
4
- data.tar.gz: '0087abb30bb2e20d597f4e9a6808ad27e1f73248757c1630e7936f42bd040c35'
3
+ metadata.gz: a901dad155af359999a459ca8b8e99166eb83c0a6615caa3b6253c28625389cc
4
+ data.tar.gz: eaa1433a5a73d1b7875675204e610d1827cce8f68499fc281ad43a76e7943fc0
5
5
  SHA512:
6
- metadata.gz: 328920767d11fd1d1163593038640da6fad46b7eac6117e63b50777916465e6eb5b03ef68540117f32a2e2ba808f4ce938b4a94bbb5cbf077cb22f734e05f670
7
- data.tar.gz: 66eb7ac1d06a59653cb8a8b53df4d935f5579ab225cf59e128b37979af8846b9d435aff76fcb0f447cc6fba77921faeea6af3ea6e9d94078aaed88455295b3e3
6
+ metadata.gz: e9be1d2959639cdb4b97a2b3d455bbe86b5d7ed4a79497e589e7980194704cf5b5616f7354b6251c9b05b4e9837ea4a5a71177e629ba95a3fb59e2987eaa2c3f
7
+ data.tar.gz: bc0f1b7fe2e8701091dccf4e5cc4b9ec79558bd1aee5cb837b82b48d13d6a3dad5f755f6b4e49460e445b88cfa811994c8e9980f9ff545207cb9433dd1979a72
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
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
+
9
+ 1.10.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.9.0 (2022-10-25)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.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.9.0'
1122
+ context[:gem_version] = '1.11.0'
1118
1123
  Seahorse::Client::Request.new(handlers, context)
1119
1124
  end
1120
1125
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::CloudControlApi
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
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
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
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]
@@ -798,19 +728,19 @@ module Aws::CloudControlApi
798
728
  # @!attribute [rw] operation_status
799
729
  # The current status of the resource operation request.
800
730
  #
801
- # * `PENDING`\: The resource operation hasn't yet started.
731
+ # * `PENDING`: The resource operation hasn't yet started.
802
732
  #
803
- # * `IN_PROGRESS`\: The resource operation is currently in progress.
733
+ # * `IN_PROGRESS`: The resource operation is currently in progress.
804
734
  #
805
- # * `SUCCESS`\: The resource operation has successfully completed.
735
+ # * `SUCCESS`: The resource operation has successfully completed.
806
736
  #
807
- # * `FAILED`\: The resource operation has failed. Refer to the error
737
+ # * `FAILED`: The resource operation has failed. Refer to the error
808
738
  # code and status message for more information.
809
739
  #
810
- # * `CANCEL_IN_PROGRESS`\: The resource operation is in the process of
740
+ # * `CANCEL_IN_PROGRESS`: The resource operation is in the process of
811
741
  # being canceled.
812
742
  #
813
- # * `CANCEL_COMPLETE`\: The resource operation has been canceled.
743
+ # * `CANCEL_COMPLETE`: The resource operation has been canceled.
814
744
  # @return [String]
815
745
  #
816
746
  # @!attribute [rw] event_time
@@ -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>]
@@ -943,19 +865,19 @@ module Aws::CloudControlApi
943
865
  # @!attribute [rw] operation_statuses
944
866
  # The operation statuses to include in the filter.
945
867
  #
946
- # * `PENDING`\: The operation has been requested, but not yet
868
+ # * `PENDING`: The operation has been requested, but not yet
947
869
  # initiated.
948
870
  #
949
- # * `IN_PROGRESS`\: The operation is in progress.
871
+ # * `IN_PROGRESS`: The operation is in progress.
950
872
  #
951
- # * `SUCCESS`\: The operation completed.
873
+ # * `SUCCESS`: The operation completed.
952
874
  #
953
- # * `FAILED`\: The operation failed.
875
+ # * `FAILED`: The operation failed.
954
876
  #
955
- # * `CANCEL_IN_PROGRESS`\: The operation is in the process of being
877
+ # * `CANCEL_IN_PROGRESS`: The operation is in the process of being
956
878
  # canceled.
957
879
  #
958
- # * `CANCEL_COMPLETE`\: The operation has been canceled.
880
+ # * `CANCEL_COMPLETE`: The operation has been canceled.
959
881
  # @return [Array<String>]
960
882
  #
961
883
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudcontrol-2021-09-30/ResourceRequestStatusFilter AWS API Documentation
@@ -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]
@@ -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.9.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.9.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: 2022-10-25 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