aws-sdk-ssmquicksetup 1.7.0 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssmquicksetup/client.rb +128 -1
- data/lib/aws-sdk-ssmquicksetup/client_api.rb +85 -0
- data/lib/aws-sdk-ssmquicksetup/types.rb +194 -90
- data/lib/aws-sdk-ssmquicksetup.rb +1 -1
- data/sig/client.rbs +40 -0
- data/sig/types.rbs +49 -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: d4eb6ee049761cf62d2c3b843ed7e60e97682a41f02769afa86d3384cc13bb63
|
4
|
+
data.tar.gz: c5840b02b22837f5215b3b92b382df72ee38063111969c0601972a14907d34b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98cff7f0b0fc9d47b734a338caba6ee923fcf4df914f9bc1c5fbd4d56b57bb7a5d9a98ebcfdebb00958a7df903908eb9df6bf25a75894af97d703f0fbbaec3c0
|
7
|
+
data.tar.gz: e3214c1bc4bc75d18081d28d375dbd411b37ab5f55c9f92d08d25e285ce63135764f6e2a26f9ce56d523daa53372a08ff1010fba06d26b088a0c0d11e7a762c5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.9.0 (2024-11-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add methods that retrieve details about deployed configurations: ListConfigurations, GetConfiguration
|
8
|
+
|
9
|
+
1.8.0 (2024-11-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.7.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.0
|
@@ -525,6 +525,61 @@ module Aws::SSMQuickSetup
|
|
525
525
|
req.send_request(options)
|
526
526
|
end
|
527
527
|
|
528
|
+
# Returns details about the specified configuration.
|
529
|
+
#
|
530
|
+
# @option params [required, String] :configuration_id
|
531
|
+
# A service generated identifier for the configuration.
|
532
|
+
#
|
533
|
+
# @return [Types::GetConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
534
|
+
#
|
535
|
+
# * {Types::GetConfigurationOutput#account #account} => String
|
536
|
+
# * {Types::GetConfigurationOutput#configuration_definition_id #configuration_definition_id} => String
|
537
|
+
# * {Types::GetConfigurationOutput#created_at #created_at} => Time
|
538
|
+
# * {Types::GetConfigurationOutput#id #id} => String
|
539
|
+
# * {Types::GetConfigurationOutput#last_modified_at #last_modified_at} => Time
|
540
|
+
# * {Types::GetConfigurationOutput#manager_arn #manager_arn} => String
|
541
|
+
# * {Types::GetConfigurationOutput#parameters #parameters} => Hash<String,String>
|
542
|
+
# * {Types::GetConfigurationOutput#region #region} => String
|
543
|
+
# * {Types::GetConfigurationOutput#status_summaries #status_summaries} => Array<Types::StatusSummary>
|
544
|
+
# * {Types::GetConfigurationOutput#type #type} => String
|
545
|
+
# * {Types::GetConfigurationOutput#type_version #type_version} => String
|
546
|
+
#
|
547
|
+
# @example Request syntax with placeholder values
|
548
|
+
#
|
549
|
+
# resp = client.get_configuration({
|
550
|
+
# configuration_id: "GetConfigurationInputConfigurationIdString", # required
|
551
|
+
# })
|
552
|
+
#
|
553
|
+
# @example Response structure
|
554
|
+
#
|
555
|
+
# resp.account #=> String
|
556
|
+
# resp.configuration_definition_id #=> String
|
557
|
+
# resp.created_at #=> Time
|
558
|
+
# resp.id #=> String
|
559
|
+
# resp.last_modified_at #=> Time
|
560
|
+
# resp.manager_arn #=> String
|
561
|
+
# resp.parameters #=> Hash
|
562
|
+
# resp.parameters["ConfigurationParametersMapKeyString"] #=> String
|
563
|
+
# resp.region #=> String
|
564
|
+
# resp.status_summaries #=> Array
|
565
|
+
# resp.status_summaries[0].last_updated_at #=> Time
|
566
|
+
# resp.status_summaries[0].status #=> String, one of "INITIALIZING", "DEPLOYING", "SUCCEEDED", "DELETING", "STOPPING", "FAILED", "STOPPED", "DELETE_FAILED", "STOP_FAILED", "NONE"
|
567
|
+
# resp.status_summaries[0].status_details #=> Hash
|
568
|
+
# resp.status_summaries[0].status_details["String"] #=> String
|
569
|
+
# resp.status_summaries[0].status_message #=> String
|
570
|
+
# resp.status_summaries[0].status_type #=> String, one of "Deployment", "AsyncExecutions"
|
571
|
+
# resp.type #=> String
|
572
|
+
# resp.type_version #=> String
|
573
|
+
#
|
574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/GetConfiguration AWS API Documentation
|
575
|
+
#
|
576
|
+
# @overload get_configuration(params = {})
|
577
|
+
# @param [Hash] params ({})
|
578
|
+
def get_configuration(params = {}, options = {})
|
579
|
+
req = build_request(:get_configuration, params)
|
580
|
+
req.send_request(options)
|
581
|
+
end
|
582
|
+
|
528
583
|
# Returns a configuration manager.
|
529
584
|
#
|
530
585
|
# @option params [required, String] :manager_arn
|
@@ -663,6 +718,78 @@ module Aws::SSMQuickSetup
|
|
663
718
|
req.send_request(options)
|
664
719
|
end
|
665
720
|
|
721
|
+
# Returns configurations deployed by Quick Setup in the requesting
|
722
|
+
# Amazon Web Services account and Amazon Web Services Region.
|
723
|
+
#
|
724
|
+
# @option params [String] :configuration_definition_id
|
725
|
+
# The ID of the configuration definition.
|
726
|
+
#
|
727
|
+
# @option params [Array<Types::Filter>] :filters
|
728
|
+
# Filters the results returned by the request.
|
729
|
+
#
|
730
|
+
# @option params [String] :manager_arn
|
731
|
+
# The ARN of the configuration manager.
|
732
|
+
#
|
733
|
+
# @option params [Integer] :max_items
|
734
|
+
# Specifies the maximum number of configurations that are returned by
|
735
|
+
# the request.
|
736
|
+
#
|
737
|
+
# @option params [String] :starting_token
|
738
|
+
# The token to use when requesting a specific set of items from a list.
|
739
|
+
#
|
740
|
+
# @return [Types::ListConfigurationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
741
|
+
#
|
742
|
+
# * {Types::ListConfigurationsOutput#configurations_list #configurations_list} => Array<Types::ConfigurationSummary>
|
743
|
+
# * {Types::ListConfigurationsOutput#next_token #next_token} => String
|
744
|
+
#
|
745
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
746
|
+
#
|
747
|
+
# @example Request syntax with placeholder values
|
748
|
+
#
|
749
|
+
# resp = client.list_configurations({
|
750
|
+
# configuration_definition_id: "ListConfigurationsInputConfigurationDefinitionIdString",
|
751
|
+
# filters: [
|
752
|
+
# {
|
753
|
+
# key: "FilterKeyString", # required
|
754
|
+
# values: ["FilterValuesMemberString"], # required
|
755
|
+
# },
|
756
|
+
# ],
|
757
|
+
# manager_arn: "ListConfigurationsInputManagerArnString",
|
758
|
+
# max_items: 1,
|
759
|
+
# starting_token: "ListConfigurationsInputStartingTokenString",
|
760
|
+
# })
|
761
|
+
#
|
762
|
+
# @example Response structure
|
763
|
+
#
|
764
|
+
# resp.configurations_list #=> Array
|
765
|
+
# resp.configurations_list[0].account #=> String
|
766
|
+
# resp.configurations_list[0].configuration_definition_id #=> String
|
767
|
+
# resp.configurations_list[0].created_at #=> Time
|
768
|
+
# resp.configurations_list[0].first_class_parameters #=> Hash
|
769
|
+
# resp.configurations_list[0].first_class_parameters["ConfigurationParametersMapKeyString"] #=> String
|
770
|
+
# resp.configurations_list[0].id #=> String
|
771
|
+
# resp.configurations_list[0].manager_arn #=> String
|
772
|
+
# resp.configurations_list[0].region #=> String
|
773
|
+
# resp.configurations_list[0].status_summaries #=> Array
|
774
|
+
# resp.configurations_list[0].status_summaries[0].last_updated_at #=> Time
|
775
|
+
# resp.configurations_list[0].status_summaries[0].status #=> String, one of "INITIALIZING", "DEPLOYING", "SUCCEEDED", "DELETING", "STOPPING", "FAILED", "STOPPED", "DELETE_FAILED", "STOP_FAILED", "NONE"
|
776
|
+
# resp.configurations_list[0].status_summaries[0].status_details #=> Hash
|
777
|
+
# resp.configurations_list[0].status_summaries[0].status_details["String"] #=> String
|
778
|
+
# resp.configurations_list[0].status_summaries[0].status_message #=> String
|
779
|
+
# resp.configurations_list[0].status_summaries[0].status_type #=> String, one of "Deployment", "AsyncExecutions"
|
780
|
+
# resp.configurations_list[0].type #=> String
|
781
|
+
# resp.configurations_list[0].type_version #=> String
|
782
|
+
# resp.next_token #=> String
|
783
|
+
#
|
784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListConfigurations AWS API Documentation
|
785
|
+
#
|
786
|
+
# @overload list_configurations(params = {})
|
787
|
+
# @param [Hash] params ({})
|
788
|
+
def list_configurations(params = {}, options = {})
|
789
|
+
req = build_request(:list_configurations, params)
|
790
|
+
req.send_request(options)
|
791
|
+
end
|
792
|
+
|
666
793
|
# Returns the available Quick Setup types.
|
667
794
|
#
|
668
795
|
# @return [Types::ListQuickSetupTypesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -884,7 +1011,7 @@ module Aws::SSMQuickSetup
|
|
884
1011
|
tracer: tracer
|
885
1012
|
)
|
886
1013
|
context[:gem_name] = 'aws-sdk-ssmquicksetup'
|
887
|
-
context[:gem_version] = '1.
|
1014
|
+
context[:gem_version] = '1.9.0'
|
888
1015
|
Seahorse::Client::Request.new(handlers, context)
|
889
1016
|
end
|
890
1017
|
|
@@ -32,6 +32,8 @@ module Aws::SSMQuickSetup
|
|
32
32
|
ConfigurationParametersMap = Shapes::MapShape.new(name: 'ConfigurationParametersMap')
|
33
33
|
ConfigurationParametersMapKeyString = Shapes::StringShape.new(name: 'ConfigurationParametersMapKeyString')
|
34
34
|
ConfigurationParametersMapValueString = Shapes::StringShape.new(name: 'ConfigurationParametersMapValueString')
|
35
|
+
ConfigurationSummary = Shapes::StructureShape.new(name: 'ConfigurationSummary')
|
36
|
+
ConfigurationsList = Shapes::ListShape.new(name: 'ConfigurationsList')
|
35
37
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
36
38
|
CreateConfigurationManagerInput = Shapes::StructureShape.new(name: 'CreateConfigurationManagerInput')
|
37
39
|
CreateConfigurationManagerInputDescriptionString = Shapes::StringShape.new(name: 'CreateConfigurationManagerInputDescriptionString')
|
@@ -44,9 +46,12 @@ module Aws::SSMQuickSetup
|
|
44
46
|
FilterValues = Shapes::ListShape.new(name: 'FilterValues')
|
45
47
|
FilterValuesMemberString = Shapes::StringShape.new(name: 'FilterValuesMemberString')
|
46
48
|
FiltersList = Shapes::ListShape.new(name: 'FiltersList')
|
49
|
+
GetConfigurationInput = Shapes::StructureShape.new(name: 'GetConfigurationInput')
|
50
|
+
GetConfigurationInputConfigurationIdString = Shapes::StringShape.new(name: 'GetConfigurationInputConfigurationIdString')
|
47
51
|
GetConfigurationManagerInput = Shapes::StructureShape.new(name: 'GetConfigurationManagerInput')
|
48
52
|
GetConfigurationManagerInputManagerArnString = Shapes::StringShape.new(name: 'GetConfigurationManagerInputManagerArnString')
|
49
53
|
GetConfigurationManagerOutput = Shapes::StructureShape.new(name: 'GetConfigurationManagerOutput')
|
54
|
+
GetConfigurationOutput = Shapes::StructureShape.new(name: 'GetConfigurationOutput')
|
50
55
|
GetServiceSettingsOutput = Shapes::StructureShape.new(name: 'GetServiceSettingsOutput')
|
51
56
|
IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
|
52
57
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
@@ -54,6 +59,12 @@ module Aws::SSMQuickSetup
|
|
54
59
|
ListConfigurationManagersInputMaxItemsInteger = Shapes::IntegerShape.new(name: 'ListConfigurationManagersInputMaxItemsInteger')
|
55
60
|
ListConfigurationManagersInputStartingTokenString = Shapes::StringShape.new(name: 'ListConfigurationManagersInputStartingTokenString')
|
56
61
|
ListConfigurationManagersOutput = Shapes::StructureShape.new(name: 'ListConfigurationManagersOutput')
|
62
|
+
ListConfigurationsInput = Shapes::StructureShape.new(name: 'ListConfigurationsInput')
|
63
|
+
ListConfigurationsInputConfigurationDefinitionIdString = Shapes::StringShape.new(name: 'ListConfigurationsInputConfigurationDefinitionIdString')
|
64
|
+
ListConfigurationsInputManagerArnString = Shapes::StringShape.new(name: 'ListConfigurationsInputManagerArnString')
|
65
|
+
ListConfigurationsInputMaxItemsInteger = Shapes::IntegerShape.new(name: 'ListConfigurationsInputMaxItemsInteger')
|
66
|
+
ListConfigurationsInputStartingTokenString = Shapes::StringShape.new(name: 'ListConfigurationsInputStartingTokenString')
|
67
|
+
ListConfigurationsOutput = Shapes::StructureShape.new(name: 'ListConfigurationsOutput')
|
57
68
|
ListQuickSetupTypesOutput = Shapes::StructureShape.new(name: 'ListQuickSetupTypesOutput')
|
58
69
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
59
70
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
@@ -133,6 +144,20 @@ module Aws::SSMQuickSetup
|
|
133
144
|
ConfigurationParametersMap.key = Shapes::ShapeRef.new(shape: ConfigurationParametersMapKeyString)
|
134
145
|
ConfigurationParametersMap.value = Shapes::ShapeRef.new(shape: ConfigurationParametersMapValueString)
|
135
146
|
|
147
|
+
ConfigurationSummary.add_member(:account, Shapes::ShapeRef.new(shape: String, location_name: "Account"))
|
148
|
+
ConfigurationSummary.add_member(:configuration_definition_id, Shapes::ShapeRef.new(shape: String, location_name: "ConfigurationDefinitionId"))
|
149
|
+
ConfigurationSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "CreatedAt"))
|
150
|
+
ConfigurationSummary.add_member(:first_class_parameters, Shapes::ShapeRef.new(shape: ConfigurationParametersMap, location_name: "FirstClassParameters"))
|
151
|
+
ConfigurationSummary.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "Id"))
|
152
|
+
ConfigurationSummary.add_member(:manager_arn, Shapes::ShapeRef.new(shape: String, location_name: "ManagerArn"))
|
153
|
+
ConfigurationSummary.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "Region"))
|
154
|
+
ConfigurationSummary.add_member(:status_summaries, Shapes::ShapeRef.new(shape: StatusSummariesList, location_name: "StatusSummaries"))
|
155
|
+
ConfigurationSummary.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
156
|
+
ConfigurationSummary.add_member(:type_version, Shapes::ShapeRef.new(shape: String, location_name: "TypeVersion"))
|
157
|
+
ConfigurationSummary.struct_class = Types::ConfigurationSummary
|
158
|
+
|
159
|
+
ConfigurationsList.member = Shapes::ShapeRef.new(shape: ConfigurationSummary)
|
160
|
+
|
136
161
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
137
162
|
ConflictException.struct_class = Types::ConflictException
|
138
163
|
|
@@ -156,6 +181,9 @@ module Aws::SSMQuickSetup
|
|
156
181
|
|
157
182
|
FiltersList.member = Shapes::ShapeRef.new(shape: Filter)
|
158
183
|
|
184
|
+
GetConfigurationInput.add_member(:configuration_id, Shapes::ShapeRef.new(shape: GetConfigurationInputConfigurationIdString, required: true, location: "uri", location_name: "ConfigurationId"))
|
185
|
+
GetConfigurationInput.struct_class = Types::GetConfigurationInput
|
186
|
+
|
159
187
|
GetConfigurationManagerInput.add_member(:manager_arn, Shapes::ShapeRef.new(shape: GetConfigurationManagerInputManagerArnString, required: true, location: "uri", location_name: "ManagerArn"))
|
160
188
|
GetConfigurationManagerInput.struct_class = Types::GetConfigurationManagerInput
|
161
189
|
|
@@ -169,6 +197,19 @@ module Aws::SSMQuickSetup
|
|
169
197
|
GetConfigurationManagerOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
170
198
|
GetConfigurationManagerOutput.struct_class = Types::GetConfigurationManagerOutput
|
171
199
|
|
200
|
+
GetConfigurationOutput.add_member(:account, Shapes::ShapeRef.new(shape: String, location_name: "Account"))
|
201
|
+
GetConfigurationOutput.add_member(:configuration_definition_id, Shapes::ShapeRef.new(shape: String, location_name: "ConfigurationDefinitionId"))
|
202
|
+
GetConfigurationOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "CreatedAt"))
|
203
|
+
GetConfigurationOutput.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "Id"))
|
204
|
+
GetConfigurationOutput.add_member(:last_modified_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "LastModifiedAt"))
|
205
|
+
GetConfigurationOutput.add_member(:manager_arn, Shapes::ShapeRef.new(shape: String, location_name: "ManagerArn"))
|
206
|
+
GetConfigurationOutput.add_member(:parameters, Shapes::ShapeRef.new(shape: ConfigurationParametersMap, location_name: "Parameters"))
|
207
|
+
GetConfigurationOutput.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "Region"))
|
208
|
+
GetConfigurationOutput.add_member(:status_summaries, Shapes::ShapeRef.new(shape: StatusSummariesList, location_name: "StatusSummaries"))
|
209
|
+
GetConfigurationOutput.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
210
|
+
GetConfigurationOutput.add_member(:type_version, Shapes::ShapeRef.new(shape: String, location_name: "TypeVersion"))
|
211
|
+
GetConfigurationOutput.struct_class = Types::GetConfigurationOutput
|
212
|
+
|
172
213
|
GetServiceSettingsOutput.add_member(:service_settings, Shapes::ShapeRef.new(shape: ServiceSettings, location_name: "ServiceSettings"))
|
173
214
|
GetServiceSettingsOutput.struct_class = Types::GetServiceSettingsOutput
|
174
215
|
|
@@ -184,6 +225,17 @@ module Aws::SSMQuickSetup
|
|
184
225
|
ListConfigurationManagersOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
185
226
|
ListConfigurationManagersOutput.struct_class = Types::ListConfigurationManagersOutput
|
186
227
|
|
228
|
+
ListConfigurationsInput.add_member(:configuration_definition_id, Shapes::ShapeRef.new(shape: ListConfigurationsInputConfigurationDefinitionIdString, location_name: "ConfigurationDefinitionId"))
|
229
|
+
ListConfigurationsInput.add_member(:filters, Shapes::ShapeRef.new(shape: FiltersList, location_name: "Filters"))
|
230
|
+
ListConfigurationsInput.add_member(:manager_arn, Shapes::ShapeRef.new(shape: ListConfigurationsInputManagerArnString, location_name: "ManagerArn"))
|
231
|
+
ListConfigurationsInput.add_member(:max_items, Shapes::ShapeRef.new(shape: ListConfigurationsInputMaxItemsInteger, location_name: "MaxItems"))
|
232
|
+
ListConfigurationsInput.add_member(:starting_token, Shapes::ShapeRef.new(shape: ListConfigurationsInputStartingTokenString, location_name: "StartingToken"))
|
233
|
+
ListConfigurationsInput.struct_class = Types::ListConfigurationsInput
|
234
|
+
|
235
|
+
ListConfigurationsOutput.add_member(:configurations_list, Shapes::ShapeRef.new(shape: ConfigurationsList, location_name: "ConfigurationsList"))
|
236
|
+
ListConfigurationsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
237
|
+
ListConfigurationsOutput.struct_class = Types::ListConfigurationsOutput
|
238
|
+
|
187
239
|
ListQuickSetupTypesOutput.add_member(:quick_setup_type_list, Shapes::ShapeRef.new(shape: QuickSetupTypeList, location_name: "QuickSetupTypeList"))
|
188
240
|
ListQuickSetupTypesOutput.struct_class = Types::ListQuickSetupTypesOutput
|
189
241
|
|
@@ -305,6 +357,20 @@ module Aws::SSMQuickSetup
|
|
305
357
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
306
358
|
end)
|
307
359
|
|
360
|
+
api.add_operation(:get_configuration, Seahorse::Model::Operation.new.tap do |o|
|
361
|
+
o.name = "GetConfiguration"
|
362
|
+
o.http_method = "GET"
|
363
|
+
o.http_request_uri = "/getConfiguration/{ConfigurationId}"
|
364
|
+
o.input = Shapes::ShapeRef.new(shape: GetConfigurationInput)
|
365
|
+
o.output = Shapes::ShapeRef.new(shape: GetConfigurationOutput)
|
366
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
367
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
368
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
369
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
370
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
371
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
372
|
+
end)
|
373
|
+
|
308
374
|
api.add_operation(:get_configuration_manager, Seahorse::Model::Operation.new.tap do |o|
|
309
375
|
o.name = "GetConfigurationManager"
|
310
376
|
o.http_method = "GET"
|
@@ -350,6 +416,25 @@ module Aws::SSMQuickSetup
|
|
350
416
|
)
|
351
417
|
end)
|
352
418
|
|
419
|
+
api.add_operation(:list_configurations, Seahorse::Model::Operation.new.tap do |o|
|
420
|
+
o.name = "ListConfigurations"
|
421
|
+
o.http_method = "POST"
|
422
|
+
o.http_request_uri = "/listConfigurations"
|
423
|
+
o.input = Shapes::ShapeRef.new(shape: ListConfigurationsInput)
|
424
|
+
o.output = Shapes::ShapeRef.new(shape: ListConfigurationsOutput)
|
425
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
426
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
427
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
428
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
429
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
430
|
+
o[:pager] = Aws::Pager.new(
|
431
|
+
limit_key: "max_items",
|
432
|
+
tokens: {
|
433
|
+
"next_token" => "starting_token"
|
434
|
+
}
|
435
|
+
)
|
436
|
+
end)
|
437
|
+
|
353
438
|
api.add_operation(:list_quick_setup_types, Seahorse::Model::Operation.new.tap do |o|
|
354
439
|
o.name = "ListQuickSetupTypes"
|
355
440
|
o.http_method = "GET"
|
@@ -87,7 +87,6 @@ module Aws::SSMQuickSetup
|
|
87
87
|
# account.
|
88
88
|
#
|
89
89
|
# ^
|
90
|
-
#
|
91
90
|
# * `TargetOrganizationalUnits`
|
92
91
|
#
|
93
92
|
# * Description: (Required) A comma separated list of
|
@@ -95,7 +94,6 @@ module Aws::SSMQuickSetup
|
|
95
94
|
# configuration to.
|
96
95
|
#
|
97
96
|
# ^
|
98
|
-
#
|
99
97
|
# * `TargetRegions`
|
100
98
|
#
|
101
99
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -110,21 +108,18 @@ module Aws::SSMQuickSetup
|
|
110
108
|
# you want to target.
|
111
109
|
#
|
112
110
|
# ^
|
113
|
-
#
|
114
111
|
# * `TargetTagValue`
|
115
112
|
#
|
116
113
|
# * Description: (Required) The value of the tag key assigned to
|
117
114
|
# the instances you want to target.
|
118
115
|
#
|
119
116
|
# ^
|
120
|
-
#
|
121
117
|
# * `ICalendarString`
|
122
118
|
#
|
123
119
|
# * Description: (Required) An iCalendar formatted string
|
124
120
|
# containing the schedule you want Change Manager to use.
|
125
121
|
#
|
126
122
|
# ^
|
127
|
-
#
|
128
123
|
# * `TargetAccounts`
|
129
124
|
#
|
130
125
|
# * Description: (Optional) The ID of the Amazon Web Services
|
@@ -134,7 +129,6 @@ module Aws::SSMQuickSetup
|
|
134
129
|
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
135
130
|
#
|
136
131
|
# ^
|
137
|
-
#
|
138
132
|
# * `TargetOrganizationalUnits`
|
139
133
|
#
|
140
134
|
# * Description: (Optional) A comma separated list of
|
@@ -142,7 +136,6 @@ module Aws::SSMQuickSetup
|
|
142
136
|
# configuration to.
|
143
137
|
#
|
144
138
|
# ^
|
145
|
-
#
|
146
139
|
# * `TargetRegions`
|
147
140
|
#
|
148
141
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -158,7 +151,6 @@ module Aws::SSMQuickSetup
|
|
158
151
|
# 2 weeks. The default value is "`true`".
|
159
152
|
#
|
160
153
|
# ^
|
161
|
-
#
|
162
154
|
# * `TargetOrganizationalUnits`
|
163
155
|
#
|
164
156
|
# * Description: (Required) A comma separated list of
|
@@ -166,7 +158,6 @@ module Aws::SSMQuickSetup
|
|
166
158
|
# configuration to.
|
167
159
|
#
|
168
160
|
# ^
|
169
|
-
#
|
170
161
|
# * `TargetRegions`
|
171
162
|
#
|
172
163
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -181,7 +172,6 @@ module Aws::SSMQuickSetup
|
|
181
172
|
# you want to create the aggregator index.
|
182
173
|
#
|
183
174
|
# ^
|
184
|
-
#
|
185
175
|
# * `ReplaceExistingAggregator`
|
186
176
|
#
|
187
177
|
# * Description: (Required) A boolean value that determines
|
@@ -190,7 +180,6 @@ module Aws::SSMQuickSetup
|
|
190
180
|
# `SelectedAggregatorRegion`.
|
191
181
|
#
|
192
182
|
# ^
|
193
|
-
#
|
194
183
|
# * `TargetOrganizationalUnits`
|
195
184
|
#
|
196
185
|
# * Description: (Required) A comma separated list of
|
@@ -198,7 +187,6 @@ module Aws::SSMQuickSetup
|
|
198
187
|
# configuration to.
|
199
188
|
#
|
200
189
|
# ^
|
201
|
-
#
|
202
190
|
# * `TargetRegions`
|
203
191
|
#
|
204
192
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -213,14 +201,12 @@ module Aws::SSMQuickSetup
|
|
213
201
|
# account.
|
214
202
|
#
|
215
203
|
# ^
|
216
|
-
#
|
217
204
|
# * `JobFunction`
|
218
205
|
#
|
219
206
|
# * Description: (Required) The name for the Change Manager job
|
220
207
|
# function.
|
221
208
|
#
|
222
209
|
# ^
|
223
|
-
#
|
224
210
|
# * `PermissionType`
|
225
211
|
#
|
226
212
|
# * Description: (Optional) Specifies whether you want to use
|
@@ -230,7 +216,6 @@ module Aws::SSMQuickSetup
|
|
230
216
|
# for the parameter is `CustomerPermissions`.
|
231
217
|
#
|
232
218
|
# ^
|
233
|
-
#
|
234
219
|
# * `CustomPermissions`
|
235
220
|
#
|
236
221
|
# * Description: (Optional) A JSON string containing the IAM
|
@@ -239,7 +224,6 @@ module Aws::SSMQuickSetup
|
|
239
224
|
# for the `PermissionType` parameter.
|
240
225
|
#
|
241
226
|
# ^
|
242
|
-
#
|
243
227
|
# * `TargetOrganizationalUnits`
|
244
228
|
#
|
245
229
|
# * Description: (Required) A comma separated list of
|
@@ -247,7 +231,6 @@ module Aws::SSMQuickSetup
|
|
247
231
|
# configuration to.
|
248
232
|
#
|
249
233
|
# ^
|
250
|
-
#
|
251
234
|
# * `TargetRegions`
|
252
235
|
#
|
253
236
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -263,7 +246,6 @@ module Aws::SSMQuickSetup
|
|
263
246
|
# account. The default value is "`false`".
|
264
247
|
#
|
265
248
|
# ^
|
266
|
-
#
|
267
249
|
# * `EnableSnsNotifications`
|
268
250
|
#
|
269
251
|
# * Description: (Optional) A boolean value that determines
|
@@ -271,7 +253,6 @@ module Aws::SSMQuickSetup
|
|
271
253
|
# created. The default value is "`true`".
|
272
254
|
#
|
273
255
|
# ^
|
274
|
-
#
|
275
256
|
# * `EnableSsmOpsItems`
|
276
257
|
#
|
277
258
|
# * Description: (Optional) A boolean value that determines
|
@@ -279,7 +260,6 @@ module Aws::SSMQuickSetup
|
|
279
260
|
# insight is created. The default value is "`true`".
|
280
261
|
#
|
281
262
|
# ^
|
282
|
-
#
|
283
263
|
# * `EnableDriftRemediation`
|
284
264
|
#
|
285
265
|
# * Description: (Optional) A boolean value that determines
|
@@ -287,7 +267,6 @@ module Aws::SSMQuickSetup
|
|
287
267
|
# value is "`false`".
|
288
268
|
#
|
289
269
|
# ^
|
290
|
-
#
|
291
270
|
# * `RemediationSchedule`
|
292
271
|
#
|
293
272
|
# * Description: (Optional) A rate expression that defines the
|
@@ -296,7 +275,6 @@ module Aws::SSMQuickSetup
|
|
296
275
|
# default value is "`none`".
|
297
276
|
#
|
298
277
|
# ^
|
299
|
-
#
|
300
278
|
# * `TargetAccounts`
|
301
279
|
#
|
302
280
|
# * Description: (Optional) The ID of the Amazon Web Services
|
@@ -306,7 +284,6 @@ module Aws::SSMQuickSetup
|
|
306
284
|
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
307
285
|
#
|
308
286
|
# ^
|
309
|
-
#
|
310
287
|
# * `TargetOrganizationalUnits`
|
311
288
|
#
|
312
289
|
# * Description: (Optional) A comma separated list of
|
@@ -314,7 +291,6 @@ module Aws::SSMQuickSetup
|
|
314
291
|
# configuration to.
|
315
292
|
#
|
316
293
|
# ^
|
317
|
-
#
|
318
294
|
# * `TargetRegions`
|
319
295
|
#
|
320
296
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -330,7 +306,6 @@ module Aws::SSMQuickSetup
|
|
330
306
|
# deployments.
|
331
307
|
#
|
332
308
|
# ^
|
333
|
-
#
|
334
309
|
# * `RemediationSchedule`
|
335
310
|
#
|
336
311
|
# * Description: (Optional) A rate expression that defines the
|
@@ -339,14 +314,12 @@ module Aws::SSMQuickSetup
|
|
339
314
|
# default value is "`none`".
|
340
315
|
#
|
341
316
|
# ^
|
342
|
-
#
|
343
317
|
# * `CPackNames`
|
344
318
|
#
|
345
319
|
# * Description: (Required) A comma separated list of Config
|
346
320
|
# conformance packs.
|
347
321
|
#
|
348
322
|
# ^
|
349
|
-
#
|
350
323
|
# * `TargetAccounts`
|
351
324
|
#
|
352
325
|
# * Description: (Optional) The ID of the Amazon Web Services
|
@@ -356,7 +329,6 @@ module Aws::SSMQuickSetup
|
|
356
329
|
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
357
330
|
#
|
358
331
|
# ^
|
359
|
-
#
|
360
332
|
# * `TargetOrganizationalUnits`
|
361
333
|
#
|
362
334
|
# * Description: (Optional) The ID of the root of your
|
@@ -365,7 +337,6 @@ module Aws::SSMQuickSetup
|
|
365
337
|
# deployed to all the OUs in the Organization.
|
366
338
|
#
|
367
339
|
# ^
|
368
|
-
#
|
369
340
|
# * `TargetRegions`
|
370
341
|
#
|
371
342
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -381,14 +352,12 @@ module Aws::SSMQuickSetup
|
|
381
352
|
# value is "`true`".
|
382
353
|
#
|
383
354
|
# ^
|
384
|
-
#
|
385
355
|
# * `ResourceTypesToRecord`
|
386
356
|
#
|
387
357
|
# * Description: (Optional) A comma separated list of resource
|
388
358
|
# types you want to record.
|
389
359
|
#
|
390
360
|
# ^
|
391
|
-
#
|
392
361
|
# * `RecordGlobalResourceTypes`
|
393
362
|
#
|
394
363
|
# * Description: (Optional) A boolean value that determines
|
@@ -396,14 +365,12 @@ module Aws::SSMQuickSetup
|
|
396
365
|
# configurations. The default value is "`false`".
|
397
366
|
#
|
398
367
|
# ^
|
399
|
-
#
|
400
368
|
# * `GlobalResourceTypesRegion`
|
401
369
|
#
|
402
370
|
# * Description: (Optional) Determines the Amazon Web Services
|
403
371
|
# Region where global resources are recorded.
|
404
372
|
#
|
405
373
|
# ^
|
406
|
-
#
|
407
374
|
# * `UseCustomBucket`
|
408
375
|
#
|
409
376
|
# * Description: (Optional) A boolean value that determines
|
@@ -411,7 +378,6 @@ module Aws::SSMQuickSetup
|
|
411
378
|
# default value is "`false`".
|
412
379
|
#
|
413
380
|
# ^
|
414
|
-
#
|
415
381
|
# * `DeliveryBucketName`
|
416
382
|
#
|
417
383
|
# * Description: (Optional) The name of the Amazon S3 bucket you
|
@@ -419,14 +385,12 @@ module Aws::SSMQuickSetup
|
|
419
385
|
# configuration history files to.
|
420
386
|
#
|
421
387
|
# ^
|
422
|
-
#
|
423
388
|
# * `DeliveryBucketPrefix`
|
424
389
|
#
|
425
390
|
# * Description: (Optional) The key prefix you want to use in the
|
426
391
|
# custom Amazon S3 bucket.
|
427
392
|
#
|
428
393
|
# ^
|
429
|
-
#
|
430
394
|
# * `NotificationOptions`
|
431
395
|
#
|
432
396
|
# * Description: (Optional) Determines the notification
|
@@ -435,7 +399,6 @@ module Aws::SSMQuickSetup
|
|
435
399
|
# default value is `NoStreaming`.
|
436
400
|
#
|
437
401
|
# ^
|
438
|
-
#
|
439
402
|
# * `CustomDeliveryTopicAccountId`
|
440
403
|
#
|
441
404
|
# * Description: (Optional) The ID of the Amazon Web Services
|
@@ -445,7 +408,6 @@ module Aws::SSMQuickSetup
|
|
445
408
|
# option.
|
446
409
|
#
|
447
410
|
# ^
|
448
|
-
#
|
449
411
|
# * `CustomDeliveryTopicName`
|
450
412
|
#
|
451
413
|
# * Description: (Optional) The name of the Amazon SNS topic you
|
@@ -454,7 +416,6 @@ module Aws::SSMQuickSetup
|
|
454
416
|
# option.
|
455
417
|
#
|
456
418
|
# ^
|
457
|
-
#
|
458
419
|
# * `RemediationSchedule`
|
459
420
|
#
|
460
421
|
# * Description: (Optional) A rate expression that defines the
|
@@ -463,7 +424,6 @@ module Aws::SSMQuickSetup
|
|
463
424
|
# default value is "`none`".
|
464
425
|
#
|
465
426
|
# ^
|
466
|
-
#
|
467
427
|
# * `TargetAccounts`
|
468
428
|
#
|
469
429
|
# * Description: (Optional) The ID of the Amazon Web Services
|
@@ -473,7 +433,6 @@ module Aws::SSMQuickSetup
|
|
473
433
|
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
474
434
|
#
|
475
435
|
# ^
|
476
|
-
#
|
477
436
|
# * `TargetOrganizationalUnits`
|
478
437
|
#
|
479
438
|
# * Description: (Optional) The ID of the root of your
|
@@ -482,7 +441,6 @@ module Aws::SSMQuickSetup
|
|
482
441
|
# deployed to all the OUs in the Organization.
|
483
442
|
#
|
484
443
|
# ^
|
485
|
-
#
|
486
444
|
# * `TargetRegions`
|
487
445
|
#
|
488
446
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -498,7 +456,6 @@ module Aws::SSMQuickSetup
|
|
498
456
|
# 2 weeks. The default value is "`true`".
|
499
457
|
#
|
500
458
|
# ^
|
501
|
-
#
|
502
459
|
# * `UpdateEc2LaunchAgent`
|
503
460
|
#
|
504
461
|
# * Description: (Optional) A boolean value that determines
|
@@ -506,7 +463,6 @@ module Aws::SSMQuickSetup
|
|
506
463
|
# instances every month. The default value is "`false`".
|
507
464
|
#
|
508
465
|
# ^
|
509
|
-
#
|
510
466
|
# * `CollectInventory`
|
511
467
|
#
|
512
468
|
# * Description: (Optional) A boolean value that determines
|
@@ -514,7 +470,6 @@ module Aws::SSMQuickSetup
|
|
514
470
|
# instances every month. The default value is "`true`".
|
515
471
|
#
|
516
472
|
# ^
|
517
|
-
#
|
518
473
|
# * `ScanInstances`
|
519
474
|
#
|
520
475
|
# * Description: (Optional) A boolean value that determines
|
@@ -522,7 +477,6 @@ module Aws::SSMQuickSetup
|
|
522
477
|
# patches. The default value is "`true`".
|
523
478
|
#
|
524
479
|
# ^
|
525
|
-
#
|
526
480
|
# * `InstallCloudWatchAgent`
|
527
481
|
#
|
528
482
|
# * Description: (Optional) A boolean value that determines
|
@@ -530,7 +484,6 @@ module Aws::SSMQuickSetup
|
|
530
484
|
# instances. The default value is "`false`".
|
531
485
|
#
|
532
486
|
# ^
|
533
|
-
#
|
534
487
|
# * `UpdateCloudWatchAgent`
|
535
488
|
#
|
536
489
|
# * Description: (Optional) A boolean value that determines
|
@@ -538,7 +491,6 @@ module Aws::SSMQuickSetup
|
|
538
491
|
# instances every month. The default value is "`false`".
|
539
492
|
#
|
540
493
|
# ^
|
541
|
-
#
|
542
494
|
# * `IsPolicyAttachAllowed`
|
543
495
|
#
|
544
496
|
# * Description: (Optional) A boolean value that determines
|
@@ -547,7 +499,6 @@ module Aws::SSMQuickSetup
|
|
547
499
|
# value is "`false`".
|
548
500
|
#
|
549
501
|
# ^
|
550
|
-
#
|
551
502
|
# * `TargetType`
|
552
503
|
#
|
553
504
|
# * Description: (Optional) Determines how instances are targeted
|
@@ -557,7 +508,6 @@ module Aws::SSMQuickSetup
|
|
557
508
|
# target all instances in the account.
|
558
509
|
#
|
559
510
|
# ^
|
560
|
-
#
|
561
511
|
# * `TargetInstances`
|
562
512
|
#
|
563
513
|
# * Description: (Optional) A comma separated list of instance
|
@@ -565,7 +515,6 @@ module Aws::SSMQuickSetup
|
|
565
515
|
# specify `InstanceIds` for the `TargetType` parameter.
|
566
516
|
#
|
567
517
|
# ^
|
568
|
-
#
|
569
518
|
# * `TargetTagKey`
|
570
519
|
#
|
571
520
|
# * Description: (Optional) The tag key assigned to the instances
|
@@ -574,7 +523,6 @@ module Aws::SSMQuickSetup
|
|
574
523
|
# parameter.
|
575
524
|
#
|
576
525
|
# ^
|
577
|
-
#
|
578
526
|
# * `TargetTagValue`
|
579
527
|
#
|
580
528
|
# * Description: (Optional) The value of the tag key assigned to
|
@@ -583,7 +531,6 @@ module Aws::SSMQuickSetup
|
|
583
531
|
# parameter.
|
584
532
|
#
|
585
533
|
# ^
|
586
|
-
#
|
587
534
|
# * `ResourceGroupName`
|
588
535
|
#
|
589
536
|
# * Description: (Optional) The name of the resource group
|
@@ -592,7 +539,6 @@ module Aws::SSMQuickSetup
|
|
592
539
|
# `ResourceGroups` for the `TargetType` parameter.
|
593
540
|
#
|
594
541
|
# ^
|
595
|
-
#
|
596
542
|
# * `TargetAccounts`
|
597
543
|
#
|
598
544
|
# * Description: (Optional) The ID of the Amazon Web Services
|
@@ -602,7 +548,6 @@ module Aws::SSMQuickSetup
|
|
602
548
|
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
603
549
|
#
|
604
550
|
# ^
|
605
|
-
#
|
606
551
|
# * `TargetOrganizationalUnits`
|
607
552
|
#
|
608
553
|
# * Description: (Optional) A comma separated list of
|
@@ -610,7 +555,6 @@ module Aws::SSMQuickSetup
|
|
610
555
|
# configuration to.
|
611
556
|
#
|
612
557
|
# ^
|
613
|
-
#
|
614
558
|
# * `TargetRegions`
|
615
559
|
#
|
616
560
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -626,7 +570,6 @@ module Aws::SSMQuickSetup
|
|
626
570
|
# `AWSEFSTools`, `AWSCWAgent`, and `AWSEC2LaunchAgent`.
|
627
571
|
#
|
628
572
|
# ^
|
629
|
-
#
|
630
573
|
# * `RemediationSchedule`
|
631
574
|
#
|
632
575
|
# * Description: (Optional) A rate expression that defines the
|
@@ -635,7 +578,6 @@ module Aws::SSMQuickSetup
|
|
635
578
|
# default value is "`rate(30 days)`".
|
636
579
|
#
|
637
580
|
# ^
|
638
|
-
#
|
639
581
|
# * `IsPolicyAttachAllowed`
|
640
582
|
#
|
641
583
|
# * Description: (Optional) A boolean value that determines
|
@@ -644,7 +586,6 @@ module Aws::SSMQuickSetup
|
|
644
586
|
# value is "`false`".
|
645
587
|
#
|
646
588
|
# ^
|
647
|
-
#
|
648
589
|
# * `TargetType`
|
649
590
|
#
|
650
591
|
# * Description: (Optional) Determines how instances are targeted
|
@@ -654,7 +595,6 @@ module Aws::SSMQuickSetup
|
|
654
595
|
# target all instances in the account.
|
655
596
|
#
|
656
597
|
# ^
|
657
|
-
#
|
658
598
|
# * `TargetInstances`
|
659
599
|
#
|
660
600
|
# * Description: (Optional) A comma separated list of instance
|
@@ -662,7 +602,6 @@ module Aws::SSMQuickSetup
|
|
662
602
|
# specify `InstanceIds` for the `TargetType` parameter.
|
663
603
|
#
|
664
604
|
# ^
|
665
|
-
#
|
666
605
|
# * `TargetTagKey`
|
667
606
|
#
|
668
607
|
# * Description: (Required) The tag key assigned to the instances
|
@@ -671,7 +610,6 @@ module Aws::SSMQuickSetup
|
|
671
610
|
# parameter.
|
672
611
|
#
|
673
612
|
# ^
|
674
|
-
#
|
675
613
|
# * `TargetTagValue`
|
676
614
|
#
|
677
615
|
# * Description: (Required) The value of the tag key assigned to
|
@@ -680,7 +618,6 @@ module Aws::SSMQuickSetup
|
|
680
618
|
# parameter.
|
681
619
|
#
|
682
620
|
# ^
|
683
|
-
#
|
684
621
|
# * `ResourceGroupName`
|
685
622
|
#
|
686
623
|
# * Description: (Required) The name of the resource group
|
@@ -689,7 +626,6 @@ module Aws::SSMQuickSetup
|
|
689
626
|
# `ResourceGroups` for the `TargetType` parameter.
|
690
627
|
#
|
691
628
|
# ^
|
692
|
-
#
|
693
629
|
# * `TargetAccounts`
|
694
630
|
#
|
695
631
|
# * Description: (Optional) The ID of the Amazon Web Services
|
@@ -699,7 +635,6 @@ module Aws::SSMQuickSetup
|
|
699
635
|
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
700
636
|
#
|
701
637
|
# ^
|
702
|
-
#
|
703
638
|
# * `TargetOrganizationalUnits`
|
704
639
|
#
|
705
640
|
# * Description: (Optional) A comma separated list of
|
@@ -707,7 +642,6 @@ module Aws::SSMQuickSetup
|
|
707
642
|
# configuration to.
|
708
643
|
#
|
709
644
|
# ^
|
710
|
-
#
|
711
645
|
# * `TargetRegions`
|
712
646
|
#
|
713
647
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -723,7 +657,6 @@ module Aws::SSMQuickSetup
|
|
723
657
|
# tag.
|
724
658
|
#
|
725
659
|
# ^
|
726
|
-
#
|
727
660
|
# * `SelectedPatchBaselines`
|
728
661
|
#
|
729
662
|
# * Description: (Required) An array of JSON objects containing
|
@@ -731,7 +664,6 @@ module Aws::SSMQuickSetup
|
|
731
664
|
# patch policy.
|
732
665
|
#
|
733
666
|
# ^
|
734
|
-
#
|
735
667
|
# * `PatchBaselineUseDefault`
|
736
668
|
#
|
737
669
|
# * Description: (Optional) A boolean value that determines
|
@@ -739,7 +671,6 @@ module Aws::SSMQuickSetup
|
|
739
671
|
# Services provided.
|
740
672
|
#
|
741
673
|
# ^
|
742
|
-
#
|
743
674
|
# * `ConfigurationOptionsPatchOperation`
|
744
675
|
#
|
745
676
|
# * Description: (Optional) Determines whether target instances
|
@@ -748,21 +679,18 @@ module Aws::SSMQuickSetup
|
|
748
679
|
# default value for the parameter is `Scan`.
|
749
680
|
#
|
750
681
|
# ^
|
751
|
-
#
|
752
682
|
# * `ConfigurationOptionsScanValue`
|
753
683
|
#
|
754
684
|
# * Description: (Optional) A cron expression that is used as the
|
755
685
|
# schedule for when instances scan for available patches.
|
756
686
|
#
|
757
687
|
# ^
|
758
|
-
#
|
759
688
|
# * `ConfigurationOptionsInstallValue`
|
760
689
|
#
|
761
690
|
# * Description: (Optional) A cron expression that is used as the
|
762
691
|
# schedule for when instances install available patches.
|
763
692
|
#
|
764
693
|
# ^
|
765
|
-
#
|
766
694
|
# * `ConfigurationOptionsScanNextInterval`
|
767
695
|
#
|
768
696
|
# * Description: (Optional) A boolean value that determines
|
@@ -770,7 +698,6 @@ module Aws::SSMQuickSetup
|
|
770
698
|
# next cron interval. The default value is "`false`".
|
771
699
|
#
|
772
700
|
# ^
|
773
|
-
#
|
774
701
|
# * `ConfigurationOptionsInstallNextInterval`
|
775
702
|
#
|
776
703
|
# * Description: (Optional) A boolean value that determines
|
@@ -778,15 +705,13 @@ module Aws::SSMQuickSetup
|
|
778
705
|
# next cron interval. The default value is "`false`".
|
779
706
|
#
|
780
707
|
# ^
|
781
|
-
#
|
782
708
|
# * `RebootOption`
|
783
709
|
#
|
784
|
-
# * Description: (Optional)
|
785
|
-
#
|
786
|
-
#
|
710
|
+
# * Description: (Optional) Determines whether instances are
|
711
|
+
# rebooted after patches are installed. Valid values are
|
712
|
+
# `RebootIfNeeded` and `NoReboot`.
|
787
713
|
#
|
788
714
|
# ^
|
789
|
-
#
|
790
715
|
# * `IsPolicyAttachAllowed`
|
791
716
|
#
|
792
717
|
# * Description: (Optional) A boolean value that determines
|
@@ -795,14 +720,12 @@ module Aws::SSMQuickSetup
|
|
795
720
|
# value is "`false`".
|
796
721
|
#
|
797
722
|
# ^
|
798
|
-
#
|
799
723
|
# * `OutputLogEnableS3`
|
800
724
|
#
|
801
725
|
# * Description: (Optional) A boolean value that determines
|
802
726
|
# whether command output logs are sent to Amazon S3.
|
803
727
|
#
|
804
728
|
# ^
|
805
|
-
#
|
806
729
|
# * `OutputS3Location`
|
807
730
|
#
|
808
731
|
# * Description: (Optional) A JSON string containing information
|
@@ -816,21 +739,18 @@ module Aws::SSMQuickSetup
|
|
816
739
|
# command output to is located.
|
817
740
|
#
|
818
741
|
# ^
|
819
|
-
#
|
820
742
|
# * `OutputS3BucketName`
|
821
743
|
#
|
822
744
|
# * Description: (Optional) The name of the Amazon S3 bucket
|
823
745
|
# you want Config to deliver command output to.
|
824
746
|
#
|
825
747
|
# ^
|
826
|
-
#
|
827
748
|
# * `OutputS3KeyPrefix`
|
828
749
|
#
|
829
750
|
# * Description: (Optional) The key prefix you want to use in
|
830
751
|
# the custom Amazon S3 bucket.
|
831
752
|
#
|
832
753
|
# ^
|
833
|
-
#
|
834
754
|
# * `TargetType`
|
835
755
|
#
|
836
756
|
# * Description: (Optional) Determines how instances are targeted
|
@@ -840,7 +760,6 @@ module Aws::SSMQuickSetup
|
|
840
760
|
# target all instances in the account.
|
841
761
|
#
|
842
762
|
# ^
|
843
|
-
#
|
844
763
|
# * `TargetInstances`
|
845
764
|
#
|
846
765
|
# * Description: (Optional) A comma separated list of instance
|
@@ -848,7 +767,6 @@ module Aws::SSMQuickSetup
|
|
848
767
|
# specify `InstanceIds` for the `TargetType` parameter.
|
849
768
|
#
|
850
769
|
# ^
|
851
|
-
#
|
852
770
|
# * `TargetTagKey`
|
853
771
|
#
|
854
772
|
# * Description: (Required) The tag key assigned to the instances
|
@@ -857,7 +775,6 @@ module Aws::SSMQuickSetup
|
|
857
775
|
# parameter.
|
858
776
|
#
|
859
777
|
# ^
|
860
|
-
#
|
861
778
|
# * `TargetTagValue`
|
862
779
|
#
|
863
780
|
# * Description: (Required) The value of the tag key assigned to
|
@@ -866,7 +783,6 @@ module Aws::SSMQuickSetup
|
|
866
783
|
# parameter.
|
867
784
|
#
|
868
785
|
# ^
|
869
|
-
#
|
870
786
|
# * `ResourceGroupName`
|
871
787
|
#
|
872
788
|
# * Description: (Required) The name of the resource group
|
@@ -875,7 +791,6 @@ module Aws::SSMQuickSetup
|
|
875
791
|
# `ResourceGroups` for the `TargetType` parameter.
|
876
792
|
#
|
877
793
|
# ^
|
878
|
-
#
|
879
794
|
# * `TargetAccounts`
|
880
795
|
#
|
881
796
|
# * Description: (Optional) The ID of the Amazon Web Services
|
@@ -885,7 +800,6 @@ module Aws::SSMQuickSetup
|
|
885
800
|
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
886
801
|
#
|
887
802
|
# ^
|
888
|
-
#
|
889
803
|
# * `TargetOrganizationalUnits`
|
890
804
|
#
|
891
805
|
# * Description: (Optional) A comma separated list of
|
@@ -893,7 +807,6 @@ module Aws::SSMQuickSetup
|
|
893
807
|
# configuration to.
|
894
808
|
#
|
895
809
|
# ^
|
896
|
-
#
|
897
810
|
# * `TargetRegions`
|
898
811
|
#
|
899
812
|
# * Description: (Required) A comma separated list of Amazon Web
|
@@ -991,6 +904,68 @@ module Aws::SSMQuickSetup
|
|
991
904
|
include Aws::Structure
|
992
905
|
end
|
993
906
|
|
907
|
+
# Details for a Quick Setup configuration.
|
908
|
+
#
|
909
|
+
# @!attribute [rw] account
|
910
|
+
# The ID of the Amazon Web Services account where the configuration
|
911
|
+
# was deployed.
|
912
|
+
# @return [String]
|
913
|
+
#
|
914
|
+
# @!attribute [rw] configuration_definition_id
|
915
|
+
# The ID of the configuration definition.
|
916
|
+
# @return [String]
|
917
|
+
#
|
918
|
+
# @!attribute [rw] created_at
|
919
|
+
# The datetime stamp when the configuration was created.
|
920
|
+
# @return [Time]
|
921
|
+
#
|
922
|
+
# @!attribute [rw] first_class_parameters
|
923
|
+
# The common parameters and values for the configuration definition.
|
924
|
+
# @return [Hash<String,String>]
|
925
|
+
#
|
926
|
+
# @!attribute [rw] id
|
927
|
+
# A service generated identifier for the configuration.
|
928
|
+
# @return [String]
|
929
|
+
#
|
930
|
+
# @!attribute [rw] manager_arn
|
931
|
+
# The ARN of the configuration manager.
|
932
|
+
# @return [String]
|
933
|
+
#
|
934
|
+
# @!attribute [rw] region
|
935
|
+
# The Amazon Web Services Region where the configuration was deployed.
|
936
|
+
# @return [String]
|
937
|
+
#
|
938
|
+
# @!attribute [rw] status_summaries
|
939
|
+
# A summary of the state of the configuration manager. This includes
|
940
|
+
# deployment statuses, association statuses, drift statuses, health
|
941
|
+
# checks, and more.
|
942
|
+
# @return [Array<Types::StatusSummary>]
|
943
|
+
#
|
944
|
+
# @!attribute [rw] type
|
945
|
+
# The type of the Quick Setup configuration.
|
946
|
+
# @return [String]
|
947
|
+
#
|
948
|
+
# @!attribute [rw] type_version
|
949
|
+
# The version of the Quick Setup type used.
|
950
|
+
# @return [String]
|
951
|
+
#
|
952
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ConfigurationSummary AWS API Documentation
|
953
|
+
#
|
954
|
+
class ConfigurationSummary < Struct.new(
|
955
|
+
:account,
|
956
|
+
:configuration_definition_id,
|
957
|
+
:created_at,
|
958
|
+
:first_class_parameters,
|
959
|
+
:id,
|
960
|
+
:manager_arn,
|
961
|
+
:region,
|
962
|
+
:status_summaries,
|
963
|
+
:type,
|
964
|
+
:type_version)
|
965
|
+
SENSITIVE = []
|
966
|
+
include Aws::Structure
|
967
|
+
end
|
968
|
+
|
994
969
|
# Another request is being processed. Wait a few minutes and try again.
|
995
970
|
#
|
996
971
|
# @!attribute [rw] message
|
@@ -1075,6 +1050,18 @@ module Aws::SSMQuickSetup
|
|
1075
1050
|
include Aws::Structure
|
1076
1051
|
end
|
1077
1052
|
|
1053
|
+
# @!attribute [rw] configuration_id
|
1054
|
+
# A service generated identifier for the configuration.
|
1055
|
+
# @return [String]
|
1056
|
+
#
|
1057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/GetConfigurationInput AWS API Documentation
|
1058
|
+
#
|
1059
|
+
class GetConfigurationInput < Struct.new(
|
1060
|
+
:configuration_id)
|
1061
|
+
SENSITIVE = []
|
1062
|
+
include Aws::Structure
|
1063
|
+
end
|
1064
|
+
|
1078
1065
|
# @!attribute [rw] manager_arn
|
1079
1066
|
# The ARN of the configuration manager.
|
1080
1067
|
# @return [String]
|
@@ -1137,6 +1124,71 @@ module Aws::SSMQuickSetup
|
|
1137
1124
|
include Aws::Structure
|
1138
1125
|
end
|
1139
1126
|
|
1127
|
+
# @!attribute [rw] account
|
1128
|
+
# The ID of the Amazon Web Services account where the configuration
|
1129
|
+
# was deployed.
|
1130
|
+
# @return [String]
|
1131
|
+
#
|
1132
|
+
# @!attribute [rw] configuration_definition_id
|
1133
|
+
# The ID of the configuration definition.
|
1134
|
+
# @return [String]
|
1135
|
+
#
|
1136
|
+
# @!attribute [rw] created_at
|
1137
|
+
# The datetime stamp when the configuration manager was created.
|
1138
|
+
# @return [Time]
|
1139
|
+
#
|
1140
|
+
# @!attribute [rw] id
|
1141
|
+
# A service generated identifier for the configuration.
|
1142
|
+
# @return [String]
|
1143
|
+
#
|
1144
|
+
# @!attribute [rw] last_modified_at
|
1145
|
+
# The datetime stamp when the configuration manager was last updated.
|
1146
|
+
# @return [Time]
|
1147
|
+
#
|
1148
|
+
# @!attribute [rw] manager_arn
|
1149
|
+
# The ARN of the configuration manager.
|
1150
|
+
# @return [String]
|
1151
|
+
#
|
1152
|
+
# @!attribute [rw] parameters
|
1153
|
+
# The parameters for the configuration definition type.
|
1154
|
+
# @return [Hash<String,String>]
|
1155
|
+
#
|
1156
|
+
# @!attribute [rw] region
|
1157
|
+
# The Amazon Web Services Region where the configuration was deployed.
|
1158
|
+
# @return [String]
|
1159
|
+
#
|
1160
|
+
# @!attribute [rw] status_summaries
|
1161
|
+
# A summary of the state of the configuration manager. This includes
|
1162
|
+
# deployment statuses, association statuses, drift statuses, health
|
1163
|
+
# checks, and more.
|
1164
|
+
# @return [Array<Types::StatusSummary>]
|
1165
|
+
#
|
1166
|
+
# @!attribute [rw] type
|
1167
|
+
# The type of the Quick Setup configuration.
|
1168
|
+
# @return [String]
|
1169
|
+
#
|
1170
|
+
# @!attribute [rw] type_version
|
1171
|
+
# The version of the Quick Setup type used.
|
1172
|
+
# @return [String]
|
1173
|
+
#
|
1174
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/GetConfigurationOutput AWS API Documentation
|
1175
|
+
#
|
1176
|
+
class GetConfigurationOutput < Struct.new(
|
1177
|
+
:account,
|
1178
|
+
:configuration_definition_id,
|
1179
|
+
:created_at,
|
1180
|
+
:id,
|
1181
|
+
:last_modified_at,
|
1182
|
+
:manager_arn,
|
1183
|
+
:parameters,
|
1184
|
+
:region,
|
1185
|
+
:status_summaries,
|
1186
|
+
:type,
|
1187
|
+
:type_version)
|
1188
|
+
SENSITIVE = []
|
1189
|
+
include Aws::Structure
|
1190
|
+
end
|
1191
|
+
|
1140
1192
|
# @!attribute [rw] service_settings
|
1141
1193
|
# Returns details about the settings for Quick Setup in the requesting
|
1142
1194
|
# Amazon Web Services account and Amazon Web Services Region.
|
@@ -1206,6 +1258,58 @@ module Aws::SSMQuickSetup
|
|
1206
1258
|
include Aws::Structure
|
1207
1259
|
end
|
1208
1260
|
|
1261
|
+
# @!attribute [rw] configuration_definition_id
|
1262
|
+
# The ID of the configuration definition.
|
1263
|
+
# @return [String]
|
1264
|
+
#
|
1265
|
+
# @!attribute [rw] filters
|
1266
|
+
# Filters the results returned by the request.
|
1267
|
+
# @return [Array<Types::Filter>]
|
1268
|
+
#
|
1269
|
+
# @!attribute [rw] manager_arn
|
1270
|
+
# The ARN of the configuration manager.
|
1271
|
+
# @return [String]
|
1272
|
+
#
|
1273
|
+
# @!attribute [rw] max_items
|
1274
|
+
# Specifies the maximum number of configurations that are returned by
|
1275
|
+
# the request.
|
1276
|
+
# @return [Integer]
|
1277
|
+
#
|
1278
|
+
# @!attribute [rw] starting_token
|
1279
|
+
# The token to use when requesting a specific set of items from a
|
1280
|
+
# list.
|
1281
|
+
# @return [String]
|
1282
|
+
#
|
1283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListConfigurationsInput AWS API Documentation
|
1284
|
+
#
|
1285
|
+
class ListConfigurationsInput < Struct.new(
|
1286
|
+
:configuration_definition_id,
|
1287
|
+
:filters,
|
1288
|
+
:manager_arn,
|
1289
|
+
:max_items,
|
1290
|
+
:starting_token)
|
1291
|
+
SENSITIVE = []
|
1292
|
+
include Aws::Structure
|
1293
|
+
end
|
1294
|
+
|
1295
|
+
# @!attribute [rw] configurations_list
|
1296
|
+
# An array of configurations.
|
1297
|
+
# @return [Array<Types::ConfigurationSummary>]
|
1298
|
+
#
|
1299
|
+
# @!attribute [rw] next_token
|
1300
|
+
# The token to use when requesting the next set of items. If there are
|
1301
|
+
# no additional items to return, the string is empty.
|
1302
|
+
# @return [String]
|
1303
|
+
#
|
1304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListConfigurationsOutput AWS API Documentation
|
1305
|
+
#
|
1306
|
+
class ListConfigurationsOutput < Struct.new(
|
1307
|
+
:configurations_list,
|
1308
|
+
:next_token)
|
1309
|
+
SENSITIVE = []
|
1310
|
+
include Aws::Structure
|
1311
|
+
end
|
1312
|
+
|
1209
1313
|
# @!attribute [rw] quick_setup_type_list
|
1210
1314
|
# An array of Quick Setup types.
|
1211
1315
|
# @return [Array<Types::QuickSetupTypeOutput>]
|
data/sig/client.rbs
CHANGED
@@ -102,6 +102,26 @@ module Aws
|
|
102
102
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
103
103
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
104
104
|
|
105
|
+
interface _GetConfigurationResponseSuccess
|
106
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationOutput]
|
107
|
+
def account: () -> ::String
|
108
|
+
def configuration_definition_id: () -> ::String
|
109
|
+
def created_at: () -> ::Time
|
110
|
+
def id: () -> ::String
|
111
|
+
def last_modified_at: () -> ::Time
|
112
|
+
def manager_arn: () -> ::String
|
113
|
+
def parameters: () -> ::Hash[::String, ::String]
|
114
|
+
def region: () -> ::String
|
115
|
+
def status_summaries: () -> ::Array[Types::StatusSummary]
|
116
|
+
def type: () -> ::String
|
117
|
+
def type_version: () -> ::String
|
118
|
+
end
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#get_configuration-instance_method
|
120
|
+
def get_configuration: (
|
121
|
+
configuration_id: ::String
|
122
|
+
) -> _GetConfigurationResponseSuccess
|
123
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationResponseSuccess
|
124
|
+
|
105
125
|
interface _GetConfigurationManagerResponseSuccess
|
106
126
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationManagerOutput]
|
107
127
|
def configuration_definitions: () -> ::Array[Types::ConfigurationDefinition]
|
@@ -145,6 +165,26 @@ module Aws
|
|
145
165
|
) -> _ListConfigurationManagersResponseSuccess
|
146
166
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationManagersResponseSuccess
|
147
167
|
|
168
|
+
interface _ListConfigurationsResponseSuccess
|
169
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationsOutput]
|
170
|
+
def configurations_list: () -> ::Array[Types::ConfigurationSummary]
|
171
|
+
def next_token: () -> ::String
|
172
|
+
end
|
173
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#list_configurations-instance_method
|
174
|
+
def list_configurations: (
|
175
|
+
?configuration_definition_id: ::String,
|
176
|
+
?filters: Array[
|
177
|
+
{
|
178
|
+
key: ::String,
|
179
|
+
values: Array[::String]
|
180
|
+
},
|
181
|
+
],
|
182
|
+
?manager_arn: ::String,
|
183
|
+
?max_items: ::Integer,
|
184
|
+
?starting_token: ::String
|
185
|
+
) -> _ListConfigurationsResponseSuccess
|
186
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationsResponseSuccess
|
187
|
+
|
148
188
|
interface _ListQuickSetupTypesResponseSuccess
|
149
189
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListQuickSetupTypesOutput]
|
150
190
|
def quick_setup_type_list: () -> ::Array[Types::QuickSetupTypeOutput]
|
data/sig/types.rbs
CHANGED
@@ -49,6 +49,20 @@ module Aws::SSMQuickSetup
|
|
49
49
|
SENSITIVE: []
|
50
50
|
end
|
51
51
|
|
52
|
+
class ConfigurationSummary
|
53
|
+
attr_accessor account: ::String
|
54
|
+
attr_accessor configuration_definition_id: ::String
|
55
|
+
attr_accessor created_at: ::Time
|
56
|
+
attr_accessor first_class_parameters: ::Hash[::String, ::String]
|
57
|
+
attr_accessor id: ::String
|
58
|
+
attr_accessor manager_arn: ::String
|
59
|
+
attr_accessor region: ::String
|
60
|
+
attr_accessor status_summaries: ::Array[Types::StatusSummary]
|
61
|
+
attr_accessor type: ::String
|
62
|
+
attr_accessor type_version: ::String
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
52
66
|
class ConflictException
|
53
67
|
attr_accessor message: ::String
|
54
68
|
SENSITIVE: []
|
@@ -78,6 +92,11 @@ module Aws::SSMQuickSetup
|
|
78
92
|
SENSITIVE: []
|
79
93
|
end
|
80
94
|
|
95
|
+
class GetConfigurationInput
|
96
|
+
attr_accessor configuration_id: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
81
100
|
class GetConfigurationManagerInput
|
82
101
|
attr_accessor manager_arn: ::String
|
83
102
|
SENSITIVE: []
|
@@ -95,6 +114,21 @@ module Aws::SSMQuickSetup
|
|
95
114
|
SENSITIVE: [:tags]
|
96
115
|
end
|
97
116
|
|
117
|
+
class GetConfigurationOutput
|
118
|
+
attr_accessor account: ::String
|
119
|
+
attr_accessor configuration_definition_id: ::String
|
120
|
+
attr_accessor created_at: ::Time
|
121
|
+
attr_accessor id: ::String
|
122
|
+
attr_accessor last_modified_at: ::Time
|
123
|
+
attr_accessor manager_arn: ::String
|
124
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
125
|
+
attr_accessor region: ::String
|
126
|
+
attr_accessor status_summaries: ::Array[Types::StatusSummary]
|
127
|
+
attr_accessor type: ::String
|
128
|
+
attr_accessor type_version: ::String
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
98
132
|
class GetServiceSettingsOutput
|
99
133
|
attr_accessor service_settings: Types::ServiceSettings
|
100
134
|
SENSITIVE: []
|
@@ -118,6 +152,21 @@ module Aws::SSMQuickSetup
|
|
118
152
|
SENSITIVE: []
|
119
153
|
end
|
120
154
|
|
155
|
+
class ListConfigurationsInput
|
156
|
+
attr_accessor configuration_definition_id: ::String
|
157
|
+
attr_accessor filters: ::Array[Types::Filter]
|
158
|
+
attr_accessor manager_arn: ::String
|
159
|
+
attr_accessor max_items: ::Integer
|
160
|
+
attr_accessor starting_token: ::String
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class ListConfigurationsOutput
|
165
|
+
attr_accessor configurations_list: ::Array[Types::ConfigurationSummary]
|
166
|
+
attr_accessor next_token: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
121
170
|
class ListQuickSetupTypesOutput
|
122
171
|
attr_accessor quick_setup_type_list: ::Array[Types::QuickSetupTypeOutput]
|
123
172
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssmquicksetup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.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: 2024-
|
11
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|