@aws-sdk/client-migration-hub-refactor-spaces 3.131.0 → 3.142.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -2
- package/dist-cjs/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/CreateRouteCommand.js +2 -2
- package/dist-cjs/commands/CreateServiceCommand.js +2 -2
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -2
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteRouteCommand.js +2 -2
- package/dist-cjs/commands/DeleteServiceCommand.js +2 -2
- package/dist-cjs/commands/GetApplicationCommand.js +2 -2
- package/dist-cjs/commands/GetEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/GetResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/GetRouteCommand.js +2 -2
- package/dist-cjs/commands/GetServiceCommand.js +2 -2
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -2
- package/dist-cjs/commands/ListEnvironmentVpcsCommand.js +2 -2
- package/dist-cjs/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-cjs/commands/ListRoutesCommand.js +2 -2
- package/dist-cjs/commands/ListServicesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateRouteCommand.js +2 -2
- package/dist-cjs/models/models_0.js +293 -423
- package/dist-cjs/protocols/Aws_restJson1.js +437 -995
- package/dist-es/commands/CreateApplicationCommand.js +3 -3
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -3
- package/dist-es/commands/CreateRouteCommand.js +3 -3
- package/dist-es/commands/CreateServiceCommand.js +3 -3
- package/dist-es/commands/DeleteApplicationCommand.js +3 -3
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -3
- package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -3
- package/dist-es/commands/DeleteRouteCommand.js +3 -3
- package/dist-es/commands/DeleteServiceCommand.js +3 -3
- package/dist-es/commands/GetApplicationCommand.js +3 -3
- package/dist-es/commands/GetEnvironmentCommand.js +3 -3
- package/dist-es/commands/GetResourcePolicyCommand.js +3 -3
- package/dist-es/commands/GetRouteCommand.js +3 -3
- package/dist-es/commands/GetServiceCommand.js +3 -3
- package/dist-es/commands/ListApplicationsCommand.js +3 -3
- package/dist-es/commands/ListEnvironmentVpcsCommand.js +3 -3
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -3
- package/dist-es/commands/ListRoutesCommand.js +3 -3
- package/dist-es/commands/ListServicesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutResourcePolicyCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateRouteCommand.js +3 -3
- package/dist-es/models/models_0.js +73 -268
- package/dist-es/protocols/Aws_restJson1.js +531 -1000
- package/dist-types/models/models_0.d.ts +260 -390
- package/dist-types/ts3.4/models/models_0.d.ts +130 -260
- package/package.json +6 -6
|
@@ -29,10 +29,6 @@ export interface ApiGatewayProxyConfig {
|
|
|
29
29
|
|
|
30
30
|
StageName?: string;
|
|
31
31
|
}
|
|
32
|
-
export declare namespace ApiGatewayProxyConfig {
|
|
33
|
-
|
|
34
|
-
const filterSensitiveLog: (obj: ApiGatewayProxyConfig) => any;
|
|
35
|
-
}
|
|
36
32
|
|
|
37
33
|
export interface ApiGatewayProxyInput {
|
|
38
34
|
|
|
@@ -40,10 +36,6 @@ export interface ApiGatewayProxyInput {
|
|
|
40
36
|
|
|
41
37
|
StageName?: string;
|
|
42
38
|
}
|
|
43
|
-
export declare namespace ApiGatewayProxyInput {
|
|
44
|
-
|
|
45
|
-
const filterSensitiveLog: (obj: ApiGatewayProxyInput) => any;
|
|
46
|
-
}
|
|
47
39
|
|
|
48
40
|
export interface ApiGatewayProxySummary {
|
|
49
41
|
|
|
@@ -61,10 +53,6 @@ export interface ApiGatewayProxySummary {
|
|
|
61
53
|
|
|
62
54
|
StageName?: string;
|
|
63
55
|
}
|
|
64
|
-
export declare namespace ApiGatewayProxySummary {
|
|
65
|
-
|
|
66
|
-
const filterSensitiveLog: (obj: ApiGatewayProxySummary) => any;
|
|
67
|
-
}
|
|
68
56
|
export declare enum ApplicationState {
|
|
69
57
|
ACTIVE = "ACTIVE",
|
|
70
58
|
CREATING = "CREATING",
|
|
@@ -122,10 +110,6 @@ export interface ErrorResponse {
|
|
|
122
110
|
|
|
123
111
|
AdditionalDetails?: Record<string, string>;
|
|
124
112
|
}
|
|
125
|
-
export declare namespace ErrorResponse {
|
|
126
|
-
|
|
127
|
-
const filterSensitiveLog: (obj: ErrorResponse) => any;
|
|
128
|
-
}
|
|
129
113
|
export declare enum ProxyType {
|
|
130
114
|
API_GATEWAY = "API_GATEWAY"
|
|
131
115
|
}
|
|
@@ -160,10 +144,6 @@ export interface ApplicationSummary {
|
|
|
160
144
|
|
|
161
145
|
CreatedTime?: Date;
|
|
162
146
|
}
|
|
163
|
-
export declare namespace ApplicationSummary {
|
|
164
|
-
|
|
165
|
-
const filterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
166
|
-
}
|
|
167
147
|
|
|
168
148
|
export declare class ConflictException extends __BaseException {
|
|
169
149
|
readonly name: "ConflictException";
|
|
@@ -192,10 +172,6 @@ export interface CreateApplicationRequest {
|
|
|
192
172
|
|
|
193
173
|
ClientToken?: string;
|
|
194
174
|
}
|
|
195
|
-
export declare namespace CreateApplicationRequest {
|
|
196
|
-
|
|
197
|
-
const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
198
|
-
}
|
|
199
175
|
export interface CreateApplicationResponse {
|
|
200
176
|
|
|
201
177
|
Name?: string;
|
|
@@ -224,10 +200,6 @@ export interface CreateApplicationResponse {
|
|
|
224
200
|
|
|
225
201
|
CreatedTime?: Date;
|
|
226
202
|
}
|
|
227
|
-
export declare namespace CreateApplicationResponse {
|
|
228
|
-
|
|
229
|
-
const filterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
230
|
-
}
|
|
231
203
|
|
|
232
204
|
export declare class InternalServerException extends __BaseException {
|
|
233
205
|
readonly name: "InternalServerException";
|
|
@@ -301,10 +273,6 @@ export interface CreateEnvironmentRequest {
|
|
|
301
273
|
|
|
302
274
|
ClientToken?: string;
|
|
303
275
|
}
|
|
304
|
-
export declare namespace CreateEnvironmentRequest {
|
|
305
|
-
|
|
306
|
-
const filterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
|
|
307
|
-
}
|
|
308
276
|
export declare enum EnvironmentState {
|
|
309
277
|
ACTIVE = "ACTIVE",
|
|
310
278
|
CREATING = "CREATING",
|
|
@@ -333,10 +301,6 @@ export interface CreateEnvironmentResponse {
|
|
|
333
301
|
|
|
334
302
|
CreatedTime?: Date;
|
|
335
303
|
}
|
|
336
|
-
export declare namespace CreateEnvironmentResponse {
|
|
337
|
-
|
|
338
|
-
const filterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
339
|
-
}
|
|
340
304
|
export declare enum RouteActivationState {
|
|
341
305
|
ACTIVE = "ACTIVE",
|
|
342
306
|
INACTIVE = "INACTIVE"
|
|
@@ -346,10 +310,6 @@ export interface DefaultRouteInput {
|
|
|
346
310
|
|
|
347
311
|
ActivationState?: RouteActivationState | string;
|
|
348
312
|
}
|
|
349
|
-
export declare namespace DefaultRouteInput {
|
|
350
|
-
|
|
351
|
-
const filterSensitiveLog: (obj: DefaultRouteInput) => any;
|
|
352
|
-
}
|
|
353
313
|
export declare enum RouteType {
|
|
354
314
|
DEFAULT = "DEFAULT",
|
|
355
315
|
URI_PATH = "URI_PATH"
|
|
@@ -374,10 +334,6 @@ export interface UriPathRouteInput {
|
|
|
374
334
|
|
|
375
335
|
IncludeChildPaths?: boolean;
|
|
376
336
|
}
|
|
377
|
-
export declare namespace UriPathRouteInput {
|
|
378
|
-
|
|
379
|
-
const filterSensitiveLog: (obj: UriPathRouteInput) => any;
|
|
380
|
-
}
|
|
381
337
|
export interface CreateRouteRequest {
|
|
382
338
|
|
|
383
339
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -396,10 +352,6 @@ export interface CreateRouteRequest {
|
|
|
396
352
|
|
|
397
353
|
ClientToken?: string;
|
|
398
354
|
}
|
|
399
|
-
export declare namespace CreateRouteRequest {
|
|
400
|
-
|
|
401
|
-
const filterSensitiveLog: (obj: CreateRouteRequest) => any;
|
|
402
|
-
}
|
|
403
355
|
export declare enum RouteState {
|
|
404
356
|
ACTIVE = "ACTIVE",
|
|
405
357
|
CREATING = "CREATING",
|
|
@@ -434,10 +386,6 @@ export interface CreateRouteResponse {
|
|
|
434
386
|
|
|
435
387
|
CreatedTime?: Date;
|
|
436
388
|
}
|
|
437
|
-
export declare namespace CreateRouteResponse {
|
|
438
|
-
|
|
439
|
-
const filterSensitiveLog: (obj: CreateRouteResponse) => any;
|
|
440
|
-
}
|
|
441
389
|
export declare enum ServiceEndpointType {
|
|
442
390
|
LAMBDA = "LAMBDA",
|
|
443
391
|
URL = "URL"
|
|
@@ -447,10 +395,6 @@ export interface LambdaEndpointInput {
|
|
|
447
395
|
|
|
448
396
|
Arn: string | undefined;
|
|
449
397
|
}
|
|
450
|
-
export declare namespace LambdaEndpointInput {
|
|
451
|
-
|
|
452
|
-
const filterSensitiveLog: (obj: LambdaEndpointInput) => any;
|
|
453
|
-
}
|
|
454
398
|
|
|
455
399
|
export interface UrlEndpointInput {
|
|
456
400
|
|
|
@@ -458,10 +402,6 @@ export interface UrlEndpointInput {
|
|
|
458
402
|
|
|
459
403
|
HealthUrl?: string;
|
|
460
404
|
}
|
|
461
|
-
export declare namespace UrlEndpointInput {
|
|
462
|
-
|
|
463
|
-
const filterSensitiveLog: (obj: UrlEndpointInput) => any;
|
|
464
|
-
}
|
|
465
405
|
export interface CreateServiceRequest {
|
|
466
406
|
|
|
467
407
|
Name: string | undefined;
|
|
@@ -484,10 +424,6 @@ export interface CreateServiceRequest {
|
|
|
484
424
|
|
|
485
425
|
ClientToken?: string;
|
|
486
426
|
}
|
|
487
|
-
export declare namespace CreateServiceRequest {
|
|
488
|
-
|
|
489
|
-
const filterSensitiveLog: (obj: CreateServiceRequest) => any;
|
|
490
|
-
}
|
|
491
427
|
export declare enum ServiceState {
|
|
492
428
|
ACTIVE = "ACTIVE",
|
|
493
429
|
CREATING = "CREATING",
|
|
@@ -528,20 +464,12 @@ export interface CreateServiceResponse {
|
|
|
528
464
|
|
|
529
465
|
CreatedTime?: Date;
|
|
530
466
|
}
|
|
531
|
-
export declare namespace CreateServiceResponse {
|
|
532
|
-
|
|
533
|
-
const filterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
534
|
-
}
|
|
535
467
|
export interface DeleteApplicationRequest {
|
|
536
468
|
|
|
537
469
|
EnvironmentIdentifier: string | undefined;
|
|
538
470
|
|
|
539
471
|
ApplicationIdentifier: string | undefined;
|
|
540
472
|
}
|
|
541
|
-
export declare namespace DeleteApplicationRequest {
|
|
542
|
-
|
|
543
|
-
const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
544
|
-
}
|
|
545
473
|
export interface DeleteApplicationResponse {
|
|
546
474
|
|
|
547
475
|
Name?: string;
|
|
@@ -556,18 +484,10 @@ export interface DeleteApplicationResponse {
|
|
|
556
484
|
|
|
557
485
|
LastUpdatedTime?: Date;
|
|
558
486
|
}
|
|
559
|
-
export declare namespace DeleteApplicationResponse {
|
|
560
|
-
|
|
561
|
-
const filterSensitiveLog: (obj: DeleteApplicationResponse) => any;
|
|
562
|
-
}
|
|
563
487
|
export interface DeleteEnvironmentRequest {
|
|
564
488
|
|
|
565
489
|
EnvironmentIdentifier: string | undefined;
|
|
566
490
|
}
|
|
567
|
-
export declare namespace DeleteEnvironmentRequest {
|
|
568
|
-
|
|
569
|
-
const filterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
|
|
570
|
-
}
|
|
571
491
|
export interface DeleteEnvironmentResponse {
|
|
572
492
|
|
|
573
493
|
Name?: string;
|
|
@@ -580,24 +500,12 @@ export interface DeleteEnvironmentResponse {
|
|
|
580
500
|
|
|
581
501
|
LastUpdatedTime?: Date;
|
|
582
502
|
}
|
|
583
|
-
export declare namespace DeleteEnvironmentResponse {
|
|
584
|
-
|
|
585
|
-
const filterSensitiveLog: (obj: DeleteEnvironmentResponse) => any;
|
|
586
|
-
}
|
|
587
503
|
export interface DeleteResourcePolicyRequest {
|
|
588
504
|
|
|
589
505
|
Identifier: string | undefined;
|
|
590
506
|
}
|
|
591
|
-
export declare namespace DeleteResourcePolicyRequest {
|
|
592
|
-
|
|
593
|
-
const filterSensitiveLog: (obj: DeleteResourcePolicyRequest) => any;
|
|
594
|
-
}
|
|
595
507
|
export interface DeleteResourcePolicyResponse {
|
|
596
508
|
}
|
|
597
|
-
export declare namespace DeleteResourcePolicyResponse {
|
|
598
|
-
|
|
599
|
-
const filterSensitiveLog: (obj: DeleteResourcePolicyResponse) => any;
|
|
600
|
-
}
|
|
601
509
|
export interface DeleteRouteRequest {
|
|
602
510
|
|
|
603
511
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -606,10 +514,6 @@ export interface DeleteRouteRequest {
|
|
|
606
514
|
|
|
607
515
|
RouteIdentifier: string | undefined;
|
|
608
516
|
}
|
|
609
|
-
export declare namespace DeleteRouteRequest {
|
|
610
|
-
|
|
611
|
-
const filterSensitiveLog: (obj: DeleteRouteRequest) => any;
|
|
612
|
-
}
|
|
613
517
|
export interface DeleteRouteResponse {
|
|
614
518
|
|
|
615
519
|
RouteId?: string;
|
|
@@ -624,10 +528,6 @@ export interface DeleteRouteResponse {
|
|
|
624
528
|
|
|
625
529
|
LastUpdatedTime?: Date;
|
|
626
530
|
}
|
|
627
|
-
export declare namespace DeleteRouteResponse {
|
|
628
|
-
|
|
629
|
-
const filterSensitiveLog: (obj: DeleteRouteResponse) => any;
|
|
630
|
-
}
|
|
631
531
|
export interface DeleteServiceRequest {
|
|
632
532
|
|
|
633
533
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -636,10 +536,6 @@ export interface DeleteServiceRequest {
|
|
|
636
536
|
|
|
637
537
|
ServiceIdentifier: string | undefined;
|
|
638
538
|
}
|
|
639
|
-
export declare namespace DeleteServiceRequest {
|
|
640
|
-
|
|
641
|
-
const filterSensitiveLog: (obj: DeleteServiceRequest) => any;
|
|
642
|
-
}
|
|
643
539
|
export interface DeleteServiceResponse {
|
|
644
540
|
|
|
645
541
|
ServiceId?: string;
|
|
@@ -656,10 +552,6 @@ export interface DeleteServiceResponse {
|
|
|
656
552
|
|
|
657
553
|
LastUpdatedTime?: Date;
|
|
658
554
|
}
|
|
659
|
-
export declare namespace DeleteServiceResponse {
|
|
660
|
-
|
|
661
|
-
const filterSensitiveLog: (obj: DeleteServiceResponse) => any;
|
|
662
|
-
}
|
|
663
555
|
|
|
664
556
|
export interface EnvironmentSummary {
|
|
665
557
|
|
|
@@ -687,10 +579,6 @@ export interface EnvironmentSummary {
|
|
|
687
579
|
|
|
688
580
|
CreatedTime?: Date;
|
|
689
581
|
}
|
|
690
|
-
export declare namespace EnvironmentSummary {
|
|
691
|
-
|
|
692
|
-
const filterSensitiveLog: (obj: EnvironmentSummary) => any;
|
|
693
|
-
}
|
|
694
582
|
|
|
695
583
|
export interface EnvironmentVpc {
|
|
696
584
|
|
|
@@ -708,20 +596,12 @@ export interface EnvironmentVpc {
|
|
|
708
596
|
|
|
709
597
|
CreatedTime?: Date;
|
|
710
598
|
}
|
|
711
|
-
export declare namespace EnvironmentVpc {
|
|
712
|
-
|
|
713
|
-
const filterSensitiveLog: (obj: EnvironmentVpc) => any;
|
|
714
|
-
}
|
|
715
599
|
export interface GetApplicationRequest {
|
|
716
600
|
|
|
717
601
|
EnvironmentIdentifier: string | undefined;
|
|
718
602
|
|
|
719
603
|
ApplicationIdentifier: string | undefined;
|
|
720
604
|
}
|
|
721
|
-
export declare namespace GetApplicationRequest {
|
|
722
|
-
|
|
723
|
-
const filterSensitiveLog: (obj: GetApplicationRequest) => any;
|
|
724
|
-
}
|
|
725
605
|
export interface GetApplicationResponse {
|
|
726
606
|
|
|
727
607
|
Name?: string;
|
|
@@ -752,18 +632,10 @@ export interface GetApplicationResponse {
|
|
|
752
632
|
|
|
753
633
|
CreatedTime?: Date;
|
|
754
634
|
}
|
|
755
|
-
export declare namespace GetApplicationResponse {
|
|
756
|
-
|
|
757
|
-
const filterSensitiveLog: (obj: GetApplicationResponse) => any;
|
|
758
|
-
}
|
|
759
635
|
export interface GetEnvironmentRequest {
|
|
760
636
|
|
|
761
637
|
EnvironmentIdentifier: string | undefined;
|
|
762
638
|
}
|
|
763
|
-
export declare namespace GetEnvironmentRequest {
|
|
764
|
-
|
|
765
|
-
const filterSensitiveLog: (obj: GetEnvironmentRequest) => any;
|
|
766
|
-
}
|
|
767
639
|
export interface GetEnvironmentResponse {
|
|
768
640
|
|
|
769
641
|
Name?: string;
|
|
@@ -790,26 +662,14 @@ export interface GetEnvironmentResponse {
|
|
|
790
662
|
|
|
791
663
|
CreatedTime?: Date;
|
|
792
664
|
}
|
|
793
|
-
export declare namespace GetEnvironmentResponse {
|
|
794
|
-
|
|
795
|
-
const filterSensitiveLog: (obj: GetEnvironmentResponse) => any;
|
|
796
|
-
}
|
|
797
665
|
export interface GetResourcePolicyRequest {
|
|
798
666
|
|
|
799
667
|
Identifier: string | undefined;
|
|
800
668
|
}
|
|
801
|
-
export declare namespace GetResourcePolicyRequest {
|
|
802
|
-
|
|
803
|
-
const filterSensitiveLog: (obj: GetResourcePolicyRequest) => any;
|
|
804
|
-
}
|
|
805
669
|
export interface GetResourcePolicyResponse {
|
|
806
670
|
|
|
807
671
|
Policy?: string;
|
|
808
672
|
}
|
|
809
|
-
export declare namespace GetResourcePolicyResponse {
|
|
810
|
-
|
|
811
|
-
const filterSensitiveLog: (obj: GetResourcePolicyResponse) => any;
|
|
812
|
-
}
|
|
813
673
|
export interface GetRouteRequest {
|
|
814
674
|
|
|
815
675
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -818,10 +678,6 @@ export interface GetRouteRequest {
|
|
|
818
678
|
|
|
819
679
|
RouteIdentifier: string | undefined;
|
|
820
680
|
}
|
|
821
|
-
export declare namespace GetRouteRequest {
|
|
822
|
-
|
|
823
|
-
const filterSensitiveLog: (obj: GetRouteRequest) => any;
|
|
824
|
-
}
|
|
825
681
|
export interface GetRouteResponse {
|
|
826
682
|
|
|
827
683
|
RouteId?: string;
|
|
@@ -858,10 +714,6 @@ export interface GetRouteResponse {
|
|
|
858
714
|
|
|
859
715
|
CreatedTime?: Date;
|
|
860
716
|
}
|
|
861
|
-
export declare namespace GetRouteResponse {
|
|
862
|
-
|
|
863
|
-
const filterSensitiveLog: (obj: GetRouteResponse) => any;
|
|
864
|
-
}
|
|
865
717
|
export interface GetServiceRequest {
|
|
866
718
|
|
|
867
719
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -870,19 +722,11 @@ export interface GetServiceRequest {
|
|
|
870
722
|
|
|
871
723
|
ServiceIdentifier: string | undefined;
|
|
872
724
|
}
|
|
873
|
-
export declare namespace GetServiceRequest {
|
|
874
|
-
|
|
875
|
-
const filterSensitiveLog: (obj: GetServiceRequest) => any;
|
|
876
|
-
}
|
|
877
725
|
|
|
878
726
|
export interface LambdaEndpointConfig {
|
|
879
727
|
|
|
880
728
|
Arn?: string;
|
|
881
729
|
}
|
|
882
|
-
export declare namespace LambdaEndpointConfig {
|
|
883
|
-
|
|
884
|
-
const filterSensitiveLog: (obj: LambdaEndpointConfig) => any;
|
|
885
|
-
}
|
|
886
730
|
|
|
887
731
|
export interface UrlEndpointConfig {
|
|
888
732
|
|
|
@@ -890,10 +734,6 @@ export interface UrlEndpointConfig {
|
|
|
890
734
|
|
|
891
735
|
HealthUrl?: string;
|
|
892
736
|
}
|
|
893
|
-
export declare namespace UrlEndpointConfig {
|
|
894
|
-
|
|
895
|
-
const filterSensitiveLog: (obj: UrlEndpointConfig) => any;
|
|
896
|
-
}
|
|
897
737
|
export interface GetServiceResponse {
|
|
898
738
|
|
|
899
739
|
ServiceId?: string;
|
|
@@ -930,10 +770,6 @@ export interface GetServiceResponse {
|
|
|
930
770
|
|
|
931
771
|
CreatedTime?: Date;
|
|
932
772
|
}
|
|
933
|
-
export declare namespace GetServiceResponse {
|
|
934
|
-
|
|
935
|
-
const filterSensitiveLog: (obj: GetServiceResponse) => any;
|
|
936
|
-
}
|
|
937
773
|
|
|
938
774
|
export declare class InvalidResourcePolicyException extends __BaseException {
|
|
939
775
|
readonly name: "InvalidResourcePolicyException";
|
|
@@ -947,10 +783,6 @@ export interface LambdaEndpointSummary {
|
|
|
947
783
|
|
|
948
784
|
Arn?: string;
|
|
949
785
|
}
|
|
950
|
-
export declare namespace LambdaEndpointSummary {
|
|
951
|
-
|
|
952
|
-
const filterSensitiveLog: (obj: LambdaEndpointSummary) => any;
|
|
953
|
-
}
|
|
954
786
|
export interface ListApplicationsRequest {
|
|
955
787
|
|
|
956
788
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -959,40 +791,24 @@ export interface ListApplicationsRequest {
|
|
|
959
791
|
|
|
960
792
|
MaxResults?: number;
|
|
961
793
|
}
|
|
962
|
-
export declare namespace ListApplicationsRequest {
|
|
963
|
-
|
|
964
|
-
const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
965
|
-
}
|
|
966
794
|
export interface ListApplicationsResponse {
|
|
967
795
|
|
|
968
796
|
ApplicationSummaryList?: ApplicationSummary[];
|
|
969
797
|
|
|
970
798
|
NextToken?: string;
|
|
971
799
|
}
|
|
972
|
-
export declare namespace ListApplicationsResponse {
|
|
973
|
-
|
|
974
|
-
const filterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
975
|
-
}
|
|
976
800
|
export interface ListEnvironmentsRequest {
|
|
977
801
|
|
|
978
802
|
NextToken?: string;
|
|
979
803
|
|
|
980
804
|
MaxResults?: number;
|
|
981
805
|
}
|
|
982
|
-
export declare namespace ListEnvironmentsRequest {
|
|
983
|
-
|
|
984
|
-
const filterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
|
|
985
|
-
}
|
|
986
806
|
export interface ListEnvironmentsResponse {
|
|
987
807
|
|
|
988
808
|
EnvironmentSummaryList?: EnvironmentSummary[];
|
|
989
809
|
|
|
990
810
|
NextToken?: string;
|
|
991
811
|
}
|
|
992
|
-
export declare namespace ListEnvironmentsResponse {
|
|
993
|
-
|
|
994
|
-
const filterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
|
|
995
|
-
}
|
|
996
812
|
export interface ListEnvironmentVpcsRequest {
|
|
997
813
|
|
|
998
814
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -1001,20 +817,12 @@ export interface ListEnvironmentVpcsRequest {
|
|
|
1001
817
|
|
|
1002
818
|
MaxResults?: number;
|
|
1003
819
|
}
|
|
1004
|
-
export declare namespace ListEnvironmentVpcsRequest {
|
|
1005
|
-
|
|
1006
|
-
const filterSensitiveLog: (obj: ListEnvironmentVpcsRequest) => any;
|
|
1007
|
-
}
|
|
1008
820
|
export interface ListEnvironmentVpcsResponse {
|
|
1009
821
|
|
|
1010
822
|
EnvironmentVpcList?: EnvironmentVpc[];
|
|
1011
823
|
|
|
1012
824
|
NextToken?: string;
|
|
1013
825
|
}
|
|
1014
|
-
export declare namespace ListEnvironmentVpcsResponse {
|
|
1015
|
-
|
|
1016
|
-
const filterSensitiveLog: (obj: ListEnvironmentVpcsResponse) => any;
|
|
1017
|
-
}
|
|
1018
826
|
export interface ListRoutesRequest {
|
|
1019
827
|
|
|
1020
828
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -1025,10 +833,6 @@ export interface ListRoutesRequest {
|
|
|
1025
833
|
|
|
1026
834
|
MaxResults?: number;
|
|
1027
835
|
}
|
|
1028
|
-
export declare namespace ListRoutesRequest {
|
|
1029
|
-
|
|
1030
|
-
const filterSensitiveLog: (obj: ListRoutesRequest) => any;
|
|
1031
|
-
}
|
|
1032
836
|
|
|
1033
837
|
export interface RouteSummary {
|
|
1034
838
|
|
|
@@ -1066,20 +870,12 @@ export interface RouteSummary {
|
|
|
1066
870
|
|
|
1067
871
|
CreatedTime?: Date;
|
|
1068
872
|
}
|
|
1069
|
-
export declare namespace RouteSummary {
|
|
1070
|
-
|
|
1071
|
-
const filterSensitiveLog: (obj: RouteSummary) => any;
|
|
1072
|
-
}
|
|
1073
873
|
export interface ListRoutesResponse {
|
|
1074
874
|
|
|
1075
875
|
RouteSummaryList?: RouteSummary[];
|
|
1076
876
|
|
|
1077
877
|
NextToken?: string;
|
|
1078
878
|
}
|
|
1079
|
-
export declare namespace ListRoutesResponse {
|
|
1080
|
-
|
|
1081
|
-
const filterSensitiveLog: (obj: ListRoutesResponse) => any;
|
|
1082
|
-
}
|
|
1083
879
|
export interface ListServicesRequest {
|
|
1084
880
|
|
|
1085
881
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -1090,10 +886,6 @@ export interface ListServicesRequest {
|
|
|
1090
886
|
|
|
1091
887
|
MaxResults?: number;
|
|
1092
888
|
}
|
|
1093
|
-
export declare namespace ListServicesRequest {
|
|
1094
|
-
|
|
1095
|
-
const filterSensitiveLog: (obj: ListServicesRequest) => any;
|
|
1096
|
-
}
|
|
1097
889
|
|
|
1098
890
|
export interface UrlEndpointSummary {
|
|
1099
891
|
|
|
@@ -1101,10 +893,6 @@ export interface UrlEndpointSummary {
|
|
|
1101
893
|
|
|
1102
894
|
HealthUrl?: string;
|
|
1103
895
|
}
|
|
1104
|
-
export declare namespace UrlEndpointSummary {
|
|
1105
|
-
|
|
1106
|
-
const filterSensitiveLog: (obj: UrlEndpointSummary) => any;
|
|
1107
|
-
}
|
|
1108
896
|
|
|
1109
897
|
export interface ServiceSummary {
|
|
1110
898
|
|
|
@@ -1142,84 +930,44 @@ export interface ServiceSummary {
|
|
|
1142
930
|
|
|
1143
931
|
CreatedTime?: Date;
|
|
1144
932
|
}
|
|
1145
|
-
export declare namespace ServiceSummary {
|
|
1146
|
-
|
|
1147
|
-
const filterSensitiveLog: (obj: ServiceSummary) => any;
|
|
1148
|
-
}
|
|
1149
933
|
export interface ListServicesResponse {
|
|
1150
934
|
|
|
1151
935
|
ServiceSummaryList?: ServiceSummary[];
|
|
1152
936
|
|
|
1153
937
|
NextToken?: string;
|
|
1154
938
|
}
|
|
1155
|
-
export declare namespace ListServicesResponse {
|
|
1156
|
-
|
|
1157
|
-
const filterSensitiveLog: (obj: ListServicesResponse) => any;
|
|
1158
|
-
}
|
|
1159
939
|
export interface ListTagsForResourceRequest {
|
|
1160
940
|
|
|
1161
941
|
ResourceArn: string | undefined;
|
|
1162
942
|
}
|
|
1163
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1164
|
-
|
|
1165
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1166
|
-
}
|
|
1167
943
|
export interface ListTagsForResourceResponse {
|
|
1168
944
|
|
|
1169
945
|
Tags?: Record<string, string>;
|
|
1170
946
|
}
|
|
1171
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1172
|
-
|
|
1173
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1174
|
-
}
|
|
1175
947
|
export interface PutResourcePolicyRequest {
|
|
1176
948
|
|
|
1177
949
|
ResourceArn: string | undefined;
|
|
1178
950
|
|
|
1179
951
|
Policy: string | undefined;
|
|
1180
952
|
}
|
|
1181
|
-
export declare namespace PutResourcePolicyRequest {
|
|
1182
|
-
|
|
1183
|
-
const filterSensitiveLog: (obj: PutResourcePolicyRequest) => any;
|
|
1184
|
-
}
|
|
1185
953
|
export interface PutResourcePolicyResponse {
|
|
1186
954
|
}
|
|
1187
|
-
export declare namespace PutResourcePolicyResponse {
|
|
1188
|
-
|
|
1189
|
-
const filterSensitiveLog: (obj: PutResourcePolicyResponse) => any;
|
|
1190
|
-
}
|
|
1191
955
|
export interface TagResourceRequest {
|
|
1192
956
|
|
|
1193
957
|
ResourceArn: string | undefined;
|
|
1194
958
|
|
|
1195
959
|
Tags: Record<string, string> | undefined;
|
|
1196
960
|
}
|
|
1197
|
-
export declare namespace TagResourceRequest {
|
|
1198
|
-
|
|
1199
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1200
|
-
}
|
|
1201
961
|
export interface TagResourceResponse {
|
|
1202
962
|
}
|
|
1203
|
-
export declare namespace TagResourceResponse {
|
|
1204
|
-
|
|
1205
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1206
|
-
}
|
|
1207
963
|
export interface UntagResourceRequest {
|
|
1208
964
|
|
|
1209
965
|
ResourceArn: string | undefined;
|
|
1210
966
|
|
|
1211
967
|
TagKeys: string[] | undefined;
|
|
1212
968
|
}
|
|
1213
|
-
export declare namespace UntagResourceRequest {
|
|
1214
|
-
|
|
1215
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1216
|
-
}
|
|
1217
969
|
export interface UntagResourceResponse {
|
|
1218
970
|
}
|
|
1219
|
-
export declare namespace UntagResourceResponse {
|
|
1220
|
-
|
|
1221
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1222
|
-
}
|
|
1223
971
|
export interface UpdateRouteRequest {
|
|
1224
972
|
|
|
1225
973
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -1230,10 +978,6 @@ export interface UpdateRouteRequest {
|
|
|
1230
978
|
|
|
1231
979
|
ActivationState: RouteActivationState | string | undefined;
|
|
1232
980
|
}
|
|
1233
|
-
export declare namespace UpdateRouteRequest {
|
|
1234
|
-
|
|
1235
|
-
const filterSensitiveLog: (obj: UpdateRouteRequest) => any;
|
|
1236
|
-
}
|
|
1237
981
|
export interface UpdateRouteResponse {
|
|
1238
982
|
|
|
1239
983
|
RouteId?: string;
|
|
@@ -1248,7 +992,133 @@ export interface UpdateRouteResponse {
|
|
|
1248
992
|
|
|
1249
993
|
LastUpdatedTime?: Date;
|
|
1250
994
|
}
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
995
|
+
|
|
996
|
+
export declare const ApiGatewayProxyConfigFilterSensitiveLog: (obj: ApiGatewayProxyConfig) => any;
|
|
997
|
+
|
|
998
|
+
export declare const ApiGatewayProxyInputFilterSensitiveLog: (obj: ApiGatewayProxyInput) => any;
|
|
999
|
+
|
|
1000
|
+
export declare const ApiGatewayProxySummaryFilterSensitiveLog: (obj: ApiGatewayProxySummary) => any;
|
|
1001
|
+
|
|
1002
|
+
export declare const ErrorResponseFilterSensitiveLog: (obj: ErrorResponse) => any;
|
|
1003
|
+
|
|
1004
|
+
export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
1005
|
+
|
|
1006
|
+
export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
1007
|
+
|
|
1008
|
+
export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
1009
|
+
|
|
1010
|
+
export declare const CreateEnvironmentRequestFilterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
|
|
1011
|
+
|
|
1012
|
+
export declare const CreateEnvironmentResponseFilterSensitiveLog: (obj: CreateEnvironmentResponse) => any;
|
|
1013
|
+
|
|
1014
|
+
export declare const DefaultRouteInputFilterSensitiveLog: (obj: DefaultRouteInput) => any;
|
|
1015
|
+
|
|
1016
|
+
export declare const UriPathRouteInputFilterSensitiveLog: (obj: UriPathRouteInput) => any;
|
|
1017
|
+
|
|
1018
|
+
export declare const CreateRouteRequestFilterSensitiveLog: (obj: CreateRouteRequest) => any;
|
|
1019
|
+
|
|
1020
|
+
export declare const CreateRouteResponseFilterSensitiveLog: (obj: CreateRouteResponse) => any;
|
|
1021
|
+
|
|
1022
|
+
export declare const LambdaEndpointInputFilterSensitiveLog: (obj: LambdaEndpointInput) => any;
|
|
1023
|
+
|
|
1024
|
+
export declare const UrlEndpointInputFilterSensitiveLog: (obj: UrlEndpointInput) => any;
|
|
1025
|
+
|
|
1026
|
+
export declare const CreateServiceRequestFilterSensitiveLog: (obj: CreateServiceRequest) => any;
|
|
1027
|
+
|
|
1028
|
+
export declare const CreateServiceResponseFilterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
1029
|
+
|
|
1030
|
+
export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
1031
|
+
|
|
1032
|
+
export declare const DeleteApplicationResponseFilterSensitiveLog: (obj: DeleteApplicationResponse) => any;
|
|
1033
|
+
|
|
1034
|
+
export declare const DeleteEnvironmentRequestFilterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
|
|
1035
|
+
|
|
1036
|
+
export declare const DeleteEnvironmentResponseFilterSensitiveLog: (obj: DeleteEnvironmentResponse) => any;
|
|
1037
|
+
|
|
1038
|
+
export declare const DeleteResourcePolicyRequestFilterSensitiveLog: (obj: DeleteResourcePolicyRequest) => any;
|
|
1039
|
+
|
|
1040
|
+
export declare const DeleteResourcePolicyResponseFilterSensitiveLog: (obj: DeleteResourcePolicyResponse) => any;
|
|
1041
|
+
|
|
1042
|
+
export declare const DeleteRouteRequestFilterSensitiveLog: (obj: DeleteRouteRequest) => any;
|
|
1043
|
+
|
|
1044
|
+
export declare const DeleteRouteResponseFilterSensitiveLog: (obj: DeleteRouteResponse) => any;
|
|
1045
|
+
|
|
1046
|
+
export declare const DeleteServiceRequestFilterSensitiveLog: (obj: DeleteServiceRequest) => any;
|
|
1047
|
+
|
|
1048
|
+
export declare const DeleteServiceResponseFilterSensitiveLog: (obj: DeleteServiceResponse) => any;
|
|
1049
|
+
|
|
1050
|
+
export declare const EnvironmentSummaryFilterSensitiveLog: (obj: EnvironmentSummary) => any;
|
|
1051
|
+
|
|
1052
|
+
export declare const EnvironmentVpcFilterSensitiveLog: (obj: EnvironmentVpc) => any;
|
|
1053
|
+
|
|
1054
|
+
export declare const GetApplicationRequestFilterSensitiveLog: (obj: GetApplicationRequest) => any;
|
|
1055
|
+
|
|
1056
|
+
export declare const GetApplicationResponseFilterSensitiveLog: (obj: GetApplicationResponse) => any;
|
|
1057
|
+
|
|
1058
|
+
export declare const GetEnvironmentRequestFilterSensitiveLog: (obj: GetEnvironmentRequest) => any;
|
|
1059
|
+
|
|
1060
|
+
export declare const GetEnvironmentResponseFilterSensitiveLog: (obj: GetEnvironmentResponse) => any;
|
|
1061
|
+
|
|
1062
|
+
export declare const GetResourcePolicyRequestFilterSensitiveLog: (obj: GetResourcePolicyRequest) => any;
|
|
1063
|
+
|
|
1064
|
+
export declare const GetResourcePolicyResponseFilterSensitiveLog: (obj: GetResourcePolicyResponse) => any;
|
|
1065
|
+
|
|
1066
|
+
export declare const GetRouteRequestFilterSensitiveLog: (obj: GetRouteRequest) => any;
|
|
1067
|
+
|
|
1068
|
+
export declare const GetRouteResponseFilterSensitiveLog: (obj: GetRouteResponse) => any;
|
|
1069
|
+
|
|
1070
|
+
export declare const GetServiceRequestFilterSensitiveLog: (obj: GetServiceRequest) => any;
|
|
1071
|
+
|
|
1072
|
+
export declare const LambdaEndpointConfigFilterSensitiveLog: (obj: LambdaEndpointConfig) => any;
|
|
1073
|
+
|
|
1074
|
+
export declare const UrlEndpointConfigFilterSensitiveLog: (obj: UrlEndpointConfig) => any;
|
|
1075
|
+
|
|
1076
|
+
export declare const GetServiceResponseFilterSensitiveLog: (obj: GetServiceResponse) => any;
|
|
1077
|
+
|
|
1078
|
+
export declare const LambdaEndpointSummaryFilterSensitiveLog: (obj: LambdaEndpointSummary) => any;
|
|
1079
|
+
|
|
1080
|
+
export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
1081
|
+
|
|
1082
|
+
export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
1083
|
+
|
|
1084
|
+
export declare const ListEnvironmentsRequestFilterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
|
|
1085
|
+
|
|
1086
|
+
export declare const ListEnvironmentsResponseFilterSensitiveLog: (obj: ListEnvironmentsResponse) => any;
|
|
1087
|
+
|
|
1088
|
+
export declare const ListEnvironmentVpcsRequestFilterSensitiveLog: (obj: ListEnvironmentVpcsRequest) => any;
|
|
1089
|
+
|
|
1090
|
+
export declare const ListEnvironmentVpcsResponseFilterSensitiveLog: (obj: ListEnvironmentVpcsResponse) => any;
|
|
1091
|
+
|
|
1092
|
+
export declare const ListRoutesRequestFilterSensitiveLog: (obj: ListRoutesRequest) => any;
|
|
1093
|
+
|
|
1094
|
+
export declare const RouteSummaryFilterSensitiveLog: (obj: RouteSummary) => any;
|
|
1095
|
+
|
|
1096
|
+
export declare const ListRoutesResponseFilterSensitiveLog: (obj: ListRoutesResponse) => any;
|
|
1097
|
+
|
|
1098
|
+
export declare const ListServicesRequestFilterSensitiveLog: (obj: ListServicesRequest) => any;
|
|
1099
|
+
|
|
1100
|
+
export declare const UrlEndpointSummaryFilterSensitiveLog: (obj: UrlEndpointSummary) => any;
|
|
1101
|
+
|
|
1102
|
+
export declare const ServiceSummaryFilterSensitiveLog: (obj: ServiceSummary) => any;
|
|
1103
|
+
|
|
1104
|
+
export declare const ListServicesResponseFilterSensitiveLog: (obj: ListServicesResponse) => any;
|
|
1105
|
+
|
|
1106
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1107
|
+
|
|
1108
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1109
|
+
|
|
1110
|
+
export declare const PutResourcePolicyRequestFilterSensitiveLog: (obj: PutResourcePolicyRequest) => any;
|
|
1111
|
+
|
|
1112
|
+
export declare const PutResourcePolicyResponseFilterSensitiveLog: (obj: PutResourcePolicyResponse) => any;
|
|
1113
|
+
|
|
1114
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1115
|
+
|
|
1116
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1117
|
+
|
|
1118
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1119
|
+
|
|
1120
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1121
|
+
|
|
1122
|
+
export declare const UpdateRouteRequestFilterSensitiveLog: (obj: UpdateRouteRequest) => any;
|
|
1123
|
+
|
|
1124
|
+
export declare const UpdateRouteResponseFilterSensitiveLog: (obj: UpdateRouteResponse) => any;
|