cdk-docker-image-deployment 0.0.143 → 0.0.145

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.
@@ -91,6 +91,14 @@ declare class SsmSap extends Service {
91
91
  * Lists the SAP HANA databases of an application registered with AWS Systems Manager for SAP.
92
92
  */
93
93
  listDatabases(callback?: (err: AWSError, data: SsmSap.Types.ListDatabasesOutput) => void): Request<SsmSap.Types.ListDatabasesOutput, AWSError>;
94
+ /**
95
+ * Lists the operations performed by AWS Systems Manager for SAP.
96
+ */
97
+ listOperations(params: SsmSap.Types.ListOperationsInput, callback?: (err: AWSError, data: SsmSap.Types.ListOperationsOutput) => void): Request<SsmSap.Types.ListOperationsOutput, AWSError>;
98
+ /**
99
+ * Lists the operations performed by AWS Systems Manager for SAP.
100
+ */
101
+ listOperations(callback?: (err: AWSError, data: SsmSap.Types.ListOperationsOutput) => void): Request<SsmSap.Types.ListOperationsOutput, AWSError>;
94
102
  /**
95
103
  * Lists all tags on an SAP HANA application and/or database registered with AWS Systems Manager for SAP.
96
104
  */
@@ -132,11 +140,11 @@ declare class SsmSap extends Service {
132
140
  */
133
141
  untagResource(callback?: (err: AWSError, data: SsmSap.Types.UntagResourceResponse) => void): Request<SsmSap.Types.UntagResourceResponse, AWSError>;
134
142
  /**
135
- *
143
+ * Updates the settings of an application registered with AWS Systems Manager for SAP.
136
144
  */
137
145
  updateApplicationSettings(params: SsmSap.Types.UpdateApplicationSettingsInput, callback?: (err: AWSError, data: SsmSap.Types.UpdateApplicationSettingsOutput) => void): Request<SsmSap.Types.UpdateApplicationSettingsOutput, AWSError>;
138
146
  /**
139
- *
147
+ * Updates the settings of an application registered with AWS Systems Manager for SAP.
140
148
  */
141
149
  updateApplicationSettings(callback?: (err: AWSError, data: SsmSap.Types.UpdateApplicationSettingsOutput) => void): Request<SsmSap.Types.UpdateApplicationSettingsOutput, AWSError>;
142
150
  }
@@ -144,49 +152,49 @@ declare namespace SsmSap {
144
152
  export type AppRegistryArn = string;
145
153
  export interface Application {
146
154
  /**
147
- *
155
+ * The ID of the application.
148
156
  */
149
157
  Id?: ApplicationId;
150
158
  /**
151
- *
159
+ * The type of the application.
152
160
  */
153
161
  Type?: ApplicationType;
154
162
  /**
155
- *
163
+ * The Amazon Resource Name (ARN) of the application.
156
164
  */
157
165
  Arn?: SsmSapArn;
158
166
  /**
159
- *
167
+ * The Amazon Resource Name (ARN) of the Application Registry.
160
168
  */
161
169
  AppRegistryArn?: AppRegistryArn;
162
170
  /**
163
- *
171
+ * The status of the application.
164
172
  */
165
173
  Status?: ApplicationStatus;
166
174
  /**
167
- *
175
+ * The components of the application.
168
176
  */
169
177
  Components?: ComponentIdList;
170
178
  /**
171
- *
179
+ * The time at which the application was last updated.
172
180
  */
173
181
  LastUpdated?: Timestamp;
174
182
  /**
175
- *
183
+ * The status message.
176
184
  */
177
185
  StatusMessage?: String;
178
186
  }
179
187
  export interface ApplicationCredential {
180
188
  /**
181
- *
189
+ * The name of the SAP HANA database.
182
190
  */
183
191
  DatabaseName: DatabaseName;
184
192
  /**
185
- *
193
+ * The type of the application credentials.
186
194
  */
187
195
  CredentialType: CredentialType;
188
196
  /**
189
- *
197
+ * The secret ID created in AWS Secrets Manager to store the credentials of the SAP application.
190
198
  */
191
199
  SecretId: SecretId;
192
200
  }
@@ -195,19 +203,19 @@ declare namespace SsmSap {
195
203
  export type ApplicationStatus = "ACTIVATED"|"STARTING"|"STOPPED"|"STOPPING"|"FAILED"|"REGISTERING"|"DELETING"|"UNKNOWN"|string;
196
204
  export interface ApplicationSummary {
197
205
  /**
198
- *
206
+ * The ID of the application.
199
207
  */
200
208
  Id?: ApplicationId;
201
209
  /**
202
- *
210
+ * The type of the application.
203
211
  */
204
212
  Type?: ApplicationType;
205
213
  /**
206
- *
214
+ * The Amazon Resource Name (ARN) of the application.
207
215
  */
208
216
  Arn?: SsmSapArn;
209
217
  /**
210
- *
218
+ * The tags on the application.
211
219
  */
212
220
  Tags?: TagMap;
213
221
  }
@@ -216,35 +224,35 @@ declare namespace SsmSap {
216
224
  export type Arn = string;
217
225
  export interface Component {
218
226
  /**
219
- *
227
+ * The ID of the component.
220
228
  */
221
229
  ComponentId?: ComponentId;
222
230
  /**
223
- *
231
+ * The ID of the application.
224
232
  */
225
233
  ApplicationId?: ApplicationId;
226
234
  /**
227
- *
235
+ * The type of the component.
228
236
  */
229
237
  ComponentType?: ComponentType;
230
238
  /**
231
- *
239
+ * The status of the component.
232
240
  */
233
241
  Status?: ComponentStatus;
234
242
  /**
235
- *
243
+ * The SAP HANA databases of the component.
236
244
  */
237
245
  Databases?: DatabaseIdList;
238
246
  /**
239
- *
247
+ * The hosts of the component.
240
248
  */
241
249
  Hosts?: HostList;
242
250
  /**
243
- *
251
+ * The primary host of the component.
244
252
  */
245
253
  PrimaryHost?: String;
246
254
  /**
247
- *
255
+ * The time at which the component was last updated.
248
256
  */
249
257
  LastUpdated?: Timestamp;
250
258
  }
@@ -253,19 +261,19 @@ declare namespace SsmSap {
253
261
  export type ComponentStatus = "ACTIVATED"|string;
254
262
  export interface ComponentSummary {
255
263
  /**
256
- *
264
+ * The ID of the application.
257
265
  */
258
266
  ApplicationId?: ApplicationId;
259
267
  /**
260
- *
268
+ * The ID of the component.
261
269
  */
262
270
  ComponentId?: ComponentId;
263
271
  /**
264
- *
272
+ * The type of the component.
265
273
  */
266
274
  ComponentType?: ComponentType;
267
275
  /**
268
- *
276
+ * The tags of the component.
269
277
  */
270
278
  Tags?: TagMap;
271
279
  }
@@ -274,47 +282,47 @@ declare namespace SsmSap {
274
282
  export type CredentialType = "ADMIN"|string;
275
283
  export interface Database {
276
284
  /**
277
- *
285
+ * The ID of the application.
278
286
  */
279
287
  ApplicationId?: ApplicationId;
280
288
  /**
281
- *
289
+ * The ID of the component.
282
290
  */
283
291
  ComponentId?: ComponentId;
284
292
  /**
285
- *
293
+ * The credentials of the database.
286
294
  */
287
295
  Credentials?: ApplicationCredentialList;
288
296
  /**
289
- *
297
+ * The ID of the SAP HANA database.
290
298
  */
291
299
  DatabaseId?: DatabaseId;
292
300
  /**
293
- *
301
+ * The name of the database.
294
302
  */
295
303
  DatabaseName?: String;
296
304
  /**
297
- *
305
+ * The type of the database.
298
306
  */
299
307
  DatabaseType?: DatabaseType;
300
308
  /**
301
- *
309
+ * The Amazon Resource Name (ARN) of the database.
302
310
  */
303
311
  Arn?: SsmSapArn;
304
312
  /**
305
- *
313
+ * The status of the database.
306
314
  */
307
315
  Status?: DatabaseStatus;
308
316
  /**
309
- *
317
+ * The primary host of the database.
310
318
  */
311
319
  PrimaryHost?: String;
312
320
  /**
313
- *
321
+ * The SQL port of the database.
314
322
  */
315
323
  SQLPort?: Integer;
316
324
  /**
317
- *
325
+ * The time at which the database was last updated.
318
326
  */
319
327
  LastUpdated?: Timestamp;
320
328
  }
@@ -324,27 +332,27 @@ declare namespace SsmSap {
324
332
  export type DatabaseStatus = "RUNNING"|"STARTING"|"STOPPED"|"WARNING"|"UNKNOWN"|string;
325
333
  export interface DatabaseSummary {
326
334
  /**
327
- *
335
+ * The ID of the application.
328
336
  */
329
337
  ApplicationId?: ApplicationId;
330
338
  /**
331
- *
339
+ * The ID of the component.
332
340
  */
333
341
  ComponentId?: ComponentId;
334
342
  /**
335
- *
343
+ * The ID of the database.
336
344
  */
337
345
  DatabaseId?: DatabaseId;
338
346
  /**
339
- *
347
+ * The type of the database.
340
348
  */
341
349
  DatabaseType?: DatabaseType;
342
350
  /**
343
- *
351
+ * The Amazon Resource Name (ARN) of the database.
344
352
  */
345
353
  Arn?: SsmSapArn;
346
354
  /**
347
- *
355
+ * The tags of the database.
348
356
  */
349
357
  Tags?: TagMap;
350
358
  }
@@ -352,105 +360,127 @@ declare namespace SsmSap {
352
360
  export type DatabaseType = "SYSTEM"|"TENANT"|string;
353
361
  export interface DeleteResourcePermissionInput {
354
362
  /**
355
- *
363
+ * Delete or restore the permissions on the target database.
356
364
  */
357
365
  ActionType?: PermissionActionType;
358
366
  /**
359
- *
367
+ * The Amazon Resource Name (ARN) of the source resource.
360
368
  */
361
369
  SourceResourceArn?: Arn;
362
370
  /**
363
- *
371
+ * The Amazon Resource Name (ARN) of the resource.
364
372
  */
365
373
  ResourceArn: Arn;
366
374
  }
367
375
  export interface DeleteResourcePermissionOutput {
368
376
  /**
369
- *
377
+ * The policy that removes permissions on the target database.
370
378
  */
371
379
  Policy?: String;
372
380
  }
373
381
  export interface DeregisterApplicationInput {
374
382
  /**
375
- *
383
+ * The ID of the application.
376
384
  */
377
385
  ApplicationId: ApplicationId;
378
386
  }
379
387
  export interface DeregisterApplicationOutput {
380
388
  }
389
+ export interface Filter {
390
+ /**
391
+ * The name of the filter. Filter names are case-sensitive.
392
+ */
393
+ Name: FilterName;
394
+ /**
395
+ * 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
396
+ */
397
+ Value: FilterValue;
398
+ /**
399
+ * The operator for the filter.
400
+ */
401
+ Operator: FilterOperator;
402
+ }
403
+ export type FilterList = Filter[];
404
+ export type FilterName = string;
405
+ export type FilterOperator = "Equals"|"GreaterThanOrEquals"|"LessThanOrEquals"|string;
406
+ export type FilterValue = string;
381
407
  export interface GetApplicationInput {
382
408
  /**
383
- *
409
+ * The ID of the application.
384
410
  */
385
411
  ApplicationId?: ApplicationId;
386
412
  /**
387
- *
413
+ * The Amazon Resource Name (ARN) of the application.
388
414
  */
389
415
  ApplicationArn?: SsmSapArn;
416
+ /**
417
+ * The Amazon Resource Name (ARN) of the application registry.
418
+ */
419
+ AppRegistryArn?: AppRegistryArn;
390
420
  }
391
421
  export interface GetApplicationOutput {
392
422
  /**
393
- *
423
+ * Returns all of the metadata of an application registered with AWS Systems Manager for SAP.
394
424
  */
395
425
  Application?: Application;
396
426
  /**
397
- *
427
+ * The tags of a registered application.
398
428
  */
399
429
  Tags?: TagMap;
400
430
  }
401
431
  export interface GetComponentInput {
402
432
  /**
403
- *
433
+ * The ID of the application.
404
434
  */
405
435
  ApplicationId: ApplicationId;
406
436
  /**
407
- *
437
+ * The ID of the component.
408
438
  */
409
439
  ComponentId: ComponentId;
410
440
  }
411
441
  export interface GetComponentOutput {
412
442
  /**
413
- *
443
+ * The component of an application registered with AWS Systems Manager for SAP.
414
444
  */
415
445
  Component?: Component;
416
446
  }
417
447
  export interface GetDatabaseInput {
418
448
  /**
419
- *
449
+ * The ID of the application.
420
450
  */
421
451
  ApplicationId?: ApplicationId;
422
452
  /**
423
- *
453
+ * The ID of the component.
424
454
  */
425
455
  ComponentId?: ComponentId;
426
456
  /**
427
- *
457
+ * The ID of the database.
428
458
  */
429
459
  DatabaseId?: DatabaseId;
430
460
  /**
431
- *
461
+ * The Amazon Resource Name (ARN) of the database.
432
462
  */
433
463
  DatabaseArn?: SsmSapArn;
434
464
  }
435
465
  export interface GetDatabaseOutput {
436
466
  /**
437
- *
467
+ * The SAP HANA database of an application registered with AWS Systems Manager for SAP.
438
468
  */
439
469
  Database?: Database;
440
470
  /**
441
- *
471
+ * The tags of a database.
442
472
  */
443
473
  Tags?: TagMap;
444
474
  }
445
475
  export interface GetOperationInput {
446
476
  /**
447
- *
477
+ * The ID of the operation.
448
478
  */
449
479
  OperationId: OperationId;
450
480
  }
451
481
  export interface GetOperationOutput {
452
482
  /**
453
- *
483
+ * Returns the details of an operation.
454
484
  */
455
485
  Operation?: Operation;
456
486
  }
@@ -460,7 +490,7 @@ declare namespace SsmSap {
460
490
  */
461
491
  ActionType?: PermissionActionType;
462
492
  /**
463
- *
493
+ * The Amazon Resource Name (ARN) of the resource.
464
494
  */
465
495
  ResourceArn: Arn;
466
496
  }
@@ -472,19 +502,19 @@ declare namespace SsmSap {
472
502
  }
473
503
  export interface Host {
474
504
  /**
475
- *
505
+ * The name of the Dedicated Host.
476
506
  */
477
507
  HostName?: String;
478
508
  /**
479
- *
509
+ * The role of the Dedicated Host.
480
510
  */
481
511
  HostRole?: HostRole;
482
512
  /**
483
- *
513
+ * The IP address of the Dedicated Host.
484
514
  */
485
515
  HostIp?: String;
486
516
  /**
487
- *
517
+ * The instance ID of the instance on the Dedicated Host.
488
518
  */
489
519
  InstanceId?: String;
490
520
  }
@@ -495,79 +525,107 @@ declare namespace SsmSap {
495
525
  export type Integer = number;
496
526
  export interface ListApplicationsInput {
497
527
  /**
498
- *
528
+ * The token for the next page of results.
499
529
  */
500
530
  NextToken?: NextToken;
501
531
  /**
502
- *
532
+ * The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
503
533
  */
504
534
  MaxResults?: MaxResults;
505
535
  }
506
536
  export interface ListApplicationsOutput {
507
537
  /**
508
- *
538
+ * The applications registered with AWS Systems Manager for SAP.
509
539
  */
510
540
  Applications?: ApplicationSummaryList;
511
541
  /**
512
- *
542
+ * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
513
543
  */
514
544
  NextToken?: NextToken;
515
545
  }
516
546
  export interface ListComponentsInput {
517
547
  /**
518
- *
548
+ * The ID of the application.
519
549
  */
520
550
  ApplicationId?: ApplicationId;
521
551
  /**
522
- *
552
+ * The token for the next page of results.
523
553
  */
524
554
  NextToken?: NextToken;
525
555
  /**
526
- *
556
+ * 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.
527
557
  */
528
558
  MaxResults?: MaxResults;
529
559
  }
530
560
  export interface ListComponentsOutput {
531
561
  /**
532
- *
562
+ * List of components registered with AWS System Manager for SAP.
533
563
  */
534
564
  Components?: ComponentSummaryList;
535
565
  /**
536
- *
566
+ * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
537
567
  */
538
568
  NextToken?: NextToken;
539
569
  }
540
570
  export interface ListDatabasesInput {
541
571
  /**
542
- *
572
+ * The ID of the application.
543
573
  */
544
574
  ApplicationId?: ApplicationId;
545
575
  /**
546
- *
576
+ * The ID of the component.
547
577
  */
548
578
  ComponentId?: ComponentId;
549
579
  /**
550
- *
580
+ * The token for the next page of results.
551
581
  */
552
582
  NextToken?: NextToken;
553
583
  /**
554
- *
584
+ * 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.
555
585
  */
556
586
  MaxResults?: MaxResults;
557
587
  }
558
588
  export interface ListDatabasesOutput {
559
589
  /**
560
- *
590
+ * The SAP HANA databases of an application.
561
591
  */
562
592
  Databases?: DatabaseSummaryList;
563
593
  /**
564
- *
594
+ * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
595
+ */
596
+ NextToken?: NextToken;
597
+ }
598
+ export interface ListOperationsInput {
599
+ /**
600
+ * The ID of the application.
601
+ */
602
+ ApplicationId: ApplicationId;
603
+ /**
604
+ * 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.
605
+ */
606
+ MaxResults?: MaxResults;
607
+ /**
608
+ * The token for the next page of results.
609
+ */
610
+ NextToken?: NextToken;
611
+ /**
612
+ * The filters of an operation.
613
+ */
614
+ Filters?: FilterList;
615
+ }
616
+ export interface ListOperationsOutput {
617
+ /**
618
+ * List of operations performed by AWS Systems Manager for SAP.
619
+ */
620
+ Operations?: OperationList;
621
+ /**
622
+ * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
565
623
  */
566
624
  NextToken?: NextToken;
567
625
  }
568
626
  export interface ListTagsForResourceRequest {
569
627
  /**
570
- *
628
+ * The Amazon Resource Name (ARN) of the resource.
571
629
  */
572
630
  resourceArn: SsmSapArn;
573
631
  }
@@ -581,52 +639,53 @@ declare namespace SsmSap {
581
639
  export type NextToken = string;
582
640
  export interface Operation {
583
641
  /**
584
- *
642
+ * The ID of the operation.
585
643
  */
586
644
  Id?: OperationId;
587
645
  /**
588
- *
646
+ * The type of the operation.
589
647
  */
590
648
  Type?: OperationType;
591
649
  /**
592
- *
650
+ * The status of the operation.
593
651
  */
594
652
  Status?: OperationStatus;
595
653
  /**
596
- *
654
+ * The status message of the operation.
597
655
  */
598
656
  StatusMessage?: String;
599
657
  /**
600
- *
658
+ * The properties of the operation.
601
659
  */
602
660
  Properties?: OperationProperties;
603
661
  /**
604
- *
662
+ * The resource type of the operation.
605
663
  */
606
664
  ResourceType?: ResourceType;
607
665
  /**
608
- *
666
+ * The resource ID of the operation.
609
667
  */
610
668
  ResourceId?: ResourceId;
611
669
  /**
612
- *
670
+ * The Amazon Resource Name (ARN) of the operation.
613
671
  */
614
672
  ResourceArn?: Arn;
615
673
  /**
616
- *
674
+ * The start time of the operation.
617
675
  */
618
676
  StartTime?: Timestamp;
619
677
  /**
620
- *
678
+ * The end time of the operation.
621
679
  */
622
680
  EndTime?: Timestamp;
623
681
  /**
624
- *
682
+ * The time at which the operation was last updated.
625
683
  */
626
684
  LastUpdatedTime?: Timestamp;
627
685
  }
628
686
  export type OperationId = string;
629
687
  export type OperationIdList = OperationId[];
688
+ export type OperationList = Operation[];
630
689
  export type OperationProperties = {[key: string]: String};
631
690
  export type OperationStatus = "INPROGRESS"|"SUCCESS"|"ERROR"|string;
632
691
  export type OperationType = string;
@@ -653,41 +712,41 @@ declare namespace SsmSap {
653
712
  }
654
713
  export interface RegisterApplicationInput {
655
714
  /**
656
- *
715
+ * The ID of the application.
657
716
  */
658
717
  ApplicationId: ApplicationId;
659
718
  /**
660
- *
719
+ * The type of the application.
661
720
  */
662
721
  ApplicationType: ApplicationType;
663
722
  /**
664
- *
723
+ * The Amazon EC2 instances on which your SAP application is running.
665
724
  */
666
725
  Instances: InstanceList;
667
726
  /**
668
- *
727
+ * The SAP instance number of the application.
669
728
  */
670
729
  SapInstanceNumber?: SAPInstanceNumber;
671
730
  /**
672
- *
731
+ * The System ID of the application.
673
732
  */
674
733
  Sid?: SID;
675
734
  /**
676
- *
735
+ * The tags to be attached to the SAP application.
677
736
  */
678
737
  Tags?: TagMap;
679
738
  /**
680
- *
739
+ * The credentials of the SAP application.
681
740
  */
682
741
  Credentials: ApplicationCredentialList;
683
742
  }
684
743
  export interface RegisterApplicationOutput {
685
744
  /**
686
- *
745
+ * The application registered with AWS Systems Manager for SAP.
687
746
  */
688
747
  Application?: Application;
689
748
  /**
690
- *
749
+ * The ID of the operation.
691
750
  */
692
751
  OperationId?: OperationId;
693
752
  }
@@ -703,11 +762,11 @@ declare namespace SsmSap {
703
762
  export type TagMap = {[key: string]: TagValue};
704
763
  export interface TagResourceRequest {
705
764
  /**
706
- *
765
+ * The Amazon Resource Name (ARN) of the resource.
707
766
  */
708
767
  resourceArn: SsmSapArn;
709
768
  /**
710
- *
769
+ * The tags on a resource.
711
770
  */
712
771
  tags: TagMap;
713
772
  }
@@ -717,7 +776,7 @@ declare namespace SsmSap {
717
776
  export type Timestamp = Date;
718
777
  export interface UntagResourceRequest {
719
778
  /**
720
- *
779
+ * The Amazon Resource Name (ARN) of the resource.
721
780
  */
722
781
  resourceArn: SsmSapArn;
723
782
  /**
@@ -729,25 +788,25 @@ declare namespace SsmSap {
729
788
  }
730
789
  export interface UpdateApplicationSettingsInput {
731
790
  /**
732
- *
791
+ * The ID of the application.
733
792
  */
734
793
  ApplicationId: ApplicationId;
735
794
  /**
736
- *
795
+ * The credentials to be added or updated.
737
796
  */
738
797
  CredentialsToAddOrUpdate?: ApplicationCredentialList;
739
798
  /**
740
- *
799
+ * The credentials to be removed.
741
800
  */
742
801
  CredentialsToRemove?: ApplicationCredentialList;
743
802
  }
744
803
  export interface UpdateApplicationSettingsOutput {
745
804
  /**
746
- *
805
+ * The update message.
747
806
  */
748
807
  Message?: String;
749
808
  /**
750
- *
809
+ * The IDs of the operations.
751
810
  */
752
811
  OperationIds?: OperationIdList;
753
812
  }