@aws-sdk/client-ssm-sap 3.687.0 → 3.692.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.
@@ -68,53 +68,53 @@ export interface Application {
68
68
  * <p>The ID of the application.</p>
69
69
  * @public
70
70
  */
71
- Id?: string;
71
+ Id?: string | undefined;
72
72
  /**
73
73
  * <p>The type of the application.</p>
74
74
  * @public
75
75
  */
76
- Type?: ApplicationType;
76
+ Type?: ApplicationType | undefined;
77
77
  /**
78
78
  * <p>The Amazon Resource Name (ARN) of the application.</p>
79
79
  * @public
80
80
  */
81
- Arn?: string;
81
+ Arn?: string | undefined;
82
82
  /**
83
83
  * <p>The Amazon Resource Name (ARN) of the Application Registry.</p>
84
84
  * @public
85
85
  */
86
- AppRegistryArn?: string;
86
+ AppRegistryArn?: string | undefined;
87
87
  /**
88
88
  * <p>The status of the application.</p>
89
89
  * @public
90
90
  */
91
- Status?: ApplicationStatus;
91
+ Status?: ApplicationStatus | undefined;
92
92
  /**
93
93
  * <p>The latest discovery result for the application.</p>
94
94
  * @public
95
95
  */
96
- DiscoveryStatus?: ApplicationDiscoveryStatus;
96
+ DiscoveryStatus?: ApplicationDiscoveryStatus | undefined;
97
97
  /**
98
98
  * <p>The components of the application.</p>
99
99
  * @public
100
100
  */
101
- Components?: string[];
101
+ Components?: string[] | undefined;
102
102
  /**
103
103
  * <p>The time at which the application was last updated.</p>
104
104
  * @public
105
105
  */
106
- LastUpdated?: Date;
106
+ LastUpdated?: Date | undefined;
107
107
  /**
108
108
  * <p>The status message.</p>
109
109
  * @public
110
110
  */
111
- StatusMessage?: string;
111
+ StatusMessage?: string | undefined;
112
112
  /**
113
113
  * <p>The Amazon Resource Names of the associated AWS Systems Manager for SAP
114
114
  * applications.</p>
115
115
  * @public
116
116
  */
117
- AssociatedApplicationArns?: string[];
117
+ AssociatedApplicationArns?: string[] | undefined;
118
118
  }
119
119
  /**
120
120
  * @public
@@ -159,27 +159,27 @@ export interface ApplicationSummary {
159
159
  * <p>The ID of the application.</p>
160
160
  * @public
161
161
  */
162
- Id?: string;
162
+ Id?: string | undefined;
163
163
  /**
164
164
  * <p>The status of the latest discovery.</p>
165
165
  * @public
166
166
  */
167
- DiscoveryStatus?: ApplicationDiscoveryStatus;
167
+ DiscoveryStatus?: ApplicationDiscoveryStatus | undefined;
168
168
  /**
169
169
  * <p>The type of the application.</p>
170
170
  * @public
171
171
  */
172
- Type?: ApplicationType;
172
+ Type?: ApplicationType | undefined;
173
173
  /**
174
174
  * <p>The Amazon Resource Name (ARN) of the application.</p>
175
175
  * @public
176
176
  */
177
- Arn?: string;
177
+ Arn?: string | undefined;
178
178
  /**
179
179
  * <p>The tags on the application.</p>
180
180
  * @public
181
181
  */
182
- Tags?: Record<string, string>;
182
+ Tags?: Record<string, string> | undefined;
183
183
  }
184
184
  /**
185
185
  * <p>Provides information of the IP address.</p>
@@ -190,17 +190,17 @@ export interface IpAddressMember {
190
190
  * <p>The IP address.</p>
191
191
  * @public
192
192
  */
193
- IpAddress?: string;
193
+ IpAddress?: string | undefined;
194
194
  /**
195
195
  * <p>The primary IP address.</p>
196
196
  * @public
197
197
  */
198
- Primary?: boolean;
198
+ Primary?: boolean | undefined;
199
199
  /**
200
200
  * <p>The type of allocation for the IP address.</p>
201
201
  * @public
202
202
  */
203
- AllocationType?: AllocationType;
203
+ AllocationType?: AllocationType | undefined;
204
204
  }
205
205
  /**
206
206
  * <p>Describes the properties of the associated host.</p>
@@ -211,22 +211,22 @@ export interface AssociatedHost {
211
211
  * <p>The name of the host.</p>
212
212
  * @public
213
213
  */
214
- Hostname?: string;
214
+ Hostname?: string | undefined;
215
215
  /**
216
216
  * <p>The ID of the Amazon EC2 instance.</p>
217
217
  * @public
218
218
  */
219
- Ec2InstanceId?: string;
219
+ Ec2InstanceId?: string | undefined;
220
220
  /**
221
221
  * <p>The IP addresses of the associated host.</p>
222
222
  * @public
223
223
  */
224
- IpAddresses?: IpAddressMember[];
224
+ IpAddresses?: IpAddressMember[] | undefined;
225
225
  /**
226
226
  * <p>The version of the operating system.</p>
227
227
  * @public
228
228
  */
229
- OsVersion?: string;
229
+ OsVersion?: string | undefined;
230
230
  }
231
231
  /**
232
232
  * @public
@@ -310,17 +310,17 @@ export interface DatabaseConnection {
310
310
  * <p>The method of connection.</p>
311
311
  * @public
312
312
  */
313
- DatabaseConnectionMethod?: DatabaseConnectionMethod;
313
+ DatabaseConnectionMethod?: DatabaseConnectionMethod | undefined;
314
314
  /**
315
315
  * <p>The Amazon Resource Name of the connected SAP HANA database.</p>
316
316
  * @public
317
317
  */
