@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
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { StartConfigurationChecksInput, StartConfigurationChecksOutput } 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 StartConfigurationChecksCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StartConfigurationChecksCommandInput extends StartConfigurationChecksInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StartConfigurationChecksCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StartConfigurationChecksCommandOutput extends StartConfigurationChecksOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StartConfigurationChecksCommand_base: {
|
|
25
|
+
new (input: StartConfigurationChecksCommandInput): import("@smithy/smithy-client").CommandImpl<StartConfigurationChecksCommandInput, StartConfigurationChecksCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: StartConfigurationChecksCommandInput): import("@smithy/smithy-client").CommandImpl<StartConfigurationChecksCommandInput, StartConfigurationChecksCommandOutput, SsmSapClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Initiates configuration check operations against a specified application.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SsmSapClient, StartConfigurationChecksCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import
|
|
35
|
+
* // const { SsmSapClient, StartConfigurationChecksCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import
|
|
36
|
+
* const client = new SsmSapClient(config);
|
|
37
|
+
* const input = { // StartConfigurationChecksInput
|
|
38
|
+
* ApplicationId: "STRING_VALUE", // required
|
|
39
|
+
* ConfigurationCheckIds: [ // ConfigurationCheckTypeList
|
|
40
|
+
* "SAP_CHECK_01" || "SAP_CHECK_02" || "SAP_CHECK_03",
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
43
|
+
* const command = new StartConfigurationChecksCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // StartConfigurationChecksOutput
|
|
46
|
+
* // ConfigurationCheckOperations: [ // ConfigurationCheckOperationList
|
|
47
|
+
* // { // ConfigurationCheckOperation
|
|
48
|
+
* // Id: "STRING_VALUE",
|
|
49
|
+
* // ApplicationId: "STRING_VALUE",
|
|
50
|
+
* // Status: "INPROGRESS" || "SUCCESS" || "ERROR",
|
|
51
|
+
* // StatusMessage: "STRING_VALUE",
|
|
52
|
+
* // ConfigurationCheckId: "SAP_CHECK_01" || "SAP_CHECK_02" || "SAP_CHECK_03",
|
|
53
|
+
* // ConfigurationCheckName: "STRING_VALUE",
|
|
54
|
+
* // ConfigurationCheckDescription: "STRING_VALUE",
|
|
55
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // RuleStatusCounts: { // RuleStatusCounts
|
|
58
|
+
* // Failed: Number("int"),
|
|
59
|
+
* // Warning: Number("int"),
|
|
60
|
+
* // Info: Number("int"),
|
|
61
|
+
* // Passed: Number("int"),
|
|
62
|
+
* // Unknown: Number("int"),
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
68
|
+
* ```
|
|
69
|
+
*
|
|
70
|
+
* @param StartConfigurationChecksCommandInput - {@link StartConfigurationChecksCommandInput}
|
|
71
|
+
* @returns {@link StartConfigurationChecksCommandOutput}
|
|
72
|
+
* @see {@link StartConfigurationChecksCommandInput} for command's `input` shape.
|
|
73
|
+
* @see {@link StartConfigurationChecksCommandOutput} for command's `response` shape.
|
|
74
|
+
* @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ConflictException} (client fault)
|
|
77
|
+
* <p>A conflict has occurred.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link InternalServerException} (server fault)
|
|
80
|
+
* <p>An internal error has occurred.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
83
|
+
* <p>The resource is not available.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ValidationException} (client fault)
|
|
86
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service. </p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link SsmSapServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from SsmSap service.</p>
|
|
90
|
+
*
|
|
91
|
+
*
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export declare class StartConfigurationChecksCommand extends StartConfigurationChecksCommand_base {
|
|
95
|
+
/** @internal type navigation helper, not in runtime. */
|
|
96
|
+
protected static __types: {
|
|
97
|
+
api: {
|
|
98
|
+
input: StartConfigurationChecksInput;
|
|
99
|
+
output: StartConfigurationChecksOutput;
|
|
100
|
+
};
|
|
101
|
+
sdk: {
|
|
102
|
+
input: StartConfigurationChecksCommandInput;
|
|
103
|
+
output: StartConfigurationChecksCommandOutput;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
}
|
|
@@ -27,10 +27,7 @@ declare const StopApplicationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Request is an operation to stop an application.</p>
|
|
31
|
-
* <p>Parameter <code>ApplicationId</code> is required. Parameters
|
|
32
|
-
* <code>StopConnectedEntity</code> and <code>IncludeEc2InstanceShutdown</code> are
|
|
33
|
-
* optional.</p>
|
|
30
|
+
* <p>Request is an operation to stop an application.</p> <p>Parameter <code>ApplicationId</code> is required. Parameters <code>StopConnectedEntity</code> and <code>IncludeEc2InstanceShutdown</code> are optional.</p>
|
|
34
31
|
* @example
|
|
35
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
33
|
* ```javascript
|
|
@@ -27,8 +27,7 @@ declare const UpdateApplicationSettingsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Updates the settings of an application registered with AWS Systems Manager for
|
|
31
|
-
* SAP.</p>
|
|
30
|
+
* <p>Updates the settings 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
|
|
@@ -2,19 +2,25 @@ export * from "./DeleteResourcePermissionCommand";
|
|
|
2
2
|
export * from "./DeregisterApplicationCommand";
|
|
3
3
|
export * from "./GetApplicationCommand";
|
|
4
4
|
export * from "./GetComponentCommand";
|
|
5
|
+
export * from "./GetConfigurationCheckOperationCommand";
|
|
5
6
|
export * from "./GetDatabaseCommand";
|
|
6
7
|
export * from "./GetOperationCommand";
|
|
7
8
|
export * from "./GetResourcePermissionCommand";
|
|
8
9
|
export * from "./ListApplicationsCommand";
|
|
9
10
|
export * from "./ListComponentsCommand";
|
|
11
|
+
export * from "./ListConfigurationCheckDefinitionsCommand";
|
|
12
|
+
export * from "./ListConfigurationCheckOperationsCommand";
|
|
10
13
|
export * from "./ListDatabasesCommand";
|
|
11
14
|
export * from "./ListOperationEventsCommand";
|
|
12
15
|
export * from "./ListOperationsCommand";
|
|
16
|
+
export * from "./ListSubCheckResultsCommand";
|
|
17
|
+
export * from "./ListSubCheckRuleResultsCommand";
|
|
13
18
|
export * from "./ListTagsForResourceCommand";
|
|
14
19
|
export * from "./PutResourcePermissionCommand";
|
|
15
20
|
export * from "./RegisterApplicationCommand";
|
|
16
21
|
export * from "./StartApplicationCommand";
|
|
17
22
|
export * from "./StartApplicationRefreshCommand";
|
|
23
|
+
export * from "./StartConfigurationChecksCommand";
|
|
18
24
|
export * from "./StopApplicationCommand";
|
|
19
25
|
export * from "./TagResourceCommand";
|
|
20
26
|
export * from "./UntagResourceCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>This API reference provides descriptions, syntax, and other details about each of the
|
|
3
|
-
* actions and data types for AWS Systems Manager for SAP. The topic for each action shows
|
|
4
|
-
* the API request parameters and responses. </p>
|
|
2
|
+
* <p>This API reference provides descriptions, syntax, and other details about each of the actions and data types for AWS Systems Manager for SAP. The topic for each action shows the API request parameters and responses. </p>
|
|
5
3
|
*
|
|
6
4
|
* @packageDocumentation
|
|
7
5
|
*/
|