aws-sdk-ssmquicksetup 1.8.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab23075d6d5e7f6c3fe934b63c4803877fc6d70f34d9b1847a96f26ac6996f83
4
- data.tar.gz: 833e48d15f60c7bba57ffb44a8f64b77e513ed575cccccacc418332d4f2a25ea
3
+ metadata.gz: d4eb6ee049761cf62d2c3b843ed7e60e97682a41f02769afa86d3384cc13bb63
4
+ data.tar.gz: c5840b02b22837f5215b3b92b382df72ee38063111969c0601972a14907d34b2
5
5
  SHA512:
6
- metadata.gz: 7ad07414e3877788d851a65f56226605b7d556a57890c4dbff697041fdf98bd2690b20fe18f738cadcd03a718143ceafcdddc70543f4737453c95050d576f396
7
- data.tar.gz: c7dcd00edce5daf9d3841bbfb3f149ef3651e29640f77b89421c2a2a44b168c9cdcabf7c10ec0a19c539c2ce98141dae58f7d55761103dfc731290e3fe6837d8
6
+ metadata.gz: 98cff7f0b0fc9d47b734a338caba6ee923fcf4df914f9bc1c5fbd4d56b57bb7a5d9a98ebcfdebb00958a7df903908eb9df6bf25a75894af97d703f0fbbaec3c0
7
+ data.tar.gz: e3214c1bc4bc75d18081d28d375dbd411b37ab5f55c9f92d08d25e285ce63135764f6e2a26f9ce56d523daa53372a08ff1010fba06d26b088a0c0d11e7a762c5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.8.0 (2024-11-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
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&lt;Types::ConfigurationSummary&gt;
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.8.0'
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"
@@ -707,9 +707,9 @@ module Aws::SSMQuickSetup
707
707
  # ^
708
708
  # * `RebootOption`
709
709
  #
710
- # * Description: (Optional) A boolean value that determines
711
- # whether instances are rebooted after patches are installed.
712
- # The default value is "`false`".
710
+ # * Description: (Optional) Determines whether instances are
711
+ # rebooted after patches are installed. Valid values are
712
+ # `RebootIfNeeded` and `NoReboot`.
713
713
  #
714
714
  # ^
715
715
  # * `IsPolicyAttachAllowed`
@@ -904,6 +904,68 @@ module Aws::SSMQuickSetup
904
904
  include Aws::Structure
905
905
  end
906
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
+
907
969
  # Another request is being processed. Wait a few minutes and try again.
908
970
  #
909
971
  # @!attribute [rw] message
@@ -988,6 +1050,18 @@ module Aws::SSMQuickSetup
988
1050
  include Aws::Structure
989
1051
  end
990
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
+
991
1065
  # @!attribute [rw] manager_arn
992
1066
  # The ARN of the configuration manager.
993
1067
  # @return [String]
@@ -1050,6 +1124,71 @@ module Aws::SSMQuickSetup
1050
1124
  include Aws::Structure
1051
1125
  end
1052
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
+
1053
1192
  # @!attribute [rw] service_settings
1054
1193
  # Returns details about the settings for Quick Setup in the requesting
1055
1194
  # Amazon Web Services account and Amazon Web Services Region.
@@ -1119,6 +1258,58 @@ module Aws::SSMQuickSetup
1119
1258
  include Aws::Structure
1120
1259
  end
1121
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
+
1122
1313
  # @!attribute [rw] quick_setup_type_list
1123
1314
  # An array of Quick Setup types.
1124
1315
  # @return [Array<Types::QuickSetupTypeOutput>]
@@ -54,7 +54,7 @@ module Aws::SSMQuickSetup
54
54
  autoload :EndpointProvider, 'aws-sdk-ssmquicksetup/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-ssmquicksetup/endpoints'
56
56
 
57
- GEM_VERSION = '1.8.0'
57
+ GEM_VERSION = '1.9.0'
58
58
 
59
59
  end
60
60
 
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.8.0
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-18 00:00:00.000000000 Z
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