318
- DatabaseArn?: string;
318
+ DatabaseArn?: string | undefined;
319
319
  /**
320
320
  * <p>The IP address for connection.</p>
321
321
  * @public
322
322
  */
323
- ConnectionIp?: string;
323
+ ConnectionIp?: string | undefined;
324
324
  }
325
325
  /**
326
326
  * @public
@@ -345,32 +345,32 @@ export interface Host {
345
345
  * <p>The name of the Dedicated Host.</p>
346
346
  * @public
347
347
  */
348
- HostName?: string;
348
+ HostName?: string | undefined;
349
349
  /**
350
350
  * <p>The IP address of the Dedicated Host. </p>
351
351
  * @public
352
352
  */
353
- HostIp?: string;
353
+ HostIp?: string | undefined;
354
354
  /**
355
355
  * <p>The ID of Amazon EC2 instance.</p>
356
356
  * @public
357
357
  */
358
- EC2InstanceId?: string;
358
+ EC2InstanceId?: string | undefined;
359
359
  /**
360
360
  * <p>The instance ID of the instance on the Dedicated Host.</p>
361
361
  * @public
362
362
  */
363
- InstanceId?: string;
363
+ InstanceId?: string | undefined;
364
364
  /**
365
365
  * <p>The role of the Dedicated Host.</p>
366
366
  * @public
367
367
  */
368
- HostRole?: HostRole;
368
+ HostRole?: HostRole | undefined;
369
369
  /**
370
370
  * <p>The version of the operating system.</p>
371
371
  * @public
372
372
  */
373
- OsVersion?: string;
373
+ OsVersion?: string | undefined;
374
374
  }
375
375
  /**
376
376
  * @public
@@ -411,27 +411,27 @@ export interface Resilience {
411
411
  * <p>The tier of the component.</p>
412
412
  * @public
413
413
  */
414
- HsrTier?: string;
414
+ HsrTier?: string | undefined;
415
415
  /**
416
416
  * <p>The replication mode of the component.</p>
417
417
  * @public
418
418
  */
419
- HsrReplicationMode?: ReplicationMode;
419
+ HsrReplicationMode?: ReplicationMode | undefined;
420
420
  /**
421
421
  * <p>The operation mode of the component.</p>
422
422
  * @public
423
423
  */
424
- HsrOperationMode?: OperationMode;
424
+ HsrOperationMode?: OperationMode | undefined;
425
425
  /**
426
426
  * <p>The cluster status of the component.</p>
427
427
  * @public
428
428
  */
429
- ClusterStatus?: ClusterStatus;
429
+ ClusterStatus?: ClusterStatus | undefined;
430
430
  /**
431
431
  * <p>Indicates if or not enqueue replication is enabled for the ASCS component.</p>
432
432
  * @public
433
433
  */
434
- EnqueueReplication?: boolean;
434
+ EnqueueReplication?: boolean | undefined;
435
435
  }
436
436
  /**
437
437
  * @public
@@ -459,41 +459,41 @@ export interface Component {
459
459
  * <p>The ID of the component.</p>
460
460
  * @public
461
461
  */
462
- ComponentId?: string;
462
+ ComponentId?: string | undefined;
463
463
  /**
464
464
  * <p>The SAP System Identifier of the application component.</p>
465
465
  * @public
466
466
  */
467
- Sid?: string;
467
+ Sid?: string | undefined;
468
468
  /**
469
469
  * <p>The SAP system number of the application component.</p>
470
470
  * @public
471
471
  */
472
- SystemNumber?: string;
472
+ SystemNumber?: string | undefined;
473
473
  /**
474
474
  * <p>The parent component of a highly available environment. For example, in a highly
475
475
  * available SAP on AWS workload, the parent component consists of the entire setup,
476
476
  * including the child components.</p>
477
477
  * @public
478
478
  */
479
- ParentComponent?: string;
479
+ ParentComponent?: string | undefined;
480
480
  /**
481
481
  * <p>The child components of a highly available environment. For example, in a highly
482
482
  * available SAP on AWS workload, the child component consists of the primary and secondar
483
483
  * instances.</p>
484
484
  * @public
485
485
  */
486
- ChildComponents?: string[];
486
+ ChildComponents?: string[] | undefined;
487
487
  /**
488
488
  * <p>The ID of the application.</p>
489
489
  * @public
490
490
  */
491
- ApplicationId?: string;
491
+ ApplicationId?: string | undefined;
492
492
  /**
493
493
  * <p>The type of the component.</p>
494
494
  * @public
495
495
  */
496
- ComponentType?: ComponentType;
496
+ ComponentType?: ComponentType | undefined;
497
497
  /**
498
498
  * <p>The status of the component.</p>
499
499
  * <ul>
@@ -526,71 +526,71 @@ export interface Component {
526
526
  * </ul>
527
527
  * @public
528
528
  */
529
- Status?: ComponentStatus;
529
+ Status?: ComponentStatus | undefined;
530
530
  /**
531
531
  * <p>The hostname of the component.</p>
532
532
  * @public
533
533
  */
534
- SapHostname?: string;
534
+ SapHostname?: string | undefined;
535
535
  /**
536
536
  * <p>The SAP feature of the component.</p>
537
537
  * @public
538
538
  */
539
- SapFeature?: string;
539
+ SapFeature?: string | undefined;
540
540
  /**
541
541
  * <p>The kernel version of the component.</p>
542
542
  * @public
543
543
  */
544
- SapKernelVersion?: string;
544
+ SapKernelVersion?: string | undefined;
545
545
  /**
546
546
  * <p>The SAP HANA version of the component.</p>
547
547
  * @public
548
548
  */
