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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 180d8e072b3974867f6b3fb425fb09aa0da5e083d60dd065a0a4cf6bb62797a4
4
- data.tar.gz: 57f0e0aa66829a8458580414a4982a3968be40c4c5bdc50613bc090d63da0f8b
3
+ metadata.gz: e6500257d69d70b395065ba70c495107c50792ffb2b32095db7847797e926e06
4
+ data.tar.gz: f9cca500004236cde69956cfc67793942f545be7dd9c5eb5b05a7d8d4fff6314
5
5
  SHA512:
6
- metadata.gz: 35ab18286db2e1821c3b76c2ff203b1b288933bb2ce0d3aa7791682d49ce4c5cb4deb732c16b35038f97c15f54f14cd0b60a5ed019e7897554443f9cfb4967f5
7
- data.tar.gz: 485101c44654535026d7db231fe9424e546f15f650de52837456374aa56741b1ddd8acfc4836ce94c26bbdbd3a757b97d8b3419184f00db2a815f2a73697a721
6
+ metadata.gz: 2e21025f5526843706d39f1f167b2b1688ce232a80dfffc7132396ea9f583e3e6d25ad3f00f7f12e585bd2184b3c586c2cf955f43b275fb9f8a22eab82c9c606
7
+ data.tar.gz: 33d688fd0e7bbcec25c20485ad46d59c8bbd66d7ded1cb6d375774dc400f0a389d79c9d2db5a7f0421e1ac2120604e48cebb7300d8368516e01da73ef479312a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2025-08-28)
5
+ ------------------
6
+
7
+ * Feature - Added support for Configuration Checks on SAP HANA Applications.
8
+
4
9
  1.42.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -662,6 +662,48 @@ module Aws::SsmSap
662
662
  req.send_request(options)
663
663
  end
664
664
 
665
+ # Gets the details of a configuration check operation by specifying the
666
+ # operation ID.
667
+ #
668
+ # @option params [required, String] :operation_id
669
+ # The ID of the configuration check operation.
670
+ #
671
+ # @return [Types::GetConfigurationCheckOperationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
672
+ #
673
+ # * {Types::GetConfigurationCheckOperationOutput#configuration_check_operation #configuration_check_operation} => Types::ConfigurationCheckOperation
674
+ #
675
+ # @example Request syntax with placeholder values
676
+ #
677
+ # resp = client.get_configuration_check_operation({
678
+ # operation_id: "OperationId", # required
679
+ # })
680
+ #
681
+ # @example Response structure
682
+ #
683
+ # resp.configuration_check_operation.id #=> String
684
+ # resp.configuration_check_operation.application_id #=> String
685
+ # resp.configuration_check_operation.status #=> String, one of "INPROGRESS", "SUCCESS", "ERROR"
686
+ # resp.configuration_check_operation.status_message #=> String
687
+ # resp.configuration_check_operation.configuration_check_id #=> String, one of "SAP_CHECK_01", "SAP_CHECK_02", "SAP_CHECK_03"
688
+ # resp.configuration_check_operation.configuration_check_name #=> String
689
+ # resp.configuration_check_operation.configuration_check_description #=> String
690
+ # resp.configuration_check_operation.start_time #=> Time
691
+ # resp.configuration_check_operation.end_time #=> Time
692
+ # resp.configuration_check_operation.rule_status_counts.failed #=> Integer
693
+ # resp.configuration_check_operation.rule_status_counts.warning #=> Integer
694
+ # resp.configuration_check_operation.rule_status_counts.info #=> Integer
695
+ # resp.configuration_check_operation.rule_status_counts.passed #=> Integer
696
+ # resp.configuration_check_operation.rule_status_counts.unknown #=> Integer
697
+ #
698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetConfigurationCheckOperation AWS API Documentation
699
+ #
700
+ # @overload get_configuration_check_operation(params = {})
701
+ # @param [Hash] params ({})
702
+ def get_configuration_check_operation(params = {}, options = {})
703
+ req = build_request(:get_configuration_check_operation, params)
704
+ req.send_request(options)
705
+ end
706
+
665
707
  # Gets the SAP HANA database of an application registered with AWS
666
708
  # Systems Manager for SAP.
667
709
  #
@@ -897,6 +939,128 @@ module Aws::SsmSap
897
939
  req.send_request(options)
898
940
  end
899
941
 
