aws-sdk-ssmquicksetup 1.8.0 → 1.10.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: e73ae15f70c2236f129c0b05c545678dc6126b14285d9bee9560942b6b84270c
4
+ data.tar.gz: f80af9a0d3e6a271f0cee6763915102d8f248e98a9f0356b6f3318470a119d06
5
5
  SHA512:
6
- metadata.gz: 7ad07414e3877788d851a65f56226605b7d556a57890c4dbff697041fdf98bd2690b20fe18f738cadcd03a718143ceafcdddc70543f4737453c95050d576f396
7
- data.tar.gz: c7dcd00edce5daf9d3841bbfb3f149ef3651e29640f77b89421c2a2a44b168c9cdcabf7c10ec0a19c539c2ce98141dae58f7d55761103dfc731290e3fe6837d8
6
+ metadata.gz: 4cdbc48e54381121e53908c7bc6657eb3cbb2dddb5acaafac198713758d42313e7fe9b7f0890a05b9514e026c7f58cf2c0811215dade0ef2f6f41f4f57ecdcc5
7
+ data.tar.gz: '08d88d49dca73535e8e3e80035c2d6a190881b95f6ceeac39b32fb5edc3eb7cbaf0f9f542c925323096cb401e93fcbfd85bcdf8070a52447e846338a4e01840c'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.9.0 (2024-11-21)
10
+ ------------------
11
+
12
+ * Feature - Add methods that retrieve details about deployed configurations: ListConfigurations, GetConfiguration
13
+
4
14
  1.8.0 (2024-11-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.10.0
@@ -257,11 +257,34 @@ module Aws::SSMQuickSetup
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -525,6 +548,61 @@ module Aws::SSMQuickSetup
525
548
  req.send_request(options)
526
549
  end
527
550
 
551
+ # Returns details about the specified configuration.
552
+ #
553
+ # @option params [required, String] :configuration_id
554
+ # A service generated identifier for the configuration.
555
+ #
556
+ # @return [Types::GetConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
557
+ #
558
+ # * {Types::GetConfigurationOutput#account #account} => String
559
+ # * {Types::GetConfigurationOutput#configuration_definition_id #configuration_definition_id} => String
560
+ # * {Types::GetConfigurationOutput#created_at #created_at} => Time
561
+ # * {Types::GetConfigurationOutput#id #id} => String
562
+ # * {Types::GetConfigurationOutput#last_modified_at #last_modified_at} => Time
563
+ # * {Types::GetConfigurationOutput#manager_arn #manager_arn} => String
564
+ # * {Types::GetConfigurationOutput#parameters #parameters} => Hash<String,String>
565
+ # * {Types::GetConfigurationOutput#region #region} => String
566
+ # * {Types::GetConfigurationOutput#status_summaries #status_summaries} => Array<Types::StatusSummary>
567
+ # * {Types::GetConfigurationOutput#type #type} => String
568
+ # * {Types::GetConfigurationOutput#type_version #type_version} => String
569
+ #
570
+ # @example Request syntax with placeholder values
571
+ #
572
+ # resp = client.get_configuration({
573
+ # configuration_id: "GetConfigurationInputConfigurationIdString", # required
574
+ # })
575
+ #
576
+ # @example Response structure
577
+ #
578
+ # resp.account #=> String
579
+ # resp.configuration_definition_id #=> String
580
+ # resp.created_at #=> Time
581
+ # resp.id #=> String
582
+ # resp.last_modified_at #=> Time
583
+ # resp.manager_arn #=> String
584
+ # resp.parameters #=> Hash
585
+ # resp.parameters["ConfigurationParametersMapKeyString"] #=> String
586
+ # resp.region #=> String
587
+ # resp.status_summaries #=> Array
588
+ # resp.status_summaries[0].last_updated_at #=> Time
589
+ # resp.status_summaries[0].status #=> String, one of "INITIALIZING", "DEPLOYING", "SUCCEEDED", "DELETING", "STOPPING", "FAILED", "STOPPED", "DELETE_FAILED", "STOP_FAILED", "NONE"
590
+ # resp.status_summaries[0].status_details #=> Hash
591
+ # resp.status_summaries[0].status_details["String"] #=> String
592
+ # resp.status_summaries[0].status_message #=> String
593
+ # resp.status_summaries[0].status_type #=> String, one of "Deployment", "AsyncExecutions"
594
+ # resp.type #=> String
595
+ # resp.type_version #=> String
596
+ #
597
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/GetConfiguration AWS API Documentation
598
+ #
599
+ # @overload get_configuration(params = {})
600
+ # @param [Hash] params ({})
601
+ def get_configuration(params = {}, options = {})
602
+ req = build_request(:get_configuration, params)
603
+ req.send_request(options)
604
+ end
605
+
528
606
  # Returns a configuration manager.
529
607
  #
530
608
  # @option params [required, String] :manager_arn
@@ -663,6 +741,78 @@ module Aws::SSMQuickSetup
663
741
  req.send_request(options)
664
742
  end
665
743
 
744
+ # Returns configurations deployed by Quick Setup in the requesting
745
+ # Amazon Web Services account and Amazon Web Services Region.
746
+ #
747
+ # @option params [String] :configuration_definition_id
748
+ # The ID of the configuration definition.
749
+ #
750
+ # @option params [Array<Types::Filter>] :filters
751
+ # Filters the results returned by the request.
752
+ #
753
+ # @option params [String] :manager_arn
754
+ # The ARN of the configuration manager.
755
+ #
756
+ # @option params [Integer] :max_items
757
+ # Specifies the maximum number of configurations that are returned by
758
+ # the request.
759
+ #
760
+ # @option params [String] :starting_token
761
+ # The token to use when requesting a specific set of items from a list.
762
+ #
763
+ # @return [Types::ListConfigurationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
764
+ #
765
+ # * {Types::ListConfigurationsOutput#configurations_list #configurations_list} => Array&lt;Types::ConfigurationSummary&gt;
766
+ # * {Types::ListConfigurationsOutput#next_token #next_token} => String
767
+ #
768
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
769
+ #
770
+ # @example Request syntax with placeholder values
771
+ #
772
+ # resp = client.list_configurations({
773
+ # configuration_definition_id: "ListConfigurationsInputConfigurationDefinitionIdString",
774
+ # filters: [
775
+ # {
776
+ # key: "FilterKeyString", # required
777
+ # values: ["FilterValuesMemberString"], # required
778
+ # },
779
+ # ],
780
+ # manager_arn: "ListConfigurationsInputManagerArnString",
781
+ # max_items: 1,
782
+ # starting_token: "ListConfigurationsInputStartingTokenString",
783
+ # })
784
+ #
785
+ # @example Response structure
786
+ #
787
+ # resp.configurations_list #=> Array
788
+ # resp.configurations_list[0].account #=> String
789
+ # resp.configurations_list[0].configuration_definition_id #=> String
790
+ # resp.configurations_list[0].created_at #=> Time
791
+ # resp.configurations_list[0].first_class_parameters #=> Hash
792
+ # resp.configurations_list[0].first_class_parameters["ConfigurationParametersMapKeyString"] #=> String
793
+ # resp.configurations_list[0].id #=> String
794
+ # resp.configurations_list[0].manager_arn #=> String
795
+ # resp.configurations_list[0].region #=> String
796
+ # resp.configurations_list[0].status_summaries #=> Array
797
+ # resp.configurations_list[0].status_summaries[0].last_updated_at #=> Time
798
+ # resp.configurations_list[0].status_summaries[0].status #=> String, one of "INITIALIZING", "DEPLOYING", "SUCCEEDED", "DELETING", "STOPPING", "FAILED", "STOPPED", "DELETE_FAILED", "STOP_FAILED", "NONE"
799
+ # resp.configurations_list[0].status_summaries[0].status_details #=> Hash
800
+ # resp.configurations_list[0].status_summaries[0].status_details["String"] #=> String
801
+ # resp.configurations_list[0].status_summaries[0].status_message #=> String
802
+ # resp.configurations_list[0].status_summaries[0].status_type #=> String, one of "Deployment", "AsyncExecutions"
803
+ # resp.configurations_list[0].type #=> String
804
+ # resp.configurations_list[0].type_version #=> String
805
+ # resp.next_token #=> String
806
+ #
807
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListConfigurations AWS API Documentation
808
+ #
809
+ # @overload list_configurations(params = {})
810
+ # @param [Hash] params ({})
811
+ def list_configurations(params = {}, options = {})
812
+ req = build_request(:list_configurations, params)
813
+ req.send_request(options)
814
+ end
815
+
666
816
  # Returns the available Quick Setup types.
667
817
  #
668
818
  # @return [Types::ListQuickSetupTypesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -884,7 +1034,7 @@ module Aws::SSMQuickSetup
884
1034
  tracer: tracer
885
1035
  )