549
- HdbVersion?: string;
549
+ HdbVersion?: string | undefined;
550
550
  /**
551
551
  * <p>Details of the SAP HANA system replication for the component.</p>
552
552
  * @public
553
553
  */
554
- Resilience?: Resilience;
554
+ Resilience?: Resilience | undefined;
555
555
  /**
556
556
  * <p>The associated host of the component.</p>
557
557
  * @public
558
558
  */
559
- AssociatedHost?: AssociatedHost;
559
+ AssociatedHost?: AssociatedHost | undefined;
560
560
  /**
561
561
  * <p>The SAP HANA databases of the component.</p>
562
562
  * @public
563
563
  */
564
- Databases?: string[];
564
+ Databases?: string[] | undefined;
565
565
  /**
566
566
  * @deprecated
567
567
  *
568
568
  * <p>The hosts of the component.</p>
569
569
  * @public
570
570
  */
571
- Hosts?: Host[];
571
+ Hosts?: Host[] | undefined;
572
572
  /**
573
573
  * @deprecated
574
574
  *
575
575
  * <p>The primary host of the component.</p>
576
576
  * @public
577
577
  */
578
- PrimaryHost?: string;
578
+ PrimaryHost?: string | undefined;
579
579
  /**
580
580
  * <p>The connection specifications for the database of the component.</p>
581
581
  * @public
582
582
  */
583
- DatabaseConnection?: DatabaseConnection;
583
+ DatabaseConnection?: DatabaseConnection | undefined;
584
584
  /**
585
585
  * <p>The time at which the component was last updated.</p>
586
586
  * @public
587
587
  */
588
- LastUpdated?: Date;
588
+ LastUpdated?: Date | undefined;
589
589
  /**
590
590
  * <p>The Amazon Resource Name (ARN) of the component.</p>
591
591
  * @public
592
592
  */
593
- Arn?: string;
593
+ Arn?: string | undefined;
594
594
  }
595
595
  /**
596
596
  * <p>The summary of the component.</p>
@@ -601,27 +601,27 @@ export interface ComponentSummary {
601
601
  * <p>The ID of the application.</p>
602
602
  * @public
603
603
  */
604
- ApplicationId?: string;
604
+ ApplicationId?: string | undefined;
605
605
  /**
606
606
  * <p>The ID of the component.</p>
607
607
  * @public
608
608
  */
609
- ComponentId?: string;
609
+ ComponentId?: string | undefined;
610
610
  /**
611
611
  * <p>The type of the component.</p>
612
612
  * @public
613
613
  */
614
- ComponentType?: ComponentType;
614
+ ComponentType?: ComponentType | undefined;
615
615
  /**
616
616
  * <p>The tags of the component.</p>
617
617
  * @public
618
618
  */
619
- Tags?: Record<string, string>;
619
+ Tags?: Record<string, string> | undefined;
620
620
  /**
621
621
  * <p>The Amazon Resource Name (ARN) of the component summary.</p>
622
622
  * @public
623
623
  */
624
- Arn?: string;
624
+ Arn?: string | undefined;
625
625
  }
626
626
  /**
627
627
  * <p>A conflict has occurred.</p>
@@ -630,7 +630,7 @@ export interface ComponentSummary {
630
630
  export declare class ConflictException extends __BaseException {
631
631
  readonly name: "ConflictException";
632
632
  readonly $fault: "client";
633
- Message?: string;
633
+ Message?: string | undefined;
634
634
  /**
635
635
  * @internal
636
636
  */
@@ -685,63 +685,63 @@ export interface Database {
685
685
  * <p>The ID of the application.</p>
686
686
  * @public
687
687
  */
688
- ApplicationId?: string;
688
+ ApplicationId?: string | undefined;
689
689
  /**
690
690
  * <p>The ID of the component.</p>
691
691
  * @public
692
692
  */
693
- ComponentId?: string;
693
+ ComponentId?: string | undefined;
694
694
  /**
695
695
  * <p>The credentials of the database.</p>
696
696
  * @public
697
697
  */
698
- Credentials?: ApplicationCredential[];
698
+ Credentials?: ApplicationCredential[] | undefined;
699
699
  /**
700
700
  * <p>The ID of the SAP HANA database.</p>
701
701
  * @public
702
702
  */
703
- DatabaseId?: string;
703
+ DatabaseId?: string | undefined;
704
704
  /**
705
705
  * <p>The name of the database.</p>
706
706
  * @public
707
707
  */
708
- DatabaseName?: string;
708
+ DatabaseName?: string | undefined;
709
709
  /**
710
710
  * <p>The type of the database.</p>
711
711
  * @public
712
712
  */
713
- DatabaseType?: DatabaseType;
713
+ DatabaseType?: DatabaseType | undefined;
714
714
  /**
715
715
  * <p>The Amazon Resource Name (ARN) of the database.</p>
716
716
  * @public
717
717
  */
718
- Arn?: string;
718
+ Arn?: string | undefined;
719
719
  /**
720
720
  * <p>The status of the database.</p>
721
721
  * @public
722
722
  */
723
- Status?: DatabaseStatus;
723
+ Status?: DatabaseStatus | undefined;
724
724
  /**
725
725
  * <p>The primary host of the database.</p>
726
726
  * @public
727
727
  */
728
- PrimaryHost?: string;
728
+ PrimaryHost?: string | undefined;
729
729
  /**
730
730
  * <p>The SQL port of the database.</p>
731
731
  * @public
732
732
  */
733
- SQLPort?: number;
733
+ SQLPort?: number | undefined;
734
734
  /**
735
735
  * <p>The time at which the database was last updated.</p>
736
736
  * @public
737
737
  */
738
- LastUpdated?: Date;
738
+ LastUpdated?: Date | undefined;
739
739
  /**
740
740
  * <p>The Amazon Resource Names of the connected AWS Systems Manager for SAP
741
741
  * components.</p>
742
742
  * @public
743
743
  */
744
- ConnectedComponentArns?: string[];
744
+ ConnectedComponentArns?: string[] | undefined;
745
745
  }