942
+ # Lists all configuration check types supported by AWS Systems Manager
943
+ # for SAP.
944
+ #
945
+ # @option params [Integer] :max_results
946
+ # The maximum number of results to return with a single call. To
947
+ # retrieve the remaining results, make another call with the returned
948
+ # nextToken value.
949
+ #
950
+ # @option params [String] :next_token
951
+ # The token for the next page of results.
952
+ #
953
+ # @return [Types::ListConfigurationCheckDefinitionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
954
+ #
955
+ # * {Types::ListConfigurationCheckDefinitionsOutput#configuration_checks #configuration_checks} => Array<Types::ConfigurationCheckDefinition>
956
+ # * {Types::ListConfigurationCheckDefinitionsOutput#next_token #next_token} => String
957
+ #
958
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
959
+ #
960
+ # @example Request syntax with placeholder values
961
+ #
962
+ # resp = client.list_configuration_check_definitions({
963
+ # max_results: 1,
964
+ # next_token: "NextToken",
965
+ # })
966
+ #
967
+ # @example Response structure
968
+ #
969
+ # resp.configuration_checks #=> Array
970
+ # resp.configuration_checks[0].id #=> String, one of "SAP_CHECK_01", "SAP_CHECK_02", "SAP_CHECK_03"
971
+ # resp.configuration_checks[0].name #=> String
972
+ # resp.configuration_checks[0].description #=> String
973
+ # resp.configuration_checks[0].applicable_application_types #=> Array
974
+ # resp.configuration_checks[0].applicable_application_types[0] #=> String, one of "HANA", "SAP_ABAP"
975
+ # resp.next_token #=> String
976
+ #
977
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListConfigurationCheckDefinitions AWS API Documentation
978
+ #
979
+ # @overload list_configuration_check_definitions(params = {})
980
+ # @param [Hash] params ({})
981
+ def list_configuration_check_definitions(params = {}, options = {})
982
+ req = build_request(:list_configuration_check_definitions, params)
983
+ req.send_request(options)
984
+ end
985
+
986
+ # Lists the configuration check operations performed by AWS Systems
987
+ # Manager for SAP.
988
+ #
989
+ # @option params [required, String] :application_id
990
+ # The ID of the application.
991
+ #
992
+ # @option params [String] :list_mode
993
+ # The mode for listing configuration check operations. Defaults to
994
+ # "LATEST\_PER\_CHECK".
995
+ #
996
+ # * LATEST\_PER\_CHECK - Will list the latest configuration check
997
+ # operation per check type.
998
+ #
999
+ # * ALL\_OPERATIONS - Will list all configuration check operations
1000
+ # performed on the application.
1001
+ #
1002
+ # @option params [Integer] :max_results
1003
+ # The maximum number of results to return with a single call. To
1004
+ # retrieve the remaining results, make another call with the returned
1005
+ # nextToken value.
1006
+ #
1007
+ # @option params [String] :next_token
1008
+ # The token for the next page of results.
1009
+ #
1010
+ # @option params [Array<Types::Filter>] :filters
1011
+ # The filters of an operation.
1012
+ #
1013
+ # @return [Types::ListConfigurationCheckOperationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1014
+ #
1015
+ # * {Types::ListConfigurationCheckOperationsOutput#configuration_check_operations #configuration_check_operations} => Array&lt;Types::ConfigurationCheckOperation&gt;
1016
+ # * {Types::ListConfigurationCheckOperationsOutput#next_token #next_token} => String
1017
+ #
1018
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1019
+ #
1020
+ # @example Request syntax with placeholder values
1021
+ #
1022
+ # resp = client.list_configuration_check_operations({
1023
+ # application_id: "ApplicationId", # required
1024
+ # list_mode: "ALL_OPERATIONS", # accepts ALL_OPERATIONS, LATEST_PER_CHECK
1025
+ # max_results: 1,
1026
+ # next_token: "NextToken",
1027
+ # filters: [
1028
+ # {
1029
+ # name: "FilterName", # required
1030
+ # value: "FilterValue", # required
1031
+ # operator: "Equals", # required, accepts Equals, GreaterThanOrEquals, LessThanOrEquals
1032
+ # },
1033
+ # ],
1034
+ # })
1035
+ #
1036
+ # @example Response structure
1037
+ #
1038
+ # resp.configuration_check_operations #=> Array
1039
+ # resp.configuration_check_operations[0].id #=> String
1040
+ # resp.configuration_check_operations[0].application_id #=> String
1041
+ # resp.configuration_check_operations[0].status #=> String, one of "INPROGRESS", "SUCCESS", "ERROR"
1042
+ # resp.configuration_check_operations[0].status_message #=> String
1043
+ # resp.configuration_check_operations[0].configuration_check_id #=> String, one of "SAP_CHECK_01", "SAP_CHECK_02", "SAP_CHECK_03"
1044
+ # resp.configuration_check_operations[0].configuration_check_name #=> String
1045
+ # resp.configuration_check_operations[0].configuration_check_description #=> String
1046
+ # resp.configuration_check_operations[0].start_time #=> Time
1047
+ # resp.configuration_check_operations[0].end_time #=> Time
1048
+ # resp.configuration_check_operations[0].rule_status_counts.failed #=> Integer
1049
+ # resp.configuration_check_operations[0].rule_status_counts.warning #=> Integer
1050
+ # resp.configuration_check_operations[0].rule_status_counts.info #=> Integer
1051
+ # resp.configuration_check_operations[0].rule_status_counts.passed #=> Integer
1052
+ # resp.configuration_check_operations[0].rule_status_counts.unknown #=> Integer
1053
+ # resp.next_token #=> String
1054
+ #
1055
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListConfigurationCheckOperations AWS API Documentation
1056
+ #
1057
+ # @overload list_configuration_check_operations(params = {})
1058
+ # @param [Hash] params ({})
1059
+ def list_configuration_check_operations(params = {}, options = {})
1060
+ req = build_request(:list_configuration_check_operations, params)
1061
+ req.send_request(options)
1062
+ end
1063
+
900
1064
  # Lists the SAP HANA databases of an application registered with AWS
