aws-sdk-opsworkscm 1.33.0 → 1.38.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 +4 -2
- data/lib/aws-sdk-opsworkscm/client.rb +41 -22
- 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 +58 -10
- data/lib/aws-sdk-opsworkscm/waiters.rb +2 -0
- 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: a66e87897348549b7f262aedfba1d12cdd0fd7c73cfd32bc1d9bef8f12b603d4
|
4
|
+
data.tar.gz: '08ce89f62dd735e62d1b65531c74a2c40447804f88c2e80090b93b8dae845f79'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cd3c919dcac539ded56f298f4f209c9c1505e2ca9dbfe79abe67cc23da3531bb96f84d8d4bfb76bf29243b58984c907efc6aa294fc647eef6462dacdb8ad507
|
7
|
+
data.tar.gz: ca9898f4eadfd104e2c485e6fbcbb620a9a325dd258cda8fb8170f3ed0ab13087c915118ea3d5d5e2f91fff39f1c768228a39db1f7bae23465106780aece579b
|
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:
|
@@ -43,9 +45,9 @@ require_relative 'aws-sdk-opsworkscm/customizations'
|
|
43
45
|
#
|
44
46
|
# See {Errors} for more information.
|
45
47
|
#
|
46
|
-
#
|
48
|
+
# @!group service
|
47
49
|
module Aws::OpsWorksCM
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.38.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:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::OpsWorksCM
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::OpsWorksCM
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::OpsWorksCM
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::OpsWorksCM
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::OpsWorksCM
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -331,8 +350,8 @@ module Aws::OpsWorksCM
|
|
331
350
|
# On a Puppet server, this command is an alternative to the `puppet cert
|
332
351
|
# sign` command that signs a Puppet node CSR.
|
333
352
|
#
|
334
|
-
# Example (
|
335
|
-
# --node-name MyManagedNode --engine-attributes
|
353
|
+
# Example (Puppet): `aws opsworks-cm associate-node --server-name
|
354
|
+
# MyServer --node-name MyManagedNode --engine-attributes
|
336
355
|
# "Name=PUPPET_NODE_CSR,Value=csr-pem"`
|
337
356
|
#
|
338
357
|
# A node can can only be associated with servers that are in a `HEALTHY`
|
@@ -580,7 +599,7 @@ module Aws::OpsWorksCM
|
|
580
599
|
# Enable or disable scheduled backups. Valid values are `true` or
|
581
600
|
# `false`. The default value is `true`.
|
582
601
|
#
|
583
|
-
# @option params [String] :engine
|
602
|
+
# @option params [required, String] :engine
|
584
603
|
# The configuration management engine to use. Valid values include
|
585
604
|
# `ChefAutomate` and `Puppet`.
|
586
605
|
#
|
@@ -590,8 +609,8 @@ module Aws::OpsWorksCM
|
|
590
609
|
#
|
591
610
|
# @option params [String] :engine_version
|
592
611
|
# The major release version of the engine that you want to use. For a
|
593
|
-
# Chef server, the valid value for EngineVersion is currently `
|
594
|
-
#
|
612
|
+
# Chef server, the valid value for EngineVersion is currently `2`. For a
|
613
|
+
# Puppet server, the valid value is `2017`.
|
595
614
|
#
|
596
615
|
# @option params [Array<Types::EngineAttribute>] :engine_attributes
|
597
616
|
# Optional engine attributes on a specified server.
|
@@ -657,10 +676,10 @@ module Aws::OpsWorksCM
|
|
657
676
|
# @option params [String] :preferred_maintenance_window
|
658
677
|
# The start time for a one-hour period each week during which AWS
|
659
678
|
# OpsWorks CM performs maintenance on the instance. Valid values must be
|
660
|
-
# specified in the following format: `DDD:HH:MM`.
|
661
|
-
# in coordinated universal time (UTC).
|
662
|
-
# one-hour period on Tuesday, Wednesday,
|
663
|
-
# `TimeWindowDefinition` for more information.
|
679
|
+
# specified in the following format: `DDD:HH:MM`. `MM` must be specified
|
680
|
+
# as `00`. The specified time is in coordinated universal time (UTC).
|
681
|
+
# The default value is a random one-hour period on Tuesday, Wednesday,
|
682
|
+
# or Friday. See `TimeWindowDefinition` for more information.
|
664
683
|
#
|
665
684
|
# **Example:** `Mon:08:00`, which represents a start time of every
|
666
685
|
# Monday at 08:00 UTC. (8:00 a.m.)
|
@@ -675,8 +694,8 @@ module Aws::OpsWorksCM
|
|
675
694
|
#
|
676
695
|
# * `DDD:HH:MM` for weekly backups
|
677
696
|
#
|
678
|
-
# The specified time is in coordinated
|
679
|
-
# value is a random, daily start time.
|
697
|
+
# `MM` must be specified as `00`. The specified time is in coordinated
|
698
|
+
# universal time (UTC). The default value is a random, daily start time.
|
680
699
|
#
|
681
700
|
# **Example:** `08:00`, which represents a daily start time of 08:00
|
682
701
|
# UTC.
|
@@ -758,7 +777,7 @@ module Aws::OpsWorksCM
|
|
758
777
|
# custom_certificate: "CustomCertificate",
|
759
778
|
# custom_private_key: "CustomPrivateKey",
|
760
779
|
# disable_automated_backup: false,
|
761
|
-
# engine: "String",
|
780
|
+
# engine: "String", # required
|
762
781
|
# engine_model: "String",
|
763
782
|
# engine_version: "String",
|
764
783
|
# engine_attributes: [
|
@@ -1765,7 +1784,7 @@ module Aws::OpsWorksCM
|
|
1765
1784
|
params: params,
|
1766
1785
|
config: config)
|
1767
1786
|
context[:gem_name] = 'aws-sdk-opsworkscm'
|
1768
|
-
context[:gem_version] = '1.
|
1787
|
+
context[:gem_version] = '1.38.0'
|
1769
1788
|
Seahorse::Client::Request.new(handlers, context)
|
1770
1789
|
end
|
1771
1790
|
|
@@ -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:
|
@@ -36,6 +38,7 @@ module Aws::OpsWorksCM
|
|
36
38
|
:name,
|
37
39
|
:maximum,
|
38
40
|
:used)
|
41
|
+
SENSITIVE = []
|
39
42
|
include Aws::Structure
|
40
43
|
end
|
41
44
|
|
@@ -87,6 +90,7 @@ module Aws::OpsWorksCM
|
|
87
90
|
:server_name,
|
88
91
|
:node_name,
|
89
92
|
:engine_attributes)
|
93
|
+
SENSITIVE = []
|
90
94
|
include Aws::Structure
|
91
95
|
end
|
92
96
|
|
@@ -100,6 +104,7 @@ module Aws::OpsWorksCM
|
|
100
104
|
#
|
101
105
|
class AssociateNodeResponse < Struct.new(
|
102
106
|
:node_association_status_token)
|
107
|
+
SENSITIVE = []
|
103
108
|
include Aws::Structure
|
104
109
|
end
|
105
110
|
|
@@ -246,6 +251,7 @@ module Aws::OpsWorksCM
|
|
246
251
|
:subnet_ids,
|
247
252
|
:tools_version,
|
248
253
|
:user_arn)
|
254
|
+
SENSITIVE = []
|
249
255
|
include Aws::Structure
|
250
256
|
end
|
251
257
|
|
@@ -298,6 +304,7 @@ module Aws::OpsWorksCM
|
|
298
304
|
:server_name,
|
299
305
|
:description,
|
300
306
|
:tags)
|
307
|
+
SENSITIVE = []
|
301
308
|
include Aws::Structure
|
302
309
|
end
|
303
310
|
|
@@ -309,6 +316,7 @@ module Aws::OpsWorksCM
|
|
309
316
|
#
|
310
317
|
class CreateBackupResponse < Struct.new(
|
311
318
|
:backup)
|
319
|
+
SENSITIVE = []
|
312
320
|
include Aws::Structure
|
313
321
|
end
|
314
322
|
|
@@ -321,7 +329,7 @@ module Aws::OpsWorksCM
|
|
321
329
|
# custom_certificate: "CustomCertificate",
|
322
330
|
# custom_private_key: "CustomPrivateKey",
|
323
331
|
# disable_automated_backup: false,
|
324
|
-
# engine: "String",
|
332
|
+
# engine: "String", # required
|
325
333
|
# engine_model: "String",
|
326
334
|
# engine_version: "String",
|
327
335
|
# engine_attributes: [
|
@@ -415,8 +423,8 @@ module Aws::OpsWorksCM
|
|
415
423
|
#
|
416
424
|
# @!attribute [rw] engine_version
|
417
425
|
# 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
|
-
#
|
426
|
+
# Chef server, the valid value for EngineVersion is currently `2`. For
|
427
|
+
# a Puppet server, the valid value is `2017`.
|
420
428
|
# @return [String]
|
421
429
|
#
|
422
430
|
# @!attribute [rw] engine_attributes
|
@@ -489,10 +497,11 @@ module Aws::OpsWorksCM
|
|
489
497
|
# @!attribute [rw] preferred_maintenance_window
|
490
498
|
# The start time for a one-hour period each week during which AWS
|
491
499
|
# 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
|
500
|
+
# be specified in the following format: `DDD:HH:MM`. `MM` must be
|
501
|
+
# specified as `00`. The specified time is in coordinated universal
|
502
|
+
# time (UTC). The default value is a random one-hour period on
|
503
|
+
# Tuesday, Wednesday, or Friday. See `TimeWindowDefinition` for more
|
504
|
+
# information.
|
496
505
|
#
|
497
506
|
# **Example:** `Mon:08:00`, which represents a start time of every
|
498
507
|
# Monday at 08:00 UTC. (8:00 a.m.)
|
@@ -508,8 +517,9 @@ module Aws::OpsWorksCM
|
|
508
517
|
#
|
509
518
|
# * `DDD:HH:MM` for weekly backups
|
510
519
|
#
|
511
|
-
# The specified time is in coordinated
|
512
|
-
# default value is a random, daily start
|
520
|
+
# `MM` must be specified as `00`. The specified time is in coordinated
|
521
|
+
# universal time (UTC). The default value is a random, daily start
|
522
|
+
# time.
|
513
523
|
#
|
514
524
|
# **Example:** `08:00`, which represents a daily start time of 08:00
|
515
525
|
# UTC.
|
@@ -610,6 +620,7 @@ module Aws::OpsWorksCM
|
|
610
620
|
:subnet_ids,
|
611
621
|
:tags,
|
612
622
|
:backup_id)
|
623
|
+
SENSITIVE = [:custom_private_key]
|
613
624
|
include Aws::Structure
|
614
625
|
end
|
615
626
|
|
@@ -621,6 +632,7 @@ module Aws::OpsWorksCM
|
|
621
632
|
#
|
622
633
|
class CreateServerResponse < Struct.new(
|
623
634
|
:server)
|
635
|
+
SENSITIVE = []
|
624
636
|
include Aws::Structure
|
625
637
|
end
|
626
638
|
|
@@ -641,6 +653,7 @@ module Aws::OpsWorksCM
|
|
641
653
|
#
|
642
654
|
class DeleteBackupRequest < Struct.new(
|
643
655
|
:backup_id)
|
656
|
+
SENSITIVE = []
|
644
657
|
include Aws::Structure
|
645
658
|
end
|
646
659
|
|
@@ -663,6 +676,7 @@ module Aws::OpsWorksCM
|
|
663
676
|
#
|
664
677
|
class DeleteServerRequest < Struct.new(
|
665
678
|
:server_name)
|
679
|
+
SENSITIVE = []
|
666
680
|
include Aws::Structure
|
667
681
|
end
|
668
682
|
|
@@ -684,6 +698,7 @@ module Aws::OpsWorksCM
|
|
684
698
|
#
|
685
699
|
class DescribeAccountAttributesResponse < Struct.new(
|
686
700
|
:attributes)
|
701
|
+
SENSITIVE = []
|
687
702
|
include Aws::Structure
|
688
703
|
end
|
689
704
|
|
@@ -720,6 +735,7 @@ module Aws::OpsWorksCM
|
|
720
735
|
:server_name,
|
721
736
|
:next_token,
|
722
737
|
:max_results)
|
738
|
+
SENSITIVE = []
|
723
739
|
include Aws::Structure
|
724
740
|
end
|
725
741
|
|
@@ -736,6 +752,7 @@ module Aws::OpsWorksCM
|
|
736
752
|
class DescribeBackupsResponse < Struct.new(
|
737
753
|
:backups,
|
738
754
|
:next_token)
|
755
|
+
SENSITIVE = []
|
739
756
|
include Aws::Structure
|
740
757
|
end
|
741
758
|
|
@@ -778,6 +795,7 @@ module Aws::OpsWorksCM
|
|
778
795
|
:server_name,
|
779
796
|
:next_token,
|
780
797
|
:max_results)
|
798
|
+
SENSITIVE = []
|
781
799
|
include Aws::Structure
|
782
800
|
end
|
783
801
|
|
@@ -802,6 +820,7 @@ module Aws::OpsWorksCM
|
|
802
820
|
class DescribeEventsResponse < Struct.new(
|
803
821
|
:server_events,
|
804
822
|
:next_token)
|
823
|
+
SENSITIVE = []
|
805
824
|
include Aws::Structure
|
806
825
|
end
|
807
826
|
|
@@ -827,6 +846,7 @@ module Aws::OpsWorksCM
|
|
827
846
|
class DescribeNodeAssociationStatusRequest < Struct.new(
|
828
847
|
:node_association_status_token,
|
829
848
|
:server_name)
|
849
|
+
SENSITIVE = []
|
830
850
|
include Aws::Structure
|
831
851
|
end
|
832
852
|
|
@@ -854,6 +874,7 @@ module Aws::OpsWorksCM
|
|
854
874
|
class DescribeNodeAssociationStatusResponse < Struct.new(
|
855
875
|
:node_association_status,
|
856
876
|
:engine_attributes)
|
877
|
+
SENSITIVE = []
|
857
878
|
include Aws::Structure
|
858
879
|
end
|
859
880
|
|
@@ -884,6 +905,7 @@ module Aws::OpsWorksCM
|
|
884
905
|
:server_name,
|
885
906
|
:next_token,
|
886
907
|
:max_results)
|
908
|
+
SENSITIVE = []
|
887
909
|
include Aws::Structure
|
888
910
|
end
|
889
911
|
|
@@ -913,6 +935,7 @@ module Aws::OpsWorksCM
|
|
913
935
|
class DescribeServersResponse < Struct.new(
|
914
936
|
:servers,
|
915
937
|
:next_token)
|
938
|
+
SENSITIVE = []
|
916
939
|
include Aws::Structure
|
917
940
|
end
|
918
941
|
|
@@ -957,6 +980,7 @@ module Aws::OpsWorksCM
|
|
957
980
|
:server_name,
|
958
981
|
:node_name,
|
959
982
|
:engine_attributes)
|
983
|
+
SENSITIVE = []
|
960
984
|
include Aws::Structure
|
961
985
|
end
|
962
986
|
|
@@ -970,6 +994,7 @@ module Aws::OpsWorksCM
|
|
970
994
|
#
|
971
995
|
class DisassociateNodeResponse < Struct.new(
|
972
996
|
:node_association_status_token)
|
997
|
+
SENSITIVE = []
|
973
998
|
include Aws::Structure
|
974
999
|
end
|
975
1000
|
|
@@ -996,6 +1021,7 @@ module Aws::OpsWorksCM
|
|
996
1021
|
class EngineAttribute < Struct.new(
|
997
1022
|
:name,
|
998
1023
|
:value)
|
1024
|
+
SENSITIVE = [:value]
|
999
1025
|
include Aws::Structure
|
1000
1026
|
end
|
1001
1027
|
|
@@ -1053,6 +1079,7 @@ module Aws::OpsWorksCM
|
|
1053
1079
|
:export_attribute_name,
|
1054
1080
|
:server_name,
|
1055
1081
|
:input_attributes)
|
1082
|
+
SENSITIVE = []
|
1056
1083
|
include Aws::Structure
|
1057
1084
|
end
|
1058
1085
|
|
@@ -1069,6 +1096,7 @@ module Aws::OpsWorksCM
|
|
1069
1096
|
class ExportServerEngineAttributeResponse < Struct.new(
|
1070
1097
|
:engine_attribute,
|
1071
1098
|
:server_name)
|
1099
|
+
SENSITIVE = []
|
1072
1100
|
include Aws::Structure
|
1073
1101
|
end
|
1074
1102
|
|
@@ -1083,6 +1111,7 @@ module Aws::OpsWorksCM
|
|
1083
1111
|
#
|
1084
1112
|
class InvalidNextTokenException < Struct.new(
|
1085
1113
|
:message)
|
1114
|
+
SENSITIVE = []
|
1086
1115
|
include Aws::Structure
|
1087
1116
|
end
|
1088
1117
|
|
@@ -1099,6 +1128,7 @@ module Aws::OpsWorksCM
|
|
1099
1128
|
#
|
1100
1129
|
class InvalidStateException < Struct.new(
|
1101
1130
|
:message)
|
1131
|
+
SENSITIVE = []
|
1102
1132
|
include Aws::Structure
|
1103
1133
|
end
|
1104
1134
|
|
@@ -1113,6 +1143,7 @@ module Aws::OpsWorksCM
|
|
1113
1143
|
#
|
1114
1144
|
class LimitExceededException < Struct.new(
|
1115
1145
|
:message)
|
1146
|
+
SENSITIVE = []
|
1116
1147
|
include Aws::Structure
|
1117
1148
|
end
|
1118
1149
|
|
@@ -1158,6 +1189,7 @@ module Aws::OpsWorksCM
|
|
1158
1189
|
:resource_arn,
|
1159
1190
|
:next_token,
|
1160
1191
|
:max_results)
|
1192
|
+
SENSITIVE = []
|
1161
1193
|
include Aws::Structure
|
1162
1194
|
end
|
1163
1195
|
|
@@ -1175,6 +1207,7 @@ module Aws::OpsWorksCM
|
|
1175
1207
|
class ListTagsForResourceResponse < Struct.new(
|
1176
1208
|
:tags,
|
1177
1209
|
:next_token)
|
1210
|
+
SENSITIVE = []
|
1178
1211
|
include Aws::Structure
|
1179
1212
|
end
|
1180
1213
|
|
@@ -1189,6 +1222,7 @@ module Aws::OpsWorksCM
|
|
1189
1222
|
#
|
1190
1223
|
class ResourceAlreadyExistsException < Struct.new(
|
1191
1224
|
:message)
|
1225
|
+
SENSITIVE = []
|
1192
1226
|
include Aws::Structure
|
1193
1227
|
end
|
1194
1228
|
|
@@ -1203,6 +1237,7 @@ module Aws::OpsWorksCM
|
|
1203
1237
|
#
|
1204
1238
|
class ResourceNotFoundException < Struct.new(
|
1205
1239
|
:message)
|
1240
|
+
SENSITIVE = []
|
1206
1241
|
include Aws::Structure
|
1207
1242
|
end
|
1208
1243
|
|
@@ -1244,6 +1279,7 @@ module Aws::OpsWorksCM
|
|
1244
1279
|
:server_name,
|
1245
1280
|
:instance_type,
|
1246
1281
|
:key_pair)
|
1282
|
+
SENSITIVE = []
|
1247
1283
|
include Aws::Structure
|
1248
1284
|
end
|
1249
1285
|
|
@@ -1335,7 +1371,7 @@ module Aws::OpsWorksCM
|
|
1335
1371
|
#
|
1336
1372
|
# @!attribute [rw] engine_version
|
1337
1373
|
# The engine version of the server. For a Chef server, the valid value
|
1338
|
-
# for EngineVersion is currently `
|
1374
|
+
# for EngineVersion is currently `2`. For a Puppet server, the valid
|
1339
1375
|
# value is `2017`.
|
1340
1376
|
# @return [String]
|
1341
1377
|
#
|
@@ -1423,6 +1459,7 @@ module Aws::OpsWorksCM
|
|
1423
1459
|
:status_reason,
|
1424
1460
|
:subnet_ids,
|
1425
1461
|
:server_arn)
|
1462
|
+
SENSITIVE = []
|
1426
1463
|
include Aws::Structure
|
1427
1464
|
end
|
1428
1465
|
|
@@ -1452,6 +1489,7 @@ module Aws::OpsWorksCM
|
|
1452
1489
|
:server_name,
|
1453
1490
|
:message,
|
1454
1491
|
:log_url)
|
1492
|
+
SENSITIVE = []
|
1455
1493
|
include Aws::Structure
|
1456
1494
|
end
|
1457
1495
|
|
@@ -1496,6 +1534,7 @@ module Aws::OpsWorksCM
|
|
1496
1534
|
class StartMaintenanceRequest < Struct.new(
|
1497
1535
|
:server_name,
|
1498
1536
|
:engine_attributes)
|
1537
|
+
SENSITIVE = []
|
1499
1538
|
include Aws::Structure
|
1500
1539
|
end
|
1501
1540
|
|
@@ -1507,6 +1546,7 @@ module Aws::OpsWorksCM
|
|
1507
1546
|
#
|
1508
1547
|
class StartMaintenanceResponse < Struct.new(
|
1509
1548
|
:server)
|
1549
|
+
SENSITIVE = []
|
1510
1550
|
include Aws::Structure
|
1511
1551
|
end
|
1512
1552
|
|
@@ -1543,6 +1583,7 @@ module Aws::OpsWorksCM
|
|
1543
1583
|
class Tag < Struct.new(
|
1544
1584
|
:key,
|
1545
1585
|
:value)
|
1586
|
+
SENSITIVE = []
|
1546
1587
|
include Aws::Structure
|
1547
1588
|
end
|
1548
1589
|
|
@@ -1591,6 +1632,7 @@ module Aws::OpsWorksCM
|
|
1591
1632
|
class TagResourceRequest < Struct.new(
|
1592
1633
|
:resource_arn,
|
1593
1634
|
:tags)
|
1635
|
+
SENSITIVE = []
|
1594
1636
|
include Aws::Structure
|
1595
1637
|
end
|
1596
1638
|
|
@@ -1621,6 +1663,7 @@ module Aws::OpsWorksCM
|
|
1621
1663
|
class UntagResourceRequest < Struct.new(
|
1622
1664
|
:resource_arn,
|
1623
1665
|
:tag_keys)
|
1666
|
+
SENSITIVE = []
|
1624
1667
|
include Aws::Structure
|
1625
1668
|
end
|
1626
1669
|
|
@@ -1655,6 +1698,7 @@ module Aws::OpsWorksCM
|
|
1655
1698
|
:server_name,
|
1656
1699
|
:attribute_name,
|
1657
1700
|
:attribute_value)
|
1701
|
+
SENSITIVE = []
|
1658
1702
|
include Aws::Structure
|
1659
1703
|
end
|
1660
1704
|
|
@@ -1666,6 +1710,7 @@ module Aws::OpsWorksCM
|
|
1666
1710
|
#
|
1667
1711
|
class UpdateServerEngineAttributesResponse < Struct.new(
|
1668
1712
|
:server)
|
1713
|
+
SENSITIVE = []
|
1669
1714
|
include Aws::Structure
|
1670
1715
|
end
|
1671
1716
|
|
@@ -1717,6 +1762,7 @@ module Aws::OpsWorksCM
|
|
1717
1762
|
:server_name,
|
1718
1763
|
:preferred_maintenance_window,
|
1719
1764
|
:preferred_backup_window)
|
1765
|
+
SENSITIVE = []
|
1720
1766
|
include Aws::Structure
|
1721
1767
|
end
|
1722
1768
|
|
@@ -1728,6 +1774,7 @@ module Aws::OpsWorksCM
|
|
1728
1774
|
#
|
1729
1775
|
class UpdateServerResponse < Struct.new(
|
1730
1776
|
:server)
|
1777
|
+
SENSITIVE = []
|
1731
1778
|
include Aws::Structure
|
1732
1779
|
end
|
1733
1780
|
|
@@ -1742,6 +1789,7 @@ module Aws::OpsWorksCM
|
|
1742
1789
|
#
|
1743
1790
|
class ValidationException < Struct.new(
|
1744
1791
|
:message)
|
1792
|
+
SENSITIVE = []
|
1745
1793
|
include Aws::Structure
|
1746
1794
|
end
|
1747
1795
|
|
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.38.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-
|
11
|
+
date: 2020-08-25 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|