aws-sdk-opsworkscm 1.53.0 → 1.54.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 +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-opsworkscm/client.rb +1 -1
- data/lib/aws-sdk-opsworkscm/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-opsworkscm/types.rb +0 -232
- data/lib/aws-sdk-opsworkscm.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: cfc8fdbe3d5c0f9426dd9e7e005f9e7272f8c1d6031b6b7c7321195062f16692
|
4
|
+
data.tar.gz: a670a97be0af12af7c068365a707c0a15db9429508613dec5a5c92cd5beca00d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f530d249ef5810094946a6e9268baf3cb8d20d0f4fc61a05651e519e880fb1ae099d35babd0563654956a062d19d6da66b99f65f214fe780dd5d72b0cc8f3606
|
7
|
+
data.tar.gz: a59cc2086accdf33d7f6b4b2f5dbb4f3480604f4423ea3ad2cc9deb5d5e4d1d053f9e040613d42c5f0be91b1fc9d8f421dfcd008c867bbbf0b22f8cd59aa287a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.54.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.53.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
@@ -335,4 +342,4 @@ Unreleased Changes
|
|
335
342
|
1.0.0.rc2 (2016-12-09)
|
336
343
|
------------------
|
337
344
|
|
338
|
-
* Feature - Initial release of `aws-sdk-opsworkscm`.
|
345
|
+
* Feature - Initial release of `aws-sdk-opsworkscm`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.54.0
|
@@ -1858,7 +1858,7 @@ module Aws::OpsWorksCM
|
|
1858
1858
|
params: params,
|
1859
1859
|
config: config)
|
1860
1860
|
context[:gem_name] = 'aws-sdk-opsworkscm'
|
1861
|
-
context[:gem_version] = '1.
|
1861
|
+
context[:gem_version] = '1.54.0'
|
1862
1862
|
Seahorse::Client::Request.new(handlers, context)
|
1863
1863
|
end
|
1864
1864
|
|
@@ -9,104 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::OpsWorksCM
|
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://opsworks-cm-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://opsworks-cm-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://opsworks-cm.#{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://opsworks-cm.#{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
|
-
dCI6eyJ1cmwiOiJodHRwczovL29wc3dvcmtzLWNtLWZpcHMue1JlZ2lvbn0u
|
77
|
-
e1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVy
|
78
|
-
dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7
|
79
|
-
ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBh
|
80
|
-
cmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
|
81
|
-
cnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
|
82
|
-
cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNl
|
83
|
-
RklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
84
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
85
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
86
|
-
In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
|
87
|
-
W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
|
88
|
-
bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL29wc3dv
|
89
|
-
cmtzLWNtLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZm
|
90
|
-
aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
|
91
|
-
ZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBp
|
92
|
-
cyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
|
93
|
-
IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4i
|
94
|
-
OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNr
|
95
|
-
In0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
|
96
|
-
cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6
|
97
|
-
ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwi
|
98
|
-
c3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
|
99
|
-
Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
|
100
|
-
L29wc3dvcmtzLWNtLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0
|
101
|
-
YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
|
102
|
-
InR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
|
103
|
-
OiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9l
|
104
|
-
cyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsi
|
105
|
-
Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vb3Bz
|
106
|
-
d29ya3MtY20ue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9
|
107
|
-
IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
|
108
|
-
aW50In1dfV19
|
109
|
-
|
110
|
-
JSON
|
111
50
|
end
|
112
51
|
end
|
@@ -42,20 +42,6 @@ module Aws::OpsWorksCM
|
|
42
42
|
include Aws::Structure
|
43
43
|
end
|
44
44
|
|
45
|
-
# @note When making an API call, you may pass AssociateNodeRequest
|
46
|
-
# data as a hash:
|
47
|
-
#
|
48
|
-
# {
|
49
|
-
# server_name: "ServerName", # required
|
50
|
-
# node_name: "NodeName", # required
|
51
|
-
# engine_attributes: [ # required
|
52
|
-
# {
|
53
|
-
# name: "EngineAttributeName",
|
54
|
-
# value: "EngineAttributeValue",
|
55
|
-
# },
|
56
|
-
# ],
|
57
|
-
# }
|
58
|
-
#
|
59
45
|
# @!attribute [rw] server_name
|
60
46
|
# The name of the server with which to associate the node.
|
61
47
|
# @return [String]
|
@@ -255,20 +241,6 @@ module Aws::OpsWorksCM
|
|
255
241
|
include Aws::Structure
|
256
242
|
end
|
257
243
|
|
258
|
-
# @note When making an API call, you may pass CreateBackupRequest
|
259
|
-
# data as a hash:
|
260
|
-
#
|
261
|
-
# {
|
262
|
-
# server_name: "ServerName", # required
|
263
|
-
# description: "String",
|
264
|
-
# tags: [
|
265
|
-
# {
|
266
|
-
# key: "TagKey", # required
|
267
|
-
# value: "TagValue", # required
|
268
|
-
# },
|
269
|
-
# ],
|
270
|
-
# }
|
271
|
-
#
|
272
244
|
# @!attribute [rw] server_name
|
273
245
|
# The name of the server that you want to back up.
|
274
246
|
# @return [String]
|
@@ -320,43 +292,6 @@ module Aws::OpsWorksCM
|
|
320
292
|
include Aws::Structure
|
321
293
|
end
|
322
294
|
|
323
|
-
# @note When making an API call, you may pass CreateServerRequest
|
324
|
-
# data as a hash:
|
325
|
-
#
|
326
|
-
# {
|
327
|
-
# associate_public_ip_address: false,
|
328
|
-
# custom_domain: "CustomDomain",
|
329
|
-
# custom_certificate: "CustomCertificate",
|
330
|
-
# custom_private_key: "CustomPrivateKey",
|
331
|
-
# disable_automated_backup: false,
|
332
|
-
# engine: "String", # required
|
333
|
-
# engine_model: "String",
|
334
|
-
# engine_version: "String",
|
335
|
-
# engine_attributes: [
|
336
|
-
# {
|
337
|
-
# name: "EngineAttributeName",
|
338
|
-
# value: "EngineAttributeValue",
|
339
|
-
# },
|
340
|
-
# ],
|
341
|
-
# backup_retention_count: 1,
|
342
|
-
# server_name: "ServerName", # required
|
343
|
-
# instance_profile_arn: "InstanceProfileArn", # required
|
344
|
-
# instance_type: "String", # required
|
345
|
-
# key_pair: "KeyPair",
|
346
|
-
# preferred_maintenance_window: "TimeWindowDefinition",
|
347
|
-
# preferred_backup_window: "TimeWindowDefinition",
|
348
|
-
# security_group_ids: ["String"],
|
349
|
-
# service_role_arn: "ServiceRoleArn", # required
|
350
|
-
# subnet_ids: ["String"],
|
351
|
-
# tags: [
|
352
|
-
# {
|
353
|
-
# key: "TagKey", # required
|
354
|
-
# value: "TagValue", # required
|
355
|
-
# },
|
356
|
-
# ],
|
357
|
-
# backup_id: "BackupId",
|
358
|
-
# }
|
359
|
-
#
|
360
295
|
# @!attribute [rw] associate_public_ip_address
|
361
296
|
# Associate a public IP address with a server that you are launching.
|
362
297
|
# Valid values are `true` or `false`. The default value is `true`.
|
@@ -636,13 +571,6 @@ module Aws::OpsWorksCM
|
|
636
571
|
include Aws::Structure
|
637
572
|
end
|
638
573
|
|
639
|
-
# @note When making an API call, you may pass DeleteBackupRequest
|
640
|
-
# data as a hash:
|
641
|
-
#
|
642
|
-
# {
|
643
|
-
# backup_id: "BackupId", # required
|
644
|
-
# }
|
645
|
-
#
|
646
574
|
# @!attribute [rw] backup_id
|
647
575
|
# The ID of the backup to delete. Run the DescribeBackups command to
|
648
576
|
# get a list of backup IDs. Backup IDs are in the format
|
@@ -661,13 +589,6 @@ module Aws::OpsWorksCM
|
|
661
589
|
#
|
662
590
|
class DeleteBackupResponse < Aws::EmptyStructure; end
|
663
591
|
|
664
|
-
# @note When making an API call, you may pass DeleteServerRequest
|
665
|
-
# data as a hash:
|
666
|
-
#
|
667
|
-
# {
|
668
|
-
# server_name: "ServerName", # required
|
669
|
-
# }
|
670
|
-
#
|
671
592
|
# @!attribute [rw] server_name
|
672
593
|
# The ID of the server to delete.
|
673
594
|
# @return [String]
|
@@ -702,16 +623,6 @@ module Aws::OpsWorksCM
|
|
702
623
|
include Aws::Structure
|
703
624
|
end
|
704
625
|
|
705
|
-
# @note When making an API call, you may pass DescribeBackupsRequest
|
706
|
-
# data as a hash:
|
707
|
-
#
|
708
|
-
# {
|
709
|
-
# backup_id: "BackupId",
|
710
|
-
# server_name: "ServerName",
|
711
|
-
# next_token: "NextToken",
|
712
|
-
# max_results: 1,
|
713
|
-
# }
|
714
|
-
#
|
715
626
|
# @!attribute [rw] backup_id
|
716
627
|
# Describes a single backup.
|
717
628
|
# @return [String]
|
@@ -756,15 +667,6 @@ module Aws::OpsWorksCM
|
|
756
667
|
include Aws::Structure
|
757
668
|
end
|
758
669
|
|
759
|
-
# @note When making an API call, you may pass DescribeEventsRequest
|
760
|
-
# data as a hash:
|
761
|
-
#
|
762
|
-
# {
|
763
|
-
# server_name: "ServerName", # required
|
764
|
-
# next_token: "NextToken",
|
765
|
-
# max_results: 1,
|
766
|
-
# }
|
767
|
-
#
|
768
670
|
# @!attribute [rw] server_name
|
769
671
|
# The name of the server for which you want to view events.
|
770
672
|
# @return [String]
|
@@ -824,14 +726,6 @@ module Aws::OpsWorksCM
|
|
824
726
|
include Aws::Structure
|
825
727
|
end
|
826
728
|
|
827
|
-
# @note When making an API call, you may pass DescribeNodeAssociationStatusRequest
|
828
|
-
# data as a hash:
|
829
|
-
#
|
830
|
-
# {
|
831
|
-
# node_association_status_token: "NodeAssociationStatusToken", # required
|
832
|
-
# server_name: "ServerName", # required
|
833
|
-
# }
|
834
|
-
#
|
835
729
|
# @!attribute [rw] node_association_status_token
|
836
730
|
# The token returned in either the AssociateNodeResponse or the
|
837
731
|
# DisassociateNodeResponse.
|
@@ -878,15 +772,6 @@ module Aws::OpsWorksCM
|
|
878
772
|
include Aws::Structure
|
879
773
|
end
|
880
774
|
|
881
|
-
# @note When making an API call, you may pass DescribeServersRequest
|
882
|
-
# data as a hash:
|
883
|
-
#
|
884
|
-
# {
|
885
|
-
# server_name: "ServerName",
|
886
|
-
# next_token: "NextToken",
|
887
|
-
# max_results: 1,
|
888
|
-
# }
|
889
|
-
#
|
890
775
|
# @!attribute [rw] server_name
|
891
776
|
# Describes the server with the specified ServerName.
|
892
777
|
# @return [String]
|
@@ -951,20 +836,6 @@ module Aws::OpsWorksCM
|
|
951
836
|
include Aws::Structure
|
952
837
|
end
|
953
838
|
|
954
|
-
# @note When making an API call, you may pass DisassociateNodeRequest
|
955
|
-
# data as a hash:
|
956
|
-
#
|
957
|
-
# {
|
958
|
-
# server_name: "ServerName", # required
|
959
|
-
# node_name: "NodeName", # required
|
960
|
-
# engine_attributes: [
|
961
|
-
# {
|
962
|
-
# name: "EngineAttributeName",
|
963
|
-
# value: "EngineAttributeValue",
|
964
|
-
# },
|
965
|
-
# ],
|
966
|
-
# }
|
967
|
-
#
|
968
839
|
# @!attribute [rw] server_name
|
969
840
|
# The name of the server from which to disassociate the node.
|
970
841
|
# @return [String]
|
@@ -1012,14 +883,6 @@ module Aws::OpsWorksCM
|
|
1012
883
|
|
1013
884
|
# A name and value pair that is specific to the engine of the server.
|
1014
885
|
#
|
1015
|
-
# @note When making an API call, you may pass EngineAttribute
|
1016
|
-
# data as a hash:
|
1017
|
-
#
|
1018
|
-
# {
|
1019
|
-
# name: "EngineAttributeName",
|
1020
|
-
# value: "EngineAttributeValue",
|
1021
|
-
# }
|
1022
|
-
#
|
1023
886
|
# @!attribute [rw] name
|
1024
887
|
# The name of the engine attribute.
|
1025
888
|
# @return [String]
|
@@ -1037,20 +900,6 @@ module Aws::OpsWorksCM
|
|
1037
900
|
include Aws::Structure
|
1038
901
|
end
|
1039
902
|
|
1040
|
-
# @note When making an API call, you may pass ExportServerEngineAttributeRequest
|
1041
|
-
# data as a hash:
|
1042
|
-
#
|
1043
|
-
# {
|
1044
|
-
# export_attribute_name: "String", # required
|
1045
|
-
# server_name: "ServerName", # required
|
1046
|
-
# input_attributes: [
|
1047
|
-
# {
|
1048
|
-
# name: "EngineAttributeName",
|
1049
|
-
# value: "EngineAttributeValue",
|
1050
|
-
# },
|
1051
|
-
# ],
|
1052
|
-
# }
|
1053
|
-
#
|
1054
903
|
# @!attribute [rw] export_attribute_name
|
1055
904
|
# The name of the export attribute. Currently, the supported export
|
1056
905
|
# attribute is `Userdata`. This exports a user data script that
|
@@ -1159,15 +1008,6 @@ module Aws::OpsWorksCM
|
|
1159
1008
|
include Aws::Structure
|
1160
1009
|
end
|
1161
1010
|
|
1162
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1163
|
-
# data as a hash:
|
1164
|
-
#
|
1165
|
-
# {
|
1166
|
-
# resource_arn: "AWSOpsWorksCMResourceArn", # required
|
1167
|
-
# next_token: "NextToken",
|
1168
|
-
# max_results: 1,
|
1169
|
-
# }
|
1170
|
-
#
|
1171
1011
|
# @!attribute [rw] resource_arn
|
1172
1012
|
# The Amazon Resource Number (ARN) of an AWS OpsWorks for Chef
|
1173
1013
|
# Automate or AWS OpsWorks for Puppet Enterprise server for which you
|
@@ -1253,16 +1093,6 @@ module Aws::OpsWorksCM
|
|
1253
1093
|
include Aws::Structure
|
1254
1094
|
end
|
1255
1095
|
|
1256
|
-
# @note When making an API call, you may pass RestoreServerRequest
|
1257
|
-
# data as a hash:
|
1258
|
-
#
|
1259
|
-
# {
|
1260
|
-
# backup_id: "BackupId", # required
|
1261
|
-
# server_name: "ServerName", # required
|
1262
|
-
# instance_type: "String",
|
1263
|
-
# key_pair: "KeyPair",
|
1264
|
-
# }
|
1265
|
-
#
|
1266
1096
|
# @!attribute [rw] backup_id
|
1267
1097
|
# The ID of the backup that you want to use to restore a server.
|
1268
1098
|
# @return [String]
|
@@ -1513,19 +1343,6 @@ module Aws::OpsWorksCM
|
|
1513
1343
|
include Aws::Structure
|
1514
1344
|
end
|
1515
1345
|
|
1516
|
-
# @note When making an API call, you may pass StartMaintenanceRequest
|
1517
|
-
# data as a hash:
|
1518
|
-
#
|
1519
|
-
# {
|
1520
|
-
# server_name: "ServerName", # required
|
1521
|
-
# engine_attributes: [
|
1522
|
-
# {
|
1523
|
-
# name: "EngineAttributeName",
|
1524
|
-
# value: "EngineAttributeValue",
|
1525
|
-
# },
|
1526
|
-
# ],
|
1527
|
-
# }
|
1528
|
-
#
|
1529
1346
|
# @!attribute [rw] server_name
|
1530
1347
|
# The name of the server on which to run maintenance.
|
1531
1348
|
# @return [String]
|
@@ -1576,14 +1393,6 @@ module Aws::OpsWorksCM
|
|
1576
1393
|
# key and value. A maximum of 50 user-applied tags is allowed for
|
1577
1394
|
# tag-supported AWS OpsWorks-CM resources.
|
1578
1395
|
#
|
1579
|
-
# @note When making an API call, you may pass Tag
|
1580
|
-
# data as a hash:
|
1581
|
-
#
|
1582
|
-
# {
|
1583
|
-
# key: "TagKey", # required
|
1584
|
-
# value: "TagValue", # required
|
1585
|
-
# }
|
1586
|
-
#
|
1587
1396
|
# @!attribute [rw] key
|
1588
1397
|
# A tag key, such as `Stage` or `Name`. A tag key cannot be empty. The
|
1589
1398
|
# key can be a maximum of 127 characters, and can contain only Unicode
|
@@ -1607,19 +1416,6 @@ module Aws::OpsWorksCM
|
|
1607
1416
|
include Aws::Structure
|
1608
1417
|
end
|
1609
1418
|
|
1610
|
-
# @note When making an API call, you may pass TagResourceRequest
|
1611
|
-
# data as a hash:
|
1612
|
-
#
|
1613
|
-
# {
|
1614
|
-
# resource_arn: "AWSOpsWorksCMResourceArn", # required
|
1615
|
-
# tags: [ # required
|
1616
|
-
# {
|
1617
|
-
# key: "TagKey", # required
|
1618
|
-
# value: "TagValue", # required
|
1619
|
-
# },
|
1620
|
-
# ],
|
1621
|
-
# }
|
1622
|
-
#
|
1623
1419
|
# @!attribute [rw] resource_arn
|
1624
1420
|
# The Amazon Resource Number (ARN) of a resource to which you want to
|
1625
1421
|
# apply tags. For example,
|
@@ -1660,14 +1456,6 @@ module Aws::OpsWorksCM
|
|
1660
1456
|
#
|
1661
1457
|
class TagResourceResponse < Aws::EmptyStructure; end
|
1662
1458
|
|
1663
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
1664
|
-
# data as a hash:
|
1665
|
-
#
|
1666
|
-
# {
|
1667
|
-
# resource_arn: "AWSOpsWorksCMResourceArn", # required
|
1668
|
-
# tag_keys: ["TagKey"], # required
|
1669
|
-
# }
|
1670
|
-
#
|
1671
1459
|
# @!attribute [rw] resource_arn
|
1672
1460
|
# The Amazon Resource Number (ARN) of a resource from which you want
|
1673
1461
|
# to remove tags. For example,
|
@@ -1691,15 +1479,6 @@ module Aws::OpsWorksCM
|
|
1691
1479
|
#
|
1692
1480
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
1693
1481
|
|
1694
|
-
# @note When making an API call, you may pass UpdateServerEngineAttributesRequest
|
1695
|
-
# data as a hash:
|
1696
|
-
#
|
1697
|
-
# {
|
1698
|
-
# server_name: "ServerName", # required
|
1699
|
-
# attribute_name: "AttributeName", # required
|
1700
|
-
# attribute_value: "AttributeValue",
|
1701
|
-
# }
|
1702
|
-
#
|
1703
1482
|
# @!attribute [rw] server_name
|
1704
1483
|
# The name of the server to update.
|
1705
1484
|
# @return [String]
|
@@ -1734,17 +1513,6 @@ module Aws::OpsWorksCM
|
|
1734
1513
|
include Aws::Structure
|
1735
1514
|
end
|
1736
1515
|
|
1737
|
-
# @note When making an API call, you may pass UpdateServerRequest
|
1738
|
-
# data as a hash:
|
1739
|
-
#
|
1740
|
-
# {
|
1741
|
-
# disable_automated_backup: false,
|
1742
|
-
# backup_retention_count: 1,
|
1743
|
-
# server_name: "ServerName", # required
|
1744
|
-
# preferred_maintenance_window: "TimeWindowDefinition",
|
1745
|
-
# preferred_backup_window: "TimeWindowDefinition",
|
1746
|
-
# }
|
1747
|
-
#
|
1748
1516
|
# @!attribute [rw] disable_automated_backup
|
1749
1517
|
# Setting DisableAutomatedBackup to `true` disables automated or
|
1750
1518
|
# scheduled backups. Automated backups are enabled by default.
|
data/lib/aws-sdk-opsworkscm.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-opsworkscm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.54.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
|