aws-sdk-opsworkscm 1.42.0 → 1.43.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64b68c027d158602ad14d74bd5f527fb50eac44edfbe55033e86f6e52ef79140
4
- data.tar.gz: d9f9719e02f5478ee73938ff7e8e5927fd253366704adc8b2bf04cb3d74cef2f
3
+ metadata.gz: f52bcb893d2358e03b10c6c291512ecd1d37a3df8a1752eb735ef24f52ba84a5
4
+ data.tar.gz: 0ebff3ab939c3535672900aa21c16927ccd5d1049bfd46ce3faf37c8f93c0ea2
5
5
  SHA512:
6
- metadata.gz: 62ad3b2794de6b29e31e42cd2ad3866e7d921bc5e6e915a3896e2f771362103ae9543dae6f7a165f1a4d5efb2d870c92c57a7ce3a1be4f21cc44a43adf85bc12
7
- data.tar.gz: 96f219504f6bfb79edccfdffffd533ea758b57b8fe9494292b125680794a86b547a5529b02b965b9e383d6dbc2b65e0e392c575608f20fbda95a7b00425443b5
6
+ metadata.gz: ec7e8c8e73acc609c8beba46ab092ec3809cc2500fee301bfe7ec51f039978428f7de869489bb3b949f11066591dcba5ec06269ca385e4101431d36e478b7d1b
7
+ data.tar.gz: 7072d675879dcf9ce6de3dc23f87ee613f43205fed24192e393871772876c834febd847cab02d6984285b3e9f62b1d7a626d182882b2d52268525ceed4a8830a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2021-05-21)
5
+ ------------------
6
+
7
+ * Feature - New PUPPET_API_CRL attribute returned by DescribeServers API; new EngineVersion of 2019 available for Puppet Enterprise servers.
8
+
4
9
  1.42.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-opsworkscm/customizations'
49
49
  # @!group service
50
50
  module Aws::OpsWorksCM
51
51
 
52
- GEM_VERSION = '1.42.0'
52
+ GEM_VERSION = '1.43.0'
53
53
 
54
54
  end
@@ -610,7 +610,7 @@ module Aws::OpsWorksCM
610
610
  # @option params [String] :engine_version
611
611
  # The major release version of the engine that you want to use. For a
612
612
  # Chef server, the valid value for EngineVersion is currently `2`. For a
613
- # Puppet server, the valid value is `2017`.
613
+ # Puppet server, valid values are `2019` or `2017`.
614
614
  #
615
615
  # @option params [Array<Types::EngineAttribute>] :engine_attributes
616
616
  # Optional engine attributes on a specified server.
@@ -1427,7 +1427,9 @@ module Aws::OpsWorksCM
1427
1427
  # The name of the key pair to set on the new EC2 instance. This can be
1428
1428
  # helpful if the administrator no longer has the SSH key.
1429
1429
  #
1430
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1430
+ # @return [Types::RestoreServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1431
+ #
1432
+ # * {Types::RestoreServerResponse#server #server} => Types::Server
1431
1433
  #
1432
1434
  # @example Request syntax with placeholder values
1433
1435
  #
@@ -1438,6 +1440,37 @@ module Aws::OpsWorksCM
1438
1440
  # key_pair: "KeyPair",
1439
1441
  # })
1440
1442
  #
1443
+ # @example Response structure
1444
+ #
1445
+ # resp.server.associate_public_ip_address #=> Boolean
1446
+ # resp.server.backup_retention_count #=> Integer
1447
+ # resp.server.server_name #=> String
1448
+ # resp.server.created_at #=> Time
1449
+ # resp.server.cloud_formation_stack_arn #=> String
1450
+ # resp.server.custom_domain #=> String
1451
+ # resp.server.disable_automated_backup #=> Boolean
1452
+ # resp.server.endpoint #=> String
1453
+ # resp.server.engine #=> String
1454
+ # resp.server.engine_model #=> String
1455
+ # resp.server.engine_attributes #=> Array
1456
+ # resp.server.engine_attributes[0].name #=> String
1457
+ # resp.server.engine_attributes[0].value #=> String
1458
+ # resp.server.engine_version #=> String
1459
+ # resp.server.instance_profile_arn #=> String
1460
+ # resp.server.instance_type #=> String
1461
+ # resp.server.key_pair #=> String
1462
+ # resp.server.maintenance_status #=> String, one of "SUCCESS", "FAILED"
1463
+ # resp.server.preferred_maintenance_window #=> String
1464
+ # resp.server.preferred_backup_window #=> String
1465
+ # resp.server.security_group_ids #=> Array
1466
+ # resp.server.security_group_ids[0] #=> String
1467
+ # resp.server.service_role_arn #=> String
1468
+ # resp.server.status #=> String, one of "BACKING_UP", "CONNECTION_LOST", "CREATING", "DELETING", "MODIFYING", "FAILED", "HEALTHY", "RUNNING", "RESTORING", "SETUP", "UNDER_MAINTENANCE", "UNHEALTHY", "TERMINATED"
1469
+ # resp.server.status_reason #=> String
1470
+ # resp.server.subnet_ids #=> Array
1471
+ # resp.server.subnet_ids[0] #=> String
1472
+ # resp.server.server_arn #=> String
1473
+ #
1441
1474
  # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/RestoreServer AWS API Documentation
