@aws-sdk/client-ssm-sap 3.876.0 → 3.879.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.
- package/README.md +49 -3
- package/dist-cjs/index.js +369 -7
- package/dist-es/SsmSap.js +12 -0
- package/dist-es/commands/GetConfigurationCheckOperationCommand.js +22 -0
- package/dist-es/commands/ListConfigurationCheckDefinitionsCommand.js +22 -0
- package/dist-es/commands/ListConfigurationCheckOperationsCommand.js +22 -0
- package/dist-es/commands/ListSubCheckResultsCommand.js +22 -0
- package/dist-es/commands/ListSubCheckRuleResultsCommand.js +22 -0
- package/dist-es/commands/StartConfigurationChecksCommand.js +22 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +21 -5
- package/dist-es/pagination/ListConfigurationCheckDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/ListConfigurationCheckOperationsPaginator.js +4 -0
- package/dist-es/pagination/ListSubCheckResultsPaginator.js +4 -0
- package/dist-es/pagination/ListSubCheckRuleResultsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +198 -0
- package/dist-types/SsmSap.d.ts +44 -3
- package/dist-types/SsmSapClient.d.ts +9 -5
- package/dist-types/commands/DeregisterApplicationCommand.d.ts +1 -2
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -2
- package/dist-types/commands/GetComponentCommand.d.ts +1 -2
- package/dist-types/commands/GetConfigurationCheckOperationCommand.d.ts +95 -0
- package/dist-types/commands/GetDatabaseCommand.d.ts +1 -2
- package/dist-types/commands/ListConfigurationCheckDefinitionsCommand.d.ts +89 -0
- package/dist-types/commands/ListConfigurationCheckOperationsCommand.d.ts +111 -0
- package/dist-types/commands/ListDatabasesCommand.d.ts +1 -2
- package/dist-types/commands/ListOperationEventsCommand.d.ts +1 -3
- package/dist-types/commands/ListSubCheckResultsCommand.d.ts +90 -0
- package/dist-types/commands/ListSubCheckRuleResultsCommand.d.ts +91 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -2
- package/dist-types/commands/RegisterApplicationCommand.d.ts +1 -8
- package/dist-types/commands/StartApplicationCommand.d.ts +1 -2
- package/dist-types/commands/StartConfigurationChecksCommand.d.ts +106 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +1 -4
- package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/index.d.ts +1 -3
- package/dist-types/models/models_0.d.ts +453 -156
- package/dist-types/pagination/ListConfigurationCheckDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConfigurationCheckOperationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSubCheckResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSubCheckRuleResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/SsmSap.d.ts +109 -0
- package/dist-types/ts3.4/SsmSapClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/GetConfigurationCheckOperationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConfigurationCheckDefinitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConfigurationCheckOperationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSubCheckResultsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSubCheckRuleResultsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartConfigurationChecksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +117 -7
- package/dist-types/ts3.4/pagination/ListConfigurationCheckDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConfigurationCheckOperationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSubCheckResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSubCheckRuleResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +12 -12
|
@@ -27,8 +27,7 @@ declare const GetApplicationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Gets an application registered with AWS Systems Manager for SAP. It also returns the
|
|
31
|
-
* components of the application.</p>
|
|
30
|
+
* <p>Gets an application registered with AWS Systems Manager for SAP. It also returns the components of the application.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -27,8 +27,7 @@ declare const GetComponentCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Gets the component of an application registered with AWS Systems Manager for
|
|
31
|
-
* SAP.</p>
|
|
30
|
+
* <p>Gets the component of an application registered with AWS Systems Manager for SAP.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetConfigurationCheckOperationInput, GetConfigurationCheckOperationOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetConfigurationCheckOperationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetConfigurationCheckOperationCommandInput extends GetConfigurationCheckOperationInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetConfigurationCheckOperationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetConfigurationCheckOperationCommandOutput extends GetConfigurationCheckOperationOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetConfigurationCheckOperationCommand_base: {
|
|
25
|
+
new (input: GetConfigurationCheckOperationCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfigurationCheckOperationCommandInput, GetConfigurationCheckOperationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetConfigurationCheckOperationCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfigurationCheckOperationCommandInput, GetConfigurationCheckOperationCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets the details of a configuration check operation by specifying the operation ID.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SsmSapClient, GetConfigurationCheckOperationCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import
|
|
35
|
+
* // const { SsmSapClient, GetConfigurationCheckOperationCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
|
|
36
|
+
* const client = new SsmSapClient(config);
|
|
37
|
+
* const input = { // GetConfigurationCheckOperationInput
|
|
38
|
+
* OperationId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new GetConfigurationCheckOperationCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // GetConfigurationCheckOperationOutput
|
|
43
|
+
* // ConfigurationCheckOperation: { // ConfigurationCheckOperation
|
|
44
|
+
* // Id: "STRING_VALUE",
|
|
45
|
+
* // ApplicationId: "STRING_VALUE",
|
|
46
|
+
* // Status: "INPROGRESS" || "SUCCESS" || "ERROR",
|
|
47
|
+
* // StatusMessage: "STRING_VALUE",
|
|
48
|
+
* // ConfigurationCheckId: "SAP_CHECK_01" || "SAP_CHECK_02" || "SAP_CHECK_03",
|
|
49
|
+
* // ConfigurationCheckName: "STRING_VALUE",
|
|
50
|
+
* // ConfigurationCheckDescription: "STRING_VALUE",
|
|
51
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // RuleStatusCounts: { // RuleStatusCounts
|
|
54
|
+
* // Failed: Number("int"),
|
|
55
|
+
* // Warning: Number("int"),
|
|
56
|
+
* // Info: Number("int"),
|
|
57
|
+
* // Passed: Number("int"),
|
|
58
|
+
* // Unknown: Number("int"),
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
65
|
+
* @param GetConfigurationCheckOperationCommandInput - {@link GetConfigurationCheckOperationCommandInput}
|
|
66
|
+
* @returns {@link GetConfigurationCheckOperationCommandOutput}
|
|
67
|
+
* @see {@link GetConfigurationCheckOperationCommandInput} for command's `input` shape.
|
|
68
|
+
* @see {@link GetConfigurationCheckOperationCommandOutput} for command's `response` shape.
|
|
69
|
+
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InternalServerException} (server fault)
|
|
72
|
+
* <p>An internal error has occurred.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ValidationException} (client fault)
|
|
75
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link SsmSapServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
79
|
+
*
|
|
80
|
+
*
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class GetConfigurationCheckOperationCommand extends GetConfigurationCheckOperationCommand_base {
|
|
84
|
+
/** @internal type navigation helper, not in runtime. */
|
|
85
|
+
protected static __types: {
|
|
86
|
+
api: {
|
|
87
|
+
input: GetConfigurationCheckOperationInput;
|
|
88
|
+
output: GetConfigurationCheckOperationOutput;
|
|
89
|
+
};
|
|
90
|
+
sdk: {
|
|
91
|
+
input: GetConfigurationCheckOperationCommandInput;
|
|
92
|
+
output: GetConfigurationCheckOperationCommandOutput;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
}
|
|
@@ -27,8 +27,7 @@ declare const GetDatabaseCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Gets the SAP HANA database of an application registered with AWS Systems Manager for
|
|
31
|
-
* SAP.</p>
|
|
30
|
+
* <p>Gets the SAP HANA database of an application registered with AWS Systems Manager for SAP.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListConfigurationCheckDefinitionsInput, ListConfigurationCheckDefinitionsOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListConfigurationCheckDefinitionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListConfigurationCheckDefinitionsCommandInput extends ListConfigurationCheckDefinitionsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListConfigurationCheckDefinitionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListConfigurationCheckDefinitionsCommandOutput extends ListConfigurationCheckDefinitionsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListConfigurationCheckDefinitionsCommand_base: {
|
|
25
|
+
new (input: ListConfigurationCheckDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfigurationCheckDefinitionsCommandInput, ListConfigurationCheckDefinitionsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListConfigurationCheckDefinitionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConfigurationCheckDefinitionsCommandInput, ListConfigurationCheckDefinitionsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists all configuration check types supported by AWS Systems Manager for SAP.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SsmSapClient, ListConfigurationCheckDefinitionsCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import
|
|
35
|
+
* // const { SsmSapClient, ListConfigurationCheckDefinitionsCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
|
|
36
|
+
* const client = new SsmSapClient(config);
|
|
37
|
+
* const input = { // ListConfigurationCheckDefinitionsInput
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* NextToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
41
|
+
* const command = new ListConfigurationCheckDefinitionsCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // ListConfigurationCheckDefinitionsOutput
|
|
44
|
+
* // ConfigurationChecks: [ // ConfigurationCheckDefinitionList
|
|
45
|
+
* // { // ConfigurationCheckDefinition
|
|
46
|
+
* // Id: "SAP_CHECK_01" || "SAP_CHECK_02" || "SAP_CHECK_03",
|
|
47
|
+
* // Name: "STRING_VALUE",
|
|
48
|
+
* // Description: "STRING_VALUE",
|
|
49
|
+
* // ApplicableApplicationTypes: [ // ApplicationTypeList
|
|
50
|
+
* // "HANA" || "SAP_ABAP",
|
|
51
|
+
* // ],
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // NextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param ListConfigurationCheckDefinitionsCommandInput - {@link ListConfigurationCheckDefinitionsCommandInput}
|
|
60
|
+
* @returns {@link ListConfigurationCheckDefinitionsCommandOutput}
|
|
61
|
+
* @see {@link ListConfigurationCheckDefinitionsCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link ListConfigurationCheckDefinitionsCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerException} (server fault)
|
|
66
|
+
* <p>An internal error has occurred.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ValidationException} (client fault)
|
|
69
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link SsmSapServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
73
|
+
*
|
|
74
|
+
*
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export declare class ListConfigurationCheckDefinitionsCommand extends ListConfigurationCheckDefinitionsCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: ListConfigurationCheckDefinitionsInput;
|
|
82
|
+
output: ListConfigurationCheckDefinitionsOutput;
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: ListConfigurationCheckDefinitionsCommandInput;
|
|
86
|
+
output: ListConfigurationCheckDefinitionsCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListConfigurationCheckOperationsInput, ListConfigurationCheckOperationsOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListConfigurationCheckOperationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListConfigurationCheckOperationsCommandInput extends ListConfigurationCheckOperationsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListConfigurationCheckOperationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListConfigurationCheckOperationsCommandOutput extends ListConfigurationCheckOperationsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListConfigurationCheckOperationsCommand_base: {
|
|
25
|
+
new (input: ListConfigurationCheckOperationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfigurationCheckOperationsCommandInput, ListConfigurationCheckOperationsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListConfigurationCheckOperationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfigurationCheckOperationsCommandInput, ListConfigurationCheckOperationsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists the configuration check operations performed by AWS Systems Manager for SAP.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SsmSapClient, ListConfigurationCheckOperationsCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import
|
|
35
|
+
* // const { SsmSapClient, ListConfigurationCheckOperationsCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
|
|
36
|
+
* const client = new SsmSapClient(config);
|
|
37
|
+
* const input = { // ListConfigurationCheckOperationsInput
|
|
38
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
39
|
+
* ListMode: "ALL_OPERATIONS" || "LATEST_PER_CHECK",
|
|
40
|
+
* MaxResults: Number("int"),
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* Filters: [ // FilterList
|
|
43
|
+
* { // Filter
|
|
44
|
+
* Name: "STRING_VALUE", // required
|
|
45
|
+
* Value: "STRING_VALUE", // required
|
|
46
|
+
* Operator: "Equals" || "GreaterThanOrEquals" || "LessThanOrEquals", // required
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* };
|
|
50
|
+
* const command = new ListConfigurationCheckOperationsCommand(input);
|
|
51
|
+
* const response = await client.send(command);
|
|
52
|
+
* // { // ListConfigurationCheckOperationsOutput
|
|
53
|
+
* // ConfigurationCheckOperations: [ // ConfigurationCheckOperationList
|
|
54
|
+
* // { // ConfigurationCheckOperation
|
|
55
|
+
* // Id: "STRING_VALUE",
|
|
56
|
+
* // ApplicationId: "STRING_VALUE",
|
|
57
|
+
* // Status: "INPROGRESS" || "SUCCESS" || "ERROR",
|
|
58
|
+
* // StatusMessage: "STRING_VALUE",
|
|
59
|
+
* // ConfigurationCheckId: "SAP_CHECK_01" || "SAP_CHECK_02" || "SAP_CHECK_03",
|
|
60
|
+
* // ConfigurationCheckName: "STRING_VALUE",
|
|
61
|
+
* // ConfigurationCheckDescription: "STRING_VALUE",
|
|
62
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
63
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
64
|
+
* // RuleStatusCounts: { // RuleStatusCounts
|
|
65
|
+
* // Failed: Number("int"),
|
|
66
|
+
* // Warning: Number("int"),
|
|
67
|
+
* // Info: Number("int"),
|
|
68
|
+
* // Passed: Number("int"),
|
|
69
|
+
* // Unknown: Number("int"),
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // NextToken: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
76
|
+
* ```
|
|
77
|
+
*
|
|
78
|
+
* @param ListConfigurationCheckOperationsCommandInput - {@link ListConfigurationCheckOperationsCommandInput}
|
|
79
|
+
* @returns {@link ListConfigurationCheckOperationsCommandOutput}
|
|
80
|
+
* @see {@link ListConfigurationCheckOperationsCommandInput} for command's `input` shape.
|
|
81
|
+
* @see {@link ListConfigurationCheckOperationsCommandOutput} for command's `response` shape.
|
|
82
|
+
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link InternalServerException} (server fault)
|
|
85
|
+
* <p>An internal error has occurred.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
88
|
+
* <p>The resource is not available.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ValidationException} (client fault)
|
|
91
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link SsmSapServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
95
|
+
*
|
|
96
|
+
*
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export declare class ListConfigurationCheckOperationsCommand extends ListConfigurationCheckOperationsCommand_base {
|
|
100
|
+
/** @internal type navigation helper, not in runtime. */
|
|
101
|
+
protected static __types: {
|
|
102
|
+
api: {
|
|
103
|
+
input: ListConfigurationCheckOperationsInput;
|
|
104
|
+
output: ListConfigurationCheckOperationsOutput;
|
|
105
|
+
};
|
|
106
|
+
sdk: {
|
|
107
|
+
input: ListConfigurationCheckOperationsCommandInput;
|
|
108
|
+
output: ListConfigurationCheckOperationsCommandOutput;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
}
|
|
@@ -27,8 +27,7 @@ declare const ListDatabasesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists the SAP HANA databases of an application registered with AWS Systems Manager for
|
|
31
|
-
* SAP.</p>
|
|
30
|
+
* <p>Lists the SAP HANA databases of an application registered with AWS Systems Manager for SAP.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -27,9 +27,7 @@ declare const ListOperationEventsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns a list of operations events.</p>
|
|
31
|
-
* <p>Available parameters include <code>OperationID</code>, as well as optional parameters
|
|
32
|
-
* <code>MaxResults</code>, <code>NextToken</code>, and <code>Filters</code>.</p>
|
|
30
|
+
* <p>Returns a list of operations events.</p> <p>Available parameters include <code>OperationID</code>, as well as optional parameters <code>MaxResults</code>, <code>NextToken</code>, and <code>Filters</code>.</p>
|
|
33
31
|
* @example
|
|
34
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
33
|
* ```javascript
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListSubCheckResultsInput, ListSubCheckResultsOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListSubCheckResultsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListSubCheckResultsCommandInput extends ListSubCheckResultsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListSubCheckResultsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListSubCheckResultsCommandOutput extends ListSubCheckResultsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListSubCheckResultsCommand_base: {
|
|
25
|
+
new (input: ListSubCheckResultsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSubCheckResultsCommandInput, ListSubCheckResultsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListSubCheckResultsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSubCheckResultsCommandInput, ListSubCheckResultsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists the sub-check results of a specified configuration check operation.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SsmSapClient, ListSubCheckResultsCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import
|
|
35
|
+
* // const { SsmSapClient, ListSubCheckResultsCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
|
|
36
|
+
* const client = new SsmSapClient(config);
|
|
37
|
+
* const input = { // ListSubCheckResultsInput
|
|
38
|
+
* OperationId: "STRING_VALUE", // required
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* NextToken: "STRING_VALUE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new ListSubCheckResultsCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // ListSubCheckResultsOutput
|
|
45
|
+
* // SubCheckResults: [ // SubCheckResultList
|
|
46
|
+
* // { // SubCheckResult
|
|
47
|
+
* // Id: "STRING_VALUE",
|
|
48
|
+
* // Name: "STRING_VALUE",
|
|
49
|
+
* // Description: "STRING_VALUE",
|
|
50
|
+
* // References: [ // SubCheckReferencesList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // NextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* @param ListSubCheckResultsCommandInput - {@link ListSubCheckResultsCommandInput}
|
|
61
|
+
* @returns {@link ListSubCheckResultsCommandOutput}
|
|
62
|
+
* @see {@link ListSubCheckResultsCommandInput} for command's `input` shape.
|
|
63
|
+
* @see {@link ListSubCheckResultsCommandOutput} for command's `response` shape.
|
|
64
|
+
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InternalServerException} (server fault)
|
|
67
|
+
* <p>An internal error has occurred.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ValidationException} (client fault)
|
|
70
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link SsmSapServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
74
|
+
*
|
|
75
|
+
*
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class ListSubCheckResultsCommand extends ListSubCheckResultsCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: ListSubCheckResultsInput;
|
|
83
|
+
output: ListSubCheckResultsOutput;
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: ListSubCheckResultsCommandInput;
|
|
87
|
+
output: ListSubCheckResultsCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListSubCheckRuleResultsInput, ListSubCheckRuleResultsOutput } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListSubCheckRuleResultsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListSubCheckRuleResultsCommandInput extends ListSubCheckRuleResultsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListSubCheckRuleResultsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListSubCheckRuleResultsCommandOutput extends ListSubCheckRuleResultsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListSubCheckRuleResultsCommand_base: {
|
|
25
|
+
new (input: ListSubCheckRuleResultsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSubCheckRuleResultsCommandInput, ListSubCheckRuleResultsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListSubCheckRuleResultsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSubCheckRuleResultsCommandInput, ListSubCheckRuleResultsCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists the rules of a specified sub-check belonging to a configuration check operation.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SsmSapClient, ListSubCheckRuleResultsCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import
|
|
35
|
+
* // const { SsmSapClient, ListSubCheckRuleResultsCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
|
|
36
|
+
* const client = new SsmSapClient(config);
|
|
37
|
+
* const input = { // ListSubCheckRuleResultsInput
|
|
38
|
+
* SubCheckResultId: "STRING_VALUE", // required
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* NextToken: "STRING_VALUE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new ListSubCheckRuleResultsCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // ListSubCheckRuleResultsOutput
|
|
45
|
+
* // RuleResults: [ // RuleResultList
|
|
46
|
+
* // { // RuleResult
|
|
47
|
+
* // Id: "STRING_VALUE",
|
|
48
|
+
* // Description: "STRING_VALUE",
|
|
49
|
+
* // Status: "PASSED" || "FAILED" || "WARNING" || "INFO" || "UNKNOWN",
|
|
50
|
+
* // Message: "STRING_VALUE",
|
|
51
|
+
* // Metadata: { // RuleResultMetadata
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // NextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param ListSubCheckRuleResultsCommandInput - {@link ListSubCheckRuleResultsCommandInput}
|
|
62
|
+
* @returns {@link ListSubCheckRuleResultsCommandOutput}
|
|
63
|
+
* @see {@link ListSubCheckRuleResultsCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link ListSubCheckRuleResultsCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalServerException} (server fault)
|
|
68
|
+
* <p>An internal error has occurred.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link SsmSapServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
75
|
+
*
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class ListSubCheckRuleResultsCommand extends ListSubCheckRuleResultsCommand_base {
|
|
80
|
+
/** @internal type navigation helper, not in runtime. */
|
|
81
|
+
protected static __types: {
|
|
82
|
+
api: {
|
|
83
|
+
input: ListSubCheckRuleResultsInput;
|
|
84
|
+
output: ListSubCheckRuleResultsOutput;
|
|
85
|
+
};
|
|
86
|
+
sdk: {
|
|
87
|
+
input: ListSubCheckRuleResultsCommandInput;
|
|
88
|
+
output: ListSubCheckRuleResultsCommandOutput;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
}
|
|
@@ -27,8 +27,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists all tags on an SAP HANA application and/or database registered with AWS Systems
|
|
31
|
-
* Manager for SAP.</p>
|
|
30
|
+
* <p>Lists all tags on an SAP HANA application and/or database registered with AWS Systems Manager for SAP.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -27,14 +27,7 @@ declare const RegisterApplicationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Register an SAP application with AWS Systems Manager for SAP. You must meet the
|
|
31
|
-
* following requirements before registering. </p>
|
|
32
|
-
* <p>The SAP application you want to register with AWS Systems Manager for SAP is running
|
|
33
|
-
* on Amazon EC2.</p>
|
|
34
|
-
* <p>AWS Systems Manager Agent must be setup on an Amazon EC2 instance along with the required
|
|
35
|
-
* IAM permissions.</p>
|
|
36
|
-
* <p>Amazon EC2 instance(s) must have access to the secrets created in AWS Secrets Manager to
|
|
37
|
-
* manage SAP applications and components.</p>
|
|
30
|
+
* <p>Register an SAP application with AWS Systems Manager for SAP. You must meet the following requirements before registering. </p> <p>The SAP application you want to register with AWS Systems Manager for SAP is running on Amazon EC2.</p> <p>AWS Systems Manager Agent must be setup on an Amazon EC2 instance along with the required IAM permissions.</p> <p>Amazon EC2 instance(s) must have access to the secrets created in AWS Secrets Manager to manage SAP applications and components.</p>
|
|
38
31
|
* @example
|
|
39
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
40
33
|
* ```javascript
|
|
@@ -27,8 +27,7 @@ declare const StartApplicationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Request is an operation which starts an application.</p>
|
|
31
|
-
* <p>Parameter <code>ApplicationId</code> is required.</p>
|
|
30
|
+
* <p>Request is an operation which starts an application.</p> <p>Parameter <code>ApplicationId</code> is required.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|