746
746
  /**
747
747
  * <p>The summary of the database.</p>
@@ -752,32 +752,32 @@ export interface DatabaseSummary {
752
752
  * <p>The ID of the application.</p>
753
753
  * @public
754
754
  */
755
- ApplicationId?: string;
755
+ ApplicationId?: string | undefined;
756
756
  /**
757
757
  * <p>The ID of the component.</p>
758
758
  * @public
759
759
  */
760
- ComponentId?: string;
760
+ ComponentId?: string | undefined;
761
761
  /**
762
762
  * <p>The ID of the database.</p>
763
763
  * @public
764
764
  */
765
- DatabaseId?: string;
765
+ DatabaseId?: string | undefined;
766
766
  /**
767
767
  * <p>The type of the database.</p>
768
768
  * @public
769
769
  */
770
- DatabaseType?: DatabaseType;
770
+ DatabaseType?: DatabaseType | undefined;
771
771
  /**
772
772
  * <p>The Amazon Resource Name (ARN) of the database.</p>
773
773
  * @public
774
774
  */
775
- Arn?: string;
775
+ Arn?: string | undefined;
776
776
  /**
777
777
  * <p>The tags of the database.</p>
778
778
  * @public
779
779
  */
780
- Tags?: Record<string, string>;
780
+ Tags?: Record<string, string> | undefined;
781
781
  }
782
782
  /**
783
783
  * @public
@@ -798,12 +798,12 @@ export interface DeleteResourcePermissionInput {
798
798
  * <p>Delete or restore the permissions on the target database.</p>
799
799
  * @public
800
800
  */
801
- ActionType?: PermissionActionType;
801
+ ActionType?: PermissionActionType | undefined;
802
802
  /**
803
803
  * <p>The Amazon Resource Name (ARN) of the source resource.</p>
804
804
  * @public
805
805
  */
806
- SourceResourceArn?: string;
806
+ SourceResourceArn?: string | undefined;
807
807
  /**
808
808
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
809
809
  * @public
@@ -818,7 +818,7 @@ export interface DeleteResourcePermissionOutput {
818
818
  * <p>The policy that removes permissions on the target database.</p>
819
819
  * @public
820
820
  */
821
- Policy?: string;
821
+ Policy?: string | undefined;
822
822
  }
823
823
  /**
824
824
  * <p>An internal error has occurred.</p>
@@ -827,7 +827,7 @@ export interface DeleteResourcePermissionOutput {
827
827
  export declare class InternalServerException extends __BaseException {
828
828
  readonly name: "InternalServerException";
829
829
  readonly $fault: "server";
830
- Message?: string;
830
+ Message?: string | undefined;
831
831
  /**
832
832
  * @internal
833
833
  */
