aws-sdk-opsworkscm 1.35.1 → 1.36.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/lib/aws-sdk-opsworkscm.rb +3 -1
- data/lib/aws-sdk-opsworkscm/client.rb +15 -13
- data/lib/aws-sdk-opsworkscm/client_api.rb +3 -1
- data/lib/aws-sdk-opsworkscm/errors.rb +2 -0
- data/lib/aws-sdk-opsworkscm/resource.rb +2 -0
- data/lib/aws-sdk-opsworkscm/types.rb +14 -10
- data/lib/aws-sdk-opsworkscm/waiters.rb +2 -0
- 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: 961ea6356b7043add90c6a4f78b22865471dc7c523b7e7d5265d4889498ca9c4
|
|
4
|
+
data.tar.gz: 61da45add79db288d963d7e870f3274cdbd1e3f537dda7ca054172dd7d8d7553
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 890ea7f1ea375d4e92b2c4950708dab67f0b6a3904ff45ad8308c83547de13d78ce87ed05e24de667933a0083a0a4f1619e4288d0fdbf64787b511a96a65f196
|
|
7
|
+
data.tar.gz: da465661dbb7f6cd04ffb123d880c71dae9d3c8b2dee855bd7bcc8c6cf51e7e6c4b38f7ceb6dcb6c13fab3101f9ddae6c2761ccfdb093142c40c6e723709ccfa
|
data/lib/aws-sdk-opsworkscm.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-opsworkscm/customizations'
|
|
|
46
48
|
# @service
|
|
47
49
|
module Aws::OpsWorksCM
|
|
48
50
|
|
|
49
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.36.0'
|
|
50
52
|
|
|
51
53
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -333,8 +335,8 @@ module Aws::OpsWorksCM
|
|
|
333
335
|
# On a Puppet server, this command is an alternative to the `puppet cert
|
|
334
336
|
# sign` command that signs a Puppet node CSR.
|
|
335
337
|
#
|
|
336
|
-
# Example (
|
|
337
|
-
# --node-name MyManagedNode --engine-attributes
|
|
338
|
+
# Example (Puppet): `aws opsworks-cm associate-node --server-name
|
|
339
|
+
# MyServer --node-name MyManagedNode --engine-attributes
|
|
338
340
|
# "Name=PUPPET_NODE_CSR,Value=csr-pem"`
|
|
339
341
|
#
|
|
340
342
|
# A node can can only be associated with servers that are in a `HEALTHY`
|
|
@@ -582,7 +584,7 @@ module Aws::OpsWorksCM
|
|
|
582
584
|
# Enable or disable scheduled backups. Valid values are `true` or
|
|
583
585
|
# `false`. The default value is `true`.
|
|
584
586
|
#
|
|
585
|
-
# @option params [String] :engine
|
|
587
|
+
# @option params [required, String] :engine
|
|
586
588
|
# The configuration management engine to use. Valid values include
|
|
587
589
|
# `ChefAutomate` and `Puppet`.
|
|
588
590
|
#
|
|
@@ -592,8 +594,8 @@ module Aws::OpsWorksCM
|
|
|
592
594
|
#
|
|
593
595
|
# @option params [String] :engine_version
|
|
594
596
|
# The major release version of the engine that you want to use. For a
|
|
595
|
-
# Chef server, the valid value for EngineVersion is currently `
|
|
596
|
-
#
|
|
597
|
+
# Chef server, the valid value for EngineVersion is currently `2`. For a
|
|
598
|
+
# Puppet server, the valid value is `2017`.
|
|
597
599
|
#
|
|
598
600
|
# @option params [Array<Types::EngineAttribute>] :engine_attributes
|
|
599
601
|
# Optional engine attributes on a specified server.
|
|
@@ -659,10 +661,10 @@ module Aws::OpsWorksCM
|
|
|
659
661
|
# @option params [String] :preferred_maintenance_window
|
|
660
662
|
# The start time for a one-hour period each week during which AWS
|
|
661
663
|
# OpsWorks CM performs maintenance on the instance. Valid values must be
|
|
662
|
-
# specified in the following format: `DDD:HH:MM`.
|
|
663
|
-
# in coordinated universal time (UTC).
|
|
664
|
-
# one-hour period on Tuesday, Wednesday,
|
|
665
|
-
# `TimeWindowDefinition` for more information.
|
|
664
|
+
# specified in the following format: `DDD:HH:MM`. `MM` must be specified
|
|
665
|
+
# as `00`. The specified time is in coordinated universal time (UTC).
|
|
666
|
+
# The default value is a random one-hour period on Tuesday, Wednesday,
|
|
667
|
+
# or Friday. See `TimeWindowDefinition` for more information.
|
|
666
668
|
#
|
|
667
669
|
# **Example:** `Mon:08:00`, which represents a start time of every
|
|
668
670
|
# Monday at 08:00 UTC. (8:00 a.m.)
|
|
@@ -677,8 +679,8 @@ module Aws::OpsWorksCM
|
|
|
677
679
|
#
|
|
678
680
|
# * `DDD:HH:MM` for weekly backups
|
|
679
681
|
#
|
|
680
|
-
# The specified time is in coordinated
|
|
681
|
-
# value is a random, daily start time.
|
|
682
|
+
# `MM` must be specified as `00`. The specified time is in coordinated
|
|
683
|
+
# universal time (UTC). The default value is a random, daily start time.
|
|
682
684
|
#
|
|
683
685
|
# **Example:** `08:00`, which represents a daily start time of 08:00
|
|
684
686
|
# UTC.
|
|
@@ -760,7 +762,7 @@ module Aws::OpsWorksCM
|
|
|
760
762
|
# custom_certificate: "CustomCertificate",
|
|
761
763
|
# custom_private_key: "CustomPrivateKey",
|
|
762
764
|
# disable_automated_backup: false,
|
|
763
|
-
# engine: "String",
|
|
765
|
+
# engine: "String", # required
|
|
764
766
|
# engine_model: "String",
|
|
765
767
|
# engine_version: "String",
|
|
766
768
|
# engine_attributes: [
|
|
@@ -1767,7 +1769,7 @@ module Aws::OpsWorksCM
|
|
|
1767
1769
|
params: params,
|
|
1768
1770
|
config: config)
|
|
1769
1771
|
context[:gem_name] = 'aws-sdk-opsworkscm'
|
|
1770
|
-
context[:gem_version] = '1.
|
|
1772
|
+
context[:gem_version] = '1.36.0'
|
|
1771
1773
|
Seahorse::Client::Request.new(handlers, context)
|
|
1772
1774
|
end
|
|
1773
1775
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -156,7 +158,7 @@ module Aws::OpsWorksCM
|
|
|
156
158
|
CreateServerRequest.add_member(:custom_certificate, Shapes::ShapeRef.new(shape: CustomCertificate, location_name: "CustomCertificate"))
|
|
157
159
|
CreateServerRequest.add_member(:custom_private_key, Shapes::ShapeRef.new(shape: CustomPrivateKey, location_name: "CustomPrivateKey"))
|
|
158
160
|
CreateServerRequest.add_member(:disable_automated_backup, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableAutomatedBackup"))
|
|
159
|
-
CreateServerRequest.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
|
161
|
+
CreateServerRequest.add_member(:engine, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Engine"))
|
|
160
162
|
CreateServerRequest.add_member(:engine_model, Shapes::ShapeRef.new(shape: String, location_name: "EngineModel"))
|
|
161
163
|
CreateServerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
|
162
164
|
CreateServerRequest.add_member(:engine_attributes, Shapes::ShapeRef.new(shape: EngineAttributes, location_name: "EngineAttributes"))
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -321,7 +323,7 @@ module Aws::OpsWorksCM
|
|
|
321
323
|
# custom_certificate: "CustomCertificate",
|
|
322
324
|
# custom_private_key: "CustomPrivateKey",
|
|
323
325
|
# disable_automated_backup: false,
|
|
324
|
-
# engine: "String",
|
|
326
|
+
# engine: "String", # required
|
|
325
327
|
# engine_model: "String",
|
|
326
328
|
# engine_version: "String",
|
|
327
329
|
# engine_attributes: [
|
|
@@ -415,8 +417,8 @@ module Aws::OpsWorksCM
|
|
|
415
417
|
#
|
|
416
418
|
# @!attribute [rw] engine_version
|
|
417
419
|
# The major release version of the engine that you want to use. For a
|
|
418
|
-
# Chef server, the valid value for EngineVersion is currently `
|
|
419
|
-
#
|
|
420
|
+
# Chef server, the valid value for EngineVersion is currently `2`. For
|
|
421
|
+
# a Puppet server, the valid value is `2017`.
|
|
420
422
|
# @return [String]
|
|
421
423
|
#
|
|
422
424
|
# @!attribute [rw] engine_attributes
|
|
@@ -489,10 +491,11 @@ module Aws::OpsWorksCM
|
|
|
489
491
|
# @!attribute [rw] preferred_maintenance_window
|
|
490
492
|
# The start time for a one-hour period each week during which AWS
|
|
491
493
|
# OpsWorks CM performs maintenance on the instance. Valid values must
|
|
492
|
-
# be specified in the following format: `DDD:HH:MM`.
|
|
493
|
-
#
|
|
494
|
-
# random one-hour period on
|
|
495
|
-
# `TimeWindowDefinition` for more
|
|
494
|
+
# be specified in the following format: `DDD:HH:MM`. `MM` must be
|
|
495
|
+
# specified as `00`. The specified time is in coordinated universal
|
|
496
|
+
# time (UTC). The default value is a random one-hour period on
|
|
497
|
+
# Tuesday, Wednesday, or Friday. See `TimeWindowDefinition` for more
|
|
498
|
+
# information.
|
|
496
499
|
#
|
|
497
500
|
# **Example:** `Mon:08:00`, which represents a start time of every
|
|
498
501
|
# Monday at 08:00 UTC. (8:00 a.m.)
|
|
@@ -508,8 +511,9 @@ module Aws::OpsWorksCM
|
|
|
508
511
|
#
|
|
509
512
|
# * `DDD:HH:MM` for weekly backups
|
|
510
513
|
#
|
|
511
|
-
# The specified time is in coordinated
|
|
512
|
-
# default value is a random, daily start
|
|
514
|
+
# `MM` must be specified as `00`. The specified time is in coordinated
|
|
515
|
+
# universal time (UTC). The default value is a random, daily start
|
|
516
|
+
# time.
|
|
513
517
|
#
|
|
514
518
|
# **Example:** `08:00`, which represents a daily start time of 08:00
|
|
515
519
|
# UTC.
|
|
@@ -1335,7 +1339,7 @@ module Aws::OpsWorksCM
|
|
|
1335
1339
|
#
|
|
1336
1340
|
# @!attribute [rw] engine_version
|
|
1337
1341
|
# The engine version of the server. For a Chef server, the valid value
|
|
1338
|
-
# for EngineVersion is currently `
|
|
1342
|
+
# for EngineVersion is currently `2`. For a Puppet server, the valid
|
|
1339
1343
|
# value is `2017`.
|
|
1340
1344
|
# @return [String]
|
|
1341
1345
|
#
|
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.36.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: 2020-06-
|
|
11
|
+
date: 2020-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|