@aws-sdk/client-ssm-sap 3.296.0 → 3.297.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.
Files changed (27) hide show
  1. package/dist-types/SsmSap.d.ts +18 -0
  2. package/dist-types/SsmSapClient.d.ts +24 -4
  3. package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +16 -0
  4. package/dist-types/commands/DeregisterApplicationCommand.d.ts +16 -0
  5. package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
  6. package/dist-types/commands/GetComponentCommand.d.ts +16 -0
  7. package/dist-types/commands/GetDatabaseCommand.d.ts +16 -0
  8. package/dist-types/commands/GetOperationCommand.d.ts +16 -0
  9. package/dist-types/commands/GetResourcePermissionCommand.d.ts +16 -0
  10. package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
  11. package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
  12. package/dist-types/commands/ListDatabasesCommand.d.ts +16 -0
  13. package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  15. package/dist-types/commands/PutResourcePermissionCommand.d.ts +16 -0
  16. package/dist-types/commands/RegisterApplicationCommand.d.ts +16 -0
  17. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  18. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  19. package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +16 -0
  20. package/dist-types/models/SsmSapServiceException.d.ts +2 -0
  21. package/dist-types/models/models_0.d.ts +149 -0
  22. package/dist-types/pagination/Interfaces.d.ts +3 -0
  23. package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
  24. package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
  25. package/dist-types/pagination/ListDatabasesPaginator.d.ts +3 -0
  26. package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
  27. package/package.json +3 -3