@@ -840,7 +840,7 @@ export declare class InternalServerException extends __BaseException {
840
840
  export declare class ResourceNotFoundException extends __BaseException {
841
841
  readonly name: "ResourceNotFoundException";
842
842
  readonly $fault: "client";
843
- Message?: string;
843
+ Message?: string | undefined;
844
844
  /**
845
845
  * @internal
846
846
  */
@@ -853,7 +853,7 @@ export declare class ResourceNotFoundException extends __BaseException {
853
853
  export declare class ValidationException extends __BaseException {
854
854
  readonly name: "ValidationException";
855
855
  readonly $fault: "client";
856
- Message?: string;
856
+ Message?: string | undefined;
857
857
  /**
858
858
  * @internal
859
859
  */
@@ -881,7 +881,7 @@ export interface DeregisterApplicationOutput {
881
881
  export declare class UnauthorizedException extends __BaseException {
882
882
  readonly name: "UnauthorizedException";
883
883
  readonly $fault: "client";
884
- Message?: string;
884
+ Message?: string | undefined;
885
885
  /**
886
886
  * @internal
887
887
  */
@@ -931,17 +931,17 @@ export interface GetApplicationInput {
931
931
  * <p>The ID of the application.</p>
932
932
  * @public
933
933
  */
934
- ApplicationId?: string;
934
+ ApplicationId?: string | undefined;
935
935
  /**
936
936
  * <p>The Amazon Resource Name (ARN) of the application. </p>
937
937
  * @public
938
938
  */
939
- ApplicationArn?: string;
939
+ ApplicationArn?: string | undefined;
940
940
  /**
941
941
  * <p>The Amazon Resource Name (ARN) of the application registry.</p>
942
942
  * @public
943
943
  */
944
- AppRegistryArn?: string;
944
+ AppRegistryArn?: string | undefined;
945
945
  }
946
946
  /**
947
947
  * @public
@@ -952,12 +952,12 @@ export interface GetApplicationOutput {
952
952
  * SAP.</p>
953
953
  * @public
954
954
  */
955
- Application?: Application;
955
+ Application?: Application | undefined;
956
956
  /**
957
957
  * <p>The tags of a registered application.</p>
958
958
  * @public
959
959
  */
960
- Tags?: Record<string, string>;
960
+ Tags?: Record<string, string> | undefined;
961
961
  }
962
962
  /**
963
963
  * @public
@@ -982,12 +982,12 @@ export interface GetComponentOutput {
982
982
  * <p>The component of an application registered with AWS Systems Manager for SAP.</p>
983
983
  * @public
984
984
  */
985
- Component?: Component;
985
+ Component?: Component | undefined;
986
986
  /**
987
987
  * <p>The tags of a component.</p>
988
988
  * @public
989
989
  */
990
- Tags?: Record<string, string>;
990
+ Tags?: Record<string, string> | undefined;
991
991
  }
992
992
  /**
993
993
  * @public
@@ -997,22 +997,22 @@ export interface GetDatabaseInput {
997
997
  * <p>The ID of the application.</p>
998
998
  * @public
999
999
  */
1000
- ApplicationId?: string;
1000
+ ApplicationId?: string | undefined;
1001
1001
  /**
1002
1002
  * <p>The ID of the component.</p>
1003
1003
  * @public
1004
1004
  */
1005
- ComponentId?: string;
1005
+ ComponentId?: string | undefined;
1006
1006
  /**
1007
1007
  * <p>The ID of the database.</p>
1008
1008
  * @public
1009
1009
  */
1010
- DatabaseId?: string;
1010
+ DatabaseId?: string | undefined;
1011
1011
  /**
1012
1012
  * <p>The Amazon Resource Name (ARN) of the database.</p>
1013
1013
  * @public
1014
1014
  */
1015
- DatabaseArn?: string;
1015
+ DatabaseArn?: string | undefined;
1016
1016
  }
1017
1017
  /**
1018
1018
  * @public
@@ -1023,12 +1023,12 @@ export interface GetDatabaseOutput {
1023
1023
  * SAP.</p>
1024
1024
  * @public
1025
1025
  */
1026
- Database?: Database;
1026
+ Database?: Database | undefined;
1027
1027
  /**
1028
1028
  * <p>The tags of a database.</p>
1029
1029
  * @public
1030
1030
  */
1031
- Tags?: Record<string, string>;
1031
+ Tags?: Record<string, string> | undefined;
1032
1032
  }
1033
1033
  /**
1034
1034
  * @public
@@ -1062,57 +1062,57 @@ export interface Operation {
1062
1062
  * <p>The ID of the operation.</p>
1063
1063
  * @public
1064
1064
  */
1065
- Id?: string;
1065
+ Id?: string | undefined;
1066
1066
  /**
1067
1067
  * <p>The type of the operation.</p>
1068
1068
  * @public
1069
1069
  */
1070
- Type?: string;
1070
+ Type?: string | undefined;
1071
1071
  /**
1072
1072
  * <p>The status of the operation.</p>
1073
1073
  * @public
1074
1074
  */
1075
- Status?: OperationStatus;
1075
+ Status?: OperationStatus | undefined;
1076
1076
  /**
1077
1077
  * <p>The status message of the operation.</p>
1078
1078
  * @public
1079
1079
  */
1080
- StatusMessage?: string;
1080
+ StatusMessage?: string | undefined;
1081
1081
  /**
1082
1082
  * <p>The properties of the operation.</p>
1083
1083
  * @public
1084
1084
  */
1085
- Properties?: Record<string, string>;
1085
+ Properties?: Record<string, string> | undefined;
1086
1086
  /**
1087
1087
  * <p>The resource type of the operation.</p>
1088
1088
  * @public
1089
1089
  */
1090
- ResourceType?: string;
1090
+ ResourceType?: string | undefined;
1091
1091
  /**
1092
1092
  * <p>The resource ID of the operation.</p>
1093
1093
  * @public
1094
1094
  */
1095
- ResourceId?: string;
1095
+ ResourceId?: string | undefined;
1096
1096
  /**
1097
1097
  * <p>The Amazon Resource Name (ARN) of the operation.</p>
1098
1098
  * @public
1099
1099
  */
1100
- ResourceArn?: string;
1100
+ ResourceArn?: string | undefined;
1101
1101
  /**
1102
1102
  * <p>The start time of the operation.</p>
1103
1103
  * @public
1104
1104
  */
1105
- StartTime?: Date;
1105
+ StartTime?: Date | undefined;
1106
1106
  /**
1107
1107
  * <p>The end time of the operation.</p>
1108
1108
  * @public
1109
1109
  */
1110
- EndTime?: Date;
1110
+ EndTime?: Date | undefined;
1111
1111
  /**
1112
1112
  * <p>The time at which the operation was last updated.</p>
1113
1113
  * @public
1114
1114
  */
1115
- LastUpdatedTime?: Date;
1115
+ LastUpdatedTime?: Date | undefined;
1116
1116
  }
1117
1117
  /**
1118
1118
  * @public
@@ -1122,7 +1122,7 @@ export interface GetOperationOutput {
1122
1122
  * <p>Returns the details of an operation.</p>
1123
1123
  * @public
1124
1124
  */
1125
- Operation?: Operation;
1125
+ Operation?: Operation | undefined;
1126
1126
  }
1127
1127
  /**
1128
1128
  * @public
@@ -1132,7 +1132,7 @@ export interface GetResourcePermissionInput {
1132
1132
  * <p/>
1133
1133
  * @public
1134
1134
  */
1135
- ActionType?: PermissionActionType;
1135
+ ActionType?: PermissionActionType | undefined;
1136
1136
  /**
1137
1137
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
1138
1138
  * @public
@@ -1147,7 +1147,7 @@ export interface GetResourcePermissionOutput {
1147
1147
  * <p/>
1148
1148
  * @public
1149
1149
  */
1150
- Policy?: string;
1150
+ Policy?: string | undefined;
1151
1151
  }
1152
1152
  /**
1153
1153
  * @public
@@ -1157,18 +1157,18 @@ export interface ListApplicationsInput {
1157
1157
  * <p>The token for the next page of results.</p>
1158
1158
  * @public
1159
1159
  */
