aws-sdk-ssmquicksetup 1.6.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13164e6d6c4cfffa8a5c475bfbb3afcf44d94c49f16f1f97a0eb07bf1ef9ca61
4
- data.tar.gz: 0b38dfebdc0b786443dc97b7675b2a9d48c194f69e5f30fea23c07a58be1f604
3
+ metadata.gz: ab23075d6d5e7f6c3fe934b63c4803877fc6d70f34d9b1847a96f26ac6996f83
4
+ data.tar.gz: 833e48d15f60c7bba57ffb44a8f64b77e513ed575cccccacc418332d4f2a25ea
5
5
  SHA512:
6
- metadata.gz: 59894bcdb2ccba404123d6a5f60a13b3bb29436fdbfa339f38eb94b7465688ce9e00b0acd8f035db0fabae4383fa3389aa1a943a0dfec07c62c5d0d136d847d4
7
- data.tar.gz: 884b63b6ce7cca9fe5494087eb36ac5ee96aac21819babd6caf50df6e24588f087b08b14a3725c49b4bfd3de68102775746c0ee4edabe127da12ae1e0922b179
6
+ metadata.gz: 7ad07414e3877788d851a65f56226605b7d556a57890c4dbff697041fdf98bd2690b20fe18f738cadcd03a718143ceafcdddc70543f4737453c95050d576f396
7
+ data.tar.gz: c7dcd00edce5daf9d3841bbfb3f149ef3651e29640f77b89421c2a2a44b168c9cdcabf7c10ec0a19c539c2ce98141dae58f7d55761103dfc731290e3fe6837d8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2024-11-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.7.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.6.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.8.0
@@ -884,7 +884,7 @@ module Aws::SSMQuickSetup
884
884
  tracer: tracer
885
885
  )
886
886
  context[:gem_name] = 'aws-sdk-ssmquicksetup'
887
- context[:gem_version] = '1.6.0'
887
+ context[:gem_version] = '1.8.0'
888
888
  Seahorse::Client::Request.new(handlers, context)
889
889
  end
890
890
 
@@ -52,15 +52,18 @@ module Aws::SSMQuickSetup
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end
@@ -12,137 +12,9 @@ module Aws::SSMQuickSetup
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class CreateConfigurationManager
16
- def self.build(context)
17
- Aws::SSMQuickSetup::EndpointParameters.new(
18
- region: context.config.region,
19
- use_dual_stack: context.config.use_dualstack_endpoint,
20
- use_fips: context.config.use_fips_endpoint,
21
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
22
- )
23
- end
24
- end
25
-
26
- class DeleteConfigurationManager
27
- def self.build(context)
28
- Aws::SSMQuickSetup::EndpointParameters.new(
29
- region: context.config.region,
30
- use_dual_stack: context.config.use_dualstack_endpoint,
31
- use_fips: context.config.use_fips_endpoint,
32
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
33
- )
34
- end
35
- end
36
-
37
- class GetConfigurationManager
38
- def self.build(context)
39
- Aws::SSMQuickSetup::EndpointParameters.new(
40
- region: context.config.region,
41
- use_dual_stack: context.config.use_dualstack_endpoint,
42
- use_fips: context.config.use_fips_endpoint,
43
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
44
- )
45
- end
46
- end
47
-
48
- class GetServiceSettings
49
- def self.build(context)
50
- Aws::SSMQuickSetup::EndpointParameters.new(
51
- region: context.config.region,
52
- use_dual_stack: context.config.use_dualstack_endpoint,
53
- use_fips: context.config.use_fips_endpoint,
54
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
55
- )
56
- end
57
- end
58
-
59
- class ListConfigurationManagers
60
- def self.build(context)
61
- Aws::SSMQuickSetup::EndpointParameters.new(
62
- region: context.config.region,
63
- use_dual_stack: context.config.use_dualstack_endpoint,
64
- use_fips: context.config.use_fips_endpoint,
65
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
66
- )
67
- end
68
- end
69
-
70
- class ListQuickSetupTypes
71
- def self.build(context)
72
- Aws::SSMQuickSetup::EndpointParameters.new(
73
- region: context.config.region,
74
- use_dual_stack: context.config.use_dualstack_endpoint,
75
- use_fips: context.config.use_fips_endpoint,
76
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
77
- )
78
- end
79
- end
80
15
 