901
1065
  # Systems Manager for SAP.
902
1066
  #
@@ -1086,6 +1250,103 @@ module Aws::SsmSap
1086
1250
  req.send_request(options)
1087
1251
  end
1088
1252
 
1253
+ # Lists the sub-check results of a specified configuration check
1254
+ # operation.
1255
+ #
1256
+ # @option params [required, String] :operation_id
1257
+ # The ID of the configuration check operation.
1258
+ #
1259
+ # @option params [Integer] :max_results
1260
+ # The maximum number of results to return with a single call. To
1261
+ # retrieve the remaining results, make another call with the returned
1262
+ # nextToken value.
1263
+ #
1264
+ # @option params [String] :next_token
1265
+ # The token for the next page of results.
1266
+ #
1267
+ # @return [Types::ListSubCheckResultsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1268
+ #
1269
+ # * {Types::ListSubCheckResultsOutput#sub_check_results #sub_check_results} => Array&lt;Types::SubCheckResult&gt;
1270
+ # * {Types::ListSubCheckResultsOutput#next_token #next_token} => String
1271
+ #
1272
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1273
+ #
1274
+ # @example Request syntax with placeholder values
1275
+ #
1276
+ # resp = client.list_sub_check_results({
1277
+ # operation_id: "OperationId", # required
1278
+ # max_results: 1,
1279
+ # next_token: "NextToken",
1280
+ # })
1281
+ #
1282
+ # @example Response structure
1283
+ #
1284
+ # resp.sub_check_results #=> Array
1285
+ # resp.sub_check_results[0].id #=> String
1286
+ # resp.sub_check_results[0].name #=> String
1287
+ # resp.sub_check_results[0].description #=> String
1288
+ # resp.sub_check_results[0].references #=> Array
1289
+ # resp.sub_check_results[0].references[0] #=> String
1290
+ # resp.next_token #=> String
1291
+ #
1292
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListSubCheckResults AWS API Documentation
1293
+ #
1294
+ # @overload list_sub_check_results(params = {})
1295
+ # @param [Hash] params ({})
1296
+ def list_sub_check_results(params = {}, options = {})
1297
+ req = build_request(:list_sub_check_results, params)
1298
+ req.send_request(options)
1299
+ end
1300
+
1301
+ # Lists the rules of a specified sub-check belonging to a configuration
1302
+ # check operation.
1303
+ #
1304
+ # @option params [required, String] :sub_check_result_id
1305
+ # The ID of the sub check result.
1306
+ #
1307
+ # @option params [Integer] :max_results
1308
+ # The maximum number of results to return with a single call. To
1309
+ # retrieve the remaining results, make another call with the returned
1310
+ # nextToken value.
1311
+ #
1312
+ # @option params [String] :next_token
1313
+ # The token for the next page of results.
1314
+ #
1315
+ # @return [Types::ListSubCheckRuleResultsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1316
+ #
1317
+ # * {Types::ListSubCheckRuleResultsOutput#rule_results #rule_results} => Array&lt;Types::RuleResult&gt;
1318
+ # * {Types::ListSubCheckRuleResultsOutput#next_token #next_token} => String
1319
+ #
1320
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1321
+ #
1322
+ # @example Request syntax with placeholder values
1323
+ #
1324
+ # resp = client.list_sub_check_rule_results({
1325
+ # sub_check_result_id: "SubCheckResultId", # required
1326
+ # max_results: 1,
1327
+ # next_token: "NextToken",
1328
+ # })
1329
+ #
1330
+ # @example Response structure
1331
+ #
1332
+ # resp.rule_results #=> Array
1333
+ # resp.rule_results[0].id #=> String
1334
+ # resp.rule_results[0].description #=> String
1335
+ # resp.rule_results[0].status #=> String, one of "PASSED", "FAILED", "WARNING", "INFO", "UNKNOWN"
1336
+ # resp.rule_results[0].message #=> String
1337
+ # resp.rule_results[0].metadata #=> Hash
1338
+ # resp.rule_results[0].metadata["RuleResultMetadataKey"] #=> String
1339
+ # resp.next_token #=> String
1340
+ #
1341
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListSubCheckRuleResults AWS API Documentation
1342
+ #
1343
+ # @overload list_sub_check_rule_results(params = {})
1344
+ # @param [Hash] params ({})
1345
+ def list_sub_check_rule_results(params = {}, options = {})
1346
+ req = build_request(:list_sub_check_rule_results, params)
1347
+ req.send_request(options)
1348
+ end
1349
+
1089
1350
  # Lists all tags on an SAP HANA application and/or database registered