1160
- NextToken?: string;
1160
+ NextToken?: string | undefined;
1161
1161
  /**
1162
1162
  * <p>The maximum number of results to return with a single call. To retrieve the remaining
1163
1163
  * results, make another call with the returned nextToken value.</p>
1164
1164
  * @public
1165
1165
  */
1166
- MaxResults?: number;
1166
+ MaxResults?: number | undefined;
1167
1167
  /**
1168
1168
  * <p>The filter of name, value, and operator.</p>
1169
1169
  * @public
1170
1170
  */
1171
- Filters?: Filter[];
1171
+ Filters?: Filter[] | undefined;
1172
1172
  }
1173
1173
  /**
1174
1174
  * @public
@@ -1178,13 +1178,13 @@ export interface ListApplicationsOutput {
1178
1178
  * <p>The applications registered with AWS Systems Manager for SAP.</p>
1179
1179
  * @public
1180
1180
  */
1181
- Applications?: ApplicationSummary[];
1181
+ Applications?: ApplicationSummary[] | undefined;
1182
1182
  /**
1183
1183
  * <p>The token to use to retrieve the next page of results. This value is null when there are
1184
1184
  * no more results to return.</p>
1185
1185
  * @public
1186
1186
  */
1187
- NextToken?: string;
1187
+ NextToken?: string | undefined;
1188
1188
  }
1189
1189
  /**
1190
1190
  * @public
@@ -1194,12 +1194,12 @@ export interface ListComponentsInput {
1194
1194
  * <p>The ID of the application.</p>
1195
1195
  * @public
1196
1196
  */
1197
- ApplicationId?: string;
1197
+ ApplicationId?: string | undefined;
1198
1198
  /**
1199
1199
  * <p>The token for the next page of results.</p>
1200
1200
  * @public
1201
1201
  */
1202
- NextToken?: string;
1202
+ NextToken?: string | undefined;
1203
1203
  /**
1204
1204
  * <p>The maximum number of results to return with a single call. To retrieve the remaining
1205
1205
  * results, make another call with the returned nextToken value.</p>
@@ -1207,7 +1207,7 @@ export interface ListComponentsInput {
1207
1207
  * default.</p>
1208
1208
  * @public
1209
1209
  */
1210
- MaxResults?: number;
1210
+ MaxResults?: number | undefined;
1211
1211
  }
1212
1212
  /**
1213
1213
  * @public
@@ -1217,13 +1217,13 @@ export interface ListComponentsOutput {
1217
1217
  * <p>List of components registered with AWS System Manager for SAP.</p>
1218
1218
  * @public
1219
1219
  */
1220
- Components?: ComponentSummary[];
1220
+ Components?: ComponentSummary[] | undefined;
1221
1221
  /**
1222
1222
  * <p>The token to use to retrieve the next page of results. This value is null when there are
1223
1223
  * no more results to return.</p>
1224
1224
  * @public
1225
1225
  */
1226
- NextToken?: string;
1226
+ NextToken?: string | undefined;
1227
1227
  }
1228
1228
  /**
1229
1229
  * @public
@@ -1233,24 +1233,24 @@ export interface ListDatabasesInput {
1233
1233
  * <p>The ID of the application.</p>
1234
1234
  * @public
1235
1235
  */
1236
- ApplicationId?: string;
1236
+ ApplicationId?: string | undefined;
1237
1237
  /**
1238
1238
  * <p>The ID of the component.</p>
1239
1239
  * @public
1240
1240
  */
1241
- ComponentId?: string;
1241
+ ComponentId?: string | undefined;
1242
1242
  /**
1243
1243
  * <p>The token for the next page of results. </p>
1244
1244
  * @public
1245
1245
  */
1246
- NextToken?: string;
1246
+ NextToken?: string | undefined;
1247
1247
  /**
1248
1248
  * <p>The maximum number of results to return with a single call. To retrieve the remaining
1249
1249
  * results, make another call with the returned nextToken value. If you do not specify a value
1250
1250
  * for MaxResults, the request returns 50 items per page by default.</p>
1251
1251
  * @public
1252
1252
  */
1253
- MaxResults?: number;
1253
+ MaxResults?: number | undefined;
1254
1254
  }
1255
1255
  /**
1256
1256
  * @public
@@ -1260,13 +1260,13 @@ export interface ListDatabasesOutput {
1260
1260
  * <p>The SAP HANA databases of an application.</p>
1261
1261
  * @public
1262
1262
  */
1263
- Databases?: DatabaseSummary[];
1263
+ Databases?: DatabaseSummary[] | undefined;
1264
1264
  /**
1265
1265
  * <p>The token to use to retrieve the next page of results. This value is null when there are
1266
1266
  * no more results to return.</p>
1267
1267
  * @public
1268
1268
  */
1269
- NextToken?: string;
1269
+ NextToken?: string | undefined;
1270
1270
  }
1271
1271
  /**
1272
1272
  * @public
@@ -1284,13 +1284,13 @@ export interface ListOperationEventsInput {
1284
1284
  * per page by default.</p>
1285
1285
  * @public
1286
1286
  */
1287
- MaxResults?: number;
1287
+ MaxResults?: number | undefined;
1288
1288
  /**
1289
1289
  * <p>The token to use to retrieve the next page of results. This value is null when there are
1290
1290
  * no more results to return.</p>
1291
1291
  * @public
1292
1292
  */
