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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssmsap/client.rb +309 -1
- data/lib/aws-sdk-ssmsap/client_api.rb +226 -2
- data/lib/aws-sdk-ssmsap/types.rb +429 -0
- data/lib/aws-sdk-ssmsap.rb +1 -1
- data/sig/client.rbs +80 -0
- data/sig/types.rbs +122 -0
- metadata +1 -1
data/lib/aws-sdk-ssmsap/types.rb
CHANGED
@@ -379,6 +379,100 @@ module Aws::SsmSap
|
|
379
379
|
include Aws::Structure
|
380
380
|
end
|
381
381
|
|
382
|
+
# Represents a configuration check definition supported by AWS Systems
|
383
|
+
# Manager for SAP.
|
384
|
+
#
|
385
|
+
# @!attribute [rw] id
|
386
|
+
# The unique identifier of the configuration check.
|
387
|
+
# @return [String]
|
388
|
+
#
|
389
|
+
# @!attribute [rw] name
|
390
|
+
# The name of the configuration check.
|
391
|
+
# @return [String]
|
392
|
+
#
|
393
|
+
# @!attribute [rw] description
|
394
|
+
# A description of what the configuration check validates.
|
395
|
+
# @return [String]
|
396
|
+
#
|
397
|
+
# @!attribute [rw] applicable_application_types
|
398
|
+
# The list of SSMSAP application types that this configuration check
|
399
|
+
# can be evaluated against.
|
400
|
+
# @return [Array<String>]
|
401
|
+
#
|
402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ConfigurationCheckDefinition AWS API Documentation
|
403
|
+
#
|
404
|
+
class ConfigurationCheckDefinition < Struct.new(
|
405
|
+
:id,
|
406
|
+
:name,
|
407
|
+
:description,
|
408
|
+
:applicable_application_types)
|
409
|
+
SENSITIVE = []
|
410
|
+
include Aws::Structure
|
411
|
+
end
|
412
|
+
|
413
|
+
# Represents a configuration check operation that has been executed
|
414
|
+
# against an application.
|
415
|
+
#
|
416
|
+
# @!attribute [rw] id
|
417
|
+
# The unique identifier of the configuration check operation.
|
418
|
+
# @return [String]
|
419
|
+
#
|
420
|
+
# @!attribute [rw] application_id
|
421
|
+
# The ID of the application against which the configuration check was
|
422
|
+
# performed.
|
423
|
+
# @return [String]
|
424
|
+
#
|
425
|
+
# @!attribute [rw] status
|
426
|
+
# The current status of the configuration check operation.
|
427
|
+
# @return [String]
|
428
|
+
#
|
429
|
+
# @!attribute [rw] status_message
|
430
|
+
# A message providing additional details about the status of the
|
431
|
+
# configuration check operation.
|
432
|
+
# @return [String]
|
433
|
+
#
|
434
|
+
# @!attribute [rw] configuration_check_id
|
435
|
+
# The unique identifier of the configuration check that was performed.
|
436
|
+
# @return [String]
|
437
|
+
#
|
438
|
+
# @!attribute [rw] configuration_check_name
|
439
|
+
# The name of the configuration check that was performed.
|
440
|
+
# @return [String]
|
441
|
+
#
|
442
|
+
# @!attribute [rw] configuration_check_description
|
443
|
+
# A description of the configuration check that was performed.
|
444
|
+
# @return [String]
|
445
|
+
#
|
446
|
+
# @!attribute [rw] start_time
|
447
|
+
# The time at which the configuration check operation started.
|
448
|
+
# @return [Time]
|
449
|
+
#
|
450
|
+
# @!attribute [rw] end_time
|
451
|
+
# The time at which the configuration check operation completed.
|
452
|
+
# @return [Time]
|
453
|
+
#
|
454
|
+
# @!attribute [rw] rule_status_counts
|
455
|
+
# A summary of all the rule results, showing counts for each status
|
456
|
+
# type.
|
457
|
+
# @return [Types::RuleStatusCounts]
|
458
|
+
#
|
459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ConfigurationCheckOperation AWS API Documentation
|
460
|
+
#
|
461
|
+
class ConfigurationCheckOperation < Struct.new(
|
462
|
+
:id,
|
463
|
+
:application_id,
|
464
|
+
:status,
|
465
|
+
:status_message,
|
466
|
+
:configuration_check_id,
|
467
|
+
:configuration_check_name,
|
468
|
+
:configuration_check_description,
|
469
|
+
:start_time,
|
470
|
+
:end_time,
|
471
|
+
:rule_status_counts)
|
472
|
+
SENSITIVE = []
|
473
|
+
include Aws::Structure
|
474
|
+
end
|
475
|
+
|
382
476
|
# A conflict has occurred.
|
383
477
|
#
|
384
478
|
# @!attribute [rw] message
|
@@ -679,6 +773,30 @@ module Aws::SsmSap
|
|
679
773
|
include Aws::Structure
|
680
774
|
end
|
681
775
|
|
776
|
+
# @!attribute [rw] operation_id
|
777
|
+
# The ID of the configuration check operation.
|
778
|
+
# @return [String]
|
779
|
+
#
|
780
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetConfigurationCheckOperationInput AWS API Documentation
|
781
|
+
#
|
782
|
+
class GetConfigurationCheckOperationInput < Struct.new(
|
783
|
+
:operation_id)
|
784
|
+
SENSITIVE = []
|
785
|
+
include Aws::Structure
|
786
|
+
end
|
787
|
+
|
788
|
+
# @!attribute [rw] configuration_check_operation
|
789
|
+
# Returns the details of a configuration check operation.
|
790
|
+
# @return [Types::ConfigurationCheckOperation]
|
791
|
+
#
|
792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetConfigurationCheckOperationOutput AWS API Documentation
|
793
|
+
#
|
794
|
+
class GetConfigurationCheckOperationOutput < Struct.new(
|
795
|
+
:configuration_check_operation)
|
796
|
+
SENSITIVE = []
|
797
|
+
include Aws::Structure
|
798
|
+
end
|
799
|
+
|
682
800
|
# @!attribute [rw] application_id
|
683
801
|
# The ID of the application.
|
684
802
|
# @return [String]
|
@@ -938,6 +1056,104 @@ module Aws::SsmSap
|
|
938
1056
|
include Aws::Structure
|
939
1057
|
end
|
940
1058
|
|
1059
|
+
# @!attribute [rw] max_results
|
1060
|
+
# The maximum number of results to return with a single call. To
|
1061
|
+
# retrieve the remaining results, make another call with the returned
|
1062
|
+
# nextToken value.
|
1063
|
+
# @return [Integer]
|
1064
|
+
#
|
1065
|
+
# @!attribute [rw] next_token
|
1066
|
+
# The token for the next page of results.
|
1067
|
+
# @return [String]
|
1068
|
+
#
|
1069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListConfigurationCheckDefinitionsInput AWS API Documentation
|
1070
|
+
#
|
1071
|
+
class ListConfigurationCheckDefinitionsInput < Struct.new(
|
1072
|
+
:max_results,
|
1073
|
+
:next_token)
|
1074
|
+
SENSITIVE = []
|
1075
|
+
include Aws::Structure
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
# @!attribute [rw] configuration_checks
|
1079
|
+
# The configuration check types supported by AWS Systems Manager for
|
1080
|
+
# SAP.
|
1081
|
+
# @return [Array<Types::ConfigurationCheckDefinition>]
|
1082
|
+
#
|
1083
|
+
# @!attribute [rw] next_token
|
1084
|
+
# The token to use to retrieve the next page of results. This value is
|
1085
|
+
# null when there are no more results to return.
|
1086
|
+
# @return [String]
|
1087
|
+
#
|
1088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListConfigurationCheckDefinitionsOutput AWS API Documentation
|
1089
|
+
#
|
1090
|
+
class ListConfigurationCheckDefinitionsOutput < Struct.new(
|
1091
|
+
:configuration_checks,
|
1092
|
+
:next_token)
|
1093
|
+
SENSITIVE = []
|
1094
|
+
include Aws::Structure
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
# @!attribute [rw] application_id
|
1098
|
+
# The ID of the application.
|
1099
|
+
# @return [String]
|
1100
|
+
#
|
1101
|
+
# @!attribute [rw] list_mode
|
1102
|
+
# The mode for listing configuration check operations. Defaults to
|
1103
|
+
# "LATEST\_PER\_CHECK".
|
1104
|
+
#
|
1105
|
+
# * LATEST\_PER\_CHECK - Will list the latest configuration check
|
1106
|
+
# operation per check type.
|
1107
|
+
#
|
1108
|
+
# * ALL\_OPERATIONS - Will list all configuration check operations
|
1109
|
+
# performed on the application.
|
1110
|
+
# @return [String]
|
1111
|
+
#
|
1112
|
+
# @!attribute [rw] max_results
|
1113
|
+
# The maximum number of results to return with a single call. To
|
1114
|
+
# retrieve the remaining results, make another call with the returned
|
1115
|
+
# nextToken value.
|
1116
|
+
# @return [Integer]
|
1117
|
+
#
|
1118
|
+
# @!attribute [rw] next_token
|
1119
|
+
# The token for the next page of results.
|
1120
|
+
# @return [String]
|
1121
|
+
#
|
1122
|
+
# @!attribute [rw] filters
|
1123
|
+
# The filters of an operation.
|
1124
|
+
# @return [Array<Types::Filter>]
|
1125
|
+
#
|
1126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListConfigurationCheckOperationsInput AWS API Documentation
|
1127
|
+
#
|
1128
|
+
class ListConfigurationCheckOperationsInput < Struct.new(
|
1129
|
+
:application_id,
|
1130
|
+
:list_mode,
|
1131
|
+
:max_results,
|
1132
|
+
:next_token,
|
1133
|
+
:filters)
|
1134
|
+
SENSITIVE = []
|
1135
|
+
include Aws::Structure
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
# @!attribute [rw] configuration_check_operations
|
1139
|
+
# The configuration check operations performed by AWS Systems Manager
|
1140
|
+
# for SAP.
|
1141
|
+
# @return [Array<Types::ConfigurationCheckOperation>]
|
1142
|
+
#
|
1143
|
+
# @!attribute [rw] next_token
|
1144
|
+
# The token to use to retrieve the next page of results. This value is
|
1145
|
+
# null when there are no more results to return.
|
1146
|
+
# @return [String]
|
1147
|
+
#
|
1148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListConfigurationCheckOperationsOutput AWS API Documentation
|
1149
|
+
#
|
1150
|
+
class ListConfigurationCheckOperationsOutput < Struct.new(
|
1151
|
+
:configuration_check_operations,
|
1152
|
+
:next_token)
|
1153
|
+
SENSITIVE = []
|
1154
|
+
include Aws::Structure
|
1155
|
+
end
|
1156
|
+
|
941
1157
|
# @!attribute [rw] application_id
|
942
1158
|
# The ID of the application.
|
943
1159
|
# @return [String]
|
@@ -1090,6 +1306,91 @@ module Aws::SsmSap
|
|
1090
1306
|
include Aws::Structure
|
1091
1307
|
end
|
1092
1308
|
|
1309
|
+
# @!attribute [rw] operation_id
|
1310
|
+
# The ID of the configuration check operation.
|
1311
|
+
# @return [String]
|
1312
|
+
#
|
1313
|
+
# @!attribute [rw] max_results
|
1314
|
+
# The maximum number of results to return with a single call. To
|
1315
|
+
# retrieve the remaining results, make another call with the returned
|
1316
|
+
# nextToken value.
|
1317
|
+
# @return [Integer]
|
1318
|
+
#
|
1319
|
+
# @!attribute [rw] next_token
|
1320
|
+
# The token for the next page of results.
|
1321
|
+
# @return [String]
|
1322
|
+
#
|
1323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListSubCheckResultsInput AWS API Documentation
|
1324
|
+
#
|
1325
|
+
class ListSubCheckResultsInput < Struct.new(
|
1326
|
+
:operation_id,
|
1327
|
+
:max_results,
|
1328
|
+
:next_token)
|
1329
|
+
SENSITIVE = []
|
1330
|
+
include Aws::Structure
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
# @!attribute [rw] sub_check_results
|
1334
|
+
# The sub-check results of a configuration check operation.
|
1335
|
+
# @return [Array<Types::SubCheckResult>]
|
1336
|
+
#
|
1337
|
+
# @!attribute [rw] next_token
|
1338
|
+
# The token to use to retrieve the next page of results. This value is
|
1339
|
+
# null when there are no more results to return.
|
1340
|
+
# @return [String]
|
1341
|
+
#
|
1342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListSubCheckResultsOutput AWS API Documentation
|
1343
|
+
#
|
1344
|
+
class ListSubCheckResultsOutput < Struct.new(
|
1345
|
+
:sub_check_results,
|
1346
|
+
:next_token)
|
1347
|
+
SENSITIVE = []
|
1348
|
+
include Aws::Structure
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
# @!attribute [rw] sub_check_result_id
|
1352
|
+
# The ID of the sub check result.
|
1353
|
+
# @return [String]
|
1354
|
+
#
|
1355
|
+
# @!attribute [rw] max_results
|
1356
|
+
# The maximum number of results to return with a single call. To
|
1357
|
+
# retrieve the remaining results, make another call with the returned
|
1358
|
+
# nextToken value.
|
1359
|
+
# @return [Integer]
|
1360
|
+
#
|
1361
|
+
# @!attribute [rw] next_token
|
1362
|
+
# The token for the next page of results.
|
1363
|
+
# @return [String]
|
1364
|
+
#
|
1365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListSubCheckRuleResultsInput AWS API Documentation
|
1366
|
+
#
|
1367
|
+
class ListSubCheckRuleResultsInput < Struct.new(
|
1368
|
+
:sub_check_result_id,
|
1369
|
+
:max_results,
|
1370
|
+
:next_token)
|
1371
|
+
SENSITIVE = []
|
1372
|
+
include Aws::Structure
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
# @!attribute [rw] rule_results
|
1376
|
+
# The rule results of a sub-check belonging to a configuration check
|
1377
|
+
# operation.
|
1378
|
+
# @return [Array<Types::RuleResult>]
|
1379
|
+
#
|
1380
|
+
# @!attribute [rw] next_token
|
1381
|
+
# The token to use to retrieve the next page of results. This value is
|
1382
|
+
# null when there are no more results to return.
|
1383
|
+
# @return [String]
|
1384
|
+
#
|
1385
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListSubCheckRuleResultsOutput AWS API Documentation
|
1386
|
+
#
|
1387
|
+
class ListSubCheckRuleResultsOutput < Struct.new(
|
1388
|
+
:rule_results,
|
1389
|
+
:next_token)
|
1390
|
+
SENSITIVE = []
|
1391
|
+
include Aws::Structure
|
1392
|
+
end
|
1393
|
+
|
1093
1394
|
# @!attribute [rw] resource_arn
|
1094
1395
|
# The Amazon Resource Name (ARN) of the resource.
|
1095
1396
|
# @return [String]
|
@@ -1407,6 +1708,74 @@ module Aws::SsmSap
|
|
1407
1708
|
include Aws::Structure
|
1408
1709
|
end
|
1409
1710
|
|
1711
|
+
# Represents the result of a single rule within a configuration check.
|
1712
|
+
#
|
1713
|
+
# @!attribute [rw] id
|
1714
|
+
# The unique identifier of the rule result.
|
1715
|
+
# @return [String]
|
1716
|
+
#
|
1717
|
+
# @!attribute [rw] description
|
1718
|
+
# A description of what the rule validates.
|
1719
|
+
# @return [String]
|
1720
|
+
#
|
1721
|
+
# @!attribute [rw] status
|
1722
|
+
# The status of the rule result.
|
1723
|
+
# @return [String]
|
1724
|
+
#
|
1725
|
+
# @!attribute [rw] message
|
1726
|
+
# A message providing details about the rule result.
|
1727
|
+
# @return [String]
|
1728
|
+
#
|
1729
|
+
# @!attribute [rw] metadata
|
1730
|
+
# Additional metadata associated with the rule result.
|
1731
|
+
# @return [Hash<String,String>]
|
1732
|
+
#
|
1733
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RuleResult AWS API Documentation
|
1734
|
+
#
|
1735
|
+
class RuleResult < Struct.new(
|
1736
|
+
:id,
|
1737
|
+
:description,
|
1738
|
+
:status,
|
1739
|
+
:message,
|
1740
|
+
:metadata)
|
1741
|
+
SENSITIVE = []
|
1742
|
+
include Aws::Structure
|
1743
|
+
end
|
1744
|
+
|
1745
|
+
# A summary of rule results, providing counts for each status type.
|
1746
|
+
#
|
1747
|
+
# @!attribute [rw] failed
|
1748
|
+
# The number of rules that failed.
|
1749
|
+
# @return [Integer]
|
1750
|
+
#
|
1751
|
+
# @!attribute [rw] warning
|
1752
|
+
# The number of rules that returned warnings.
|
1753
|
+
# @return [Integer]
|
1754
|
+
#
|
1755
|
+
# @!attribute [rw] info
|
1756
|
+
# The number of rules that returned informational results.
|
1757
|
+
# @return [Integer]
|
1758
|
+
#
|
1759
|
+
# @!attribute [rw] passed
|
1760
|
+
# The number of rules that passed.
|
1761
|
+
# @return [Integer]
|
1762
|
+
#
|
1763
|
+
# @!attribute [rw] unknown
|
1764
|
+
# The number of rules with unknown status.
|
1765
|
+
# @return [Integer]
|
1766
|
+
#
|
1767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RuleStatusCounts AWS API Documentation
|
1768
|
+
#
|
1769
|
+
class RuleStatusCounts < Struct.new(
|
1770
|
+
:failed,
|
1771
|
+
:warning,
|
1772
|
+
:info,
|
1773
|
+
:passed,
|
1774
|
+
:unknown)
|
1775
|
+
SENSITIVE = []
|
1776
|
+
include Aws::Structure
|
1777
|
+
end
|
1778
|
+
|
1410
1779
|
# @!attribute [rw] application_id
|
1411
1780
|
# The ID of the application.
|
1412
1781
|
# @return [String]
|
@@ -1455,6 +1824,35 @@ module Aws::SsmSap
|
|
1455
1824
|
include Aws::Structure
|
1456
1825
|
end
|
1457
1826
|
|
1827
|
+
# @!attribute [rw] application_id
|
1828
|
+
# The ID of the application.
|
1829
|
+
# @return [String]
|
1830
|
+
#
|
1831
|
+
# @!attribute [rw] configuration_check_ids
|
1832
|
+
# The list of configuration checks to perform.
|
1833
|
+
# @return [Array<String>]
|
1834
|
+
#
|
1835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/StartConfigurationChecksInput AWS API Documentation
|
1836
|
+
#
|
1837
|
+
class StartConfigurationChecksInput < Struct.new(
|
1838
|
+
:application_id,
|
1839
|
+
:configuration_check_ids)
|
1840
|
+
SENSITIVE = []
|
1841
|
+
include Aws::Structure
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
# @!attribute [rw] configuration_check_operations
|
1845
|
+
# The configuration check operations that were started.
|
1846
|
+
# @return [Array<Types::ConfigurationCheckOperation>]
|
1847
|
+
#
|
1848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/StartConfigurationChecksOutput AWS API Documentation
|
1849
|
+
#
|
1850
|
+
class StartConfigurationChecksOutput < Struct.new(
|
1851
|
+
:configuration_check_operations)
|
1852
|
+
SENSITIVE = []
|
1853
|
+
include Aws::Structure
|
1854
|
+
end
|
1855
|
+
|
1458
1856
|
# @!attribute [rw] application_id
|
1459
1857
|
# The ID of the application.
|
1460
1858
|
# @return [String]
|
@@ -1494,6 +1892,37 @@ module Aws::SsmSap
|
|
1494
1892
|
include Aws::Structure
|
1495
1893
|
end
|
1496
1894
|
|
1895
|
+
# Represents the result of a sub-check within a configuration check
|
1896
|
+
# operation.
|
1897
|
+
#
|
1898
|
+
# @!attribute [rw] id
|
1899
|
+
# The unique identifier of the sub-check result.
|
1900
|
+
# @return [String]
|
1901
|
+
#
|
1902
|
+
# @!attribute [rw] name
|
1903
|
+
# The name of the sub-check.
|
1904
|
+
# @return [String]
|
1905
|
+
#
|
1906
|
+
# @!attribute [rw] description
|
1907
|
+
# A description of what the sub-check validates.
|
1908
|
+
# @return [String]
|
1909
|
+
#
|
1910
|
+
# @!attribute [rw] references
|
1911
|
+
# A list of references or documentation links related to the
|
1912
|
+
# sub-check.
|
1913
|
+
# @return [Array<String>]
|
1914
|
+
#
|
1915
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/SubCheckResult AWS API Documentation
|
1916
|
+
#
|
1917
|
+
class SubCheckResult < Struct.new(
|
1918
|
+
:id,
|
1919
|
+
:name,
|
1920
|
+
:description,
|
1921
|
+
:references)
|
1922
|
+
SENSITIVE = []
|
1923
|
+
include Aws::Structure
|
1924
|
+
end
|
1925
|
+
|
1497
1926
|
# @!attribute [rw] resource_arn
|
1498
1927
|
# The Amazon Resource Name (ARN) of the resource.
|
1499
1928
|
# @return [String]
|
data/lib/aws-sdk-ssmsap.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -124,6 +124,16 @@ module Aws
|
|
124
124
|
) -> _GetComponentResponseSuccess
|
125
125
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetComponentResponseSuccess
|
126
126
|
|
127
|
+
interface _GetConfigurationCheckOperationResponseSuccess
|
128
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationCheckOperationOutput]
|
129
|
+
def configuration_check_operation: () -> Types::ConfigurationCheckOperation
|
130
|
+
end
|
131
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SsmSap/Client.html#get_configuration_check_operation-instance_method
|
132
|
+
def get_configuration_check_operation: (
|
133
|
+
operation_id: ::String
|
134
|
+
) -> _GetConfigurationCheckOperationResponseSuccess
|
135
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationCheckOperationResponseSuccess
|
136
|
+
|
127
137
|
interface _GetDatabaseResponseSuccess
|
128
138
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDatabaseOutput]
|
129
139
|
def database: () -> Types::Database
|
@@ -191,6 +201,39 @@ module Aws
|
|
191
201
|
) -> _ListComponentsResponseSuccess
|
192
202
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListComponentsResponseSuccess
|
193
203
|
|
204
|
+
interface _ListConfigurationCheckDefinitionsResponseSuccess
|
205
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationCheckDefinitionsOutput]
|
206
|
+
def configuration_checks: () -> ::Array[Types::ConfigurationCheckDefinition]
|
207
|
+
def next_token: () -> ::String
|
208
|
+
end
|
209
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SsmSap/Client.html#list_configuration_check_definitions-instance_method
|
210
|
+
def list_configuration_check_definitions: (
|
211
|
+
?max_results: ::Integer,
|
212
|
+
?next_token: ::String
|
213
|
+
) -> _ListConfigurationCheckDefinitionsResponseSuccess
|
214
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationCheckDefinitionsResponseSuccess
|
215
|
+
|
216
|
+
interface _ListConfigurationCheckOperationsResponseSuccess
|
217
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationCheckOperationsOutput]
|
218
|
+
def configuration_check_operations: () -> ::Array[Types::ConfigurationCheckOperation]
|
219
|
+
def next_token: () -> ::String
|
220
|
+
end
|
221
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SsmSap/Client.html#list_configuration_check_operations-instance_method
|
222
|
+
def list_configuration_check_operations: (
|
223
|
+
application_id: ::String,
|
224
|
+
?list_mode: ("ALL_OPERATIONS" | "LATEST_PER_CHECK"),
|
225
|
+
?max_results: ::Integer,
|
226
|
+
?next_token: ::String,
|
227
|
+
?filters: Array[
|
228
|
+
{
|
229
|
+
name: ::String,
|
230
|
+
value: ::String,
|
231
|
+
operator: ("Equals" | "GreaterThanOrEquals" | "LessThanOrEquals")
|
232
|
+
},
|
233
|
+
]
|
234
|
+
) -> _ListConfigurationCheckOperationsResponseSuccess
|
235
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationCheckOperationsResponseSuccess
|
236
|
+
|
194
237
|
interface _ListDatabasesResponseSuccess
|
195
238
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDatabasesOutput]
|
196
239
|
def databases: () -> ::Array[Types::DatabaseSummary]
|
@@ -245,6 +288,32 @@ module Aws
|
|
245
288
|
) -> _ListOperationsResponseSuccess
|
246
289
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOperationsResponseSuccess
|
247
290
|
|
291
|
+
interface _ListSubCheckResultsResponseSuccess
|
292
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSubCheckResultsOutput]
|
293
|
+
def sub_check_results: () -> ::Array[Types::SubCheckResult]
|
294
|
+
def next_token: () -> ::String
|
295
|
+
end
|
296
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SsmSap/Client.html#list_sub_check_results-instance_method
|
297
|
+
def list_sub_check_results: (
|
298
|
+
operation_id: ::String,
|
299
|
+
?max_results: ::Integer,
|
300
|
+
?next_token: ::String
|
301
|
+
) -> _ListSubCheckResultsResponseSuccess
|
302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubCheckResultsResponseSuccess
|
303
|
+
|
304
|
+
interface _ListSubCheckRuleResultsResponseSuccess
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSubCheckRuleResultsOutput]
|
306
|
+
def rule_results: () -> ::Array[Types::RuleResult]
|
307
|
+
def next_token: () -> ::String
|
308
|
+
end
|
309
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SsmSap/Client.html#list_sub_check_rule_results-instance_method
|
310
|
+
def list_sub_check_rule_results: (
|
311
|
+
sub_check_result_id: ::String,
|
312
|
+
?max_results: ::Integer,
|
313
|
+
?next_token: ::String
|
314
|
+
) -> _ListSubCheckRuleResultsResponseSuccess
|
315
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubCheckRuleResultsResponseSuccess
|
316
|
+
|
248
317
|
interface _ListTagsForResourceResponseSuccess
|
249
318
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
250
319
|
def tags: () -> ::Hash[::String, ::String]
|
@@ -318,6 +387,17 @@ module Aws
|
|
318
387
|
) -> _StartApplicationRefreshResponseSuccess
|
319
388
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartApplicationRefreshResponseSuccess
|
320
389
|
|
390
|
+
interface _StartConfigurationChecksResponseSuccess
|
391
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartConfigurationChecksOutput]
|
392
|
+
def configuration_check_operations: () -> ::Array[Types::ConfigurationCheckOperation]
|
393
|
+
end
|
394
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SsmSap/Client.html#start_configuration_checks-instance_method
|
395
|
+
def start_configuration_checks: (
|
396
|
+
application_id: ::String,
|
397
|
+
?configuration_check_ids: Array[("SAP_CHECK_01" | "SAP_CHECK_02" | "SAP_CHECK_03")]
|
398
|
+
) -> _StartConfigurationChecksResponseSuccess
|
399
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartConfigurationChecksResponseSuccess
|
400
|
+
|
321
401
|
interface _StopApplicationResponseSuccess
|
322
402
|
include ::Seahorse::Client::_ResponseSuccess[Types::StopApplicationOutput]
|
323
403
|
def operation_id: () -> ::String
|