aws-sdk-opsworkscm 1.35.1 → 1.40.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 +5 -2
- data/lib/aws-sdk-opsworkscm/client.rb +37 -20
- 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: '06058f5a3e6e918db8d1131a6e9665bb89ce12509da121cd5a4fb4a9a1f74c44'
|
4
|
+
data.tar.gz: '069e202df905dd7772c842f44414827cf71d21760cbeba8af07aaa383f94d7b1'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3cc8c1f4b21d73adbfd2b91cf075c51b3fb48bce232626229caba779068e8790e3fa7b8b03a6cbf8e10c61abd59eaacc7d6a28e237a54efc5608797b348d650
|
7
|
+
data.tar.gz: 616c98782a93b60bc5ae9035d27bc8fcd9487c8af5a3bef51b4582f2df4bb43559d5a4330306a5185a13d6aa107136b6fab49b7d16328396f9c9f58bff9a4203
|
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:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -43,9 +46,9 @@ require_relative 'aws-sdk-opsworkscm/customizations'
|
|
43
46
|
#
|
44
47
|
# See {Errors} for more information.
|
45
48
|
#
|
46
|
-
#
|
49
|
+
# @!group service
|
47
50
|
module Aws::OpsWorksCM
|
48
51
|
|
49
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.40.0'
|
50
53
|
|
51
54
|
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:
|
@@ -83,13 +85,28 @@ module Aws::OpsWorksCM
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::OpsWorksCM
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -333,8 +350,8 @@ module Aws::OpsWorksCM
|
|
333
350
|
# On a Puppet server, this command is an alternative to the `puppet cert
|
334
351
|
# sign` command that signs a Puppet node CSR.
|
335
352
|
#
|
336
|
-
# Example (
|
337
|
-
# --node-name MyManagedNode --engine-attributes
|
353
|
+
# Example (Puppet): `aws opsworks-cm associate-node --server-name
|
354
|
+
# MyServer --node-name MyManagedNode --engine-attributes
|
338
355
|
# "Name=PUPPET_NODE_CSR,Value=csr-pem"`
|
339
356
|
#
|
340
357
|
# A node can can only be associated with servers that are in a `HEALTHY`
|
@@ -582,7 +599,7 @@ module Aws::OpsWorksCM
|
|
582
599
|
# Enable or disable scheduled backups. Valid values are `true` or
|
583
600
|
# `false`. The default value is `true`.
|
584
601
|
#
|
585
|
-
# @option params [String] :engine
|
602
|
+
# @option params [required, String] :engine
|
586
603
|
# The configuration management engine to use. Valid values include
|
587
604
|
# `ChefAutomate` and `Puppet`.
|
588
605
|
#
|
@@ -592,8 +609,8 @@ module Aws::OpsWorksCM
|
|
592
609
|
#
|
593
610
|
# @option params [String] :engine_version
|
594
611
|
# 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
|
-
#
|
612
|
+
# Chef server, the valid value for EngineVersion is currently `2`. For a
|
613
|
+
# Puppet server, the valid value is `2017`.
|
597
614
|
#
|
598
615
|
# @option params [Array<Types::EngineAttribute>] :engine_attributes
|
599
616
|
# Optional engine attributes on a specified server.
|
@@ -659,10 +676,10 @@ module Aws::OpsWorksCM
|
|
659
676
|
# @option params [String] :preferred_maintenance_window
|
660
677
|
# The start time for a one-hour period each week during which AWS
|
661
678
|
# 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.
|
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.
|
666
683
|
#
|
667
684
|
# **Example:** `Mon:08:00`, which represents a start time of every
|
668
685
|
# Monday at 08:00 UTC. (8:00 a.m.)
|
@@ -677,8 +694,8 @@ module Aws::OpsWorksCM
|
|
677
694
|
#
|
678
695
|
# * `DDD:HH:MM` for weekly backups
|
679
696
|
#
|
680
|
-
# The specified time is in coordinated
|
681
|
-
# 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.
|
682
699
|
#
|
683
700
|
# **Example:** `08:00`, which represents a daily start time of 08:00
|
684
701
|
# UTC.
|
@@ -760,7 +777,7 @@ module Aws::OpsWorksCM
|
|
760
777
|
# custom_certificate: "CustomCertificate",
|
761
778
|
# custom_private_key: "CustomPrivateKey",
|
762
779
|
# disable_automated_backup: false,
|
763
|
-
# engine: "String",
|
780
|
+
# engine: "String", # required
|
764
781
|
# engine_model: "String",
|
765
782
|
# engine_version: "String",
|
766
783
|
# engine_attributes: [
|
@@ -1767,7 +1784,7 @@ module Aws::OpsWorksCM
|
|
1767
1784
|
params: params,
|
1768
1785
|
config: config)
|
1769
1786
|
context[:gem_name] = 'aws-sdk-opsworkscm'
|
1770
|
-
context[:gem_version] = '1.
|
1787
|
+
context[:gem_version] = '1.40.0'
|
1771
1788
|
Seahorse::Client::Request.new(handlers, context)
|
1772
1789
|
end
|
1773
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.40.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-09-30 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|