1442
1475
  #
1443
1476
  # @overload restore_server(params = {})
@@ -1784,7 +1817,7 @@ module Aws::OpsWorksCM
1784
1817
  params: params,
1785
1818
  config: config)
1786
1819
  context[:gem_name] = 'aws-sdk-opsworkscm'
1787
- context[:gem_version] = '1.42.0'
1820
+ context[:gem_version] = '1.43.0'
1788
1821
  Seahorse::Client::Request.new(handlers, context)
1789
1822
  end
1790
1823
 
@@ -283,6 +283,7 @@ module Aws::OpsWorksCM
283
283
  RestoreServerRequest.add_member(:key_pair, Shapes::ShapeRef.new(shape: KeyPair, location_name: "KeyPair"))
284
284
  RestoreServerRequest.struct_class = Types::RestoreServerRequest
285
285
 
286
+ RestoreServerResponse.add_member(:server, Shapes::ShapeRef.new(shape: Server, location_name: "Server"))
286
287
  RestoreServerResponse.struct_class = Types::RestoreServerResponse
287
288
 
288
289
  Server.add_member(:associate_public_ip_address, Shapes::ShapeRef.new(shape: Boolean, location_name: "AssociatePublicIpAddress"))
@@ -424,7 +424,7 @@ module Aws::OpsWorksCM
424
424
  # @!attribute [rw] engine_version
425
425
  # The major release version of the engine that you want to use. For a
426
426
  # Chef server, the valid value for EngineVersion is currently `2`. For
427
- # a Puppet server, the valid value is `2017`.
427
+ # a Puppet server, valid values are `2019` or `2017`.
428
428
  # @return [String]
429
429
  #
430
430
  # @!attribute [rw] engine_attributes
@@ -919,11 +919,23 @@ module Aws::OpsWorksCM
919
919
  # running Chef Automate 1 must have had at least one successful
920
920
  # maintenance run after November 1, 2019.
921
921
  #
922
- # *For Puppet Server:*
923
- # `DescribeServersResponse$Servers$EngineAttributes` contains
924
- # PUPPET\_API\_CA\_CERT. This is the PEM-encoded CA certificate that
925
- # is used by the Puppet API over TCP port number 8140. The CA
926
- # certificate is also used to sign node certificates.
922
+ # *For Puppet servers:*
923
+ # `DescribeServersResponse$Servers$EngineAttributes` contains the
924
+ # following two responses:
925
+ #
926
+ # * `PUPPET_API_CA_CERT`, the PEM-encoded CA certificate that is used
927
+ # by the Puppet API over TCP port number 8140. The CA certificate is
928
+ # also used to sign node certificates.
929
+ #
930
+ # * `PUPPET_API_CRL`, a certificate revocation list. The certificate
931
+ # revocation list is for internal maintenance purposes only. For
932
+ # more information about the Puppet certificate revocation list, see
933
+ # [Man Page: puppet certificate\_revocation\_list][1] in the Puppet
934
+ # documentation.
935
+ #
936
+ #
937
+ #
938
+ # [1]: https://puppet.com/docs/puppet/5.5/man/certificate_revocation_list.html
927
939
  # @return [Array<Types::Server>]
928
940
  #
929
941
  # @!attribute [rw] next_token
@@ -1283,9 +1295,17 @@ module Aws::OpsWorksCM
1283
1295
  include Aws::Structure
1284
1296
  end
1285
1297
 
1298
+ # @!attribute [rw] server
1299
+ # Describes a configuration management server.
1300
+ # @return [Types::Server]
1301
+ #
1286
1302
  # @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/RestoreServerResponse AWS API Documentation
1287
1303
  #
1288
- class RestoreServerResponse < Aws::EmptyStructure; end
1304
+ class RestoreServerResponse < Struct.new(
1305
+ :server)
1306
+ SENSITIVE = []
1307
+ include Aws::Structure
1308
+ end
1289
1309
 
1290
1310
  # Describes a configuration management server.
1291
1311
  #
@@ -1371,8 +1391,8 @@ module Aws::OpsWorksCM
1371
1391
  #
1372
1392
  # @!attribute [rw] engine_version
1373
1393
  # The engine version of the server. For a Chef server, the valid value
1374
- # for EngineVersion is currently `2`. For a Puppet server, the valid
1375
- # value is `2017`.
1394
+ # for EngineVersion is currently `2`. For a Puppet server, specify
1395
+ # either `2019` or `2017`.
1376
1396
  # @return [String]
1377
1397
  #
1378
1398
  # @!attribute [rw] instance_profile_arn
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.42.0
4
+ version: 1.43.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: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -67,8 +67,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
67
67
  licenses:
68
68
  - Apache-2.0
69
69
  metadata:
70
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-opsworkscm
71
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-opsworkscm/CHANGELOG.md
70
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-opsworkscm
71
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-opsworkscm/CHANGELOG.md
72
72
  post_install_message:
73
73
  rdoc_options: []
74
74
  require_paths:
@@ -84,8 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  - !ruby/object:Gem::Version
85
85
  version: '0'
86
86
  requirements: []
87
- rubyforge_project:
88
- rubygems_version: 2.7.6.2
87
+ rubygems_version: 3.1.6
89
88
  signing_key:
90
89
  specification_version: 4
91
90
  summary: AWS SDK for Ruby - OpsWorksCM