1293
- NextToken?: string;
1293
+ NextToken?: string | undefined;
1294
1294
  /**
1295
1295
  * <p>Optionally specify filters to narrow the returned operation event items.</p>
1296
1296
  * <p>Valid filter names include <code>status</code>, <code>resourceID</code>, and
@@ -1298,7 +1298,7 @@ export interface ListOperationEventsInput {
1298
1298
  * <code>Equals</code>.</p>
1299
1299
  * @public
1300
1300
  */
1301
- Filters?: Filter[];
1301
+ Filters?: Filter[] | undefined;
1302
1302
  }
1303
1303
  /**
1304
1304
  * <p>The resource contains a <code>ResourceArn</code> and the
@@ -1312,14 +1312,14 @@ export interface Resource {
1312
1312
  * "<code>arn:aws:ec2:us-east-1:111111111111:instance/i-abcdefgh987654321</code>"</p>
1313
1313
  * @public
1314
1314
  */
1315
- ResourceArn?: string;
1315
+ ResourceArn?: string | undefined;
1316
1316
  /**
1317
1317
  * <p>The resource type.</p>
1318
1318
  * <p>Example of <code>ResourceType</code>: "<code>AWS::SystemsManagerSAP::Component</code>"
1319
1319
  * or "<code>AWS::EC2::Instance</code>".</p>
1320
1320
  * @public
1321
1321
  */
1322
- ResourceType?: string;
1322
+ ResourceType?: string | undefined;
1323
1323
  }
1324
1324
  /**
1325
1325
  * @public
@@ -1364,29 +1364,29 @@ export interface OperationEvent {
1364
1364
  * i-abcdefgh987654321".</p>
1365
1365
  * @public
1366
1366
  */
1367
- Description?: string;
1367
+ Description?: string | undefined;
1368
1368
  /**
1369
1369
  * <p>The resource involved in the operations event.</p>
1370
1370
  * <p>Contains <code>ResourceArn</code> ARN and <code>ResourceType</code>.</p>
1371
1371
  * @public
1372
1372
  */
1373
- Resource?: Resource;
1373
+ Resource?: Resource | undefined;
1374
1374
  /**
1375
1375
  * <p>The status of the operation event. The possible statuses are: <code>IN_PROGRESS</code>,
1376
1376
  * <code>COMPLETED</code>, and <code>FAILED</code>.</p>
1377
1377
  * @public
1378
1378
  */
1379
- Status?: OperationEventStatus;
1379
+ Status?: OperationEventStatus | undefined;
1380
1380
  /**
1381
1381
  * <p>The status message relating to a specific operation event.</p>
1382
1382
  * @public
1383
1383
  */
1384
- StatusMessage?: string;
1384
+ StatusMessage?: string | undefined;
1385
1385
  /**
1386
1386
  * <p>The timestamp of the specified operation event.</p>
1387
1387
  * @public
1388
1388
  */
1389
- Timestamp?: Date;
1389
+ Timestamp?: Date | undefined;
1390
1390
  }
1391
1391
  /**
1392
1392
  * @public
@@ -1396,13 +1396,13 @@ export interface ListOperationEventsOutput {
1396
1396
  * <p>A returned list of operation events that meet the filter criteria.</p>
1397
1397
  * @public
1398
1398
  */
1399
- OperationEvents?: OperationEvent[];
1399
+ OperationEvents?: OperationEvent[] | undefined;
1400
1400
  /**
1401
1401
  * <p>The token to use to retrieve the next page of results. This value is null when there are
1402
1402
  * no more results to return.</p>
1403
1403
  * @public
1404
1404
  */
1405
- NextToken?: string;
1405
+ NextToken?: string | undefined;
1406
1406
  }
1407
1407
  /**
1408
1408
  * @public
@@ -1419,17 +1419,17 @@ export interface ListOperationsInput {
1419
1419
  * for MaxResults, the request returns 50 items per page by default.</p>
1420
1420
  * @public
1421
1421
  */
1422
- MaxResults?: number;
1422
+ MaxResults?: number | undefined;
1423
1423
  /**
1424
1424
  * <p>The token for the next page of results. </p>
1425
1425
  * @public
1426
1426
  */
1427
- NextToken?: string;
1427
+ NextToken?: string | undefined;
1428
1428
  /**
1429
1429
  * <p>The filters of an operation.</p>
1430
1430
  * @public
1431
1431
  */
1432
- Filters?: Filter[];
1432
+ Filters?: Filter[] | undefined;
1433
1433
  }
1434
1434
  /**
1435
1435
  * @public
@@ -1439,13 +1439,13 @@ export interface ListOperationsOutput {
1439
1439
  * <p>List of operations performed by AWS Systems Manager for SAP.</p>
1440
1440
  * @public
1441
1441
  */
1442
- Operations?: Operation[];
1442
+ Operations?: Operation[] | undefined;
1443
1443
  /**
1444
1444
  * <p>The token to use to retrieve the next page of results. This value is null when there are
1445
1445
  * no more results to return.</p>
1446
1446
  * @public
1447
1447
  */
1448
- NextToken?: string;
1448
+ NextToken?: string | undefined;
1449
1449
  }
1450
1450
  /**
1451
1451
  * @public
@@ -1465,7 +1465,7 @@ export interface ListTagsForResourceResponse {
1465
1465
  * <p/>
1466
1466
  * @public
1467
1467
  */
1468
- tags?: Record<string, string>;
1468
+ tags?: Record<string, string> | undefined;
1469
1469
  }
1470
1470
  /**
1471
1471
  * @public
@@ -1495,7 +1495,7 @@ export interface PutResourcePermissionOutput {
1495
1495
  * <p/>
1496
1496
  * @public
1497
1497
  */
1498
- Policy?: string;
1498
+ Policy?: string | undefined;
1499
1499
  }