886
1036
  context[:gem_name] = 'aws-sdk-ssmquicksetup'
887
- context[:gem_version] = '1.8.0'
1037
+ context[:gem_version] = '1.10.0'
888
1038
  Seahorse::Client::Request.new(handlers, context)
889
1039
  end
890
1040
 
@@ -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.10.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -102,6 +104,26 @@ module Aws
102
104
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
103
105
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
104
106
 
107
+ interface _GetConfigurationResponseSuccess
108
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationOutput]
109
+ def account: () -> ::String
110
+ def configuration_definition_id: () -> ::String
111
+ def created_at: () -> ::Time
112
+ def id: () -> ::String
113
+ def last_modified_at: () -> ::Time
114
+ def manager_arn: () -> ::String
115
+ def parameters: () -> ::Hash[::String, ::String]
116
+ def region: () -> ::String
117
+ def status_summaries: () -> ::Array[Types::StatusSummary]
118
+ def type: () -> ::String
119
+ def type_version: () -> ::String
120
+ end
121
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#get_configuration-instance_method
122
+ def get_configuration: (
123
+ configuration_id: ::String
124
+ ) -> _GetConfigurationResponseSuccess
125
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationResponseSuccess
126
+
105
127
  interface _GetConfigurationManagerResponseSuccess
106
128
  include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationManagerOutput]
107
129
  def configuration_definitions: () -> ::Array[Types::ConfigurationDefinition]
@@ -145,6 +167,26 @@ module Aws
145
167
  ) -> _ListConfigurationManagersResponseSuccess
146
168
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationManagersResponseSuccess
147
169
 
170
+ interface _ListConfigurationsResponseSuccess
171
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationsOutput]
172
+ def configurations_list: () -> ::Array[Types::ConfigurationSummary]
173
+ def next_token: () -> ::String
174
+ end
175
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMQuickSetup/Client.html#list_configurations-instance_method
176
+ def list_configurations: (
177
+ ?configuration_definition_id: ::String,
178
+ ?filters: Array[
179
+ {
180
+ key: ::String,
181
+ values: Array[::String]
182
+ },
183
+ ],
184
+ ?manager_arn: ::String,
185
+ ?max_items: ::Integer,
186
+ ?starting_token: ::String
187
+ ) -> _ListConfigurationsResponseSuccess
188
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationsResponseSuccess
189
+
148
190
  interface _ListQuickSetupTypesResponseSuccess
149
191
  include ::Seahorse::Client::_ResponseSuccess[Types::ListQuickSetupTypesOutput]
150
192
  def quick_setup_type_list: () -> ::Array[Types::QuickSetupTypeOutput]
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.10.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: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement