@aws-sdk/client-ssm-sap 3.378.0 → 3.382.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.
@@ -1,4 +1,7 @@
1
1
  import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
2
5
  export interface ClientInputEndpointParameters {
3
6
  region?: string | Provider<string>;
4
7
  useDualstackEndpoint?: boolean | Provider<boolean>;
@@ -7,6 +7,7 @@
7
7
  */
8
8
  export * from "./SsmSapClient";
9
9
  export * from "./SsmSap";
10
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
10
11
  export * from "./commands";
11
12
  export * from "./pagination";
12
13
  export * from "./models";
@@ -50,38 +50,47 @@ export type ApplicationType = (typeof ApplicationType)[keyof typeof ApplicationT
50
50
  */
51
51
  export interface Application {
52
52
  /**
53
+ * @public
53
54
  * <p>The ID of the application.</p>
54
55
  */
55
56
  Id?: string;
56
57
  /**
58
+ * @public
57
59
  * <p>The type of the application.</p>
58
60
  */
59
61
  Type?: ApplicationType | string;
60
62
  /**
63
+ * @public
61
64
  * <p>The Amazon Resource Name (ARN) of the application.</p>
62
65
  */
63
66
  Arn?: string;
64
67
  /**
68
+ * @public
65
69
  * <p>The Amazon Resource Name (ARN) of the Application Registry.</p>
66
70
  */
67
71
  AppRegistryArn?: string;
68
72
  /**
73
+ * @public
69
74
  * <p>The status of the application.</p>
70
75
  */
71
76
  Status?: ApplicationStatus | string;
72
77
  /**
78
+ * @public
73
79
  * <p>The latest discovery result for the application.</p>
74
80
  */
75
81
  DiscoveryStatus?: ApplicationDiscoveryStatus | string;
76
82
  /**
83
+ * @public
77
84
  * <p>The components of the application.</p>
78
85
  */
79
86
  Components?: string[];
80
87
  /**
88
+ * @public
81
89
  * <p>The time at which the application was last updated.</p>
82
90
  */
83
91
  LastUpdated?: Date;
84
92
  /**
93
+ * @public
85
94
  * <p>The status message.</p>
86
95
  */
87
96
  StatusMessage?: string;
@@ -103,14 +112,17 @@ export type CredentialType = (typeof CredentialType)[keyof typeof CredentialType
103
112
  */
104
113
  export interface ApplicationCredential {
105
114
  /**
115
+ * @public
106
116
  * <p>The name of the SAP HANA database.</p>
107
117
  */
108
118
  DatabaseName: string | undefined;
109
119
  /**
120
+ * @public
110
121
  * <p>The type of the application credentials. </p>
111
122
  */
112
123
  CredentialType: CredentialType | string | undefined;
113
124
  /**
125
+ * @public
114
126
  * <p>The secret ID created in AWS Secrets Manager to store the credentials of the SAP
115
127
  * application. </p>
116
128
  */
@@ -123,18 +135,22 @@ export interface ApplicationCredential {
123
135
  */
124
136
  export interface ApplicationSummary {
125
137
  /**
138
+ * @public
126
139
  * <p>The ID of the application.</p>
127
140
  */
128
141
  Id?: string;
129
142
  /**
143
+ * @public
130
144
  * <p>The type of the application.</p>
131
145
  */
132
146
  Type?: ApplicationType | string;
133
147
  /**
148
+ * @public
134
149
  * <p>The Amazon Resource Name (ARN) of the application.</p>
135
150
  */
136
151
  Arn?: string;
137
152
  /**
153
+ * @public
138
154
  * <p>The tags on the application.</p>
139
155
  */
140
156
  Tags?: Record<string, string>;
@@ -145,14 +161,17 @@ export interface ApplicationSummary {
145
161
  */
146
162
  export interface AssociatedHost {
147
163
  /**
164
+ * @public
148
165
  * <p>The name of the host.</p>
149
166
  */
150
167
  Hostname?: string;
151
168
  /**
169
+ * @public
152
170
  * <p>The ID of the Amazon EC2 instance.</p>
153
171
  */
154
172
  Ec2InstanceId?: string;
155
173
  /**
174
+ * @public
156
175
  * <p>The version of the operating system.</p>
157
176
  */
158
177
  OsVersion?: string;
@@ -175,10 +194,12 @@ export type BackintMode = (typeof BackintMode)[keyof typeof BackintMode];
175
194
  */
176
195
  export interface BackintConfig {
177
196
  /**
197
+ * @public
178
198
  * <p>AWS service for your database backup.</p>
179
199
  */
180
200
  BackintMode: BackintMode | string | undefined;
181
201
  /**
202
+ * @public
182
203
  * <p/>
183
204
  */
184
205
  EnsureNoBackupInProcess: boolean | undefined;
@@ -230,26 +251,32 @@ export type HostRole = (typeof HostRole)[keyof typeof HostRole];
230
251
  */
231
252
  export interface Host {
232
253
  /**
254
+ * @public
233
255
  * <p>The name of the Dedicated Host.</p>
234
256
  */
235
257
  HostName?: string;
236
258
  /**
259
+ * @public
237
260
  * <p>The IP address of the Dedicated Host. </p>
238
261
  */
239
262
  HostIp?: string;
240
263
  /**
264
+ * @public
241
265
  * <p>The ID of Amazon EC2 instance.</p>
242
266
  */
243
267
  EC2InstanceId?: string;
244
268
  /**
269
+ * @public
245
270
  * <p>The instance ID of the instance on the Dedicated Host.</p>
246
271
  */
247
272
  InstanceId?: string;
248
273
  /**
274
+ * @public
249
275
  * <p>The role of the Dedicated Host.</p>
250
276
  */
251
277
  HostRole?: HostRole | string;
252
278
  /**
279
+ * @public
253
280
  * <p>The version of the operating system.</p>
254
281
  */
255
282
  OsVersion?: string;
@@ -290,18 +317,22 @@ export type ReplicationMode = (typeof ReplicationMode)[keyof typeof ReplicationM
290
317
  */
291
318
  export interface Resilience {
292
319
  /**
320
+ * @public
293
321
  * <p>The tier of the component.</p>
294
322
  */
295
323
  HsrTier?: string;
296
324
  /**
325
+ * @public
297
326
  * <p>The replication mode of the component.</p>
298
327
  */
299
328
  HsrReplicationMode?: ReplicationMode | string;
300
329
  /**
330
+ * @public
301
331
  * <p>The operation mode of the component.</p>
302
332
  */
303
333
  HsrOperationMode?: OperationMode | string;
304
334
  /**
335
+ * @public
305
336
  * <p>The cluster status of the component.</p>
306
337
  */
307
338
  ClusterStatus?: ClusterStatus | string;
@@ -329,74 +360,90 @@ export type ComponentStatus = (typeof ComponentStatus)[keyof typeof ComponentSta
329
360
  */
330
361
  export interface Component {
331
362
  /**
363
+ * @public
332
364
  * <p>The ID of the component.</p>
333
365
  */
334
366
  ComponentId?: string;
335
367
  /**
368
+ * @public
336
369
  * <p>The parent component of a highly available environment. For example, in a highly
337
370
  * available SAP on AWS workload, the parent component consists of the entire setup,
338
371
  * including the child components.</p>
339
372
  */
340
373
  ParentComponent?: string;
341
374
  /**
375
+ * @public
342
376
  * <p>The child components of a highly available environment. For example, in a highly
343
377
  * available SAP on AWS workload, the child component consists of the primary and secondar
344
378
  * instances.</p>
345
379
  */
346
380
  ChildComponents?: string[];
347
381
  /**
382
+ * @public
348
383
  * <p>The ID of the application.</p>
349
384
  */
350
385
  ApplicationId?: string;
351
386
  /**
387
+ * @public
352
388
  * <p>The type of the component.</p>
353
389
  */
354
390
  ComponentType?: ComponentType | string;
355
391
  /**
392
+ * @public
356
393
  * <p>The status of the component.</p>
357
394
  */
358
395
  Status?: ComponentStatus | string;
359
396
  /**
397
+ * @public
360
398
  * <p>The hostname of the component.</p>
361
399
  */
362
400
  SapHostname?: string;
363
401
  /**
402
+ * @public
364
403
  * <p>The kernel version of the component.</p>
365
404
  */
366
405
  SapKernelVersion?: string;
367
406
  /**
407
+ * @public
368
408
  * <p>The SAP HANA version of the component.</p>
369
409
  */
370
410
  HdbVersion?: string;
371
411
  /**
412
+ * @public
372
413
  * <p>Details of the SAP HANA system replication for the component.</p>
373
414
  */
374
415
  Resilience?: Resilience;
375
416
  /**
417
+ * @public
376
418
  * <p>The associated host of the component.</p>
377
419
  */
378
420
  AssociatedHost?: AssociatedHost;
379
421
  /**
422
+ * @public
380
423
  * <p>The SAP HANA databases of the component.</p>
381
424
  */
382
425
  Databases?: string[];
383
426
  /**
427
+ * @public
384
428
  * @deprecated
385
429
  *
386
430
  * <p>The hosts of the component.</p>
387
431
  */
388
432
  Hosts?: Host[];
389
433
  /**
434
+ * @public
390
435
  * @deprecated
391
436
  *
392
437
  * <p>The primary host of the component.</p>
393
438
  */
394
439
  PrimaryHost?: string;
395
440
  /**
441
+ * @public
396
442
  * <p>The time at which the component was last updated.</p>
397
443
  */
398
444
  LastUpdated?: Date;
399
445
  /**
446
+ * @public
400
447
  * <p>The Amazon Resource Name (ARN) of the component.</p>
401
448
  */
402
449
  Arn?: string;
@@ -407,22 +454,27 @@ export interface Component {
407
454
  */
408
455
  export interface ComponentSummary {
409
456
  /**
457
+ * @public
410
458
  * <p>The ID of the application.</p>
411
459
  */
412
460
  ApplicationId?: string;
413
461
  /**
462
+ * @public
414
463
  * <p>The ID of the component.</p>
415
464
  */
416
465
  ComponentId?: string;
417
466
  /**
467
+ * @public
418
468
  * <p>The type of the component.</p>
419
469
  */
420
470
  ComponentType?: ComponentType | string;
421
471
  /**
472
+ * @public
422
473
  * <p>The tags of the component.</p>
423
474
  */
424
475
  Tags?: Record<string, string>;
425
476
  /**
477
+ * @public
426
478
  * <p>The Amazon Resource Name (ARN) of the component summary.</p>
427
479
  */
428
480
  Arn?: string;
@@ -475,46 +527,57 @@ export type DatabaseStatus = (typeof DatabaseStatus)[keyof typeof DatabaseStatus
475
527
  */
476
528
  export interface Database {
477
529
  /**
530
+ * @public
478
531
  * <p>The ID of the application.</p>
479
532
  */
480
533
  ApplicationId?: string;
481
534
  /**
535
+ * @public
482
536
  * <p>The ID of the component.</p>
483
537
  */
484
538
  ComponentId?: string;
485
539
  /**
540
+ * @public
486
541
  * <p>The credentials of the database.</p>
487
542
  */
488
543
  Credentials?: ApplicationCredential[];
489
544
  /**
545
+ * @public
490
546
  * <p>The ID of the SAP HANA database.</p>
491
547
  */
492
548
  DatabaseId?: string;
493
549
  /**
550
+ * @public
494
551
  * <p>The name of the database.</p>
495
552
  */
496
553
  DatabaseName?: string;
497
554
  /**
555
+ * @public
498
556
  * <p>The type of the database.</p>
499
557
  */
500
558
  DatabaseType?: DatabaseType | string;
501
559
  /**
560
+ * @public
502
561
  * <p>The Amazon Resource Name (ARN) of the database.</p>
503
562
  */
504
563
  Arn?: string;
505
564
  /**
565
+ * @public
506
566
  * <p>The status of the database.</p>
507
567
  */
508
568
  Status?: DatabaseStatus | string;
509
569
  /**
570
+ * @public
510
571
  * <p>The primary host of the database.</p>
511
572
  */
512
573
  PrimaryHost?: string;
513
574
  /**
575
+ * @public
514
576
  * <p>The SQL port of the database.</p>
515
577
  */
516
578
  SQLPort?: number;
517
579
  /**
580
+ * @public
518
581
  * <p>The time at which the database was last updated.</p>
519
582
  */
520
583
  LastUpdated?: Date;
@@ -525,26 +588,32 @@ export interface Database {
525
588
  */
526
589
  export interface DatabaseSummary {
527
590
  /**
591
+ * @public
528
592
  * <p>The ID of the application.</p>
529
593
  */
530
594
  ApplicationId?: string;
531
595
  /**
596
+ * @public
532
597
  * <p>The ID of the component.</p>
533
598
  */
534
599
  ComponentId?: string;
535
600
  /**
601
+ * @public
536
602
  * <p>The ID of the database.</p>
537
603
  */
538
604
  DatabaseId?: string;
539
605
  /**
606
+ * @public
540
607
  * <p>The type of the database.</p>
541
608
  */
542
609
  DatabaseType?: DatabaseType | string;
543
610
  /**
611
+ * @public
544
612
  * <p>The Amazon Resource Name (ARN) of the database.</p>
545
613
  */
546
614
  Arn?: string;
547
615
  /**
616
+ * @public
548
617
  * <p>The tags of the database.</p>
549
618
  */
550
619
  Tags?: Record<string, string>;
@@ -565,14 +634,17 @@ export type PermissionActionType = (typeof PermissionActionType)[keyof typeof Pe
565
634
  */
566
635
  export interface DeleteResourcePermissionInput {
567
636
  /**
637
+ * @public
568
638
  * <p>Delete or restore the permissions on the target database.</p>
569
639
  */
570
640
  ActionType?: PermissionActionType | string;
571
641
  /**
642
+ * @public
572
643
  * <p>The Amazon Resource Name (ARN) of the source resource.</p>
573
644
  */
574
645
  SourceResourceArn?: string;
575
646
  /**
647
+ * @public
576
648
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
577
649
  */
578
650
  ResourceArn: string | undefined;
@@ -582,6 +654,7 @@ export interface DeleteResourcePermissionInput {
582
654
  */
583
655
  export interface DeleteResourcePermissionOutput {
584
656
  /**
657
+ * @public
585
658
  * <p>The policy that removes permissions on the target database.</p>
586
659
  */
587
660
  Policy?: string;
@@ -630,6 +703,7 @@ export declare class ValidationException extends __BaseException {
630
703
  */
631
704
  export interface DeregisterApplicationInput {
632
705
  /**
706
+ * @public
633
707
  * <p>The ID of the application.</p>
634
708
  */
635
709
  ApplicationId: string | undefined;
@@ -658,16 +732,19 @@ export type FilterOperator = (typeof FilterOperator)[keyof typeof FilterOperator
658
732
  */
659
733
  export interface Filter {
660
734
  /**
735
+ * @public
661
736
  * <p>The name of the filter. Filter names are case-sensitive. </p>
662
737
  */
663
738
  Name: string | undefined;
664
739
  /**
740
+ * @public
665
741
  * <p>The filter values. Filter values are case-sensitive. If you specify multiple values for
666
742
  * a filter, the values are joined with an OR, and the request returns all results that match
667
743
  * any of the specified values</p>
668
744
  */
669
745
  Value: string | undefined;
670
746
  /**
747
+ * @public
671
748
  * <p>The operator for the filter. </p>
672
749
  */
673
750
  Operator: FilterOperator | string | undefined;
@@ -677,14 +754,17 @@ export interface Filter {
677
754
  */
678
755
  export interface GetApplicationInput {
679
756
  /**
757
+ * @public
680
758
  * <p>The ID of the application.</p>
681
759
  */
682
760
  ApplicationId?: string;
683
761
  /**
762
+ * @public
684
763
  * <p>The Amazon Resource Name (ARN) of the application. </p>
685
764
  */
686
765
  ApplicationArn?: string;
687
766
  /**
767
+ * @public
688
768
  * <p>The Amazon Resource Name (ARN) of the application registry.</p>
689
769
  */
690
770
  AppRegistryArn?: string;
@@ -694,11 +774,13 @@ export interface GetApplicationInput {
694
774
  */
695
775
  export interface GetApplicationOutput {
696
776
  /**
777
+ * @public
697
778
  * <p>Returns all of the metadata of an application registered with AWS Systems Manager for
698
779
  * SAP.</p>
699
780
  */
700
781
  Application?: Application;
701
782
  /**
783
+ * @public
702
784
  * <p>The tags of a registered application.</p>
703
785
  */
704
786
  Tags?: Record<string, string>;
@@ -708,10 +790,12 @@ export interface GetApplicationOutput {
708
790
  */
709
791
  export interface GetComponentInput {
710
792
  /**
793
+ * @public
711
794
  * <p>The ID of the application.</p>
712
795
  */
713
796
  ApplicationId: string | undefined;
714
797
  /**
798
+ * @public
715
799
  * <p>The ID of the component.</p>
716
800
  */
717
801
  ComponentId: string | undefined;
@@ -721,10 +805,12 @@ export interface GetComponentInput {
721
805
  */
722
806
  export interface GetComponentOutput {
723
807
  /**
808
+ * @public
724
809
  * <p>The component of an application registered with AWS Systems Manager for SAP.</p>
725
810
  */
726
811
  Component?: Component;
727
812
  /**
813
+ * @public
728
814
  * <p>The tags of a component.</p>
729
815
  */
730
816
  Tags?: Record<string, string>;
@@ -734,18 +820,22 @@ export interface GetComponentOutput {
734
820
  */
735
821
  export interface GetDatabaseInput {
736
822
  /**
823
+ * @public
737
824
  * <p>The ID of the application.</p>
738
825
  */
739
826
  ApplicationId?: string;
740
827
  /**
828
+ * @public
741
829
  * <p>The ID of the component.</p>
742
830
  */
743
831
  ComponentId?: string;
744
832
  /**
833
+ * @public
745
834
  * <p>The ID of the database.</p>
746
835
  */
747
836
  DatabaseId?: string;
748
837
  /**
838
+ * @public
749
839
  * <p>The Amazon Resource Name (ARN) of the database.</p>
750
840
  */
751
841
  DatabaseArn?: string;
@@ -755,11 +845,13 @@ export interface GetDatabaseInput {
755
845
  */
756
846
  export interface GetDatabaseOutput {
757
847
  /**
848
+ * @public
758
849
  * <p>The SAP HANA database of an application registered with AWS Systems Manager for
759
850
  * SAP.</p>
760
851
  */
761
852
  Database?: Database;
762
853
  /**
854
+ * @public
763
855
  * <p>The tags of a database.</p>
764
856
  */
765
857
  Tags?: Record<string, string>;
@@ -769,6 +861,7 @@ export interface GetDatabaseOutput {
769
861
  */
770
862
  export interface GetOperationInput {
771
863
  /**
864
+ * @public
772
865
  * <p>The ID of the operation.</p>
773
866
  */
774
867
  OperationId: string | undefined;
@@ -792,46 +885,57 @@ export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationSta
792
885
  */
793
886
  export interface Operation {
794
887
  /**
888
+ * @public
795
889
  * <p>The ID of the operation.</p>
796
890
  */
797
891
  Id?: string;
798
892
  /**
893
+ * @public
799
894
  * <p>The type of the operation.</p>
800
895
  */
801
896
  Type?: string;
802
897
  /**
898
+ * @public
803
899
  * <p>The status of the operation.</p>
804
900
  */
805
901
  Status?: OperationStatus | string;
806
902
  /**
903
+ * @public
807
904
  * <p>The status message of the operation.</p>
808
905
  */
809
906
  StatusMessage?: string;
810
907
  /**
908
+ * @public
811
909
  * <p>The properties of the operation.</p>
812
910
  */
813
911
  Properties?: Record<string, string>;
814
912
  /**
913
+ * @public
815
914
  * <p>The resource type of the operation.</p>
816
915
  */
817
916
  ResourceType?: string;
818
917
  /**
918
+ * @public
819
919
  * <p>The resource ID of the operation.</p>
820
920
  */
821
921
  ResourceId?: string;
822
922
  /**
923
+ * @public
823
924
  * <p>The Amazon Resource Name (ARN) of the operation.</p>
824
925
  */
825
926
  ResourceArn?: string;
826
927
  /**
928
+ * @public
827
929
  * <p>The start time of the operation.</p>
828
930
  */
829
931
  StartTime?: Date;
830
932
  /**
933
+ * @public
831
934
  * <p>The end time of the operation.</p>
832
935
  */
833
936
  EndTime?: Date;
834
937
  /**
938
+ * @public
835
939
  * <p>The time at which the operation was last updated.</p>
836
940
  */
837
941
  LastUpdatedTime?: Date;
@@ -841,6 +945,7 @@ export interface Operation {
841
945
  */
842
946
  export interface GetOperationOutput {
843
947
  /**
948
+ * @public
844
949
  * <p>Returns the details of an operation.</p>
845
950
  */
846
951
  Operation?: Operation;
@@ -850,10 +955,12 @@ export interface GetOperationOutput {
850
955
  */
851
956
  export interface GetResourcePermissionInput {
852
957
  /**
958
+ * @public
853
959
  * <p/>
854
960
  */
855
961
  ActionType?: PermissionActionType | string;
856
962
  /**
963
+ * @public
857
964
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
858
965
  */
859
966
  ResourceArn: string | undefined;
@@ -863,6 +970,7 @@ export interface GetResourcePermissionInput {
863
970
  */
864
971
  export interface GetResourcePermissionOutput {
865
972
  /**
973
+ * @public
866
974
  * <p/>
867
975
  */
868
976
  Policy?: string;
@@ -872,10 +980,12 @@ export interface GetResourcePermissionOutput {
872
980
  */
873
981
  export interface ListApplicationsInput {
874
982
  /**
983
+ * @public
875
984
  * <p>The token for the next page of results.</p>
876
985
  */
877
986
  NextToken?: string;
878
987
  /**
988
+ * @public
879
989
  * <p>The maximum number of results to return with a single call. To retrieve the remaining
880
990
  * results, make another call with the returned nextToken value. </p>
881
991
  */
@@ -886,10 +996,12 @@ export interface ListApplicationsInput {
886
996
  */
887
997
  export interface ListApplicationsOutput {
888
998
  /**
999
+ * @public
889
1000
  * <p>The applications registered with AWS Systems Manager for SAP.</p>
890
1001
  */
891
1002
  Applications?: ApplicationSummary[];
892
1003
  /**
1004
+ * @public
893
1005
  * <p>The token to use to retrieve the next page of results. This value is null when there are
894
1006
  * no more results to return.</p>
895
1007
  */
@@ -900,14 +1012,17 @@ export interface ListApplicationsOutput {
900
1012
  */
901
1013
  export interface ListComponentsInput {
902
1014
  /**
1015
+ * @public
903
1016
  * <p>The ID of the application.</p>
904
1017
  */
905
1018
  ApplicationId?: string;
906
1019
  /**
1020
+ * @public
907
1021
  * <p>The token for the next page of results.</p>
908
1022
  */
909
1023
  NextToken?: string;
910
1024
  /**
1025
+ * @public
911
1026
  * <p>The maximum number of results to return with a single call. To retrieve the remaining
912
1027
  * results, make another call with the returned nextToken value.</p>
913
1028
  * <p>If you do not specify a value for MaxResults, the request returns 50 items per page by
@@ -920,10 +1035,12 @@ export interface ListComponentsInput {
920
1035
  */
921
1036
  export interface ListComponentsOutput {
922
1037
  /**
1038
+ * @public
923
1039
  * <p>List of components registered with AWS System Manager for SAP.</p>
924
1040
  */
925
1041
  Components?: ComponentSummary[];
926
1042
  /**
1043
+ * @public
927
1044
  * <p>The token to use to retrieve the next page of results. This value is null when there are
928
1045
  * no more results to return.</p>
929
1046
  */
@@ -934,18 +1051,22 @@ export interface ListComponentsOutput {
934
1051
  */
935
1052
  export interface ListDatabasesInput {
936
1053
  /**
1054
+ * @public
937
1055
  * <p>The ID of the application.</p>
938
1056
  */
939
1057
  ApplicationId?: string;
940
1058
  /**
1059
+ * @public
941
1060
  * <p>The ID of the component.</p>
942
1061
  */
943
1062
  ComponentId?: string;
944
1063
  /**
1064
+ * @public
945
1065
  * <p>The token for the next page of results. </p>
946
1066
  */
947
1067
  NextToken?: string;
948
1068
  /**
1069
+ * @public
949
1070
  * <p>The maximum number of results to return with a single call. To retrieve the remaining
950
1071
  * results, make another call with the returned nextToken value. If you do not specify a value
951
1072
  * for MaxResults, the request returns 50 items per page by default.</p>
@@ -957,10 +1078,12 @@ export interface ListDatabasesInput {
957
1078
  */
958
1079
  export interface ListDatabasesOutput {
959
1080
  /**
1081
+ * @public
960
1082
  * <p>The SAP HANA databases of an application.</p>
961
1083
  */
962
1084
  Databases?: DatabaseSummary[];
963
1085
  /**
1086
+ * @public
964
1087
  * <p>The token to use to retrieve the next page of results. This value is null when there are
965
1088
  * no more results to return.</p>
966
1089
  */
@@ -971,20 +1094,24 @@ export interface ListDatabasesOutput {
971
1094
  */
972
1095
  export interface ListOperationsInput {
973
1096
  /**
1097
+ * @public
974
1098
  * <p>The ID of the application.</p>
975
1099
  */
976
1100
  ApplicationId: string | undefined;
977
1101
  /**
1102
+ * @public
978
1103
  * <p>The maximum number of results to return with a single call. To retrieve the remaining
979
1104
  * results, make another call with the returned nextToken value. If you do not specify a value
980
1105
  * for MaxResults, the request returns 50 items per page by default.</p>
981
1106
  */
982
1107
  MaxResults?: number;
983
1108
  /**
1109
+ * @public
984
1110
  * <p>The token for the next page of results. </p>
985
1111
  */
986
1112
  NextToken?: string;
987
1113
  /**
1114
+ * @public
988
1115
  * <p>The filters of an operation.</p>
989
1116
  */
990
1117
  Filters?: Filter[];
@@ -994,10 +1121,12 @@ export interface ListOperationsInput {
994
1121
  */
995
1122
  export interface ListOperationsOutput {
996
1123
  /**
1124
+ * @public
997
1125
  * <p>List of operations performed by AWS Systems Manager for SAP.</p>
998
1126
  */
999
1127
  Operations?: Operation[];
1000
1128
  /**
1129
+ * @public
1001
1130
  * <p>The token to use to retrieve the next page of results. This value is null when there are
1002
1131
  * no more results to return.</p>
1003
1132
  */
@@ -1008,6 +1137,7 @@ export interface ListOperationsOutput {
1008
1137
  */
1009
1138
  export interface ListTagsForResourceRequest {
1010
1139
  /**
1140
+ * @public
1011
1141
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
1012
1142
  */
1013
1143
  resourceArn: string | undefined;
@@ -1017,6 +1147,7 @@ export interface ListTagsForResourceRequest {
1017
1147
  */
1018
1148
  export interface ListTagsForResourceResponse {
1019
1149
  /**
1150
+ * @public
1020
1151
  * <p/>
1021
1152
  */
1022
1153
  tags?: Record<string, string>;
@@ -1026,14 +1157,17 @@ export interface ListTagsForResourceResponse {
1026
1157
  */
1027
1158
  export interface PutResourcePermissionInput {
1028
1159
  /**
1160
+ * @public
1029
1161
  * <p/>
1030
1162
  */
1031
1163
  ActionType: PermissionActionType | string | undefined;
1032
1164
  /**
1165
+ * @public
1033
1166
  * <p/>
1034
1167
  */
1035
1168
  SourceResourceArn: string | undefined;
1036
1169
  /**
1170
+ * @public
1037
1171
  * <p/>
1038
1172
  */
1039
1173
  ResourceArn: string | undefined;
@@ -1043,6 +1177,7 @@ export interface PutResourcePermissionInput {
1043
1177
  */
1044
1178
  export interface PutResourcePermissionOutput {
1045
1179
  /**
1180
+ * @public
1046
1181
  * <p/>
1047
1182
  */
1048
1183
  Policy?: string;
@@ -1052,30 +1187,37 @@ export interface PutResourcePermissionOutput {
1052
1187
  */
1053
1188
  export interface RegisterApplicationInput {
1054
1189
  /**
1190
+ * @public
1055
1191
  * <p>The ID of the application.</p>
1056
1192
  */
1057
1193
  ApplicationId: string | undefined;
1058
1194
  /**
1195
+ * @public
1059
1196
  * <p>The type of the application.</p>
1060
1197
  */
1061
1198
  ApplicationType: ApplicationType | string | undefined;
1062
1199
  /**
1200
+ * @public
1063
1201
  * <p>The Amazon EC2 instances on which your SAP application is running.</p>
1064
1202
  */
1065
1203
  Instances: string[] | undefined;
1066
1204
  /**
1205
+ * @public
1067
1206
  * <p>The SAP instance number of the application.</p>
1068
1207
  */
1069
1208
  SapInstanceNumber?: string;
1070
1209
  /**
1210
+ * @public
1071
1211
  * <p>The System ID of the application.</p>
1072
1212
  */
1073
1213
  Sid?: string;
1074
1214
  /**
1215
+ * @public
1075
1216
  * <p>The tags to be attached to the SAP application.</p>
1076
1217
  */
1077
1218
  Tags?: Record<string, string>;
1078
1219
  /**
1220
+ * @public
1079
1221
  * <p>The credentials of the SAP application.</p>
1080
1222
  */
1081
1223
  Credentials: ApplicationCredential[] | undefined;
@@ -1085,10 +1227,12 @@ export interface RegisterApplicationInput {
1085
1227
  */
1086
1228
  export interface RegisterApplicationOutput {
1087
1229
  /**
1230
+ * @public
1088
1231
  * <p>The application registered with AWS Systems Manager for SAP.</p>
1089
1232
  */
1090
1233
  Application?: Application;
1091
1234
  /**
1235
+ * @public
1092
1236
  * <p>The ID of the operation.</p>
1093
1237
  */
1094
1238
  OperationId?: string;
@@ -1098,6 +1242,7 @@ export interface RegisterApplicationOutput {
1098
1242
  */
1099
1243
  export interface StartApplicationRefreshInput {
1100
1244
  /**
1245
+ * @public
1101
1246
  * <p>The ID of the application.</p>
1102
1247
  */
1103
1248
  ApplicationId: string | undefined;
@@ -1107,6 +1252,7 @@ export interface StartApplicationRefreshInput {
1107
1252
  */
1108
1253
  export interface StartApplicationRefreshOutput {
1109
1254
  /**
1255
+ * @public
1110
1256
  * <p>The ID of the operation.</p>
1111
1257
  */
1112
1258
  OperationId?: string;
@@ -1116,10 +1262,12 @@ export interface StartApplicationRefreshOutput {
1116
1262
  */
1117
1263
  export interface TagResourceRequest {
1118
1264
  /**
1265
+ * @public
1119
1266
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
1120
1267
  */
1121
1268
  resourceArn: string | undefined;
1122
1269
  /**
1270
+ * @public
1123
1271
  * <p>The tags on a resource.</p>
1124
1272
  */
1125
1273
  tags: Record<string, string> | undefined;
@@ -1134,10 +1282,12 @@ export interface TagResourceResponse {
1134
1282
  */
1135
1283
  export interface UntagResourceRequest {
1136
1284
  /**
1285
+ * @public
1137
1286
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
1138
1287
  */
1139
1288
  resourceArn: string | undefined;
1140
1289
  /**
1290
+ * @public
1141
1291
  * <p>Adds/updates or removes credentials for applications registered with AWS Systems
1142
1292
  * Manager for SAP.</p>
1143
1293
  */
@@ -1153,18 +1303,22 @@ export interface UntagResourceResponse {
1153
1303
  */
1154
1304
  export interface UpdateApplicationSettingsInput {
1155
1305
  /**
1306
+ * @public
1156
1307
  * <p>The ID of the application.</p>
1157
1308
  */
1158
1309
  ApplicationId: string | undefined;
1159
1310
  /**
1311
+ * @public
1160
1312
  * <p>The credentials to be added or updated.</p>
1161
1313
  */
1162
1314
  CredentialsToAddOrUpdate?: ApplicationCredential[];
1163
1315
  /**
1316
+ * @public
1164
1317
  * <p>The credentials to be removed.</p>
1165
1318
  */
1166
1319
  CredentialsToRemove?: ApplicationCredential[];
1167
1320
  /**
1321
+ * @public
1168
1322
  * <p>Installation of AWS Backint Agent for SAP HANA.</p>
1169
1323
  */
1170
1324
  Backint?: BackintConfig;
@@ -1174,10 +1328,12 @@ export interface UpdateApplicationSettingsInput {
1174
1328
  */
1175
1329
  export interface UpdateApplicationSettingsOutput {
1176
1330
  /**
1331
+ * @public
1177
1332
  * <p>The update message.</p>
1178
1333
  */
1179
1334
  Message?: string;
1180
1335
  /**
1336
+ * @public
1181
1337
  * <p>The IDs of the operations.</p>
1182
1338
  */
1183
1339
  OperationIds?: string[];
@@ -1,5 +1,6 @@
1
1
  export * from "./SsmSapClient";
2
2
  export * from "./SsmSap";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export * from "./commands";
4
5
  export * from "./pagination";
5
6
  export * from "./models";
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.378.0",
4
+ "version": "3.382.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.378.0",
25
- "@aws-sdk/credential-provider-node": "3.378.0",
26
- "@aws-sdk/middleware-host-header": "3.378.0",
24
+ "@aws-sdk/client-sts": "3.382.0",
25
+ "@aws-sdk/credential-provider-node": "3.382.0",
26
+ "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
- "@aws-sdk/middleware-signing": "3.378.0",
30
- "@aws-sdk/middleware-user-agent": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",