aws-sdk-opsworkscm 1.53.0 → 1.55.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-opsworkscm/client.rb +18 -13
- data/lib/aws-sdk-opsworkscm/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-opsworkscm/types.rb +21 -253
- data/lib/aws-sdk-opsworkscm.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: bcebe22a6ba7af3064629cbbb7e96be4810ee8b783aee513e7cfa640c4beac5a
|
4
|
+
data.tar.gz: a6b7efc6f5a86c9c526c09026d601f98856da1213382381af6bb435e0c201af4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 697d9f1854e3d468f7e9a55bed1f7d318b6612e86e222ef8c200fcd0c50cf1195e078541d5e6c203fa10836339b49db939769f496eddfb65096b53e51edab321
|
7
|
+
data.tar.gz: 8fbf1e72a376234f603dc50b1b92fb9dfa62ba84782a0320854cb4e6a02bbe17de3da3d95e8eeed3340830cdd12398c437f92008b65016e1577242e113b9eb55
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.55.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.54.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.53.0 (2022-10-25)
|
5
17
|
------------------
|
6
18
|
|
@@ -335,4 +347,4 @@ Unreleased Changes
|
|
335
347
|
1.0.0.rc2 (2016-12-09)
|
336
348
|
------------------
|
337
349
|
|
338
|
-
* Feature - Initial release of `aws-sdk-opsworkscm`.
|
350
|
+
* Feature - Initial release of `aws-sdk-opsworkscm`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.55.0
|
@@ -275,6 +275,11 @@ module Aws::OpsWorksCM
|
|
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
|
@@ -414,17 +419,17 @@ module Aws::OpsWorksCM
|
|
414
419
|
#
|
415
420
|
# **Attributes accepted in a AssociateNode request for Chef**
|
416
421
|
#
|
417
|
-
# * `CHEF_ORGANIZATION
|
422
|
+
# * `CHEF_ORGANIZATION`: The Chef organization with which the node is
|
418
423
|
# associated. By default only one organization named `default` can
|
419
424
|
# exist.
|
420
425
|
#
|
421
|
-
# * `CHEF_NODE_PUBLIC_KEY
|
426
|
+
# * `CHEF_NODE_PUBLIC_KEY`: A PEM-formatted public key. This key is
|
422
427
|
# required for the `chef-client` agent to access the Chef API.
|
423
428
|
#
|
424
429
|
# **Attributes accepted in a AssociateNode request for Puppet**
|
425
430
|
#
|
426
|
-
# * `PUPPET_NODE_CSR
|
427
|
-
#
|
431
|
+
# * `PUPPET_NODE_CSR`: A PEM-formatted certificate-signing request (CSR)
|
432
|
+
# that is created by the node.
|
428
433
|
#
|
429
434
|
# ^
|
430
435
|
#
|
@@ -658,12 +663,12 @@ module Aws::OpsWorksCM
|
|
658
663
|
#
|
659
664
|
# **Attributes accepted in a Chef createServer request:**
|
660
665
|
#
|
661
|
-
# * `CHEF_AUTOMATE_PIVOTAL_KEY
|
666
|
+
# * `CHEF_AUTOMATE_PIVOTAL_KEY`: A base64-encoded RSA public key. The
|
662
667
|
# corresponding private key is required to access the Chef API. When
|
663
668
|
# no CHEF\_AUTOMATE\_PIVOTAL\_KEY is set, a private key is generated
|
664
669
|
# and returned in the response.
|
665
670
|
#
|
666
|
-
# * `CHEF_AUTOMATE_ADMIN_PASSWORD
|
671
|
+
# * `CHEF_AUTOMATE_ADMIN_PASSWORD`: The password for the administrative
|
667
672
|
# user in the Chef Automate web-based dashboard. The password length
|
668
673
|
# is a minimum of eight characters, and a maximum of 32. The password
|
669
674
|
# can contain letters, numbers, and special characters
|
@@ -674,15 +679,15 @@ module Aws::OpsWorksCM
|
|
674
679
|
#
|
675
680
|
# **Attributes accepted in a Puppet createServer request:**
|
676
681
|
#
|
677
|
-
# * `PUPPET_ADMIN_PASSWORD
|
678
|
-
#
|
682
|
+
# * `PUPPET_ADMIN_PASSWORD`: To work with the Puppet Enterprise console,
|
683
|
+
# a password must use ASCII characters.
|
679
684
|
#
|
680
|
-
# * `PUPPET_R10K_REMOTE
|
685
|
+
# * `PUPPET_R10K_REMOTE`: The r10k remote is the URL of your control
|
681
686
|
# repository (for example,
|
682
687
|
# ssh://git@your.git-repo.com:user/control-repo.git). Specifying an
|
683
688
|
# r10k remote opens TCP port 8170.
|
684
689
|
#
|
685
|
-
# * `PUPPET_R10K_PRIVATE_KEY
|
690
|
+
# * `PUPPET_R10K_PRIVATE_KEY`: If you are using a private Git
|
686
691
|
# repository, add PUPPET\_R10K\_PRIVATE\_KEY to specify a PEM-encoded
|
687
692
|
# private SSH key.
|
688
693
|
#
|
@@ -1261,7 +1266,7 @@ module Aws::OpsWorksCM
|
|
1261
1266
|
#
|
1262
1267
|
# **Attributes required in a DisassociateNode request for Chef**
|
1263
1268
|
#
|
1264
|
-
# * `CHEF_ORGANIZATION
|
1269
|
+
# * `CHEF_ORGANIZATION`: The Chef organization with which the node was
|
1265
1270
|
# associated. By default only one organization named `default` can
|
1266
1271
|
# exist.
|
1267
1272
|
#
|
@@ -1541,7 +1546,7 @@ module Aws::OpsWorksCM
|
|
1541
1546
|
#
|
1542
1547
|
# **Attributes accepted in a StartMaintenance request for Chef**
|
1543
1548
|
#
|
1544
|
-
# * `CHEF_MAJOR_UPGRADE
|
1549
|
+
# * `CHEF_MAJOR_UPGRADE`: If a Chef Automate server is eligible for
|
1545
1550
|
# upgrade to Chef Automate 2, add this engine attribute to a
|
1546
1551
|
# `StartMaintenance` request and set the value to `true` to upgrade
|
1547
1552
|
# the server to Chef Automate 2. For more information, see [Upgrade an
|
@@ -1858,7 +1863,7 @@ module Aws::OpsWorksCM
|
|
1858
1863
|
params: params,
|
1859
1864
|
config: config)
|
1860
1865
|
context[:gem_name] = 'aws-sdk-opsworkscm'
|
1861
|
-
context[:gem_version] = '1.
|
1866
|
+
context[:gem_version] = '1.55.0'
|
1862
1867
|
Seahorse::Client::Request.new(handlers, context)
|
1863
1868
|
end
|
1864
1869
|
|
@@ -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]
|
@@ -69,16 +55,16 @@ module Aws::OpsWorksCM
|
|
69
55
|
#
|
70
56
|
# **Attributes accepted in a AssociateNode request for Chef**
|
71
57
|
#
|
72
|
-
# * `CHEF_ORGANIZATION
|
58
|
+
# * `CHEF_ORGANIZATION`: The Chef organization with which the node is
|
73
59
|
# associated. By default only one organization named `default` can
|
74
60
|
# exist.
|
75
61
|
#
|
76
|
-
# * `CHEF_NODE_PUBLIC_KEY
|
62
|
+
# * `CHEF_NODE_PUBLIC_KEY`: A PEM-formatted public key. This key is
|
77
63
|
# required for the `chef-client` agent to access the Chef API.
|
78
64
|
#
|
79
65
|
# **Attributes accepted in a AssociateNode request for Puppet**
|
80
66
|
#
|
81
|
-
# * `PUPPET_NODE_CSR
|
67
|
+
# * `PUPPET_NODE_CSR`: A PEM-formatted certificate-signing request
|
82
68
|
# (CSR) that is created by the node.
|
83
69
|
#
|
84
70
|
# ^
|
@@ -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`.
|
@@ -432,12 +367,12 @@ module Aws::OpsWorksCM
|
|
432
367
|
#
|
433
368
|
# **Attributes accepted in a Chef createServer request:**
|
434
369
|
#
|
435
|
-
# * `CHEF_AUTOMATE_PIVOTAL_KEY
|
370
|
+
# * `CHEF_AUTOMATE_PIVOTAL_KEY`: A base64-encoded RSA public key. The
|
436
371
|
# corresponding private key is required to access the Chef API. When
|
437
372
|
# no CHEF\_AUTOMATE\_PIVOTAL\_KEY is set, a private key is generated
|
438
373
|
# and returned in the response.
|
439
374
|
#
|
440
|
-
# * `CHEF_AUTOMATE_ADMIN_PASSWORD
|
375
|
+
# * `CHEF_AUTOMATE_ADMIN_PASSWORD`: The password for the
|
441
376
|
# administrative user in the Chef Automate web-based dashboard. The
|
442
377
|
# password length is a minimum of eight characters, and a maximum of
|
443
378
|
# 32. The password can contain letters, numbers, and special
|
@@ -448,15 +383,15 @@ module Aws::OpsWorksCM
|
|
448
383
|
#
|
449
384
|
# **Attributes accepted in a Puppet createServer request:**
|
450
385
|
#
|
451
|
-
# * `PUPPET_ADMIN_PASSWORD
|
386
|
+
# * `PUPPET_ADMIN_PASSWORD`: To work with the Puppet Enterprise
|
452
387
|
# console, a password must use ASCII characters.
|
453
388
|
#
|
454
|
-
# * `PUPPET_R10K_REMOTE
|
389
|
+
# * `PUPPET_R10K_REMOTE`: The r10k remote is the URL of your control
|
455
390
|
# repository (for example,
|
456
391
|
# ssh://git@your.git-repo.com:user/control-repo.git). Specifying an
|
457
392
|
# r10k remote opens TCP port 8170.
|
458
393
|
#
|
459
|
-
# * `PUPPET_R10K_PRIVATE_KEY
|
394
|
+
# * `PUPPET_R10K_PRIVATE_KEY`: If you are using a private Git
|
460
395
|
# repository, add PUPPET\_R10K\_PRIVATE\_KEY to specify a
|
461
396
|
# PEM-encoded private SSH key.
|
462
397
|
# @return [Array<Types::EngineAttribute>]
|
@@ -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.
|
@@ -855,11 +749,11 @@ module Aws::OpsWorksCM
|
|
855
749
|
#
|
856
750
|
# **Possible values:**
|
857
751
|
#
|
858
|
-
# * `SUCCESS
|
752
|
+
# * `SUCCESS`: The association or disassociation succeeded.
|
859
753
|
#
|
860
|
-
# * `FAILED
|
754
|
+
# * `FAILED`: The association or disassociation failed.
|
861
755
|
#
|
862
|
-
# * `IN_PROGRESS
|
756
|
+
# * `IN_PROGRESS`: The association or disassociation is still in
|
863
757
|
# progress.
|
864
758
|
# @return [String]
|
865
759
|
#
|
@@ -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]
|
@@ -979,9 +850,9 @@ module Aws::OpsWorksCM
|
|
979
850
|
#
|
980
851
|
# **Attributes required in a DisassociateNode request for Chef**
|
981
852
|
#
|
982
|
-
# * `CHEF_ORGANIZATION
|
983
|
-
#
|
984
|
-
#
|
853
|
+
# * `CHEF_ORGANIZATION`: The Chef organization with which the node was
|
854
|
+
# associated. By default only one organization named `default` can
|
855
|
+
# exist.
|
985
856
|
#
|
986
857
|
# ^
|
987
858
|
# @return [Array<Types::EngineAttribute>]
|
@@ -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]
|
@@ -1366,11 +1196,11 @@ module Aws::OpsWorksCM
|
|
1366
1196
|
#
|
1367
1197
|
# **Attributes returned in a createServer response for Chef**
|
1368
1198
|
#
|
1369
|
-
# * `CHEF_AUTOMATE_PIVOTAL_KEY
|
1370
|
-
#
|
1371
|
-
#
|
1199
|
+
# * `CHEF_AUTOMATE_PIVOTAL_KEY`: A base64-encoded RSA private key that
|
1200
|
+
# is generated by AWS OpsWorks for Chef Automate. This private key
|
1201
|
+
# is required to access the Chef API.
|
1372
1202
|
#
|
1373
|
-
# * `CHEF_STARTER_KIT
|
1203
|
+
# * `CHEF_STARTER_KIT`: A base64-encoded ZIP file. The ZIP file
|
1374
1204
|
# contains a Chef starter kit, which includes a README, a
|
1375
1205
|
# configuration file, and the required RSA private key. Save this
|
1376
1206
|
# file, unzip it, and then change to the directory where you've
|
@@ -1379,12 +1209,12 @@ module Aws::OpsWorksCM
|
|
1379
1209
|
#
|
1380
1210
|
# **Attributes returned in a createServer response for Puppet**
|
1381
1211
|
#
|
1382
|
-
# * `PUPPET_STARTER_KIT
|
1212
|
+
# * `PUPPET_STARTER_KIT`: A base64-encoded ZIP file. The ZIP file
|
1383
1213
|
# contains a Puppet starter kit, including a README and a required
|
1384
1214
|
# private key. Save this file, unzip it, and then change to the
|
1385
1215
|
# directory where you've unzipped the file contents.
|
1386
1216
|
#
|
1387
|
-
# * `PUPPET_ADMIN_PASSWORD
|
1217
|
+
# * `PUPPET_ADMIN_PASSWORD`: An administrator password that you can
|
1388
1218
|
# use to sign in to the Puppet Enterprise console after the server
|
1389
1219
|
# is online.
|
1390
1220
|
# @return [Array<Types::EngineAttribute>]
|
@@ -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]
|
@@ -1536,7 +1353,7 @@ module Aws::OpsWorksCM
|
|
1536
1353
|
#
|
1537
1354
|
# **Attributes accepted in a StartMaintenance request for Chef**
|
1538
1355
|
#
|
1539
|
-
# * `CHEF_MAJOR_UPGRADE
|
1356
|
+
# * `CHEF_MAJOR_UPGRADE`: If a Chef Automate server is eligible for
|
1540
1357
|
# upgrade to Chef Automate 2, add this engine attribute to a
|
1541
1358
|
# `StartMaintenance` request and set the value to `true` to upgrade
|
1542
1359
|
# the server to Chef Automate 2. For more information, see [Upgrade
|
@@ -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.55.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-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.
|
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.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|