@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
|
@@ -110,8 +110,7 @@ export interface Application {
|
|
|
110
110
|
*/
|
|
111
111
|
StatusMessage?: string | undefined;
|
|
112
112
|
/**
|
|
113
|
-
* <p>The Amazon Resource Names of the associated AWS Systems Manager for SAP
|
|
114
|
-
* applications.</p>
|
|
113
|
+
* <p>The Amazon Resource Names of the associated AWS Systems Manager for SAP applications.</p>
|
|
115
114
|
* @public
|
|
116
115
|
*/
|
|
117
116
|
AssociatedApplicationArns?: string[] | undefined;
|
|
@@ -143,15 +142,13 @@ export interface ApplicationCredential {
|
|
|
143
142
|
*/
|
|
144
143
|
CredentialType: CredentialType | undefined;
|
|
145
144
|
/**
|
|
146
|
-
* <p>The secret ID created in AWS Secrets Manager to store the credentials of the SAP
|
|
147
|
-
* application. </p>
|
|
145
|
+
* <p>The secret ID created in AWS Secrets Manager to store the credentials of the SAP application. </p>
|
|
148
146
|
* @public
|
|
149
147
|
*/
|
|
150
148
|
SecretId: string | undefined;
|
|
151
149
|
}
|
|
152
150
|
/**
|
|
153
|
-
* <p>The summary of the SAP application registered with AWS Systems Manager for SAP.
|
|
154
|
-
* </p>
|
|
151
|
+
* <p>The summary of the SAP application registered with AWS Systems Manager for SAP. </p>
|
|
155
152
|
* @public
|
|
156
153
|
*/
|
|
157
154
|
export interface ApplicationSummary {
|
|
@@ -240,8 +237,7 @@ export declare const BackintMode: {
|
|
|
240
237
|
*/
|
|
241
238
|
export type BackintMode = (typeof BackintMode)[keyof typeof BackintMode];
|
|
242
239
|
/**
|
|
243
|
-
* <p>Configuration parameters for AWS Backint Agent for SAP HANA. You can backup your SAP
|
|
244
|
-
* HANA database with AWS Backup or Amazon S3.</p>
|
|
240
|
+
* <p>Configuration parameters for AWS Backint Agent for SAP HANA. You can backup your SAP HANA database with AWS Backup or Amazon S3.</p>
|
|
245
241
|
* @public
|
|
246
242
|
*/
|
|
247
243
|
export interface BackintConfig {
|
|
@@ -471,16 +467,12 @@ export interface Component {
|
|
|
471
467
|
*/
|
|
472
468
|
SystemNumber?: string | undefined;
|
|
473
469
|
/**
|
|
474
|
-
* <p>The parent component of a highly available environment. For example, in a highly
|
|
475
|
-
* available SAP on AWS workload, the parent component consists of the entire setup,
|
|
476
|
-
* including the child components.</p>
|
|
470
|
+
* <p>The parent component of a highly available environment. For example, in a highly available SAP on AWS workload, the parent component consists of the entire setup, including the child components.</p>
|
|
477
471
|
* @public
|
|
478
472
|
*/
|
|
479
473
|
ParentComponent?: string | undefined;
|
|
480
474
|
/**
|
|
481
|
-
* <p>The child components of a highly available environment. For example, in a highly
|
|
482
|
-
* available SAP on AWS workload, the child component consists of the primary and secondar
|
|
483
|
-
* instances.</p>
|
|
475
|
+
* <p>The child components of a highly available environment. For example, in a highly available SAP on AWS workload, the child component consists of the primary and secondar instances.</p>
|
|
484
476
|
* @public
|
|
485
477
|
*/
|
|
486
478
|
ChildComponents?: string[] | undefined;
|
|
@@ -495,35 +487,7 @@ export interface Component {
|
|
|
495
487
|
*/
|
|
496
488
|
ComponentType?: ComponentType | undefined;
|
|
497
489
|
/**
|
|
498
|
-
* <p>The status of the component.</p>
|
|
499
|
-
* <ul>
|
|
500
|
-
* <li>
|
|
501
|
-
* <p>ACTIVATED - this status has been deprecated.</p>
|
|
502
|
-
* </li>
|
|
503
|
-
* <li>
|
|
504
|
-
* <p>STARTING - the component is in the process of being started.</p>
|
|
505
|
-
* </li>
|
|
506
|
-
* <li>
|
|
507
|
-
* <p>STOPPED - the component is not running.</p>
|
|
508
|
-
* </li>
|
|
509
|
-
* <li>
|
|
510
|
-
* <p>STOPPING - the component is in the process of being stopped.</p>
|
|
511
|
-
* </li>
|
|
512
|
-
* <li>
|
|
513
|
-
* <p>RUNNING - the component is running.</p>
|
|
514
|
-
* </li>
|
|
515
|
-
* <li>
|
|
516
|
-
* <p>RUNNING_WITH_ERROR - one or more child component(s) of the parent component is not
|
|
517
|
-
* running. Call <a href="https://docs.aws.amazon.com/ssmsap/latest/APIReference/API_GetComponent.html">
|
|
518
|
-
* <code>GetComponent</code>
|
|
519
|
-
* </a> to review the status of each child
|
|
520
|
-
* component.</p>
|
|
521
|
-
* </li>
|
|
522
|
-
* <li>
|
|
523
|
-
* <p>UNDEFINED - AWS Systems Manager for SAP cannot provide the component status
|
|
524
|
-
* based on the discovered information. Verify your SAP application.</p>
|
|
525
|
-
* </li>
|
|
526
|
-
* </ul>
|
|
490
|
+
* <p>The status of the component.</p> <ul> <li> <p>ACTIVATED - this status has been deprecated.</p> </li> <li> <p>STARTING - the component is in the process of being started.</p> </li> <li> <p>STOPPED - the component is not running.</p> </li> <li> <p>STOPPING - the component is in the process of being stopped.</p> </li> <li> <p>RUNNING - the component is running.</p> </li> <li> <p>RUNNING_WITH_ERROR - one or more child component(s) of the parent component is not running. Call <a href="https://docs.aws.amazon.com/ssmsap/latest/APIReference/API_GetComponent.html"> <code>GetComponent</code> </a> to review the status of each child component.</p> </li> <li> <p>UNDEFINED - AWS Systems Manager for SAP cannot provide the component status based on the discovered information. Verify your SAP application.</p> </li> </ul>
|
|
527
491
|
* @public
|
|
528
492
|
*/
|
|
529
493
|
Status?: ComponentStatus | undefined;
|
|
@@ -593,26 +557,22 @@ export interface Component {
|
|
|
593
557
|
Arn?: string | undefined;
|
|
594
558
|
}
|
|
595
559
|
/**
|
|
596
|
-
* <p>This is information about the component of
|
|
597
|
-
* your SAP application, such as Web Dispatcher.</p>
|
|
560
|
+
* <p>This is information about the component of your SAP application, such as Web Dispatcher.</p>
|
|
598
561
|
* @public
|
|
599
562
|
*/
|
|
600
563
|
export interface ComponentInfo {
|
|
601
564
|
/**
|
|
602
|
-
* <p>This string is the type of the component.</p>
|
|
603
|
-
* <p>Accepted value is <code>WD</code>.</p>
|
|
565
|
+
* <p>This string is the type of the component.</p> <p>Accepted value is <code>WD</code>.</p>
|
|
604
566
|
* @public
|
|
605
567
|
*/
|
|
606
568
|
ComponentType: ComponentType | undefined;
|
|
607
569
|
/**
|
|
608
|
-
* <p>This string is the SAP System ID of the component.</p>
|
|
609
|
-
* <p>Accepted values are alphanumeric.</p>
|
|
570
|
+
* <p>This string is the SAP System ID of the component.</p> <p>Accepted values are alphanumeric.</p>
|
|
610
571
|
* @public
|
|
611
572
|
*/
|
|
612
573
|
Sid: string | undefined;
|
|
613
574
|
/**
|
|
614
|
-
* <p>This is the Amazon EC2 instance on which your SAP component is running.</p>
|
|
615
|
-
* <p>Accepted values are alphanumeric.</p>
|
|
575
|
+
* <p>This is the Amazon EC2 instance on which your SAP component is running.</p> <p>Accepted values are alphanumeric.</p>
|
|
616
576
|
* @public
|
|
617
577
|
*/
|
|
618
578
|
Ec2InstanceId: string | undefined;
|
|
@@ -648,6 +608,157 @@ export interface ComponentSummary {
|
|
|
648
608
|
*/
|
|
649
609
|
Arn?: string | undefined;
|
|
650
610
|
}
|
|
611
|
+
/**
|
|
612
|
+
* @public
|
|
613
|
+
* @enum
|
|
614
|
+
*/
|
|
615
|
+
export declare const ConfigurationCheckType: {
|
|
616
|
+
readonly SAP_CHECK_01: "SAP_CHECK_01";
|
|
617
|
+
readonly SAP_CHECK_02: "SAP_CHECK_02";
|
|
618
|
+
readonly SAP_CHECK_03: "SAP_CHECK_03";
|
|
619
|
+
};
|
|
620
|
+
/**
|
|
621
|
+
* @public
|
|
622
|
+
*/
|
|
623
|
+
export type ConfigurationCheckType = (typeof ConfigurationCheckType)[keyof typeof ConfigurationCheckType];
|
|
624
|
+
/**
|
|
625
|
+
* <p>Represents a configuration check definition supported by AWS Systems Manager for SAP.</p>
|
|
626
|
+
* @public
|
|
627
|
+
*/
|
|
628
|
+
export interface ConfigurationCheckDefinition {
|
|
629
|
+
/**
|
|
630
|
+
* <p>The unique identifier of the configuration check.</p>
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
633
|
+
Id?: ConfigurationCheckType | undefined;
|
|
634
|
+
/**
|
|
635
|
+
* <p>The name of the configuration check.</p>
|
|
636
|
+
* @public
|
|
637
|
+
*/
|
|
638
|
+
Name?: string | undefined;
|
|
639
|
+
/**
|
|
640
|
+
* <p>A description of what the configuration check validates.</p>
|
|
641
|
+
* @public
|
|
642
|
+
*/
|
|
643
|
+
Description?: string | undefined;
|
|
644
|
+
/**
|
|
645
|
+
* <p>The list of SSMSAP application types that this configuration check can be evaluated against.</p>
|
|
646
|
+
* @public
|
|
647
|
+
*/
|
|
648
|
+
ApplicableApplicationTypes?: ApplicationType[] | undefined;
|
|
649
|
+
}
|
|
650
|
+
/**
|
|
651
|
+
* <p>A summary of rule results, providing counts for each status type.</p>
|
|
652
|
+
* @public
|
|
653
|
+
*/
|
|
654
|
+
export interface RuleStatusCounts {
|
|
655
|
+
/**
|
|
656
|
+
* <p>The number of rules that failed.</p>
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
659
|
+
Failed?: number | undefined;
|
|
660
|
+
/**
|
|
661
|
+
* <p>The number of rules that returned warnings.</p>
|
|
662
|
+
* @public
|
|
663
|
+
*/
|
|
664
|
+
Warning?: number | undefined;
|
|
665
|
+
/**
|
|
666
|
+
* <p>The number of rules that returned informational results.</p>
|
|
667
|
+
* @public
|
|
668
|
+
*/
|
|
669
|
+
Info?: number | undefined;
|
|
670
|
+
/**
|
|
671
|
+
* <p>The number of rules that passed.</p>
|
|
672
|
+
* @public
|
|
673
|
+
*/
|
|
674
|
+
Passed?: number | undefined;
|
|
675
|
+
/**
|
|
676
|
+
* <p>The number of rules with unknown status.</p>
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
679
|
+
Unknown?: number | undefined;
|
|
680
|
+
}
|
|
681
|
+
/**
|
|
682
|
+
* @public
|
|
683
|
+
* @enum
|
|
684
|
+
*/
|
|
685
|
+
export declare const OperationStatus: {
|
|
686
|
+
readonly ERROR: "ERROR";
|
|
687
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
688
|
+
readonly SUCCESS: "SUCCESS";
|
|
689
|
+
};
|
|
690
|
+
/**
|
|
691
|
+
* @public
|
|
692
|
+
*/
|
|
693
|
+
export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
|
|
694
|
+
/**
|
|
695
|
+
* <p>Represents a configuration check operation that has been executed against an application.</p>
|
|
696
|
+
* @public
|
|
697
|
+
*/
|
|
698
|
+
export interface ConfigurationCheckOperation {
|
|
699
|
+
/**
|
|
700
|
+
* <p>The unique identifier of the configuration check operation.</p>
|
|
701
|
+
* @public
|
|
702
|
+
*/
|
|
703
|
+
Id?: string | undefined;
|
|
704
|
+
/**
|
|
705
|
+
* <p>The ID of the application against which the configuration check was performed.</p>
|
|
706
|
+
* @public
|
|
707
|
+
*/
|
|
708
|
+
ApplicationId?: string | undefined;
|
|
709
|
+
/**
|
|
710
|
+
* <p>The current status of the configuration check operation.</p>
|
|
711
|
+
* @public
|
|
712
|
+
*/
|
|
713
|
+
Status?: OperationStatus | undefined;
|
|
714
|
+
/**
|
|
715
|
+
* <p>A message providing additional details about the status of the configuration check operation.</p>
|
|
716
|
+
* @public
|
|
717
|
+
*/
|
|
718
|
+
StatusMessage?: string | undefined;
|
|
719
|
+
/**
|
|
720
|
+
* <p>The unique identifier of the configuration check that was performed.</p>
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
723
|
+
ConfigurationCheckId?: ConfigurationCheckType | undefined;
|
|
724
|
+
/**
|
|
725
|
+
* <p>The name of the configuration check that was performed.</p>
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
728
|
+
ConfigurationCheckName?: string | undefined;
|
|
729
|
+
/**
|
|
730
|
+
* <p>A description of the configuration check that was performed.</p>
|
|
731
|
+
* @public
|
|
732
|
+
*/
|
|
733
|
+
ConfigurationCheckDescription?: string | undefined;
|
|
734
|
+
/**
|
|
735
|
+
* <p>The time at which the configuration check operation started.</p>
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
738
|
+
StartTime?: Date | undefined;
|
|
739
|
+
/**
|
|
740
|
+
* <p>The time at which the configuration check operation completed.</p>
|
|
741
|
+
* @public
|
|
742
|
+
*/
|
|
743
|
+
EndTime?: Date | undefined;
|
|
744
|
+
/**
|
|
745
|
+
* <p>A summary of all the rule results, showing counts for each status type.</p>
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
RuleStatusCounts?: RuleStatusCounts | undefined;
|
|
749
|
+
}
|
|
750
|
+
/**
|
|
751
|
+
* @public
|
|
752
|
+
* @enum
|
|
753
|
+
*/
|
|
754
|
+
export declare const ConfigurationCheckOperationListingMode: {
|
|
755
|
+
readonly ALL_OPERATIONS: "ALL_OPERATIONS";
|
|
756
|
+
readonly LATEST_PER_CHECK: "LATEST_PER_CHECK";
|
|
757
|
+
};
|
|
758
|
+
/**
|
|
759
|
+
* @public
|
|
760
|
+
*/
|
|
761
|
+
export type ConfigurationCheckOperationListingMode = (typeof ConfigurationCheckOperationListingMode)[keyof typeof ConfigurationCheckOperationListingMode];
|
|
651
762
|
/**
|
|
652
763
|
* <p>A conflict has occurred.</p>
|
|
653
764
|
* @public
|
|
@@ -701,8 +812,7 @@ export declare const DatabaseStatus: {
|
|
|
701
812
|
*/
|
|
702
813
|
export type DatabaseStatus = (typeof DatabaseStatus)[keyof typeof DatabaseStatus];
|
|
703
814
|
/**
|
|
704
|
-
* <p>The SAP HANA database of the application registered with AWS Systems Manager for
|
|
705
|
-
* SAP.</p>
|
|
815
|
+
* <p>The SAP HANA database of the application registered with AWS Systems Manager for SAP.</p>
|
|
706
816
|
* @public
|
|
707
817
|
*/
|
|
708
818
|
export interface Database {
|
|
@@ -762,8 +872,7 @@ export interface Database {
|
|
|
762
872
|
*/
|
|
763
873
|
LastUpdated?: Date | undefined;
|
|
764
874
|
/**
|
|
765
|
-
* <p>The Amazon Resource Names of the connected AWS Systems Manager for SAP
|
|
766
|
-
* components.</p>
|
|
875
|
+
* <p>The Amazon Resource Names of the connected AWS Systems Manager for SAP components.</p>
|
|
767
876
|
* @public
|
|
768
877
|
*/
|
|
769
878
|
ConnectedComponentArns?: string[] | undefined;
|
|
@@ -936,9 +1045,7 @@ export interface Filter {
|
|
|
936
1045
|
*/
|
|
937
1046
|
Name: string | undefined;
|
|
938
1047
|
/**
|
|
939
|
-
* <p>The filter values. Filter values are case-sensitive. If you specify multiple values for
|
|
940
|
-
* a filter, the values are joined with an OR, and the request returns all results that match
|
|
941
|
-
* any of the specified values</p>
|
|
1048
|
+
* <p>The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values</p>
|
|
942
1049
|
* @public
|
|
943
1050
|
*/
|
|
944
1051
|
Value: string | undefined;
|
|
@@ -973,8 +1080,7 @@ export interface GetApplicationInput {
|
|
|
973
1080
|
*/
|
|
974
1081
|
export interface GetApplicationOutput {
|
|
975
1082
|
/**
|
|
976
|
-
* <p>Returns all of the metadata of an application registered with AWS Systems Manager for
|
|
977
|
-
* SAP.</p>
|
|
1083
|
+
* <p>Returns all of the metadata of an application registered with AWS Systems Manager for SAP.</p>
|
|
978
1084
|
* @public
|
|
979
1085
|
*/
|
|
980
1086
|
Application?: Application | undefined;
|
|
@@ -1014,6 +1120,26 @@ export interface GetComponentOutput {
|
|
|
1014
1120
|
*/
|
|
1015
1121
|
Tags?: Record<string, string> | undefined;
|
|
1016
1122
|
}
|
|
1123
|
+
/**
|
|
1124
|
+
* @public
|
|
1125
|
+
*/
|
|
1126
|
+
export interface GetConfigurationCheckOperationInput {
|
|
1127
|
+
/**
|
|
1128
|
+
* <p>The ID of the configuration check operation.</p>
|
|
1129
|
+
* @public
|
|
1130
|
+
*/
|
|
1131
|
+
OperationId: string | undefined;
|
|
1132
|
+
}
|
|
1133
|
+
/**
|
|
1134
|
+
* @public
|
|
1135
|
+
*/
|
|
1136
|
+
export interface GetConfigurationCheckOperationOutput {
|
|
1137
|
+
/**
|
|
1138
|
+
* <p>Returns the details of a configuration check operation.</p>
|
|
1139
|
+
* @public
|
|
1140
|
+
*/
|
|
1141
|
+
ConfigurationCheckOperation?: ConfigurationCheckOperation | undefined;
|
|
1142
|
+
}
|
|
1017
1143
|
/**
|
|
1018
1144
|
* @public
|
|
1019
1145
|
*/
|
|
@@ -1044,8 +1170,7 @@ export interface GetDatabaseInput {
|
|
|
1044
1170
|
*/
|
|
1045
1171
|
export interface GetDatabaseOutput {
|
|
1046
1172
|
/**
|
|
1047
|
-
* <p>The SAP HANA database of an application registered with AWS Systems Manager for
|
|
1048
|
-
* SAP.</p>
|
|
1173
|
+
* <p>The SAP HANA database of an application registered with AWS Systems Manager for SAP.</p>
|
|
1049
1174
|
* @public
|
|
1050
1175
|
*/
|
|
1051
1176
|
Database?: Database | undefined;
|
|
@@ -1065,19 +1190,6 @@ export interface GetOperationInput {
|
|
|
1065
1190
|
*/
|
|
1066
1191
|
OperationId: string | undefined;
|
|
1067
1192
|
}
|
|
1068
|
-
/**
|
|
1069
|
-
* @public
|
|
1070
|
-
* @enum
|
|
1071
|
-
*/
|
|
1072
|
-
export declare const OperationStatus: {
|
|
1073
|
-
readonly ERROR: "ERROR";
|
|
1074
|
-
readonly INPROGRESS: "INPROGRESS";
|
|
1075
|
-
readonly SUCCESS: "SUCCESS";
|
|
1076
|
-
};
|
|
1077
|
-
/**
|
|
1078
|
-
* @public
|
|
1079
|
-
*/
|
|
1080
|
-
export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
|
|
1081
1193
|
/**
|
|
1082
1194
|
* <p>The operations performed by AWS Systems Manager for SAP.</p>
|
|
1083
1195
|
* @public
|
|
@@ -1184,8 +1296,7 @@ export interface ListApplicationsInput {
|
|
|
1184
1296
|
*/
|
|
1185
1297
|
NextToken?: string | undefined;
|
|
1186
1298
|
/**
|
|
1187
|
-
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
1188
|
-
* results, make another call with the returned nextToken value.</p>
|
|
1299
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p>
|
|
1189
1300
|
* @public
|
|
1190
1301
|
*/
|
|
1191
1302
|
MaxResults?: number | undefined;
|
|
@@ -1205,8 +1316,7 @@ export interface ListApplicationsOutput {
|
|
|
1205
1316
|
*/
|
|
1206
1317
|
Applications?: ApplicationSummary[] | undefined;
|
|
1207
1318
|
/**
|
|
1208
|
-
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
1209
|
-
* no more results to return.</p>
|
|
1319
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1210
1320
|
* @public
|
|
1211
1321
|
*/
|
|
1212
1322
|
NextToken?: string | undefined;
|
|
@@ -1226,10 +1336,7 @@ export interface ListComponentsInput {
|
|
|
1226
1336
|
*/
|
|
1227
1337
|
NextToken?: string | undefined;
|
|
1228
1338
|
/**
|
|
1229
|
-
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
1230
|
-
* results, make another call with the returned nextToken value.</p>
|
|
1231
|
-
* <p>If you do not specify a value for MaxResults, the request returns 50 items per page by
|
|
1232
|
-
* default.</p>
|
|
1339
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p> <p>If you do not specify a value for MaxResults, the request returns 50 items per page by default.</p>
|
|
1233
1340
|
* @public
|
|
1234
1341
|
*/
|
|
1235
1342
|
MaxResults?: number | undefined;
|
|
@@ -1244,8 +1351,82 @@ export interface ListComponentsOutput {
|
|
|
1244
1351
|
*/
|
|
1245
1352
|
Components?: ComponentSummary[] | undefined;
|
|
1246
1353
|
/**
|
|
1247
|
-
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
1248
|
-
*
|
|
1354
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1355
|
+
* @public
|
|
1356
|
+
*/
|
|
1357
|
+
NextToken?: string | undefined;
|
|
1358
|
+
}
|
|
1359
|
+
/**
|
|
1360
|
+
* @public
|
|
1361
|
+
*/
|
|
1362
|
+
export interface ListConfigurationCheckDefinitionsInput {
|
|
1363
|
+
/**
|
|
1364
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p>
|
|
1365
|
+
* @public
|
|
1366
|
+
*/
|
|
1367
|
+
MaxResults?: number | undefined;
|
|
1368
|
+
/**
|
|
1369
|
+
* <p>The token for the next page of results.</p>
|
|
1370
|
+
* @public
|
|
1371
|
+
*/
|
|
1372
|
+
NextToken?: string | undefined;
|
|
1373
|
+
}
|
|
1374
|
+
/**
|
|
1375
|
+
* @public
|
|
1376
|
+
*/
|
|
1377
|
+
export interface ListConfigurationCheckDefinitionsOutput {
|
|
1378
|
+
/**
|
|
1379
|
+
* <p>The configuration check types supported by AWS Systems Manager for SAP.</p>
|
|
1380
|
+
* @public
|
|
1381
|
+
*/
|
|
1382
|
+
ConfigurationChecks?: ConfigurationCheckDefinition[] | undefined;
|
|
1383
|
+
/**
|
|
1384
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1385
|
+
* @public
|
|
1386
|
+
*/
|
|
1387
|
+
NextToken?: string | undefined;
|
|
1388
|
+
}
|
|
1389
|
+
/**
|
|
1390
|
+
* @public
|
|
1391
|
+
*/
|
|
1392
|
+
export interface ListConfigurationCheckOperationsInput {
|
|
1393
|
+
/**
|
|
1394
|
+
* <p>The ID of the application.</p>
|
|
1395
|
+
* @public
|
|
1396
|
+
*/
|
|
1397
|
+
ApplicationId: string | undefined;
|
|
1398
|
+
/**
|
|
1399
|
+
* <p>The mode for listing configuration check operations. Defaults to "LATEST_PER_CHECK".</p> <ul> <li> <p>LATEST_PER_CHECK - Will list the latest configuration check operation per check type.</p> </li> <li> <p>ALL_OPERATIONS - Will list all configuration check operations performed on the application.</p> </li> </ul>
|
|
1400
|
+
* @public
|
|
1401
|
+
*/
|
|
1402
|
+
ListMode?: ConfigurationCheckOperationListingMode | undefined;
|
|
1403
|
+
/**
|
|
1404
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p>
|
|
1405
|
+
* @public
|
|
1406
|
+
*/
|
|
1407
|
+
MaxResults?: number | undefined;
|
|
1408
|
+
/**
|
|
1409
|
+
* <p>The token for the next page of results.</p>
|
|
1410
|
+
* @public
|
|
1411
|
+
*/
|
|
1412
|
+
NextToken?: string | undefined;
|
|
1413
|
+
/**
|
|
1414
|
+
* <p>The filters of an operation.</p>
|
|
1415
|
+
* @public
|
|
1416
|
+
*/
|
|
1417
|
+
Filters?: Filter[] | undefined;
|
|
1418
|
+
}
|
|
1419
|
+
/**
|
|
1420
|
+
* @public
|
|
1421
|
+
*/
|
|
1422
|
+
export interface ListConfigurationCheckOperationsOutput {
|
|
1423
|
+
/**
|
|
1424
|
+
* <p>The configuration check operations performed by AWS Systems Manager for SAP.</p>
|
|
1425
|
+
* @public
|
|
1426
|
+
*/
|
|
1427
|
+
ConfigurationCheckOperations?: ConfigurationCheckOperation[] | undefined;
|
|
1428
|
+
/**
|
|
1429
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1249
1430
|
* @public
|
|
1250
1431
|
*/
|
|
1251
1432
|
NextToken?: string | undefined;
|
|
@@ -1270,9 +1451,7 @@ export interface ListDatabasesInput {
|
|
|
1270
1451
|
*/
|
|
1271
1452
|
NextToken?: string | undefined;
|
|
1272
1453
|
/**
|
|
1273
|
-
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
1274
|
-
* results, make another call with the returned nextToken value. If you do not specify a value
|
|
1275
|
-
* for MaxResults, the request returns 50 items per page by default.</p>
|
|
1454
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If you do not specify a value for MaxResults, the request returns 50 items per page by default.</p>
|
|
1276
1455
|
* @public
|
|
1277
1456
|
*/
|
|
1278
1457
|
MaxResults?: number | undefined;
|
|
@@ -1287,8 +1466,7 @@ export interface ListDatabasesOutput {
|
|
|
1287
1466
|
*/
|
|
1288
1467
|
Databases?: DatabaseSummary[] | undefined;
|
|
1289
1468
|
/**
|
|
1290
|
-
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
1291
|
-
* no more results to return.</p>
|
|
1469
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1292
1470
|
* @public
|
|
1293
1471
|
*/
|
|
1294
1472
|
NextToken?: string | undefined;
|
|
@@ -1303,45 +1481,33 @@ export interface ListOperationEventsInput {
|
|
|
1303
1481
|
*/
|
|
1304
1482
|
OperationId: string | undefined;
|
|
1305
1483
|
/**
|
|
1306
|
-
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
1307
|
-
* results, make another call with the returned nextToken value.</p>
|
|
1308
|
-
* <p>If you do not specify a value for <code>MaxResults</code>, the request returns 50 items
|
|
1309
|
-
* per page by default.</p>
|
|
1484
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p> <p>If you do not specify a value for <code>MaxResults</code>, the request returns 50 items per page by default.</p>
|
|
1310
1485
|
* @public
|
|
1311
1486
|
*/
|
|
1312
1487
|
MaxResults?: number | undefined;
|
|
1313
1488
|
/**
|
|
1314
|
-
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
1315
|
-
* no more results to return.</p>
|
|
1489
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1316
1490
|
* @public
|
|
1317
1491
|
*/
|
|
1318
1492
|
NextToken?: string | undefined;
|
|
1319
1493
|
/**
|
|
1320
|
-
* <p>Optionally specify filters to narrow the returned operation event items.</p>
|
|
1321
|
-
* <p>Valid filter names include <code>status</code>, <code>resourceID</code>, and
|
|
1322
|
-
* <code>resourceType</code>. The valid operator for all three filters is
|
|
1323
|
-
* <code>Equals</code>.</p>
|
|
1494
|
+
* <p>Optionally specify filters to narrow the returned operation event items.</p> <p>Valid filter names include <code>status</code>, <code>resourceID</code>, and <code>resourceType</code>. The valid operator for all three filters is <code>Equals</code>.</p>
|
|
1324
1495
|
* @public
|
|
1325
1496
|
*/
|
|
1326
1497
|
Filters?: Filter[] | undefined;
|
|
1327
1498
|
}
|
|
1328
1499
|
/**
|
|
1329
|
-
* <p>The resource contains a <code>ResourceArn</code> and the
|
|
1330
|
-
* <code>ResourceType</code>.</p>
|
|
1500
|
+
* <p>The resource contains a <code>ResourceArn</code> and the <code>ResourceType</code>.</p>
|
|
1331
1501
|
* @public
|
|
1332
1502
|
*/
|
|
1333
1503
|
export interface Resource {
|
|
1334
1504
|
/**
|
|
1335
|
-
* <p>The Amazon Resource Name (ARN) of the source resource.</p>
|
|
1336
|
-
* <p>Example of <code>ResourceArn</code>:
|
|
1337
|
-
* "<code>arn:aws:ec2:us-east-1:111111111111:instance/i-abcdefgh987654321</code>"</p>
|
|
1505
|
+
* <p>The Amazon Resource Name (ARN) of the source resource.</p> <p>Example of <code>ResourceArn</code>: "<code>arn:aws:ec2:us-east-1:111111111111:instance/i-abcdefgh987654321</code>"</p>
|
|
1338
1506
|
* @public
|
|
1339
1507
|
*/
|
|
1340
1508
|
ResourceArn?: string | undefined;
|
|
1341
1509
|
/**
|
|
1342
|
-
* <p>The resource type.</p>
|
|
1343
|
-
* <p>Example of <code>ResourceType</code>: "<code>AWS::SystemsManagerSAP::Component</code>"
|
|
1344
|
-
* or "<code>AWS::EC2::Instance</code>".</p>
|
|
1510
|
+
* <p>The resource type.</p> <p>Example of <code>ResourceType</code>: "<code>AWS::SystemsManagerSAP::Component</code>" or "<code>AWS::EC2::Instance</code>".</p>
|
|
1345
1511
|
* @public
|
|
1346
1512
|
*/
|
|
1347
1513
|
ResourceType?: string | undefined;
|
|
@@ -1360,45 +1526,22 @@ export declare const OperationEventStatus: {
|
|
|
1360
1526
|
*/
|
|
1361
1527
|
export type OperationEventStatus = (typeof OperationEventStatus)[keyof typeof OperationEventStatus];
|
|
1362
1528
|
/**
|
|
1363
|
-
* <p>An operation event returns details for an operation, including key milestones which can
|
|
1364
|
-
* be used to monitor and track operations in progress.</p>
|
|
1365
|
-
* <p>Operation events contain:</p>
|
|
1366
|
-
* <ul>
|
|
1367
|
-
* <li>
|
|
1368
|
-
* <p>Description string</p>
|
|
1369
|
-
* </li>
|
|
1370
|
-
* <li>
|
|
1371
|
-
* <p>Resource, including its ARN and type</p>
|
|
1372
|
-
* </li>
|
|
1373
|
-
* <li>
|
|
1374
|
-
* <p>Status</p>
|
|
1375
|
-
* </li>
|
|
1376
|
-
* <li>
|
|
1377
|
-
* <p>StatusMessage string</p>
|
|
1378
|
-
* </li>
|
|
1379
|
-
* <li>
|
|
1380
|
-
* <p>TimeStamp</p>
|
|
1381
|
-
* </li>
|
|
1382
|
-
* </ul>
|
|
1383
|
-
* <p>Operation event examples include StartApplication or StopApplication.</p>
|
|
1529
|
+
* <p>An operation event returns details for an operation, including key milestones which can be used to monitor and track operations in progress.</p> <p>Operation events contain:</p> <ul> <li> <p>Description string</p> </li> <li> <p>Resource, including its ARN and type</p> </li> <li> <p>Status</p> </li> <li> <p>StatusMessage string</p> </li> <li> <p>TimeStamp</p> </li> </ul> <p>Operation event examples include StartApplication or StopApplication.</p>
|
|
1384
1530
|
* @public
|
|
1385
1531
|
*/
|
|
1386
1532
|
export interface OperationEvent {
|
|
1387
1533
|
/**
|
|
1388
|
-
* <p>A description of the operation event. For example, "Stop the EC2 instance
|
|
1389
|
-
* i-abcdefgh987654321".</p>
|
|
1534
|
+
* <p>A description of the operation event. For example, "Stop the EC2 instance i-abcdefgh987654321".</p>
|
|
1390
1535
|
* @public
|
|
1391
1536
|
*/
|
|
1392
1537
|
Description?: string | undefined;
|
|
1393
1538
|
/**
|
|
1394
|
-
* <p>The resource involved in the operations event.</p>
|
|
1395
|
-
* <p>Contains <code>ResourceArn</code> ARN and <code>ResourceType</code>.</p>
|
|
1539
|
+
* <p>The resource involved in the operations event.</p> <p>Contains <code>ResourceArn</code> ARN and <code>ResourceType</code>.</p>
|
|
1396
1540
|
* @public
|
|
1397
1541
|
*/
|
|
1398
1542
|
Resource?: Resource | undefined;
|
|
1399
1543
|
/**
|
|
1400
|
-
* <p>The status of the operation event. The possible statuses are: <code>IN_PROGRESS</code>,
|
|
1401
|
-
* <code>COMPLETED</code>, and <code>FAILED</code>.</p>
|
|
1544
|
+
* <p>The status of the operation event. The possible statuses are: <code>IN_PROGRESS</code>, <code>COMPLETED</code>, and <code>FAILED</code>.</p>
|
|
1402
1545
|
* @public
|
|
1403
1546
|
*/
|
|
1404
1547
|
Status?: OperationEventStatus | undefined;
|
|
@@ -1423,8 +1566,7 @@ export interface ListOperationEventsOutput {
|
|
|
1423
1566
|
*/
|
|
1424
1567
|
OperationEvents?: OperationEvent[] | undefined;
|
|
1425
1568
|
/**
|
|
1426
|
-
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
1427
|
-
* no more results to return.</p>
|
|
1569
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1428
1570
|
* @public
|
|
1429
1571
|
*/
|
|
1430
1572
|
NextToken?: string | undefined;
|
|
@@ -1439,9 +1581,7 @@ export interface ListOperationsInput {
|
|
|
1439
1581
|
*/
|
|
1440
1582
|
ApplicationId: string | undefined;
|
|
1441
1583
|
/**
|
|
1442
|
-
* <p>The maximum number of results to return with a single call. To retrieve the remaining
|
|
1443
|
-
* results, make another call with the returned nextToken value. If you do not specify a value
|
|
1444
|
-
* for MaxResults, the request returns 50 items per page by default.</p>
|
|
1584
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If you do not specify a value for MaxResults, the request returns 50 items per page by default.</p>
|
|
1445
1585
|
* @public
|
|
1446
1586
|
*/
|
|
1447
1587
|
MaxResults?: number | undefined;
|
|
@@ -1466,8 +1606,149 @@ export interface ListOperationsOutput {
|
|
|
1466
1606
|
*/
|
|
1467
1607
|
Operations?: Operation[] | undefined;
|
|
1468
1608
|
/**
|
|
1469
|
-
* <p>The token to use to retrieve the next page of results. This value is null when there are
|
|
1470
|
-
*
|
|
1609
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1610
|
+
* @public
|
|
1611
|
+
*/
|
|
1612
|
+
NextToken?: string | undefined;
|
|
1613
|
+
}
|
|
1614
|
+
/**
|
|
1615
|
+
* @public
|
|
1616
|
+
*/
|
|
1617
|
+
export interface ListSubCheckResultsInput {
|
|
1618
|
+
/**
|
|
1619
|
+
* <p>The ID of the configuration check operation.</p>
|
|
1620
|
+
* @public
|
|
1621
|
+
*/
|
|
1622
|
+
OperationId: string | undefined;
|
|
1623
|
+
/**
|
|
1624
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p>
|
|
1625
|
+
* @public
|
|
1626
|
+
*/
|
|
1627
|
+
MaxResults?: number | undefined;
|
|
1628
|
+
/**
|
|
1629
|
+
* <p>The token for the next page of results.</p>
|
|
1630
|
+
* @public
|
|
1631
|
+
*/
|
|
1632
|
+
NextToken?: string | undefined;
|
|
1633
|
+
}
|
|
1634
|
+
/**
|
|
1635
|
+
* <p>Represents the result of a sub-check within a configuration check operation.</p>
|
|
1636
|
+
* @public
|
|
1637
|
+
*/
|
|
1638
|
+
export interface SubCheckResult {
|
|
1639
|
+
/**
|
|
1640
|
+
* <p>The unique identifier of the sub-check result.</p>
|
|
1641
|
+
* @public
|
|
1642
|
+
*/
|
|
1643
|
+
Id?: string | undefined;
|
|
1644
|
+
/**
|
|
1645
|
+
* <p>The name of the sub-check.</p>
|
|
1646
|
+
* @public
|
|
1647
|
+
*/
|
|
1648
|
+
Name?: string | undefined;
|
|
1649
|
+
/**
|
|
1650
|
+
* <p>A description of what the sub-check validates.</p>
|
|
1651
|
+
* @public
|
|
1652
|
+
*/
|
|
1653
|
+
Description?: string | undefined;
|
|
1654
|
+
/**
|
|
1655
|
+
* <p>A list of references or documentation links related to the sub-check.</p>
|
|
1656
|
+
* @public
|
|
1657
|
+
*/
|
|
1658
|
+
References?: string[] | undefined;
|
|
1659
|
+
}
|
|
1660
|
+
/**
|
|
1661
|
+
* @public
|
|
1662
|
+
*/
|
|
1663
|
+
export interface ListSubCheckResultsOutput {
|
|
1664
|
+
/**
|
|
1665
|
+
* <p>The sub-check results of a configuration check operation.</p>
|
|
1666
|
+
* @public
|
|
1667
|
+
*/
|
|
1668
|
+
SubCheckResults?: SubCheckResult[] | undefined;
|
|
1669
|
+
/**
|
|
1670
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1671
|
+
* @public
|
|
1672
|
+
*/
|
|
1673
|
+
NextToken?: string | undefined;
|
|
1674
|
+
}
|
|
1675
|
+
/**
|
|
1676
|
+
* @public
|
|
1677
|
+
*/
|
|
1678
|
+
export interface ListSubCheckRuleResultsInput {
|
|
1679
|
+
/**
|
|
1680
|
+
* <p>The ID of the sub check result.</p>
|
|
1681
|
+
* @public
|
|
1682
|
+
*/
|
|
1683
|
+
SubCheckResultId: string | undefined;
|
|
1684
|
+
/**
|
|
1685
|
+
* <p>The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.</p>
|
|
1686
|
+
* @public
|
|
1687
|
+
*/
|
|
1688
|
+
MaxResults?: number | undefined;
|
|
1689
|
+
/**
|
|
1690
|
+
* <p>The token for the next page of results.</p>
|
|
1691
|
+
* @public
|
|
1692
|
+
*/
|
|
1693
|
+
NextToken?: string | undefined;
|
|
1694
|
+
}
|
|
1695
|
+
/**
|
|
1696
|
+
* @public
|
|
1697
|
+
* @enum
|
|
1698
|
+
*/
|
|
1699
|
+
export declare const RuleResultStatus: {
|
|
1700
|
+
readonly FAILED: "FAILED";
|
|
1701
|
+
readonly INFO: "INFO";
|
|
1702
|
+
readonly PASSED: "PASSED";
|
|
1703
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1704
|
+
readonly WARNING: "WARNING";
|
|
1705
|
+
};
|
|
1706
|
+
/**
|
|
1707
|
+
* @public
|
|
1708
|
+
*/
|
|
1709
|
+
export type RuleResultStatus = (typeof RuleResultStatus)[keyof typeof RuleResultStatus];
|
|
1710
|
+
/**
|
|
1711
|
+
* <p>Represents the result of a single rule within a configuration check.</p>
|
|
1712
|
+
* @public
|
|
1713
|
+
*/
|
|
1714
|
+
export interface RuleResult {
|
|
1715
|
+
/**
|
|
1716
|
+
* <p>The unique identifier of the rule result.</p>
|
|
1717
|
+
* @public
|
|
1718
|
+
*/
|
|
1719
|
+
Id?: string | undefined;
|
|
1720
|
+
/**
|
|
1721
|
+
* <p>A description of what the rule validates.</p>
|
|
1722
|
+
* @public
|
|
1723
|
+
*/
|
|
1724
|
+
Description?: string | undefined;
|
|
1725
|
+
/**
|
|
1726
|
+
* <p>The status of the rule result.</p>
|
|
1727
|
+
* @public
|
|
1728
|
+
*/
|
|
1729
|
+
Status?: RuleResultStatus | undefined;
|
|
1730
|
+
/**
|
|
1731
|
+
* <p>A message providing details about the rule result.</p>
|
|
1732
|
+
* @public
|
|
1733
|
+
*/
|
|
1734
|
+
Message?: string | undefined;
|
|
1735
|
+
/**
|
|
1736
|
+
* <p>Additional metadata associated with the rule result.</p>
|
|
1737
|
+
* @public
|
|
1738
|
+
*/
|
|
1739
|
+
Metadata?: Record<string, string> | undefined;
|
|
1740
|
+
}
|
|
1741
|
+
/**
|
|
1742
|
+
* @public
|
|
1743
|
+
*/
|
|
1744
|
+
export interface ListSubCheckRuleResultsOutput {
|
|
1745
|
+
/**
|
|
1746
|
+
* <p>The rule results of a sub-check belonging to a configuration check operation.</p>
|
|
1747
|
+
* @public
|
|
1748
|
+
*/
|
|
1749
|
+
RuleResults?: RuleResult[] | undefined;
|
|
1750
|
+
/**
|
|
1751
|
+
* <p>The token to use to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
1471
1752
|
* @public
|
|
1472
1753
|
*/
|
|
1473
1754
|
NextToken?: string | undefined;
|
|
@@ -1567,11 +1848,7 @@ export interface RegisterApplicationInput {
|
|
|
1567
1848
|
*/
|
|
1568
1849
|
DatabaseArn?: string | undefined;
|
|
1569
1850
|
/**
|
|
1570
|
-
* <p>This is an optional parameter for component details
|
|
1571
|
-
* to which the SAP ABAP application is attached,
|
|
1572
|
-
* such as Web Dispatcher.</p>
|
|
1573
|
-
* <p>This is an array of ApplicationComponent objects.
|
|
1574
|
-
* You may input 0 to 5 items.</p>
|
|
1851
|
+
* <p>This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.</p> <p>This is an array of ApplicationComponent objects. You may input 0 to 5 items.</p>
|
|
1575
1852
|
* @public
|
|
1576
1853
|
*/
|
|
1577
1854
|
ComponentsInfo?: ComponentInfo[] | undefined;
|
|
@@ -1631,6 +1908,31 @@ export interface StartApplicationRefreshOutput {
|
|
|
1631
1908
|
*/
|
|
1632
1909
|
OperationId?: string | undefined;
|
|
1633
1910
|
}
|
|
1911
|
+
/**
|
|
1912
|
+
* @public
|
|
1913
|
+
*/
|
|
1914
|
+
export interface StartConfigurationChecksInput {
|
|
1915
|
+
/**
|
|
1916
|
+
* <p>The ID of the application.</p>
|
|
1917
|
+
* @public
|
|
1918
|
+
*/
|
|
1919
|
+
ApplicationId: string | undefined;
|
|
1920
|
+
/**
|
|
1921
|
+
* <p>The list of configuration checks to perform.</p>
|
|
1922
|
+
* @public
|
|
1923
|
+
*/
|
|
1924
|
+
ConfigurationCheckIds?: ConfigurationCheckType[] | undefined;
|
|
1925
|
+
}
|
|
1926
|
+
/**
|
|
1927
|
+
* @public
|
|
1928
|
+
*/
|
|
1929
|
+
export interface StartConfigurationChecksOutput {
|
|
1930
|
+
/**
|
|
1931
|
+
* <p>The configuration check operations that were started.</p>
|
|
1932
|
+
* @public
|
|
1933
|
+
*/
|
|
1934
|
+
ConfigurationCheckOperations?: ConfigurationCheckOperation[] | undefined;
|
|
1935
|
+
}
|
|
1634
1936
|
/**
|
|
1635
1937
|
* @public
|
|
1636
1938
|
*/
|
|
@@ -1641,15 +1943,12 @@ export interface StopApplicationInput {
|
|
|
1641
1943
|
*/
|
|
1642
1944
|
ApplicationId: string | undefined;
|
|
1643
1945
|
/**
|
|
1644
|
-
* <p>Specify the <code>ConnectedEntityType</code>. Accepted type is <code>DBMS</code>.</p>
|
|
1645
|
-
* <p>If this parameter is included, the connected DBMS (Database Management System) will be
|
|
1646
|
-
* stopped.</p>
|
|
1946
|
+
* <p>Specify the <code>ConnectedEntityType</code>. Accepted type is <code>DBMS</code>.</p> <p>If this parameter is included, the connected DBMS (Database Management System) will be stopped.</p>
|
|
1647
1947
|
* @public
|
|
1648
1948
|
*/
|
|
1649
1949
|
StopConnectedEntity?: ConnectedEntityType | undefined;
|
|
1650
1950
|
/**
|
|
1651
|
-
* <p>Boolean. If included and if set to <code>True</code>, the StopApplication operation will
|
|
1652
|
-
* shut down the associated Amazon EC2 instance in addition to the application.</p>
|
|
1951
|
+
* <p>Boolean. If included and if set to <code>True</code>, the StopApplication operation will shut down the associated Amazon EC2 instance in addition to the application.</p>
|
|
1653
1952
|
* @public
|
|
1654
1953
|
*/
|
|
1655
1954
|
IncludeEc2InstanceShutdown?: boolean | undefined;
|
|
@@ -1694,8 +1993,7 @@ export interface UntagResourceRequest {
|
|
|
1694
1993
|
*/
|
|
1695
1994
|
resourceArn: string | undefined;
|
|
1696
1995
|
/**
|
|
1697
|
-
* <p>Adds/updates or removes credentials for applications registered with AWS Systems
|
|
1698
|
-
* Manager for SAP.</p>
|
|
1996
|
+
* <p>Adds/updates or removes credentials for applications registered with AWS Systems Manager for SAP.</p>
|
|
1699
1997
|
* @public
|
|
1700
1998
|
*/
|
|
1701
1999
|
tagKeys: string[] | undefined;
|
|
@@ -1730,8 +2028,7 @@ export interface UpdateApplicationSettingsInput {
|
|
|
1730
2028
|
*/
|
|
1731
2029
|
Backint?: BackintConfig | undefined;
|
|
1732
2030
|
/**
|
|
1733
|
-
* <p>The Amazon Resource Name of the SAP HANA database that replaces the current SAP HANA
|
|
1734
|
-
* connection with the SAP_ABAP application.</p>
|
|
2031
|
+
* <p>The Amazon Resource Name of the SAP HANA database that replaces the current SAP HANA connection with the SAP_ABAP application.</p>
|
|
1735
2032
|
* @public
|
|
1736
2033
|
*/
|
|
1737
2034
|
DatabaseArn?: string | undefined;
|