1090
1351
  # with AWS Systems Manager for SAP.
1091
1352
  #
@@ -1308,6 +1569,53 @@ module Aws::SsmSap
1308
1569
  req.send_request(options)
1309
1570
  end
1310
1571
 
1572
+ # Initiates configuration check operations against a specified
1573
+ # application.
1574
+ #
1575
+ # @option params [required, String] :application_id
1576
+ # The ID of the application.
1577
+ #
1578
+ # @option params [Array<String>] :configuration_check_ids
1579
+ # The list of configuration checks to perform.
1580
+ #
1581
+ # @return [Types::StartConfigurationChecksOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1582
+ #
1583
+ # * {Types::StartConfigurationChecksOutput#configuration_check_operations #configuration_check_operations} => Array&lt;Types::ConfigurationCheckOperation&gt;
1584
+ #
1585
+ # @example Request syntax with placeholder values
1586
+ #
1587
+ # resp = client.start_configuration_checks({
1588
+ # application_id: "ApplicationId", # required
1589
+ # configuration_check_ids: ["SAP_CHECK_01"], # accepts SAP_CHECK_01, SAP_CHECK_02, SAP_CHECK_03
1590
+ # })
1591
+ #
1592
+ # @example Response structure
1593
+ #
1594
+ # resp.configuration_check_operations #=> Array
1595
+ # resp.configuration_check_operations[0].id #=> String
1596
+ # resp.configuration_check_operations[0].application_id #=> String
1597
+ # resp.configuration_check_operations[0].status #=> String, one of "INPROGRESS", "SUCCESS", "ERROR"
1598
+ # resp.configuration_check_operations[0].status_message #=> String
1599
+ # resp.configuration_check_operations[0].configuration_check_id #=> String, one of "SAP_CHECK_01", "SAP_CHECK_02", "SAP_CHECK_03"
1600
+ # resp.configuration_check_operations[0].configuration_check_name #=> String
1601
+ # resp.configuration_check_operations[0].configuration_check_description #=> String
1602
+ # resp.configuration_check_operations[0].start_time #=> Time
1603
+ # resp.configuration_check_operations[0].end_time #=> Time
1604
+ # resp.configuration_check_operations[0].rule_status_counts.failed #=> Integer
1605
+ # resp.configuration_check_operations[0].rule_status_counts.warning #=> Integer
1606
+ # resp.configuration_check_operations[0].rule_status_counts.info #=> Integer
1607
+ # resp.configuration_check_operations[0].rule_status_counts.passed #=> Integer
1608
+ # resp.configuration_check_operations[0].rule_status_counts.unknown #=> Integer
1609
+ #
1610
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/StartConfigurationChecks AWS API Documentation
1611
+ #
1612
+ # @overload start_configuration_checks(params = {})
1613
+ # @param [Hash] params ({})
1614
+ def start_configuration_checks(params = {}, options = {})
1615
+ req = build_request(:start_configuration_checks, params)
1616
+ req.send_request(options)
1617
+ end
1618
+
1311
1619
  # Request is an operation to stop an application.
1312
1620
  #
1313
1621
  # Parameter `ApplicationId` is required. Parameters
@@ -1489,7 +1797,7 @@ module Aws::SsmSap
1489
1797
  tracer: tracer
1490
1798
  )
1491
1799
  context[:gem_name] = 'aws-sdk-ssmsap'
1492
- context[:gem_version] = '1.42.0'
1800
+ context[:gem_version] = '1.43.0'
1493
1801
  Seahorse::Client::Request.new(handlers, context)
1494
1802
  end
1495
1803