1500
1500
  /**
1501
1501
  * @public
@@ -1520,27 +1520,27 @@ export interface RegisterApplicationInput {
1520
1520
  * <p>The SAP instance number of the application.</p>
1521
1521
  * @public
1522
1522
  */
1523
- SapInstanceNumber?: string;
1523
+ SapInstanceNumber?: string | undefined;
1524
1524
  /**
1525
1525
  * <p>The System ID of the application.</p>
1526
1526
  * @public
1527
1527
  */
1528
- Sid?: string;
1528
+ Sid?: string | undefined;
1529
1529
  /**
1530
1530
  * <p>The tags to be attached to the SAP application.</p>
1531
1531
  * @public
1532
1532
  */
1533
- Tags?: Record<string, string>;
1533
+ Tags?: Record<string, string> | undefined;
1534
1534
  /**
1535
1535
  * <p>The credentials of the SAP application.</p>
1536
1536
  * @public
1537
1537
  */
1538
- Credentials?: ApplicationCredential[];
1538
+ Credentials?: ApplicationCredential[] | undefined;
1539
1539
  /**
1540
1540
  * <p>The Amazon Resource Name of the SAP HANA database.</p>
1541
1541
  * @public
1542
1542
  */
1543
- DatabaseArn?: string;
1543
+ DatabaseArn?: string | undefined;
1544
1544
  }
1545
1545
  /**
1546
1546
  * @public
@@ -1550,12 +1550,12 @@ export interface RegisterApplicationOutput {
1550
1550
  * <p>The application registered with AWS Systems Manager for SAP.</p>
1551
1551
  * @public
1552
1552
  */
1553
- Application?: Application;
1553
+ Application?: Application | undefined;
1554
1554
  /**
1555
1555
  * <p>The ID of the operation.</p>
1556
1556
  * @public
1557
1557
  */
1558
- OperationId?: string;
1558
+ OperationId?: string | undefined;
1559
1559
  }
1560
1560
  /**
1561
1561
  * @public
@@ -1575,7 +1575,7 @@ export interface StartApplicationOutput {
1575
1575
  * <p>The ID of the operation.</p>
1576
1576
  * @public
1577
1577
  */
1578
- OperationId?: string;
1578
+ OperationId?: string | undefined;
1579
1579
  }
1580
1580
  /**
1581
1581
  * @public
@@ -1595,7 +1595,7 @@ export interface StartApplicationRefreshOutput {
1595
1595
  * <p>The ID of the operation.</p>
1596
1596
  * @public
1597
1597
  */
1598
- OperationId?: string;
1598
+ OperationId?: string | undefined;
1599
1599
  }
1600
1600
  /**
1601
1601
  * @public
@@ -1612,13 +1612,13 @@ export interface StopApplicationInput {
1612
1612
  * stopped.</p>
1613
1613
  * @public
1614
1614
  */
1615
- StopConnectedEntity?: ConnectedEntityType;
1615
+ StopConnectedEntity?: ConnectedEntityType | undefined;
1616
1616
  /**
1617
1617
  * <p>Boolean. If included and if set to <code>True</code>, the StopApplication operation will
1618
1618
  * shut down the associated Amazon EC2 instance in addition to the application.</p>
1619
1619
  * @public
1620
1620
  */
1621
- IncludeEc2InstanceShutdown?: boolean;
1621
+ IncludeEc2InstanceShutdown?: boolean | undefined;
1622
1622
  }
1623
1623
  /**
1624
1624
  * @public
@@ -1628,7 +1628,7 @@ export interface StopApplicationOutput {
1628
1628
  * <p>The ID of the operation.</p>
1629
1629
  * @public
1630
1630
  */
1631
- OperationId?: string;
1631
+ OperationId?: string | undefined;
1632
1632
  }
1633
1633
  /**
1634
1634
  * @public
@@ -1684,23 +1684,23 @@ export interface UpdateApplicationSettingsInput {
1684
1684
  * <p>The credentials to be added or updated.</p>
1685
1685
  * @public
1686
1686
  */
1687
- CredentialsToAddOrUpdate?: ApplicationCredential[];
1687
+ CredentialsToAddOrUpdate?: ApplicationCredential[] | undefined;
1688
1688
  /**
1689
1689
  * <p>The credentials to be removed.</p>
1690
1690
  * @public
1691
1691
  */
1692
- CredentialsToRemove?: ApplicationCredential[];
1692
+ CredentialsToRemove?: ApplicationCredential[] | undefined;
1693
1693
  /**
1694
1694
  * <p>Installation of AWS Backint Agent for SAP HANA.</p>
1695
1695
  * @public
1696
1696
  */
1697
- Backint?: BackintConfig;
1697
+ Backint?: BackintConfig | undefined;
1698
1698
  /**
1699
1699
  * <p>The Amazon Resource Name of the SAP HANA database that replaces the current SAP HANA
1700
1700
  * connection with the SAP_ABAP application.</p>
1701
1701
  * @public
1702
1702
  */
1703
- DatabaseArn?: string;
1703
+ DatabaseArn?: string | undefined;
1704
1704
  }
1705
1705
  /**
1706
1706
  * @public
@@ -1710,12 +1710,12 @@ export interface UpdateApplicationSettingsOutput {
1710
1710
  * <p>The update message.</p>
1711
1711
  * @public
1712
1712
  */
1713
- Message?: string;
1713
+ Message?: string | undefined;
1714
1714
  /**
1715
1715
  * <p>The IDs of the operations.</p>
1716
1716
  * @public
1717
1717
  */
1718
- OperationIds?: string[];
1718
+ OperationIds?: string[] | undefined;
1719
1719
  }
1720
1720
  /**
1721
1721
  * @internal