@aws-sdk/client-ssm-sap 3.876.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 +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListSubCheckRuleResultsInput,
|
|
5
|
+
ListSubCheckRuleResultsOutput,
|
|
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 ListSubCheckRuleResultsCommandInput
|
|
15
|
+
extends ListSubCheckRuleResultsInput {}
|
|
16
|
+
export interface ListSubCheckRuleResultsCommandOutput
|
|
17
|
+
extends ListSubCheckRuleResultsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListSubCheckRuleResultsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListSubCheckRuleResultsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListSubCheckRuleResultsCommandInput,
|
|
24
|
+
ListSubCheckRuleResultsCommandOutput,
|
|
25
|
+
SsmSapClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListSubCheckRuleResultsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListSubCheckRuleResultsCommandInput,
|
|
33
|
+
ListSubCheckRuleResultsCommandOutput,
|
|
34
|
+
SsmSapClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListSubCheckRuleResultsCommand extends ListSubCheckRuleResultsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListSubCheckRuleResultsInput;
|
|
44
|
+
output: ListSubCheckRuleResultsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListSubCheckRuleResultsCommandInput;
|
|
48
|
+
output: ListSubCheckRuleResultsCommandOutput;
|
|
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
|
+
StartConfigurationChecksInput,
|
|
5
|
+
StartConfigurationChecksOutput,
|
|
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 StartConfigurationChecksCommandInput
|
|
15
|
+
extends StartConfigurationChecksInput {}
|
|
16
|
+
export interface StartConfigurationChecksCommandOutput
|
|
17
|
+
extends StartConfigurationChecksOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartConfigurationChecksCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartConfigurationChecksCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartConfigurationChecksCommandInput,
|
|
24
|
+
StartConfigurationChecksCommandOutput,
|
|
25
|
+
SsmSapClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: StartConfigurationChecksCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartConfigurationChecksCommandInput,
|
|
33
|
+
StartConfigurationChecksCommandOutput,
|
|
34
|
+
SsmSapClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartConfigurationChecksCommand extends StartConfigurationChecksCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartConfigurationChecksInput;
|
|
44
|
+
output: StartConfigurationChecksOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartConfigurationChecksCommandInput;
|
|
48
|
+
output: StartConfigurationChecksCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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";
|
|
@@ -197,6 +197,51 @@ export interface ComponentSummary {
|
|
|
197
197
|
Tags?: Record<string, string> | undefined;
|
|
198
198
|
Arn?: string | undefined;
|
|
199
199
|
}
|
|
200
|
+
export declare const ConfigurationCheckType: {
|
|
201
|
+
readonly SAP_CHECK_01: "SAP_CHECK_01";
|
|
202
|
+
readonly SAP_CHECK_02: "SAP_CHECK_02";
|
|
203
|
+
readonly SAP_CHECK_03: "SAP_CHECK_03";
|
|
204
|
+
};
|
|
205
|
+
export type ConfigurationCheckType =
|
|
206
|
+
(typeof ConfigurationCheckType)[keyof typeof ConfigurationCheckType];
|
|
207
|
+
export interface ConfigurationCheckDefinition {
|
|
208
|
+
Id?: ConfigurationCheckType | undefined;
|
|
209
|
+
Name?: string | undefined;
|
|
210
|
+
Description?: string | undefined;
|
|
211
|
+
ApplicableApplicationTypes?: ApplicationType[] | undefined;
|
|
212
|
+
}
|
|
213
|
+
export interface RuleStatusCounts {
|
|
214
|
+
Failed?: number | undefined;
|
|
215
|
+
Warning?: number | undefined;
|
|
216
|
+
Info?: number | undefined;
|
|
217
|
+
Passed?: number | undefined;
|
|
218
|
+
Unknown?: number | undefined;
|
|
219
|
+
}
|
|
220
|
+
export declare const OperationStatus: {
|
|
221
|
+
readonly ERROR: "ERROR";
|
|
222
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
223
|
+
readonly SUCCESS: "SUCCESS";
|
|
224
|
+
};
|
|
225
|
+
export type OperationStatus =
|
|
226
|
+
(typeof OperationStatus)[keyof typeof OperationStatus];
|
|
227
|
+
export interface ConfigurationCheckOperation {
|
|
228
|
+
Id?: string | undefined;
|
|
229
|
+
ApplicationId?: string | undefined;
|
|
230
|
+
Status?: OperationStatus | undefined;
|
|
231
|
+
StatusMessage?: string | undefined;
|
|
232
|
+
ConfigurationCheckId?: ConfigurationCheckType | undefined;
|
|
233
|
+
ConfigurationCheckName?: string | undefined;
|
|
234
|
+
ConfigurationCheckDescription?: string | undefined;
|
|
235
|
+
StartTime?: Date | undefined;
|
|
236
|
+
EndTime?: Date | undefined;
|
|
237
|
+
RuleStatusCounts?: RuleStatusCounts | undefined;
|
|
238
|
+
}
|
|
239
|
+
export declare const ConfigurationCheckOperationListingMode: {
|
|
240
|
+
readonly ALL_OPERATIONS: "ALL_OPERATIONS";
|
|
241
|
+
readonly LATEST_PER_CHECK: "LATEST_PER_CHECK";
|
|
242
|
+
};
|
|
243
|
+
export type ConfigurationCheckOperationListingMode =
|
|
244
|
+
(typeof ConfigurationCheckOperationListingMode)[keyof typeof ConfigurationCheckOperationListingMode];
|
|
200
245
|
export declare class ConflictException extends __BaseException {
|
|
201
246
|
readonly name: "ConflictException";
|
|
202
247
|
readonly $fault: "client";
|
|
@@ -323,6 +368,12 @@ export interface GetComponentOutput {
|
|
|
323
368
|
Component?: Component | undefined;
|
|
324
369
|
Tags?: Record<string, string> | undefined;
|
|
325
370
|
}
|
|
371
|
+
export interface GetConfigurationCheckOperationInput {
|
|
372
|
+
OperationId: string | undefined;
|
|
373
|
+
}
|
|
374
|
+
export interface GetConfigurationCheckOperationOutput {
|
|
375
|
+
ConfigurationCheckOperation?: ConfigurationCheckOperation | undefined;
|
|
376
|
+
}
|
|
326
377
|
export interface GetDatabaseInput {
|
|
327
378
|
ApplicationId?: string | undefined;
|
|
328
379
|
ComponentId?: string | undefined;
|
|
@@ -336,13 +387,6 @@ export interface GetDatabaseOutput {
|
|
|
336
387
|
export interface GetOperationInput {
|
|
337
388
|
OperationId: string | undefined;
|
|
338
389
|
}
|
|
339
|
-
export declare const OperationStatus: {
|
|
340
|
-
readonly ERROR: "ERROR";
|
|
341
|
-
readonly INPROGRESS: "INPROGRESS";
|
|
342
|
-
readonly SUCCESS: "SUCCESS";
|
|
343
|
-
};
|
|
344
|
-
export type OperationStatus =
|
|
345
|
-
(typeof OperationStatus)[keyof typeof OperationStatus];
|
|
346
390
|
export interface Operation {
|
|
347
391
|
Id?: string | undefined;
|
|
348
392
|
Type?: string | undefined;
|
|
@@ -384,6 +428,25 @@ export interface ListComponentsOutput {
|
|
|
384
428
|
Components?: ComponentSummary[] | undefined;
|
|
385
429
|
NextToken?: string | undefined;
|
|
386
430
|
}
|
|
431
|
+
export interface ListConfigurationCheckDefinitionsInput {
|
|
432
|
+
MaxResults?: number | undefined;
|
|
433
|
+
NextToken?: string | undefined;
|
|
434
|
+
}
|
|
435
|
+
export interface ListConfigurationCheckDefinitionsOutput {
|
|
436
|
+
ConfigurationChecks?: ConfigurationCheckDefinition[] | undefined;
|
|
437
|
+
NextToken?: string | undefined;
|
|
438
|
+
}
|
|
439
|
+
export interface ListConfigurationCheckOperationsInput {
|
|
440
|
+
ApplicationId: string | undefined;
|
|
441
|
+
ListMode?: ConfigurationCheckOperationListingMode | undefined;
|
|
442
|
+
MaxResults?: number | undefined;
|
|
443
|
+
NextToken?: string | undefined;
|
|
444
|
+
Filters?: Filter[] | undefined;
|
|
445
|
+
}
|
|
446
|
+
export interface ListConfigurationCheckOperationsOutput {
|
|
447
|
+
ConfigurationCheckOperations?: ConfigurationCheckOperation[] | undefined;
|
|
448
|
+
NextToken?: string | undefined;
|
|
449
|
+
}
|
|
387
450
|
export interface ListDatabasesInput {
|
|
388
451
|
ApplicationId?: string | undefined;
|
|
389
452
|
ComponentId?: string | undefined;
|
|
@@ -432,6 +495,46 @@ export interface ListOperationsOutput {
|
|
|
432
495
|
Operations?: Operation[] | undefined;
|
|
433
496
|
NextToken?: string | undefined;
|
|
434
497
|
}
|
|
498
|
+
export interface ListSubCheckResultsInput {
|
|
499
|
+
OperationId: string | undefined;
|
|
500
|
+
MaxResults?: number | undefined;
|
|
501
|
+
NextToken?: string | undefined;
|
|
502
|
+
}
|
|
503
|
+
export interface SubCheckResult {
|
|
504
|
+
Id?: string | undefined;
|
|
505
|
+
Name?: string | undefined;
|
|
506
|
+
Description?: string | undefined;
|
|
507
|
+
References?: string[] | undefined;
|
|
508
|
+
}
|
|
509
|
+
export interface ListSubCheckResultsOutput {
|
|
510
|
+
SubCheckResults?: SubCheckResult[] | undefined;
|
|
511
|
+
NextToken?: string | undefined;
|
|
512
|
+
}
|
|
513
|
+
export interface ListSubCheckRuleResultsInput {
|
|
514
|
+
SubCheckResultId: string | undefined;
|
|
515
|
+
MaxResults?: number | undefined;
|
|
516
|
+
NextToken?: string | undefined;
|
|
517
|
+
}
|
|
518
|
+
export declare const RuleResultStatus: {
|
|
519
|
+
readonly FAILED: "FAILED";
|
|
520
|
+
readonly INFO: "INFO";
|
|
521
|
+
readonly PASSED: "PASSED";
|
|
522
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
523
|
+
readonly WARNING: "WARNING";
|
|
524
|
+
};
|
|
525
|
+
export type RuleResultStatus =
|
|
526
|
+
(typeof RuleResultStatus)[keyof typeof RuleResultStatus];
|
|
527
|
+
export interface RuleResult {
|
|
528
|
+
Id?: string | undefined;
|
|
529
|
+
Description?: string | undefined;
|
|
530
|
+
Status?: RuleResultStatus | undefined;
|
|
531
|
+
Message?: string | undefined;
|
|
532
|
+
Metadata?: Record<string, string> | undefined;
|
|
533
|
+
}
|
|
534
|
+
export interface ListSubCheckRuleResultsOutput {
|
|
535
|
+
RuleResults?: RuleResult[] | undefined;
|
|
536
|
+
NextToken?: string | undefined;
|
|
537
|
+
}
|
|
435
538
|
export interface ListTagsForResourceRequest {
|
|
436
539
|
resourceArn: string | undefined;
|
|
437
540
|
}
|
|
@@ -473,6 +576,13 @@ export interface StartApplicationRefreshInput {
|
|
|
473
576
|
export interface StartApplicationRefreshOutput {
|
|
474
577
|
OperationId?: string | undefined;
|
|
475
578
|
}
|
|
579
|
+
export interface StartConfigurationChecksInput {
|
|
580
|
+
ApplicationId: string | undefined;
|
|
581
|
+
ConfigurationCheckIds?: ConfigurationCheckType[] | undefined;
|
|
582
|
+
}
|
|
583
|
+
export interface StartConfigurationChecksOutput {
|
|
584
|
+
ConfigurationCheckOperations?: ConfigurationCheckOperation[] | undefined;
|
|
585
|
+
}
|
|
476
586
|
export interface StopApplicationInput {
|
|
477
587
|
ApplicationId: string | undefined;
|
|
478
588
|
StopConnectedEntity?: ConnectedEntityType | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConfigurationCheckDefinitionsCommandInput,
|
|
4
|
+
ListConfigurationCheckDefinitionsCommandOutput,
|
|
5
|
+
} from "../commands/ListConfigurationCheckDefinitionsCommand";
|
|
6
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConfigurationCheckDefinitions: (
|
|
8
|
+
config: SsmSapPaginationConfiguration,
|
|
9
|
+
input: ListConfigurationCheckDefinitionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConfigurationCheckOperationsCommandInput,
|
|
4
|
+
ListConfigurationCheckOperationsCommandOutput,
|
|
5
|
+
} from "../commands/ListConfigurationCheckOperationsCommand";
|
|
6
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConfigurationCheckOperations: (
|
|
8
|
+
config: SsmSapPaginationConfiguration,
|
|
9
|
+
input: ListConfigurationCheckOperationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConfigurationCheckOperationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSubCheckResultsCommandInput,
|
|
4
|
+
ListSubCheckResultsCommandOutput,
|
|
5
|
+
} from "../commands/ListSubCheckResultsCommand";
|
|
6
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSubCheckResults: (
|
|
8
|
+
config: SsmSapPaginationConfiguration,
|
|
9
|
+
input: ListSubCheckResultsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSubCheckResultsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSubCheckRuleResultsCommandInput,
|
|
4
|
+
ListSubCheckRuleResultsCommandOutput,
|
|
5
|
+
} from "../commands/ListSubCheckRuleResultsCommand";
|
|
6
|
+
import { SsmSapPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListSubCheckRuleResults: (
|
|
8
|
+
config: SsmSapPaginationConfiguration,
|
|
9
|
+
input: ListSubCheckRuleResultsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => 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";
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
GetComponentCommandInput,
|
|
20
20
|
GetComponentCommandOutput,
|
|
21
21
|
} from "../commands/GetComponentCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetConfigurationCheckOperationCommandInput,
|
|
24
|
+
GetConfigurationCheckOperationCommandOutput,
|
|
25
|
+
} from "../commands/GetConfigurationCheckOperationCommand";
|
|
22
26
|
import {
|
|
23
27
|
GetDatabaseCommandInput,
|
|
24
28
|
GetDatabaseCommandOutput,
|
|
@@ -39,6 +43,14 @@ import {
|
|
|
39
43
|
ListComponentsCommandInput,
|
|
40
44
|
ListComponentsCommandOutput,
|
|
41
45
|
} from "../commands/ListComponentsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListConfigurationCheckDefinitionsCommandInput,
|
|
48
|
+
ListConfigurationCheckDefinitionsCommandOutput,
|
|
49
|
+
} from "../commands/ListConfigurationCheckDefinitionsCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListConfigurationCheckOperationsCommandInput,
|
|
52
|
+
ListConfigurationCheckOperationsCommandOutput,
|
|
53
|
+
} from "../commands/ListConfigurationCheckOperationsCommand";
|
|
42
54
|
import {
|
|
43
55
|
ListDatabasesCommandInput,
|
|
44
56
|
ListDatabasesCommandOutput,
|
|
@@ -51,6 +63,14 @@ import {
|
|
|
51
63
|
ListOperationsCommandInput,
|
|
52
64
|
ListOperationsCommandOutput,
|
|
53
65
|
} from "../commands/ListOperationsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListSubCheckResultsCommandInput,
|
|
68
|
+
ListSubCheckResultsCommandOutput,
|
|
69
|
+
} from "../commands/ListSubCheckResultsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListSubCheckRuleResultsCommandInput,
|
|
72
|
+
ListSubCheckRuleResultsCommandOutput,
|
|
73
|
+
} from "../commands/ListSubCheckRuleResultsCommand";
|
|
54
74
|
import {
|
|
55
75
|
ListTagsForResourceCommandInput,
|
|
56
76
|
ListTagsForResourceCommandOutput,
|
|
@@ -71,6 +91,10 @@ import {
|
|
|
71
91
|
StartApplicationRefreshCommandInput,
|
|
72
92
|
StartApplicationRefreshCommandOutput,
|
|
73
93
|
} from "../commands/StartApplicationRefreshCommand";
|
|
94
|
+
import {
|
|
95
|
+
StartConfigurationChecksCommandInput,
|
|
96
|
+
StartConfigurationChecksCommandOutput,
|
|
97
|
+
} from "../commands/StartConfigurationChecksCommand";
|
|
74
98
|
import {
|
|
75
99
|
StopApplicationCommandInput,
|
|
76
100
|
StopApplicationCommandOutput,
|
|
@@ -103,6 +127,10 @@ export declare const se_GetComponentCommand: (
|
|
|
103
127
|
input: GetComponentCommandInput,
|
|
104
128
|
context: __SerdeContext
|
|
105
129
|
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_GetConfigurationCheckOperationCommand: (
|
|
131
|
+
input: GetConfigurationCheckOperationCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
106
134
|
export declare const se_GetDatabaseCommand: (
|
|
107
135
|
input: GetDatabaseCommandInput,
|
|
108
136
|
context: __SerdeContext
|
|
@@ -123,6 +151,14 @@ export declare const se_ListComponentsCommand: (
|
|
|
123
151
|
input: ListComponentsCommandInput,
|
|
124
152
|
context: __SerdeContext
|
|
125
153
|
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_ListConfigurationCheckDefinitionsCommand: (
|
|
155
|
+
input: ListConfigurationCheckDefinitionsCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_ListConfigurationCheckOperationsCommand: (
|
|
159
|
+
input: ListConfigurationCheckOperationsCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
126
162
|
export declare const se_ListDatabasesCommand: (
|
|
127
163
|
input: ListDatabasesCommandInput,
|
|
128
164
|
context: __SerdeContext
|
|
@@ -135,6 +171,14 @@ export declare const se_ListOperationsCommand: (
|
|
|
135
171
|
input: ListOperationsCommandInput,
|
|
136
172
|
context: __SerdeContext
|
|
137
173
|
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_ListSubCheckResultsCommand: (
|
|
175
|
+
input: ListSubCheckResultsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_ListSubCheckRuleResultsCommand: (
|
|
179
|
+
input: ListSubCheckRuleResultsCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
138
182
|
export declare const se_ListTagsForResourceCommand: (
|
|
139
183
|
input: ListTagsForResourceCommandInput,
|
|
140
184
|
context: __SerdeContext
|
|
@@ -155,6 +199,10 @@ export declare const se_StartApplicationRefreshCommand: (
|
|
|
155
199
|
input: StartApplicationRefreshCommandInput,
|
|
156
200
|
context: __SerdeContext
|
|
157
201
|
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_StartConfigurationChecksCommand: (
|
|
203
|
+
input: StartConfigurationChecksCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
158
206
|
export declare const se_StopApplicationCommand: (
|
|
159
207
|
input: StopApplicationCommandInput,
|
|
160
208
|
context: __SerdeContext
|
|
@@ -187,6 +235,10 @@ export declare const de_GetComponentCommand: (
|
|
|
187
235
|
output: __HttpResponse,
|
|
188
236
|
context: __SerdeContext
|
|
189
237
|
) => Promise<GetComponentCommandOutput>;
|
|
238
|
+
export declare const de_GetConfigurationCheckOperationCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<GetConfigurationCheckOperationCommandOutput>;
|
|
190
242
|
export declare const de_GetDatabaseCommand: (
|
|
191
243
|
output: __HttpResponse,
|
|
192
244
|
context: __SerdeContext
|
|
@@ -207,6 +259,14 @@ export declare const de_ListComponentsCommand: (
|
|
|
207
259
|
output: __HttpResponse,
|
|
208
260
|
context: __SerdeContext
|
|
209
261
|
) => Promise<ListComponentsCommandOutput>;
|
|
262
|
+
export declare const de_ListConfigurationCheckDefinitionsCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
266
|
+
export declare const de_ListConfigurationCheckOperationsCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<ListConfigurationCheckOperationsCommandOutput>;
|
|
210
270
|
export declare const de_ListDatabasesCommand: (
|
|
211
271
|
output: __HttpResponse,
|
|
212
272
|
context: __SerdeContext
|
|
@@ -219,6 +279,14 @@ export declare const de_ListOperationsCommand: (
|
|
|
219
279
|
output: __HttpResponse,
|
|
220
280
|
context: __SerdeContext
|
|
221
281
|
) => Promise<ListOperationsCommandOutput>;
|
|
282
|
+
export declare const de_ListSubCheckResultsCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<ListSubCheckResultsCommandOutput>;
|
|
286
|
+
export declare const de_ListSubCheckRuleResultsCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<ListSubCheckRuleResultsCommandOutput>;
|
|
222
290
|
export declare const de_ListTagsForResourceCommand: (
|
|
223
291
|
output: __HttpResponse,
|
|
224
292
|
context: __SerdeContext
|
|
@@ -239,6 +307,10 @@ export declare const de_StartApplicationRefreshCommand: (
|
|
|
239
307
|
output: __HttpResponse,
|
|
240
308
|
context: __SerdeContext
|
|
241
309
|
) => Promise<StartApplicationRefreshCommandOutput>;
|
|
310
|
+
export declare const de_StartConfigurationChecksCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<StartConfigurationChecksCommandOutput>;
|
|
242
314
|
export declare const de_StopApplicationCommand: (
|
|
243
315
|
output: __HttpResponse,
|
|
244
316
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-sap",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Sap Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.878.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm-sap",
|