aws-sdk-ssmsap 1.42.0 → 1.43.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.
data/sig/types.rbs CHANGED
@@ -92,6 +92,28 @@ module Aws::SsmSap
92
92
  SENSITIVE: []
93
93
  end
94
94
 
95
+ class ConfigurationCheckDefinition
96
+ attr_accessor id: ("SAP_CHECK_01" | "SAP_CHECK_02" | "SAP_CHECK_03")
97
+ attr_accessor name: ::String
98
+ attr_accessor description: ::String
99
+ attr_accessor applicable_application_types: ::Array[("HANA" | "SAP_ABAP")]
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class ConfigurationCheckOperation
104
+ attr_accessor id: ::String
105
+ attr_accessor application_id: ::String
106
+ attr_accessor status: ("INPROGRESS" | "SUCCESS" | "ERROR")
107
+ attr_accessor status_message: ::String
108
+ attr_accessor configuration_check_id: ("SAP_CHECK_01" | "SAP_CHECK_02" | "SAP_CHECK_03")
109
+ attr_accessor configuration_check_name: ::String
110
+ attr_accessor configuration_check_description: ::String
111
+ attr_accessor start_time: ::Time
112
+ attr_accessor end_time: ::Time
113
+ attr_accessor rule_status_counts: Types::RuleStatusCounts
114
+ SENSITIVE: []
115
+ end
116
+
95
117
  class ConflictException
96
118
  attr_accessor message: ::String
97
119
  SENSITIVE: []
@@ -182,6 +204,16 @@ module Aws::SsmSap
182
204
  SENSITIVE: []
183
205
  end
184
206
 
207
+ class GetConfigurationCheckOperationInput
208
+ attr_accessor operation_id: ::String
209
+ SENSITIVE: []
210
+ end
211
+
212
+ class GetConfigurationCheckOperationOutput
213
+ attr_accessor configuration_check_operation: Types::ConfigurationCheckOperation
214
+ SENSITIVE: []
215
+ end
216
+
185
217
  class GetDatabaseInput
186
218
  attr_accessor application_id: ::String
187
219
  attr_accessor component_id: ::String
@@ -265,6 +297,33 @@ module Aws::SsmSap
265
297
  SENSITIVE: []
266
298
  end
267
299
 
300
+ class ListConfigurationCheckDefinitionsInput
301
+ attr_accessor max_results: ::Integer
302
+ attr_accessor next_token: ::String
303
+ SENSITIVE: []
304
+ end
305
+
306
+ class ListConfigurationCheckDefinitionsOutput
307
+ attr_accessor configuration_checks: ::Array[Types::ConfigurationCheckDefinition]
308
+ attr_accessor next_token: ::String
309
+ SENSITIVE: []
310
+ end
311
+
312
+ class ListConfigurationCheckOperationsInput
313
+ attr_accessor application_id: ::String
314
+ attr_accessor list_mode: ("ALL_OPERATIONS" | "LATEST_PER_CHECK")
315
+ attr_accessor max_results: ::Integer
316
+ attr_accessor next_token: ::String
317
+ attr_accessor filters: ::Array[Types::Filter]
318
+ SENSITIVE: []
319
+ end
320
+
321
+ class ListConfigurationCheckOperationsOutput
322
+ attr_accessor configuration_check_operations: ::Array[Types::ConfigurationCheckOperation]
323
+ attr_accessor next_token: ::String
324
+ SENSITIVE: []
325
+ end
326
+
268
327
  class ListDatabasesInput
269
328
  attr_accessor application_id: ::String
270
329
  attr_accessor component_id: ::String
@@ -307,6 +366,32 @@ module Aws::SsmSap
307
366
  SENSITIVE: []
308
367
  end
309
368
 
369
+ class ListSubCheckResultsInput
370
+ attr_accessor operation_id: ::String
371
+ attr_accessor max_results: ::Integer
372
+ attr_accessor next_token: ::String
373
+ SENSITIVE: []
374
+ end
375
+
376
+ class ListSubCheckResultsOutput
377
+ attr_accessor sub_check_results: ::Array[Types::SubCheckResult]
378
+ attr_accessor next_token: ::String
379
+ SENSITIVE: []
380
+ end
381
+
382
+ class ListSubCheckRuleResultsInput
383
+ attr_accessor sub_check_result_id: ::String
384
+ attr_accessor max_results: ::Integer
385
+ attr_accessor next_token: ::String
386
+ SENSITIVE: []
387
+ end
388
+
389
+ class ListSubCheckRuleResultsOutput
390
+ attr_accessor rule_results: ::Array[Types::RuleResult]
391
+ attr_accessor next_token: ::String
392
+ SENSITIVE: []
393
+ end
394
+
310
395
  class ListTagsForResourceRequest
311
396
  attr_accessor resource_arn: ::String
312
397
  SENSITIVE: []
@@ -392,6 +477,24 @@ module Aws::SsmSap
392
477
  SENSITIVE: []
393
478
  end
394
479
 
480
+ class RuleResult
481
+ attr_accessor id: ::String
482
+ attr_accessor description: ::String
483
+ attr_accessor status: ("PASSED" | "FAILED" | "WARNING" | "INFO" | "UNKNOWN")
484
+ attr_accessor message: ::String
485
+ attr_accessor metadata: ::Hash[::String, ::String]
486
+ SENSITIVE: []
487
+ end
488
+
489
+ class RuleStatusCounts
490
+ attr_accessor failed: ::Integer
491
+ attr_accessor warning: ::Integer
492
+ attr_accessor info: ::Integer
493
+ attr_accessor passed: ::Integer
494
+ attr_accessor unknown: ::Integer
495
+ SENSITIVE: []
496
+ end
497
+
395
498
  class StartApplicationInput
396
499
  attr_accessor application_id: ::String
397
500
  SENSITIVE: []
@@ -412,6 +515,17 @@ module Aws::SsmSap
412
515
  SENSITIVE: []
413
516
  end
414
517
 
518
+ class StartConfigurationChecksInput
519
+ attr_accessor application_id: ::String
520
+ attr_accessor configuration_check_ids: ::Array[("SAP_CHECK_01" | "SAP_CHECK_02" | "SAP_CHECK_03")]
521
+ SENSITIVE: []
522
+ end
523
+
524
+ class StartConfigurationChecksOutput
525
+ attr_accessor configuration_check_operations: ::Array[Types::ConfigurationCheckOperation]
526
+ SENSITIVE: []
527
+ end
528
+
415
529
  class StopApplicationInput
416
530
  attr_accessor application_id: ::String
417
531
  attr_accessor stop_connected_entity: ("DBMS")
@@ -424,6 +538,14 @@ module Aws::SsmSap
424
538
  SENSITIVE: []
425
539
  end
426
540
 
541
+ class SubCheckResult
542
+ attr_accessor id: ::String
543
+ attr_accessor name: ::String
544
+ attr_accessor description: ::String
545
+ attr_accessor references: ::Array[::String]
546
+ SENSITIVE: []
547
+ end
548
+
427
549
  class TagResourceRequest
428
550
  attr_accessor resource_arn: ::String
429
551
  attr_accessor tags: ::Hash[::String, ::String]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssmsap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.42.0
4
+ version: 1.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services