81
- class ListTagsForResource
82
- def self.build(context)
83
- Aws::SSMQuickSetup::EndpointParameters.new(
84
- region: context.config.region,
85
- use_dual_stack: context.config.use_dualstack_endpoint,
86
- use_fips: context.config.use_fips_endpoint,
87
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
88
- )
89
- end
16
+ def self.parameters_for_operation(context)
17
+ Aws::SSMQuickSetup::EndpointParameters.create(context.config)
90
18
  end
91
-
92
- class TagResource
93
- def self.build(context)
94
- Aws::SSMQuickSetup::EndpointParameters.new(
95
- region: context.config.region,
96
- use_dual_stack: context.config.use_dualstack_endpoint,
97
- use_fips: context.config.use_fips_endpoint,
98
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
99
- )
100
- end
101
- end
102
-
103
- class UntagResource
104
- def self.build(context)
105
- Aws::SSMQuickSetup::EndpointParameters.new(
106
- region: context.config.region,
107
- use_dual_stack: context.config.use_dualstack_endpoint,
108
- use_fips: context.config.use_fips_endpoint,
109
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
110
- )
111
- end
112
- end
113
-
114
- class UpdateConfigurationDefinition
115
- def self.build(context)
116
- Aws::SSMQuickSetup::EndpointParameters.new(
117
- region: context.config.region,
118
- use_dual_stack: context.config.use_dualstack_endpoint,
119
- use_fips: context.config.use_fips_endpoint,
120
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
121
- )
122
- end
123
- end
124
-
125
- class UpdateConfigurationManager
126
- def self.build(context)
127
- Aws::SSMQuickSetup::EndpointParameters.new(
128
- region: context.config.region,
129
- use_dual_stack: context.config.use_dualstack_endpoint,
130
- use_fips: context.config.use_fips_endpoint,
131
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
132
- )
133
- end
134
- end
135
-
136
- class UpdateServiceSettings
137
- def self.build(context)
138
- Aws::SSMQuickSetup::EndpointParameters.new(
139
- region: context.config.region,
140
- use_dual_stack: context.config.use_dualstack_endpoint,
141
- use_fips: context.config.use_fips_endpoint,
142
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
143
- )
144
- end
145
- end
146
-
147
19
  end
148
20
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::SSMQuickSetup::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,35 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :create_configuration_manager
74
- Aws::SSMQuickSetup::Endpoints::CreateConfigurationManager.build(context)
75
- when :delete_configuration_manager
76
- Aws::SSMQuickSetup::Endpoints::DeleteConfigurationManager.build(context)
77
- when :get_configuration_manager
78
- Aws::SSMQuickSetup::Endpoints::GetConfigurationManager.build(context)
79
- when :get_service_settings
80
- Aws::SSMQuickSetup::Endpoints::GetServiceSettings.build(context)
81
- when :list_configuration_managers
82
- Aws::SSMQuickSetup::Endpoints::ListConfigurationManagers.build(context)
83
- when :list_quick_setup_types
84
- Aws::SSMQuickSetup::Endpoints::ListQuickSetupTypes.build(context)
85
- when :list_tags_for_resource
86
- Aws::SSMQuickSetup::Endpoints::ListTagsForResource.build(context)
87
- when :tag_resource
88
- Aws::SSMQuickSetup::Endpoints::TagResource.build(context)
89
- when :untag_resource
90
- Aws::SSMQuickSetup::Endpoints::UntagResource.build(context)
91
- when :update_configuration_definition
92
- Aws::SSMQuickSetup::Endpoints::UpdateConfigurationDefinition.build(context)
93
- when :update_configuration_manager
94
- Aws::SSMQuickSetup::Endpoints::UpdateConfigurationManager.build(context)
95
- when :update_service_settings
96
- Aws::SSMQuickSetup::Endpoints::UpdateServiceSettings.build(context)
97
- end
98
- end
99
70
  end
100
71
 
101
72
  def add_handlers(handlers, _config)
@@ -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,7 +705,6 @@ module Aws::SSMQuickSetup
778
705
  # next cron interval. The default value is "`false`".
779
706
  #
780
707
  # ^
781
- #
782
708
  # * `RebootOption`
783
709
  #
784
710
  # * Description: (Optional) A boolean value that determines
@@ -786,7 +712,6 @@ module Aws::SSMQuickSetup
786
712
  # The default value is "`false`".
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
@@ -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.6.0'
57
+ GEM_VERSION = '1.8.0'
58
58
 
59
59
  end
60
60
 
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.6.0
4
+ version: 1.8.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-09-24 00:00:00.000000000 Z
11
+ date: 2024-11-18 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.207.0
22
+ version: 3.210.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.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement