aws-sdk-opsworkscm 1.54.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opsworkscm/client.rb +18 -13
- data/lib/aws-sdk-opsworkscm/types.rb +21 -21
- 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
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
|
|
|
@@ -55,16 +55,16 @@ module Aws::OpsWorksCM
|
|
|
55
55
|
#
|
|
56
56
|
# **Attributes accepted in a AssociateNode request for Chef**
|
|
57
57
|
#
|
|
58
|
-
# * `CHEF_ORGANIZATION
|
|
58
|
+
# * `CHEF_ORGANIZATION`: The Chef organization with which the node is
|
|
59
59
|
# associated. By default only one organization named `default` can
|
|
60
60
|
# exist.
|
|
61
61
|
#
|
|
62
|
-
# * `CHEF_NODE_PUBLIC_KEY
|
|
62
|
+
# * `CHEF_NODE_PUBLIC_KEY`: A PEM-formatted public key. This key is
|
|
63
63
|
# required for the `chef-client` agent to access the Chef API.
|
|
64
64
|
#
|
|
65
65
|
# **Attributes accepted in a AssociateNode request for Puppet**
|
|
66
66
|
#
|
|
67
|
-
# * `PUPPET_NODE_CSR
|
|
67
|
+
# * `PUPPET_NODE_CSR`: A PEM-formatted certificate-signing request
|
|
68
68
|
# (CSR) that is created by the node.
|
|
69
69
|
#
|
|
70
70
|
# ^
|
|
@@ -367,12 +367,12 @@ module Aws::OpsWorksCM
|
|
|
367
367
|
#
|
|
368
368
|
# **Attributes accepted in a Chef createServer request:**
|
|
369
369
|
#
|
|
370
|
-
# * `CHEF_AUTOMATE_PIVOTAL_KEY
|
|
370
|
+
# * `CHEF_AUTOMATE_PIVOTAL_KEY`: A base64-encoded RSA public key. The
|
|
371
371
|
# corresponding private key is required to access the Chef API. When
|
|
372
372
|
# no CHEF\_AUTOMATE\_PIVOTAL\_KEY is set, a private key is generated
|
|
373
373
|
# and returned in the response.
|
|
374
374
|
#
|
|
375
|
-
# * `CHEF_AUTOMATE_ADMIN_PASSWORD
|
|
375
|
+
# * `CHEF_AUTOMATE_ADMIN_PASSWORD`: The password for the
|
|
376
376
|
# administrative user in the Chef Automate web-based dashboard. The
|
|
377
377
|
# password length is a minimum of eight characters, and a maximum of
|
|
378
378
|
# 32. The password can contain letters, numbers, and special
|
|
@@ -383,15 +383,15 @@ module Aws::OpsWorksCM
|
|
|
383
383
|
#
|
|
384
384
|
# **Attributes accepted in a Puppet createServer request:**
|
|
385
385
|
#
|
|
386
|
-
# * `PUPPET_ADMIN_PASSWORD
|
|
386
|
+
# * `PUPPET_ADMIN_PASSWORD`: To work with the Puppet Enterprise
|
|
387
387
|
# console, a password must use ASCII characters.
|
|
388
388
|
#
|
|
389
|
-
# * `PUPPET_R10K_REMOTE
|
|
389
|
+
# * `PUPPET_R10K_REMOTE`: The r10k remote is the URL of your control
|
|
390
390
|
# repository (for example,
|
|
391
391
|
# ssh://git@your.git-repo.com:user/control-repo.git). Specifying an
|
|
392
392
|
# r10k remote opens TCP port 8170.
|
|
393
393
|
#
|
|
394
|
-
# * `PUPPET_R10K_PRIVATE_KEY
|
|
394
|
+
# * `PUPPET_R10K_PRIVATE_KEY`: If you are using a private Git
|
|
395
395
|
# repository, add PUPPET\_R10K\_PRIVATE\_KEY to specify a
|
|
396
396
|
# PEM-encoded private SSH key.
|
|
397
397
|
# @return [Array<Types::EngineAttribute>]
|
|
@@ -749,11 +749,11 @@ module Aws::OpsWorksCM
|
|
|
749
749
|
#
|
|
750
750
|
# **Possible values:**
|
|
751
751
|
#
|
|
752
|
-
# * `SUCCESS
|
|
752
|
+
# * `SUCCESS`: The association or disassociation succeeded.
|
|
753
753
|
#
|
|
754
|
-
# * `FAILED
|
|
754
|
+
# * `FAILED`: The association or disassociation failed.
|
|
755
755
|
#
|
|
756
|
-
# * `IN_PROGRESS
|
|
756
|
+
# * `IN_PROGRESS`: The association or disassociation is still in
|
|
757
757
|
# progress.
|
|
758
758
|
# @return [String]
|
|
759
759
|
#
|
|
@@ -850,9 +850,9 @@ module Aws::OpsWorksCM
|
|
|
850
850
|
#
|
|
851
851
|
# **Attributes required in a DisassociateNode request for Chef**
|
|
852
852
|
#
|
|
853
|
-
# * `CHEF_ORGANIZATION
|
|
854
|
-
#
|
|
855
|
-
#
|
|
853
|
+
# * `CHEF_ORGANIZATION`: The Chef organization with which the node was
|
|
854
|
+
# associated. By default only one organization named `default` can
|
|
855
|
+
# exist.
|
|
856
856
|
#
|
|
857
857
|
# ^
|
|
858
858
|
# @return [Array<Types::EngineAttribute>]
|
|
@@ -1196,11 +1196,11 @@ module Aws::OpsWorksCM
|
|
|
1196
1196
|
#
|
|
1197
1197
|
# **Attributes returned in a createServer response for Chef**
|
|
1198
1198
|
#
|
|
1199
|
-
# * `CHEF_AUTOMATE_PIVOTAL_KEY
|
|
1200
|
-
#
|
|
1201
|
-
#
|
|
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.
|
|
1202
1202
|
#
|
|
1203
|
-
# * `CHEF_STARTER_KIT
|
|
1203
|
+
# * `CHEF_STARTER_KIT`: A base64-encoded ZIP file. The ZIP file
|
|
1204
1204
|
# contains a Chef starter kit, which includes a README, a
|
|
1205
1205
|
# configuration file, and the required RSA private key. Save this
|
|
1206
1206
|
# file, unzip it, and then change to the directory where you've
|
|
@@ -1209,12 +1209,12 @@ module Aws::OpsWorksCM
|
|
|
1209
1209
|
#
|
|
1210
1210
|
# **Attributes returned in a createServer response for Puppet**
|
|
1211
1211
|
#
|
|
1212
|
-
# * `PUPPET_STARTER_KIT
|
|
1212
|
+
# * `PUPPET_STARTER_KIT`: A base64-encoded ZIP file. The ZIP file
|
|
1213
1213
|
# contains a Puppet starter kit, including a README and a required
|
|
1214
1214
|
# private key. Save this file, unzip it, and then change to the
|
|
1215
1215
|
# directory where you've unzipped the file contents.
|
|
1216
1216
|
#
|
|
1217
|
-
# * `PUPPET_ADMIN_PASSWORD
|
|
1217
|
+
# * `PUPPET_ADMIN_PASSWORD`: An administrator password that you can
|
|
1218
1218
|
# use to sign in to the Puppet Enterprise console after the server
|
|
1219
1219
|
# is online.
|
|
1220
1220
|
# @return [Array<Types::EngineAttribute>]
|
|
@@ -1353,7 +1353,7 @@ module Aws::OpsWorksCM
|
|
|
1353
1353
|
#
|
|
1354
1354
|
# **Attributes accepted in a StartMaintenance request for Chef**
|
|
1355
1355
|
#
|
|
1356
|
-
# * `CHEF_MAJOR_UPGRADE
|
|
1356
|
+
# * `CHEF_MAJOR_UPGRADE`: If a Chef Automate server is eligible for
|
|
1357
1357
|
# upgrade to Chef Automate 2, add this engine attribute to a
|
|
1358
1358
|
# `StartMaintenance` request and set the value to `true` to upgrade
|
|
1359
1359
|
# the server to Chef Automate 2. For more information, see [Upgrade
|
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: 2023-
|
|
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
|