@aws-sdk/client-ssm-sap 3.873.0 → 3.878.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 +6 -6
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListConfigurationCheckDefinitionsCommandInput, ListConfigurationCheckDefinitionsCommandOutput } from "../commands/ListConfigurationCheckDefinitionsCommand";
|
|
3
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListConfigurationCheckDefinitions: (config: SsmSapPaginationConfiguration, input: ListConfigurationCheckDefinitionsCommandInput, ...rest: any[]) => Paginator<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListConfigurationCheckOperationsCommandInput, ListConfigurationCheckOperationsCommandOutput } from "../commands/ListConfigurationCheckOperationsCommand";
|
|
3
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListConfigurationCheckOperations: (config: SsmSapPaginationConfiguration, input: ListConfigurationCheckOperationsCommandInput, ...rest: any[]) => Paginator<ListConfigurationCheckOperationsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSubCheckResultsCommandInput, ListSubCheckResultsCommandOutput } from "../commands/ListSubCheckResultsCommand";
|
|
3
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListSubCheckResults: (config: SsmSapPaginationConfiguration, input: ListSubCheckResultsCommandInput, ...rest: any[]) => Paginator<ListSubCheckResultsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSubCheckRuleResultsCommandInput, ListSubCheckRuleResultsCommandOutput } from "../commands/ListSubCheckRuleResultsCommand";
|
|
3
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListSubCheckRuleResults: (config: SsmSapPaginationConfiguration, input: ListSubCheckRuleResultsCommandInput, ...rest: any[]) => Paginator<ListSubCheckRuleResultsCommandOutput>;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListApplicationsPaginator";
|
|
3
3
|
export * from "./ListComponentsPaginator";
|
|
4
|
+
export * from "./ListConfigurationCheckDefinitionsPaginator";
|
|
5
|
+
export * from "./ListConfigurationCheckOperationsPaginator";
|
|
4
6
|
export * from "./ListDatabasesPaginator";
|
|
5
7
|
export * from "./ListOperationEventsPaginator";
|
|
6
8
|
export * from "./ListOperationsPaginator";
|
|
9
|
+
export * from "./ListSubCheckResultsPaginator";
|
|
10
|
+
export * from "./ListSubCheckRuleResultsPaginator";
|
|
@@ -4,19 +4,25 @@ import { DeleteResourcePermissionCommandInput, DeleteResourcePermissionCommandOu
|
|
|
4
4
|
import { DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput } from "../commands/DeregisterApplicationCommand";
|
|
5
5
|
import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
|
|
6
6
|
import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
|
|
7
|
+
import { GetConfigurationCheckOperationCommandInput, GetConfigurationCheckOperationCommandOutput } from "../commands/GetConfigurationCheckOperationCommand";
|
|
7
8
|
import { GetDatabaseCommandInput, GetDatabaseCommandOutput } from "../commands/GetDatabaseCommand";
|
|
8
9
|
import { GetOperationCommandInput, GetOperationCommandOutput } from "../commands/GetOperationCommand";
|
|
9
10
|
import { GetResourcePermissionCommandInput, GetResourcePermissionCommandOutput } from "../commands/GetResourcePermissionCommand";
|
|
10
11
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
11
12
|
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
13
|
+
import { ListConfigurationCheckDefinitionsCommandInput, ListConfigurationCheckDefinitionsCommandOutput } from "../commands/ListConfigurationCheckDefinitionsCommand";
|
|
14
|
+
import { ListConfigurationCheckOperationsCommandInput, ListConfigurationCheckOperationsCommandOutput } from "../commands/ListConfigurationCheckOperationsCommand";
|
|
12
15
|
import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
|
|
13
16
|
import { ListOperationEventsCommandInput, ListOperationEventsCommandOutput } from "../commands/ListOperationEventsCommand";
|
|
14
17
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "../commands/ListOperationsCommand";
|
|
18
|
+
import { ListSubCheckResultsCommandInput, ListSubCheckResultsCommandOutput } from "../commands/ListSubCheckResultsCommand";
|
|
19
|
+
import { ListSubCheckRuleResultsCommandInput, ListSubCheckRuleResultsCommandOutput } from "../commands/ListSubCheckRuleResultsCommand";
|
|
15
20
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
16
21
|
import { PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput } from "../commands/PutResourcePermissionCommand";
|
|
17
22
|
import { RegisterApplicationCommandInput, RegisterApplicationCommandOutput } from "../commands/RegisterApplicationCommand";
|
|
18
23
|
import { StartApplicationCommandInput, StartApplicationCommandOutput } from "../commands/StartApplicationCommand";
|
|
19
24
|
import { StartApplicationRefreshCommandInput, StartApplicationRefreshCommandOutput } from "../commands/StartApplicationRefreshCommand";
|
|
25
|
+
import { StartConfigurationChecksCommandInput, StartConfigurationChecksCommandOutput } from "../commands/StartConfigurationChecksCommand";
|
|
20
26
|
import { StopApplicationCommandInput, StopApplicationCommandOutput } from "../commands/StopApplicationCommand";
|
|
21
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
22
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -37,6 +43,10 @@ export declare const se_GetApplicationCommand: (input: GetApplicationCommandInpu
|
|
|
37
43
|
* serializeAws_restJson1GetComponentCommand
|
|
38
44
|
*/
|
|
39
45
|
export declare const se_GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_restJson1GetConfigurationCheckOperationCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_GetConfigurationCheckOperationCommand: (input: GetConfigurationCheckOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
50
|
/**
|
|
41
51
|
* serializeAws_restJson1GetDatabaseCommand
|
|
42
52
|
*/
|
|
@@ -57,6 +67,14 @@ export declare const se_ListApplicationsCommand: (input: ListApplicationsCommand
|
|
|
57
67
|
* serializeAws_restJson1ListComponentsCommand
|
|
58
68
|
*/
|
|
59
69
|
export declare const se_ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_restJson1ListConfigurationCheckDefinitionsCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_ListConfigurationCheckDefinitionsCommand: (input: ListConfigurationCheckDefinitionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* serializeAws_restJson1ListConfigurationCheckOperationsCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const se_ListConfigurationCheckOperationsCommand: (input: ListConfigurationCheckOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
78
|
/**
|
|
61
79
|
* serializeAws_restJson1ListDatabasesCommand
|
|
62
80
|
*/
|
|
@@ -69,6 +87,14 @@ export declare const se_ListOperationEventsCommand: (input: ListOperationEventsC
|
|
|
69
87
|
* serializeAws_restJson1ListOperationsCommand
|
|
70
88
|
*/
|
|
71
89
|
export declare const se_ListOperationsCommand: (input: ListOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
+
/**
|
|
91
|
+
* serializeAws_restJson1ListSubCheckResultsCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const se_ListSubCheckResultsCommand: (input: ListSubCheckResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
+
/**
|
|
95
|
+
* serializeAws_restJson1ListSubCheckRuleResultsCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const se_ListSubCheckRuleResultsCommand: (input: ListSubCheckRuleResultsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
98
|
/**
|
|
73
99
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
74
100
|
*/
|
|
@@ -89,6 +115,10 @@ export declare const se_StartApplicationCommand: (input: StartApplicationCommand
|
|
|
89
115
|
* serializeAws_restJson1StartApplicationRefreshCommand
|
|
90
116
|
*/
|
|
91
117
|
export declare const se_StartApplicationRefreshCommand: (input: StartApplicationRefreshCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
+
/**
|
|
119
|
+
* serializeAws_restJson1StartConfigurationChecksCommand
|
|
120
|
+
*/
|
|
121
|
+
export declare const se_StartConfigurationChecksCommand: (input: StartConfigurationChecksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
122
|
/**
|
|
93
123
|
* serializeAws_restJson1StopApplicationCommand
|
|
94
124
|
*/
|
|
@@ -121,6 +151,10 @@ export declare const de_GetApplicationCommand: (output: __HttpResponse, context:
|
|
|
121
151
|
* deserializeAws_restJson1GetComponentCommand
|
|
122
152
|
*/
|
|
123
153
|
export declare const de_GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
|
|
154
|
+
/**
|
|
155
|
+
* deserializeAws_restJson1GetConfigurationCheckOperationCommand
|
|
156
|
+
*/
|
|
157
|
+
export declare const de_GetConfigurationCheckOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigurationCheckOperationCommandOutput>;
|
|
124
158
|
/**
|
|
125
159
|
* deserializeAws_restJson1GetDatabaseCommand
|
|
126
160
|
*/
|
|
@@ -141,6 +175,14 @@ export declare const de_ListApplicationsCommand: (output: __HttpResponse, contex
|
|
|
141
175
|
* deserializeAws_restJson1ListComponentsCommand
|
|
142
176
|
*/
|
|
143
177
|
export declare const de_ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
|
|
178
|
+
/**
|
|
179
|
+
* deserializeAws_restJson1ListConfigurationCheckDefinitionsCommand
|
|
180
|
+
*/
|
|
181
|
+
export declare const de_ListConfigurationCheckDefinitionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
182
|
+
/**
|
|
183
|
+
* deserializeAws_restJson1ListConfigurationCheckOperationsCommand
|
|
184
|
+
*/
|
|
185
|
+
export declare const de_ListConfigurationCheckOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationCheckOperationsCommandOutput>;
|
|
144
186
|
/**
|
|
145
187
|
* deserializeAws_restJson1ListDatabasesCommand
|
|
146
188
|
*/
|
|
@@ -153,6 +195,14 @@ export declare const de_ListOperationEventsCommand: (output: __HttpResponse, con
|
|
|
153
195
|
* deserializeAws_restJson1ListOperationsCommand
|
|
154
196
|
*/
|
|
155
197
|
export declare const de_ListOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOperationsCommandOutput>;
|
|
198
|
+
/**
|
|
199
|
+
* deserializeAws_restJson1ListSubCheckResultsCommand
|
|
200
|
+
*/
|
|
201
|
+
export declare const de_ListSubCheckResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSubCheckResultsCommandOutput>;
|
|
202
|
+
/**
|
|
203
|
+
* deserializeAws_restJson1ListSubCheckRuleResultsCommand
|
|
204
|
+
*/
|
|
205
|
+
export declare const de_ListSubCheckRuleResultsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSubCheckRuleResultsCommandOutput>;
|
|
156
206
|
/**
|
|
157
207
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
158
208
|
*/
|
|
@@ -173,6 +223,10 @@ export declare const de_StartApplicationCommand: (output: __HttpResponse, contex
|
|
|
173
223
|
* deserializeAws_restJson1StartApplicationRefreshCommand
|
|
174
224
|
*/
|
|
175
225
|
export declare const de_StartApplicationRefreshCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartApplicationRefreshCommandOutput>;
|
|
226
|
+
/**
|
|
227
|
+
* deserializeAws_restJson1StartConfigurationChecksCommand
|
|
228
|
+
*/
|
|
229
|
+
export declare const de_StartConfigurationChecksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartConfigurationChecksCommandOutput>;
|
|
176
230
|
/**
|
|
177
231
|
* deserializeAws_restJson1StopApplicationCommand
|
|
178
232
|
*/
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
GetComponentCommandInput,
|
|
16
16
|
GetComponentCommandOutput,
|
|
17
17
|
} from "./commands/GetComponentCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetConfigurationCheckOperationCommandInput,
|
|
20
|
+
GetConfigurationCheckOperationCommandOutput,
|
|
21
|
+
} from "./commands/GetConfigurationCheckOperationCommand";
|
|
18
22
|
import {
|
|
19
23
|
GetDatabaseCommandInput,
|
|
20
24
|
GetDatabaseCommandOutput,
|
|
@@ -35,6 +39,14 @@ import {
|
|
|
35
39
|
ListComponentsCommandInput,
|
|
36
40
|
ListComponentsCommandOutput,
|
|
37
41
|
} from "./commands/ListComponentsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListConfigurationCheckDefinitionsCommandInput,
|
|
44
|
+
ListConfigurationCheckDefinitionsCommandOutput,
|
|
45
|
+
} from "./commands/ListConfigurationCheckDefinitionsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListConfigurationCheckOperationsCommandInput,
|
|
48
|
+
ListConfigurationCheckOperationsCommandOutput,
|
|
49
|
+
} from "./commands/ListConfigurationCheckOperationsCommand";
|
|
38
50
|
import {
|
|
39
51
|
ListDatabasesCommandInput,
|
|
40
52
|
ListDatabasesCommandOutput,
|
|
@@ -47,6 +59,14 @@ import {
|
|
|
47
59
|
ListOperationsCommandInput,
|
|
48
60
|
ListOperationsCommandOutput,
|
|
49
61
|
} from "./commands/ListOperationsCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListSubCheckResultsCommandInput,
|
|
64
|
+
ListSubCheckResultsCommandOutput,
|
|
65
|
+
} from "./commands/ListSubCheckResultsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListSubCheckRuleResultsCommandInput,
|
|
68
|
+
ListSubCheckRuleResultsCommandOutput,
|
|
69
|
+
} from "./commands/ListSubCheckRuleResultsCommand";
|
|
50
70
|
import {
|
|
51
71
|
ListTagsForResourceCommandInput,
|
|
52
72
|
ListTagsForResourceCommandOutput,
|
|
@@ -67,6 +87,10 @@ import {
|
|
|
67
87
|
StartApplicationRefreshCommandInput,
|
|
68
88
|
StartApplicationRefreshCommandOutput,
|
|
69
89
|
} from "./commands/StartApplicationRefreshCommand";
|
|
90
|
+
import {
|
|
91
|
+
StartConfigurationChecksCommandInput,
|
|
92
|
+
StartConfigurationChecksCommandOutput,
|
|
93
|
+
} from "./commands/StartConfigurationChecksCommand";
|
|
70
94
|
import {
|
|
71
95
|
StopApplicationCommandInput,
|
|
72
96
|
StopApplicationCommandOutput,
|
|
@@ -138,6 +162,19 @@ export interface SsmSap {
|
|
|
138
162
|
options: __HttpHandlerOptions,
|
|
139
163
|
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
140
164
|
): void;
|
|
165
|
+
getConfigurationCheckOperation(
|
|
166
|
+
args: GetConfigurationCheckOperationCommandInput,
|
|
167
|
+
options?: __HttpHandlerOptions
|
|
168
|
+
): Promise<GetConfigurationCheckOperationCommandOutput>;
|
|
169
|
+
getConfigurationCheckOperation(
|
|
170
|
+
args: GetConfigurationCheckOperationCommandInput,
|
|
171
|
+
cb: (err: any, data?: GetConfigurationCheckOperationCommandOutput) => void
|
|
172
|
+
): void;
|
|
173
|
+
getConfigurationCheckOperation(
|
|
174
|
+
args: GetConfigurationCheckOperationCommandInput,
|
|
175
|
+
options: __HttpHandlerOptions,
|
|
176
|
+
cb: (err: any, data?: GetConfigurationCheckOperationCommandOutput) => void
|
|
177
|
+
): void;
|
|
141
178
|
getDatabase(): Promise<GetDatabaseCommandOutput>;
|
|
142
179
|
getDatabase(
|
|
143
180
|
args: GetDatabaseCommandInput,
|
|
@@ -206,6 +243,39 @@ export interface SsmSap {
|
|
|
206
243
|
options: __HttpHandlerOptions,
|
|
207
244
|
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
208
245
|
): void;
|
|
246
|
+
listConfigurationCheckDefinitions(): Promise<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
247
|
+
listConfigurationCheckDefinitions(
|
|
248
|
+
args: ListConfigurationCheckDefinitionsCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
251
|
+
listConfigurationCheckDefinitions(
|
|
252
|
+
args: ListConfigurationCheckDefinitionsCommandInput,
|
|
253
|
+
cb: (
|
|
254
|
+
err: any,
|
|
255
|
+
data?: ListConfigurationCheckDefinitionsCommandOutput
|
|
256
|
+
) => void
|
|
257
|
+
): void;
|
|
258
|
+
listConfigurationCheckDefinitions(
|
|
259
|
+
args: ListConfigurationCheckDefinitionsCommandInput,
|
|
260
|
+
options: __HttpHandlerOptions,
|
|
261
|
+
cb: (
|
|
262
|
+
err: any,
|
|
263
|
+
data?: ListConfigurationCheckDefinitionsCommandOutput
|
|
264
|
+
) => void
|
|
265
|
+
): void;
|
|
266
|
+
listConfigurationCheckOperations(
|
|
267
|
+
args: ListConfigurationCheckOperationsCommandInput,
|
|
268
|
+
options?: __HttpHandlerOptions
|
|
269
|
+
): Promise<ListConfigurationCheckOperationsCommandOutput>;
|
|
270
|
+
listConfigurationCheckOperations(
|
|
271
|
+
args: ListConfigurationCheckOperationsCommandInput,
|
|
272
|
+
cb: (err: any, data?: ListConfigurationCheckOperationsCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
listConfigurationCheckOperations(
|
|
275
|
+
args: ListConfigurationCheckOperationsCommandInput,
|
|
276
|
+
options: __HttpHandlerOptions,
|
|
277
|
+
cb: (err: any, data?: ListConfigurationCheckOperationsCommandOutput) => void
|
|
278
|
+
): void;
|
|
209
279
|
listDatabases(): Promise<ListDatabasesCommandOutput>;
|
|
210
280
|
listDatabases(
|
|
211
281
|
args: ListDatabasesCommandInput,
|
|
@@ -246,6 +316,32 @@ export interface SsmSap {
|
|
|
246
316
|
options: __HttpHandlerOptions,
|
|
247
317
|
cb: (err: any, data?: ListOperationsCommandOutput) => void
|
|
248
318
|
): void;
|
|
319
|
+
listSubCheckResults(
|
|
320
|
+
args: ListSubCheckResultsCommandInput,
|
|
321
|
+
options?: __HttpHandlerOptions
|
|
322
|
+
): Promise<ListSubCheckResultsCommandOutput>;
|
|
323
|
+
listSubCheckResults(
|
|
324
|
+
args: ListSubCheckResultsCommandInput,
|
|
325
|
+
cb: (err: any, data?: ListSubCheckResultsCommandOutput) => void
|
|
326
|
+
): void;
|
|
327
|
+
listSubCheckResults(
|
|
328
|
+
args: ListSubCheckResultsCommandInput,
|
|
329
|
+
options: __HttpHandlerOptions,
|
|
330
|
+
cb: (err: any, data?: ListSubCheckResultsCommandOutput) => void
|
|
331
|
+
): void;
|
|
332
|
+
listSubCheckRuleResults(
|
|
333
|
+
args: ListSubCheckRuleResultsCommandInput,
|
|
334
|
+
options?: __HttpHandlerOptions
|
|
335
|
+
): Promise<ListSubCheckRuleResultsCommandOutput>;
|
|
336
|
+
listSubCheckRuleResults(
|
|
337
|
+
args: ListSubCheckRuleResultsCommandInput,
|
|
338
|
+
cb: (err: any, data?: ListSubCheckRuleResultsCommandOutput) => void
|
|
339
|
+
): void;
|
|
340
|
+
listSubCheckRuleResults(
|
|
341
|
+
args: ListSubCheckRuleResultsCommandInput,
|
|
342
|
+
options: __HttpHandlerOptions,
|
|
343
|
+
cb: (err: any, data?: ListSubCheckRuleResultsCommandOutput) => void
|
|
344
|
+
): void;
|
|
249
345
|
listTagsForResource(
|
|
250
346
|
args: ListTagsForResourceCommandInput,
|
|
251
347
|
options?: __HttpHandlerOptions
|
|
@@ -311,6 +407,19 @@ export interface SsmSap {
|
|
|
311
407
|
options: __HttpHandlerOptions,
|
|
312
408
|
cb: (err: any, data?: StartApplicationRefreshCommandOutput) => void
|
|
313
409
|
): void;
|
|
410
|
+
startConfigurationChecks(
|
|
411
|
+
args: StartConfigurationChecksCommandInput,
|
|
412
|
+
options?: __HttpHandlerOptions
|
|
413
|
+
): Promise<StartConfigurationChecksCommandOutput>;
|
|
414
|
+
startConfigurationChecks(
|
|
415
|
+
args: StartConfigurationChecksCommandInput,
|
|
416
|
+
cb: (err: any, data?: StartConfigurationChecksCommandOutput) => void
|
|
417
|
+
): void;
|
|
418
|
+
startConfigurationChecks(
|
|
419
|
+
args: StartConfigurationChecksCommandInput,
|
|
420
|
+
options: __HttpHandlerOptions,
|
|
421
|
+
cb: (err: any, data?: StartConfigurationChecksCommandOutput) => void
|
|
422
|
+
): void;
|
|
314
423
|
stopApplication(
|
|
315
424
|
args: StopApplicationCommandInput,
|
|
316
425
|
options?: __HttpHandlerOptions
|
|
@@ -61,6 +61,10 @@ import {
|
|
|
61
61
|
GetComponentCommandInput,
|
|
62
62
|
GetComponentCommandOutput,
|
|
63
63
|
} from "./commands/GetComponentCommand";
|
|
64
|
+
import {
|
|
65
|
+
GetConfigurationCheckOperationCommandInput,
|
|
66
|
+
GetConfigurationCheckOperationCommandOutput,
|
|
67
|
+
} from "./commands/GetConfigurationCheckOperationCommand";
|
|
64
68
|
import {
|
|
65
69
|
GetDatabaseCommandInput,
|
|
66
70
|
GetDatabaseCommandOutput,
|
|
@@ -81,6 +85,14 @@ import {
|
|
|
81
85
|
ListComponentsCommandInput,
|
|
82
86
|
ListComponentsCommandOutput,
|
|
83
87
|
} from "./commands/ListComponentsCommand";
|
|
88
|
+
import {
|
|
89
|
+
ListConfigurationCheckDefinitionsCommandInput,
|
|
90
|
+
ListConfigurationCheckDefinitionsCommandOutput,
|
|
91
|
+
} from "./commands/ListConfigurationCheckDefinitionsCommand";
|
|
92
|
+
import {
|
|
93
|
+
ListConfigurationCheckOperationsCommandInput,
|
|
94
|
+
ListConfigurationCheckOperationsCommandOutput,
|
|
95
|
+
} from "./commands/ListConfigurationCheckOperationsCommand";
|
|
84
96
|
import {
|
|
85
97
|
ListDatabasesCommandInput,
|
|
86
98
|
ListDatabasesCommandOutput,
|
|
@@ -93,6 +105,14 @@ import {
|
|
|
93
105
|
ListOperationsCommandInput,
|
|
94
106
|
ListOperationsCommandOutput,
|
|
95
107
|
} from "./commands/ListOperationsCommand";
|
|
108
|
+
import {
|
|
109
|
+
ListSubCheckResultsCommandInput,
|
|
110
|
+
ListSubCheckResultsCommandOutput,
|
|
111
|
+
} from "./commands/ListSubCheckResultsCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListSubCheckRuleResultsCommandInput,
|
|
114
|
+
ListSubCheckRuleResultsCommandOutput,
|
|
115
|
+
} from "./commands/ListSubCheckRuleResultsCommand";
|
|
96
116
|
import {
|
|
97
117
|
ListTagsForResourceCommandInput,
|
|
98
118
|
ListTagsForResourceCommandOutput,
|
|
@@ -113,6 +133,10 @@ import {
|
|
|
113
133
|
StartApplicationRefreshCommandInput,
|
|
114
134
|
StartApplicationRefreshCommandOutput,
|
|
115
135
|
} from "./commands/StartApplicationRefreshCommand";
|
|
136
|
+
import {
|
|
137
|
+
StartConfigurationChecksCommandInput,
|
|
138
|
+
StartConfigurationChecksCommandOutput,
|
|
139
|
+
} from "./commands/StartConfigurationChecksCommand";
|
|
116
140
|
import {
|
|
117
141
|
StopApplicationCommandInput,
|
|
118
142
|
StopApplicationCommandOutput,
|
|
@@ -141,19 +165,25 @@ export type ServiceInputTypes =
|
|
|
141
165
|
| DeregisterApplicationCommandInput
|
|
142
166
|
| GetApplicationCommandInput
|
|
143
167
|
| GetComponentCommandInput
|
|
168
|
+
| GetConfigurationCheckOperationCommandInput
|
|
144
169
|
| GetDatabaseCommandInput
|
|
145
170
|
| GetOperationCommandInput
|
|
146
171
|
| GetResourcePermissionCommandInput
|
|
147
172
|
| ListApplicationsCommandInput
|
|
148
173
|
| ListComponentsCommandInput
|
|
174
|
+
| ListConfigurationCheckDefinitionsCommandInput
|
|
175
|
+
| ListConfigurationCheckOperationsCommandInput
|
|
149
176
|
| ListDatabasesCommandInput
|
|
150
177
|
| ListOperationEventsCommandInput
|
|
151
178
|
| ListOperationsCommandInput
|
|
179
|
+
| ListSubCheckResultsCommandInput
|
|
180
|
+
| ListSubCheckRuleResultsCommandInput
|
|
152
181
|
| ListTagsForResourceCommandInput
|
|
153
182
|
| PutResourcePermissionCommandInput
|
|
154
183
|
| RegisterApplicationCommandInput
|
|
155
184
|
| StartApplicationCommandInput
|
|
156
185
|
| StartApplicationRefreshCommandInput
|
|
186
|
+
| StartConfigurationChecksCommandInput
|
|
157
187
|
| StopApplicationCommandInput
|
|
158
188
|
| TagResourceCommandInput
|
|
159
189
|
| UntagResourceCommandInput
|
|
@@ -163,19 +193,25 @@ export type ServiceOutputTypes =
|
|
|
163
193
|
| DeregisterApplicationCommandOutput
|
|
164
194
|
| GetApplicationCommandOutput
|
|
165
195
|
| GetComponentCommandOutput
|
|
196
|
+
| GetConfigurationCheckOperationCommandOutput
|
|
166
197
|
| GetDatabaseCommandOutput
|
|
167
198
|
| GetOperationCommandOutput
|
|
168
199
|
| GetResourcePermissionCommandOutput
|
|
169
200
|
| ListApplicationsCommandOutput
|
|
170
201
|
| ListComponentsCommandOutput
|
|
202
|
+
| ListConfigurationCheckDefinitionsCommandOutput
|
|
203
|
+
| ListConfigurationCheckOperationsCommandOutput
|
|
171
204
|
| ListDatabasesCommandOutput
|
|
172
205
|
| ListOperationEventsCommandOutput
|
|
173
206
|
| ListOperationsCommandOutput
|
|
207
|
+
| ListSubCheckResultsCommandOutput
|
|
208
|
+
| ListSubCheckRuleResultsCommandOutput
|
|
174
209
|
| ListTagsForResourceCommandOutput
|
|
175
210
|
| PutResourcePermissionCommandOutput
|
|
176
211
|
| RegisterApplicationCommandOutput
|
|
177
212
|
| StartApplicationCommandOutput
|
|
178
213
|
| StartApplicationRefreshCommandOutput
|
|
214
|
+
| StartConfigurationChecksCommandOutput
|
|
179
215
|
| StopApplicationCommandOutput
|
|
180
216
|
| TagResourceCommandOutput
|
|
181
217
|
| UntagResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetConfigurationCheckOperationInput,
|
|
5
|
+
GetConfigurationCheckOperationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SsmSapClientResolvedConfig,
|
|
11
|
+
} from "../SsmSapClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetConfigurationCheckOperationCommandInput
|
|
15
|
+
extends GetConfigurationCheckOperationInput {}
|
|
16
|
+
export interface GetConfigurationCheckOperationCommandOutput
|
|
17
|
+
extends GetConfigurationCheckOperationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetConfigurationCheckOperationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetConfigurationCheckOperationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetConfigurationCheckOperationCommandInput,
|
|
24
|
+
GetConfigurationCheckOperationCommandOutput,
|
|
25
|
+
SsmSapClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetConfigurationCheckOperationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetConfigurationCheckOperationCommandInput,
|
|
33
|
+
GetConfigurationCheckOperationCommandOutput,
|
|
34
|
+
SsmSapClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetConfigurationCheckOperationCommand extends GetConfigurationCheckOperationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetConfigurationCheckOperationInput;
|
|
44
|
+
output: GetConfigurationCheckOperationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetConfigurationCheckOperationCommandInput;
|
|
48
|
+
output: GetConfigurationCheckOperationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListConfigurationCheckDefinitionsInput,
|
|
5
|
+
ListConfigurationCheckDefinitionsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SsmSapClientResolvedConfig,
|
|
11
|
+
} from "../SsmSapClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListConfigurationCheckDefinitionsCommandInput
|
|
15
|
+
extends ListConfigurationCheckDefinitionsInput {}
|
|
16
|
+
export interface ListConfigurationCheckDefinitionsCommandOutput
|
|
17
|
+
extends ListConfigurationCheckDefinitionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListConfigurationCheckDefinitionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListConfigurationCheckDefinitionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListConfigurationCheckDefinitionsCommandInput,
|
|
24
|
+
ListConfigurationCheckDefinitionsCommandOutput,
|
|
25
|
+
SsmSapClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListConfigurationCheckDefinitionsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListConfigurationCheckDefinitionsCommandInput,
|
|
33
|
+
ListConfigurationCheckDefinitionsCommandOutput,
|
|
34
|
+
SsmSapClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListConfigurationCheckDefinitionsCommand extends ListConfigurationCheckDefinitionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListConfigurationCheckDefinitionsInput;
|
|
44
|
+
output: ListConfigurationCheckDefinitionsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListConfigurationCheckDefinitionsCommandInput;
|
|
48
|
+
output: ListConfigurationCheckDefinitionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListConfigurationCheckOperationsInput,
|
|
5
|
+
ListConfigurationCheckOperationsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SsmSapClientResolvedConfig,
|
|
11
|
+
} from "../SsmSapClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListConfigurationCheckOperationsCommandInput
|
|
15
|
+
extends ListConfigurationCheckOperationsInput {}
|
|
16
|
+
export interface ListConfigurationCheckOperationsCommandOutput
|
|
17
|
+
extends ListConfigurationCheckOperationsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListConfigurationCheckOperationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListConfigurationCheckOperationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListConfigurationCheckOperationsCommandInput,
|
|
24
|
+
ListConfigurationCheckOperationsCommandOutput,
|
|
25
|
+
SsmSapClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListConfigurationCheckOperationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListConfigurationCheckOperationsCommandInput,
|
|
33
|
+
ListConfigurationCheckOperationsCommandOutput,
|
|
34
|
+
SsmSapClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListConfigurationCheckOperationsCommand extends ListConfigurationCheckOperationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListConfigurationCheckOperationsInput;
|
|
44
|
+
output: ListConfigurationCheckOperationsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListConfigurationCheckOperationsCommandInput;
|
|
48
|
+
output: ListConfigurationCheckOperationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListSubCheckResultsInput,
|
|
5
|
+
ListSubCheckResultsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SsmSapClientResolvedConfig,
|
|
11
|
+
} from "../SsmSapClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListSubCheckResultsCommandInput
|
|
15
|
+
extends ListSubCheckResultsInput {}
|
|
16
|
+
export interface ListSubCheckResultsCommandOutput
|
|
17
|
+
extends ListSubCheckResultsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListSubCheckResultsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListSubCheckResultsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListSubCheckResultsCommandInput,
|
|
24
|
+
ListSubCheckResultsCommandOutput,
|
|
25
|
+
SsmSapClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListSubCheckResultsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListSubCheckResultsCommandInput,
|
|
33
|
+
ListSubCheckResultsCommandOutput,
|
|
34
|
+
SsmSapClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListSubCheckResultsCommand extends ListSubCheckResultsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListSubCheckResultsInput;
|
|
44
|
+
output: ListSubCheckResultsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListSubCheckResultsCommandInput;
|
|
48
|
+
output: ListSubCheckResultsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|