@@ -1,5 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SsmSapServiceException as __BaseException } from "./SsmSapServiceException";
3
+ /**
4
+ * @public
5
+ */
3
6
  export declare enum ApplicationStatus {
4
7
  ACTIVATED = "ACTIVATED",
5
8
  DELETING = "DELETING",
@@ -10,10 +13,14 @@ export declare enum ApplicationStatus {
10
13
  STOPPING = "STOPPING",
11
14
  UNKNOWN = "UNKNOWN"
12
15
  }
16
+ /**
17
+ * @public
18
+ */
13
19
  export declare enum ApplicationType {
14
20
  HANA = "HANA"
15
21
  }
16
22
  /**
23
+ * @public
17
24
  * <p>An SAP application registered with AWS Systems Manager for SAP.</p>
18
25
  */
19
26
  export interface Application {
@@ -50,10 +57,14 @@ export interface Application {
50
57
  */
51
58
  StatusMessage?: string;
52
59
  }
60
+ /**
61
+ * @public
62
+ */
53
63
  export declare enum CredentialType {
54
64
  ADMIN = "ADMIN"
55
65
  }
56
66
  /**
67
+ * @public
57
68
  * <p>The credentials of your SAP application.</p>
58
69
  */
59
70
  export interface ApplicationCredential {
@@ -72,6 +83,7 @@ export interface ApplicationCredential {
72
83
  SecretId: string | undefined;
73
84
  }
74
85
  /**
86
+ * @public
75
87
  * <p>The summary of the SAP application registered with AWS Systems Manager for SAP.
76
88
  * </p>
77
89
  */
@@ -93,9 +105,15 @@ export interface ApplicationSummary {
93
105
  */
94
106
  Tags?: Record<string, string>;
95
107
  }
108
+ /**
109
+ * @public
110
+ */
96
111
  export declare enum ComponentType {
97
112
  HANA = "HANA"
98
113
  }
114
+ /**
115
+ * @public
116
+ */
99
117
  export declare enum HostRole {
100
118
  LEADER = "LEADER",
101
119
  STANDBY = "STANDBY",
@@ -103,6 +121,7 @@ export declare enum HostRole {
103
121
  WORKER = "WORKER"
104
122
  }
105
123
  /**
124
+ * @public
106
125
  * <p>Describes the properties of the Dedicated Host. </p>
107
126
  */
108
127
  export interface Host {
@@ -123,10 +142,14 @@ export interface Host {
123
142
  */
124
143
  InstanceId?: string;
125
144
  }
145
+ /**
146
+ * @public
147
+ */
126
148
  export declare enum ComponentStatus {
127
149
  ACTIVATED = "ACTIVATED"
128
150
  }
129
151
  /**
152
+ * @public
130
153
  * <p>The SAP component of your application.</p>
131
154
  */
132
155
  export interface Component {
@@ -164,6 +187,7 @@ export interface Component {
164
187
  LastUpdated?: Date;
165
188
  }
166
189
  /**
190
+ * @public
167
191
  * <p>The summary of the component.</p>
168
192
  */
169
193
  export interface ComponentSummary {
@@ -185,6 +209,7 @@ export interface ComponentSummary {
185
209
  Tags?: Record<string, string>;
186
210
  }
187
211
  /**
212
+ * @public
188
213
  * <p>A conflict has occurred.</p>
189
214
  */
190
215
  export declare class ConflictException extends __BaseException {
@@ -196,10 +221,16 @@ export declare class ConflictException extends __BaseException {
196
221
  */
197
222
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
198
223
  }
224
+ /**
225
+ * @public
226
+ */
199
227
  export declare enum DatabaseType {
200
228
  SYSTEM = "SYSTEM",
201
229
  TENANT = "TENANT"
202
230
  }
231
+ /**
232
+ * @public
233
+ */
203
234
  export declare enum DatabaseStatus {
204
235
  RUNNING = "RUNNING",
205
236
  STARTING = "STARTING",
@@ -208,6 +239,7 @@ export declare enum DatabaseStatus {
208
239
  WARNING = "WARNING"
209
240
  }
210
241
  /**
242
+ * @public
211
243
  * <p>The SAP HANA database of the application registered with AWS Systems Manager for
212
244
  * SAP.</p>
213
245
  */
@@ -258,6 +290,7 @@ export interface Database {
258
290
  LastUpdated?: Date;
259
291
  }
260
292
  /**
293
+ * @public
261
294
  * <p>The summary of the database.</p>
262
295
  */
263
296
  export interface DatabaseSummary {
@@ -286,9 +319,15 @@ export interface DatabaseSummary {
286
319
  */
287
320
  Tags?: Record<string, string>;
288
321
  }
322
+ /**
323
+ * @public
324
+ */
289
325
  export declare enum PermissionActionType {
290
326
  RESTORE = "RESTORE"
291
327
  }
328
+ /**
329
+ * @public
330
+ */
292
331
  export interface DeleteResourcePermissionInput {
293
332
  /**
294
333
  * <p>Delete or restore the permissions on the target database.</p>
@@ -303,6 +342,9 @@ export interface DeleteResourcePermissionInput {
303
342
  */
304
343
  ResourceArn: string | undefined;
305
344
  }
345
+ /**
346
+ * @public
347
+ */
306
348
  export interface DeleteResourcePermissionOutput {
307
349
  /**
308
350
  * <p>The policy that removes permissions on the target database.</p>
@@ -310,6 +352,7 @@ export interface DeleteResourcePermissionOutput {
310
352
  Policy?: string;
311
353
  }
312
354
  /**
355
+ * @public
313
356
  * <p>An internal error has occurred.</p>
314
357
  */
315
358
  export declare class InternalServerException extends __BaseException {
@@ -322,6 +365,7 @@ export declare class InternalServerException extends __BaseException {
322
365
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
323
366
  }
324
367
  /**
368
+ * @public
325
369
  * <p>The resource is not available.</p>
326
370
  */
327
371
  export declare class ResourceNotFoundException extends __BaseException {
@@ -334,6 +378,7 @@ export declare class ResourceNotFoundException extends __BaseException {
334
378
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
335
379
  }
336
380
  /**
381
+ * @public
337
382
  * <p>The input fails to satisfy the constraints specified by an AWS service. </p>
338
383
  */
339
384
  export declare class ValidationException extends __BaseException {
@@ -345,20 +390,30 @@ export declare class ValidationException extends __BaseException {
345
390
  */
346
391
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
347
392
  }
393
+ /**
394
+ * @public
395
+ */
348
396
  export interface DeregisterApplicationInput {
349
397
  /**
350
398
  * <p>The ID of the application.</p>
351
399
  */
352
400
  ApplicationId: string | undefined;
353
401
  }
402
+ /**
403
+ * @public
404
+ */
354
405
  export interface DeregisterApplicationOutput {
355
406
  }
407
+ /**
408
+ * @public
409
+ */
356
410
  export declare enum FilterOperator {
357
411
  EQUALS = "Equals",
358
412
  GREATER_THAN_OR_EQUALS = "GreaterThanOrEquals",
359
413
  LESS_THAN_OR_EQUALS = "LessThanOrEquals"
360
414
  }
361
415
  /**
416
+ * @public
362
417
  * <p>A specific result obtained by specifying the name, value, and operator. </p>
363
418
  */
364
419
  export interface Filter {
@@ -377,6 +432,9 @@ export interface Filter {
377
432
  */
378
433
  Operator: FilterOperator | string | undefined;
379
434
  }
435
+ /**
436
+ * @public
437
+ */
380
438
  export interface GetApplicationInput {
381
439
  /**
382
440
  * <p>The ID of the application.</p>
@@ -391,6 +449,9 @@ export interface GetApplicationInput {
391
449
  */
392
450
  AppRegistryArn?: string;
393
451
  }
452
+ /**
453
+ * @public
454
+ */
394
455
  export interface GetApplicationOutput {
395
456
  /**
396
457
  * <p>Returns all of the metadata of an application registered with AWS Systems Manager for
@@ -402,6 +463,9 @@ export interface GetApplicationOutput {
402
463
  */
403
464
  Tags?: Record<string, string>;
404
465
  }
466
+ /**
467
+ * @public
468
+ */
405
469
  export interface GetComponentInput {
406
470
  /**
407
471
  * <p>The ID of the application.</p>
@@ -412,12 +476,18 @@ export interface GetComponentInput {
412
476
  */
413
477
  ComponentId: string | undefined;
414
478
  }
479
+ /**
480
+ * @public
481
+ */
415
482
  export interface GetComponentOutput {
416
483
  /**
417
484
  * <p>The component of an application registered with AWS Systems Manager for SAP.</p>
418
485
  */
419
486
  Component?: Component;
420
487
  }
488
+ /**
489
+ * @public
490
+ */
421
491
  export interface GetDatabaseInput {
422
492
  /**
423
493
  * <p>The ID of the application.</p>
@@ -436,6 +506,9 @@ export interface GetDatabaseInput {
436
506
  */
437
507
  DatabaseArn?: string;
438
508
  }
509
+ /**
510
+ * @public
511
+ */
439
512
  export interface GetDatabaseOutput {
440
513
  /**
441
514
  * <p>The SAP HANA database of an application registered with AWS Systems Manager for
@@ -447,18 +520,25 @@ export interface GetDatabaseOutput {
447
520
  */
448
521
  Tags?: Record<string, string>;
449
522
  }
523
+ /**
524
+ * @public
525
+ */
450
526
  export interface GetOperationInput {
451
527
  /**
452
528
  * <p>The ID of the operation.</p>
453
529
  */
454
530
  OperationId: string | undefined;
455
531
  }
532
+ /**
533
+ * @public
534
+ */
456
535
  export declare enum OperationStatus {
457
536
  ERROR = "ERROR",
458
537
  INPROGRESS = "INPROGRESS",
459
538
  SUCCESS = "SUCCESS"
460
539
  }
461
540
  /**
541
+ * @public
462
542
  * <p>The operations performed by AWS Systems Manager for SAP.</p>
463
543
  */
464
544
  export interface Operation {
@@ -507,12 +587,18 @@ export interface Operation {
507
587
  */
508
588
  LastUpdatedTime?: Date;
509
589
  }
590
+ /**
591
+ * @public
592
+ */
510
593
  export interface GetOperationOutput {
511
594
  /**
512
595
  * <p>Returns the details of an operation.</p>
513
596
  */
514
597
  Operation?: Operation;
515
598
  }
599
+ /**
600
+ * @public
601
+ */
516
602
  export interface GetResourcePermissionInput {
517
603
  /**
518
604
  * <p/>
@@ -523,12 +609,18 @@ export interface GetResourcePermissionInput {
523
609
  */
524
610
  ResourceArn: string | undefined;
525
611
  }
612
+ /**
613
+ * @public
614
+ */
526
615
  export interface GetResourcePermissionOutput {
527
616
  /**
528
617
  * <p/>
529
618
  */
530
619
  Policy?: string;
531
620
  }
621
+ /**
622
+ * @public
623
+ */
532
624
  export interface ListApplicationsInput {
533
625
  /**
534
626
  * <p>The token for the next page of results.</p>
@@ -540,6 +632,9 @@ export interface ListApplicationsInput {
540
632
  */
541
633
  MaxResults?: number;
542
634
  }
635
+ /**
636
+ * @public
637
+ */
543
638
  export interface ListApplicationsOutput {
544
639
  /**
545
640
  * <p>The applications registered with AWS Systems Manager for SAP.</p>
@@ -551,6 +646,9 @@ export interface ListApplicationsOutput {
551
646
  */
552
647
  NextToken?: string;
553
648
  }
649
+ /**
650
+ * @public
651
+ */
554
652
  export interface ListComponentsInput {
555
653
  /**
556
654
  * <p>The ID of the application.</p>
@@ -568,6 +666,9 @@ export interface ListComponentsInput {
568
666
  */
569
667
  MaxResults?: number;
570
668
  }
669
+ /**
670
+ * @public
671
+ */
571
672
  export interface ListComponentsOutput {
572
673
  /**
573
674
  * <p>List of components registered with AWS System Manager for SAP.</p>
@@ -579,6 +680,9 @@ export interface ListComponentsOutput {
579
680
  */
580
681
  NextToken?: string;
581
682
  }
683
+ /**
684
+ * @public
685
+ */
582
686
  export interface ListDatabasesInput {
583
687
  /**
584
688
  * <p>The ID of the application.</p>
@@ -599,6 +703,9 @@ export interface ListDatabasesInput {
599
703
  */
600
704
  MaxResults?: number;
601
705
  }
706
+ /**
707
+ * @public
708
+ */
602
709
  export interface ListDatabasesOutput {
603
710
  /**
604
711
  * <p>The SAP HANA databases of an application.</p>
@@ -610,6 +717,9 @@ export interface ListDatabasesOutput {
610
717
  */
611
718
  NextToken?: string;
612
719
  }
720
+ /**
721
+ * @public
722
+ */
613
723
  export interface ListOperationsInput {
614
724
  /**
615
725
  * <p>The ID of the application.</p>
@@ -631,6 +741,9 @@ export interface ListOperationsInput {
631
741
  */
632
742
  Filters?: Filter[];
633
743
  }
744
+ /**
745
+ * @public
746
+ */
634
747
  export interface ListOperationsOutput {
635
748
  /**
636
749
  * <p>List of operations performed by AWS Systems Manager for SAP.</p>
@@ -642,18 +755,27 @@ export interface ListOperationsOutput {
642
755
  */
643
756
  NextToken?: string;
644
757
  }
758
+ /**
759
+ * @public
760
+ */
645
761
  export interface ListTagsForResourceRequest {
646
762
  /**
647
763
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
648
764
  */
649
765
  resourceArn: string | undefined;
650
766
  }
767
+ /**
768
+ * @public
769
+ */
651
770
  export interface ListTagsForResourceResponse {
652
771
  /**
653
772
  * <p/>
654
773
  */
655
774
  tags?: Record<string, string>;
656
775
  }
776
+ /**
777
+ * @public
778
+ */
657
779
  export interface PutResourcePermissionInput {
658
780
  /**
659
781
  * <p/>
@@ -668,12 +790,18 @@ export interface PutResourcePermissionInput {
668
790
  */
669
791
  ResourceArn: string | undefined;
670
792
  }
793
+ /**
794
+ * @public
795
+ */
671
796
  export interface PutResourcePermissionOutput {
672
797
  /**
673
798
  * <p/>
674
799
  */
675
800
  Policy?: string;
676
801
  }
802
+ /**
803
+ * @public
804
+ */
677
805
  export interface RegisterApplicationInput {
678
806
  /**
679
807
  * <p>The ID of the application.</p>
@@ -704,6 +832,9 @@ export interface RegisterApplicationInput {
704
832
  */
705
833
  Credentials: ApplicationCredential[] | undefined;
706
834
  }
835
+ /**
836
+ * @public
837
+ */
707
838
  export interface RegisterApplicationOutput {
708
839
  /**
709
840
  * <p>The application registered with AWS Systems Manager for SAP.</p>
@@ -714,6 +845,9 @@ export interface RegisterApplicationOutput {
714
845
  */
715
846
  OperationId?: string;
716
847
  }
848
+ /**
849
+ * @public
850
+ */
717
851
  export interface TagResourceRequest {
718
852
  /**
719
853
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -724,8 +858,14 @@ export interface TagResourceRequest {
724
858
  */
725
859
  tags: Record<string, string> | undefined;
726
860
  }
861
+ /**
862
+ * @public
863
+ */
727
864
  export interface TagResourceResponse {
728
865
  }
866
+ /**
867
+ * @public
868
+ */
729
869
  export interface UntagResourceRequest {
730
870
  /**
731
871
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
@@ -737,8 +877,14 @@ export interface UntagResourceRequest {
737
877
  */
738
878
  tagKeys: string[] | undefined;
739
879
  }
880
+ /**
881
+ * @public
882
+ */
740
883
  export interface UntagResourceResponse {
741
884
  }
885
+ /**
886
+ * @public
887
+ */
742
888
  export interface UpdateApplicationSettingsInput {
743
889
  /**
744
890
  * <p>The ID of the application.</p>
@@ -753,6 +899,9 @@ export interface UpdateApplicationSettingsInput {
753
899
  */
754
900
  CredentialsToRemove?: ApplicationCredential[];
755
901
  }
902
+ /**
903
+ * @public
904
+ */
756
905
  export interface UpdateApplicationSettingsOutput {
757
906
  /**
758
907
  * <p>The update message.</p>
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { SsmSapClient } from "../SsmSapClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface SsmSapPaginationConfiguration extends PaginationConfiguration {
4
7
  client: SsmSapClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
3
3
  import { SsmSapPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListApplications(config: SsmSapPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
3
3
  import { SsmSapPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListComponents(config: SsmSapPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
3
3
  import { SsmSapPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListDatabases(config: SsmSapPaginationConfiguration, input: ListDatabasesCommandInput, ...additionalArguments: any): Paginator<ListDatabasesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListOperationsCommandInput, ListOperationsCommandOutput } from "../commands/ListOperationsCommand";
3
3
  import { SsmSapPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListOperations(config: SsmSapPaginationConfiguration, input: ListOperationsCommandInput, ...additionalArguments: any): Paginator<ListOperationsCommandOutput>;
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.296.0",
4
+ "version": "3.297.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",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",