aws-sdk-opsworkscm 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-opsworkscm.rb +1 -1
- data/lib/aws-sdk-opsworkscm/client.rb +19 -3
- data/lib/aws-sdk-opsworkscm/client_api.rb +2 -0
- data/lib/aws-sdk-opsworkscm/types.rb +23 -4
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba49c26509d96214e97f7b13f5b4da9528b66e79
|
4
|
+
data.tar.gz: 1f651db68b6250afdc0c8b091383f118045b4e98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 313600120e5468ac8de32be7c967bb53d23cce8b85b3d95c1420f6324738c43e3ceec4b7598cb3234220b6708d5fcebde8e8a79c62ce53279d547f40995cf5c2
|
7
|
+
data.tar.gz: 9d4d0a495103783303130be2919fa098cd8a40da2a9a87b2195ba29acaaa8bae8508076ac4e8d125fc6e93c5f2d299703464129d0c078ca23713c1dc284a93c1
|
data/lib/aws-sdk-opsworkscm.rb
CHANGED
@@ -431,7 +431,7 @@ module Aws::OpsWorksCM
|
|
431
431
|
# management console typically creates the service role for you, if you
|
432
432
|
# are using the AWS CLI or API commands, run the
|
433
433
|
# service-role-creation.yaml AWS CloudFormation template, located at
|
434
|
-
# https://s3.amazonaws.com/opsworks-
|
434
|
+
# https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml.
|
435
435
|
# This template creates a CloudFormation stack that includes the service
|
436
436
|
# role that you need.
|
437
437
|
#
|
@@ -451,7 +451,7 @@ module Aws::OpsWorksCM
|
|
451
451
|
#
|
452
452
|
#
|
453
453
|
#
|
454
|
-
# [1]: http://docs.aws.amazon.com/
|
454
|
+
# [1]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
455
455
|
#
|
456
456
|
# @option params [String] :backup_id
|
457
457
|
# If you specify this field, AWS OpsWorks for Chef Automate creates the
|
@@ -771,6 +771,8 @@ module Aws::OpsWorksCM
|
|
771
771
|
# parameters of the request are not valid.
|
772
772
|
#
|
773
773
|
# @option params [required, String] :node_association_status_token
|
774
|
+
# The token returned in either the AssociateNodeResponse or the
|
775
|
+
# DisassociateNodeResponse.
|
774
776
|
#
|
775
777
|
# @option params [required, String] :server_name
|
776
778
|
# The name of the server from which to disassociate the node.
|
@@ -778,6 +780,7 @@ module Aws::OpsWorksCM
|
|
778
780
|
# @return [Types::DescribeNodeAssociationStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
779
781
|
#
|
780
782
|
# * {Types::DescribeNodeAssociationStatusResponse#node_association_status #node_association_status} => String
|
783
|
+
# * {Types::DescribeNodeAssociationStatusResponse#engine_attributes #engine_attributes} => Array<Types::EngineAttribute>
|
781
784
|
#
|
782
785
|
# @example Request syntax with placeholder values
|
783
786
|
#
|
@@ -789,6 +792,9 @@ module Aws::OpsWorksCM
|
|
789
792
|
# @example Response structure
|
790
793
|
#
|
791
794
|
# resp.node_association_status #=> String, one of "SUCCESS", "FAILED", "IN_PROGRESS"
|
795
|
+
# resp.engine_attributes #=> Array
|
796
|
+
# resp.engine_attributes[0].name #=> String
|
797
|
+
# resp.engine_attributes[0].value #=> String
|
792
798
|
#
|
793
799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/DescribeNodeAssociationStatus AWS API Documentation
|
794
800
|
#
|
@@ -1007,6 +1013,10 @@ module Aws::OpsWorksCM
|
|
1007
1013
|
# @option params [required, String] :server_name
|
1008
1014
|
# The name of the server on which to run maintenance.
|
1009
1015
|
#
|
1016
|
+
# @option params [Array<Types::EngineAttribute>] :engine_attributes
|
1017
|
+
# Engine attributes that are specific to the server on which you want to
|
1018
|
+
# run maintenance.
|
1019
|
+
#
|
1010
1020
|
# @return [Types::StartMaintenanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1011
1021
|
#
|
1012
1022
|
# * {Types::StartMaintenanceResponse#server #server} => Types::Server
|
@@ -1015,6 +1025,12 @@ module Aws::OpsWorksCM
|
|
1015
1025
|
#
|
1016
1026
|
# resp = client.start_maintenance({
|
1017
1027
|
# server_name: "ServerName", # required
|
1028
|
+
# engine_attributes: [
|
1029
|
+
# {
|
1030
|
+
# name: "EngineAttributeName",
|
1031
|
+
# value: "EngineAttributeValue",
|
1032
|
+
# },
|
1033
|
+
# ],
|
1018
1034
|
# })
|
1019
1035
|
#
|
1020
1036
|
# @example Response structure
|
@@ -1223,7 +1239,7 @@ module Aws::OpsWorksCM
|
|
1223
1239
|
params: params,
|
1224
1240
|
config: config)
|
1225
1241
|
context[:gem_name] = 'aws-sdk-opsworkscm'
|
1226
|
-
context[:gem_version] = '1.
|
1242
|
+
context[:gem_version] = '1.1.0'
|
1227
1243
|
Seahorse::Client::Request.new(handlers, context)
|
1228
1244
|
end
|
1229
1245
|
|
@@ -194,6 +194,7 @@ module Aws::OpsWorksCM
|
|
194
194
|
DescribeNodeAssociationStatusRequest.struct_class = Types::DescribeNodeAssociationStatusRequest
|
195
195
|
|
196
196
|
DescribeNodeAssociationStatusResponse.add_member(:node_association_status, Shapes::ShapeRef.new(shape: NodeAssociationStatus, location_name: "NodeAssociationStatus"))
|
197
|
+
DescribeNodeAssociationStatusResponse.add_member(:engine_attributes, Shapes::ShapeRef.new(shape: EngineAttributes, location_name: "EngineAttributes"))
|
197
198
|
DescribeNodeAssociationStatusResponse.struct_class = Types::DescribeNodeAssociationStatusResponse
|
198
199
|
|
199
200
|
DescribeServersRequest.add_member(:server_name, Shapes::ShapeRef.new(shape: ServerName, location_name: "ServerName"))
|
@@ -263,6 +264,7 @@ module Aws::OpsWorksCM
|
|
263
264
|
Servers.member = Shapes::ShapeRef.new(shape: Server)
|
264
265
|
|
265
266
|
StartMaintenanceRequest.add_member(:server_name, Shapes::ShapeRef.new(shape: ServerName, required: true, location_name: "ServerName"))
|
267
|
+
StartMaintenanceRequest.add_member(:engine_attributes, Shapes::ShapeRef.new(shape: EngineAttributes, location_name: "EngineAttributes"))
|
266
268
|
StartMaintenanceRequest.struct_class = Types::StartMaintenanceRequest
|
267
269
|
|
268
270
|
StartMaintenanceResponse.add_member(:server, Shapes::ShapeRef.new(shape: Server, location_name: "Server"))
|
@@ -432,7 +432,7 @@ module Aws::OpsWorksCM
|
|
432
432
|
# management console typically creates the service role for you, if
|
433
433
|
# you are using the AWS CLI or API commands, run the
|
434
434
|
# service-role-creation.yaml AWS CloudFormation template, located at
|
435
|
-
# https://s3.amazonaws.com/opsworks-
|
435
|
+
# https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml.
|
436
436
|
# This template creates a CloudFormation stack that includes the
|
437
437
|
# service role that you need.
|
438
438
|
# @return [String]
|
@@ -454,7 +454,7 @@ module Aws::OpsWorksCM
|
|
454
454
|
#
|
455
455
|
#
|
456
456
|
#
|
457
|
-
# [1]: http://docs.aws.amazon.com/
|
457
|
+
# [1]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-platforms.html
|
458
458
|
# @return [Array<String>]
|
459
459
|
#
|
460
460
|
# @!attribute [rw] backup_id
|
@@ -706,6 +706,8 @@ module Aws::OpsWorksCM
|
|
706
706
|
# }
|
707
707
|
#
|
708
708
|
# @!attribute [rw] node_association_status_token
|
709
|
+
# The token returned in either the AssociateNodeResponse or the
|
710
|
+
# DisassociateNodeResponse.
|
709
711
|
# @return [String]
|
710
712
|
#
|
711
713
|
# @!attribute [rw] server_name
|
@@ -733,10 +735,15 @@ module Aws::OpsWorksCM
|
|
733
735
|
# progress.
|
734
736
|
# @return [String]
|
735
737
|
#
|
738
|
+
# @!attribute [rw] engine_attributes
|
739
|
+
# Attributes specific to the node association.
|
740
|
+
# @return [Array<Types::EngineAttribute>]
|
741
|
+
#
|
736
742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/DescribeNodeAssociationStatusResponse AWS API Documentation
|
737
743
|
#
|
738
744
|
class DescribeNodeAssociationStatusResponse < Struct.new(
|
739
|
-
:node_association_status
|
745
|
+
:node_association_status,
|
746
|
+
:engine_attributes)
|
740
747
|
include Aws::Structure
|
741
748
|
end
|
742
749
|
|
@@ -1122,16 +1129,28 @@ module Aws::OpsWorksCM
|
|
1122
1129
|
#
|
1123
1130
|
# {
|
1124
1131
|
# server_name: "ServerName", # required
|
1132
|
+
# engine_attributes: [
|
1133
|
+
# {
|
1134
|
+
# name: "EngineAttributeName",
|
1135
|
+
# value: "EngineAttributeValue",
|
1136
|
+
# },
|
1137
|
+
# ],
|
1125
1138
|
# }
|
1126
1139
|
#
|
1127
1140
|
# @!attribute [rw] server_name
|
1128
1141
|
# The name of the server on which to run maintenance.
|
1129
1142
|
# @return [String]
|
1130
1143
|
#
|
1144
|
+
# @!attribute [rw] engine_attributes
|
1145
|
+
# Engine attributes that are specific to the server on which you want
|
1146
|
+
# to run maintenance.
|
1147
|
+
# @return [Array<Types::EngineAttribute>]
|
1148
|
+
#
|
1131
1149
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opsworkscm-2016-11-01/StartMaintenanceRequest AWS API Documentation
|
1132
1150
|
#
|
1133
1151
|
class StartMaintenanceRequest < Struct.new(
|
1134
|
-
:server_name
|
1152
|
+
:server_name,
|
1153
|
+
:engine_attributes)
|
1135
1154
|
include Aws::Structure
|
1136
1155
|
end
|
1137
1156
|
|
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.1.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: 2017-
|
11
|
+
date: 2017-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -56,7 +56,9 @@ files:
|
|
56
56
|
homepage: http://github.com/aws/aws-sdk-ruby
|
57
57
|
licenses:
|
58
58
|
- Apache-2.0
|
59
|
-
metadata:
|
59
|
+
metadata:
|
60
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-opsworkscm
|
61
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-opsworkscm/CHANGELOG.md
|
60
62
|
post_install_message:
|
61
63
|
rdoc_options: []
|
62
64
|
require_paths:
|