@aws-sdk/client-apprunner 3.199.0 → 3.200.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 +11 -0
- package/dist-cjs/AppRunner.js +75 -0
- package/dist-cjs/commands/CreateVpcIngressConnectionCommand.js +46 -0
- package/dist-cjs/commands/DeleteVpcIngressConnectionCommand.js +46 -0
- package/dist-cjs/commands/DescribeVpcIngressConnectionCommand.js +46 -0
- package/dist-cjs/commands/ListVpcIngressConnectionsCommand.js +46 -0
- package/dist-cjs/commands/UpdateVpcIngressConnectionCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +78 -3
- package/dist-cjs/pagination/ListVpcIngressConnectionsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +416 -2
- package/dist-es/AppRunner.js +75 -0
- package/dist-es/commands/CreateVpcIngressConnectionCommand.js +42 -0
- package/dist-es/commands/DeleteVpcIngressConnectionCommand.js +42 -0
- package/dist-es/commands/DescribeVpcIngressConnectionCommand.js +42 -0
- package/dist-es/commands/ListVpcIngressConnectionsCommand.js +42 -0
- package/dist-es/commands/UpdateVpcIngressConnectionCommand.js +42 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +59 -0
- package/dist-es/pagination/ListVpcIngressConnectionsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +404 -0
- package/dist-types/AppRunner.d.ts +79 -0
- package/dist-types/AppRunnerClient.d.ts +7 -2
- package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +37 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +60 -0
- package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +37 -0
- package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +54 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +330 -1
- package/dist-types/pagination/ListVpcIngressConnectionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +15 -0
- package/dist-types/ts3.4/AppRunner.d.ts +85 -0
- package/dist-types/ts3.4/AppRunnerClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateVpcIngressConnectionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteVpcIngressConnectionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeVpcIngressConnectionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListVpcIngressConnectionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateVpcIngressConnectionCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +129 -1
- package/dist-types/ts3.4/pagination/ListVpcIngressConnectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
- package/package.json +28 -28
|
@@ -31,10 +31,16 @@ export interface CustomDomain {
|
|
|
31
31
|
CertificateValidationRecords?: CertificateValidationRecord[];
|
|
32
32
|
Status: CustomDomainAssociationStatus | string | undefined;
|
|
33
33
|
}
|
|
34
|
+
export interface VpcDNSTarget {
|
|
35
|
+
VpcIngressConnectionArn?: string;
|
|
36
|
+
VpcId?: string;
|
|
37
|
+
DomainName?: string;
|
|
38
|
+
}
|
|
34
39
|
export interface AssociateCustomDomainResponse {
|
|
35
40
|
DNSTarget: string | undefined;
|
|
36
41
|
ServiceArn: string | undefined;
|
|
37
42
|
CustomDomain: CustomDomain | undefined;
|
|
43
|
+
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
38
44
|
}
|
|
39
45
|
export declare class InternalServiceErrorException extends __BaseException {
|
|
40
46
|
readonly name: "InternalServiceErrorException";
|
|
@@ -178,8 +184,12 @@ export interface EgressConfiguration {
|
|
|
178
184
|
EgressType?: EgressType | string;
|
|
179
185
|
VpcConnectorArn?: string;
|
|
180
186
|
}
|
|
187
|
+
export interface IngressConfiguration {
|
|
188
|
+
IsPubliclyAccessible?: boolean;
|
|
189
|
+
}
|
|
181
190
|
export interface NetworkConfiguration {
|
|
182
191
|
EgressConfiguration?: EgressConfiguration;
|
|
192
|
+
IngressConfiguration?: IngressConfiguration;
|
|
183
193
|
}
|
|
184
194
|
export interface ServiceObservabilityConfiguration {
|
|
185
195
|
ObservabilityEnabled: boolean | undefined;
|
|
@@ -276,7 +286,7 @@ export interface Service {
|
|
|
276
286
|
ServiceName: string | undefined;
|
|
277
287
|
ServiceId: string | undefined;
|
|
278
288
|
ServiceArn: string | undefined;
|
|
279
|
-
ServiceUrl
|
|
289
|
+
ServiceUrl?: string;
|
|
280
290
|
CreatedAt: Date | undefined;
|
|
281
291
|
UpdatedAt: Date | undefined;
|
|
282
292
|
DeletedAt?: Date;
|
|
@@ -316,6 +326,40 @@ export interface VpcConnector {
|
|
|
316
326
|
export interface CreateVpcConnectorResponse {
|
|
317
327
|
VpcConnector: VpcConnector | undefined;
|
|
318
328
|
}
|
|
329
|
+
export interface IngressVpcConfiguration {
|
|
330
|
+
VpcId?: string;
|
|
331
|
+
VpcEndpointId?: string;
|
|
332
|
+
}
|
|
333
|
+
export interface CreateVpcIngressConnectionRequest {
|
|
334
|
+
ServiceArn: string | undefined;
|
|
335
|
+
VpcIngressConnectionName: string | undefined;
|
|
336
|
+
IngressVpcConfiguration: IngressVpcConfiguration | undefined;
|
|
337
|
+
Tags?: Tag[];
|
|
338
|
+
}
|
|
339
|
+
export declare enum VpcIngressConnectionStatus {
|
|
340
|
+
AVAILABLE = "AVAILABLE",
|
|
341
|
+
DELETED = "DELETED",
|
|
342
|
+
FAILED_CREATION = "FAILED_CREATION",
|
|
343
|
+
FAILED_DELETION = "FAILED_DELETION",
|
|
344
|
+
FAILED_UPDATE = "FAILED_UPDATE",
|
|
345
|
+
PENDING_CREATION = "PENDING_CREATION",
|
|
346
|
+
PENDING_DELETION = "PENDING_DELETION",
|
|
347
|
+
PENDING_UPDATE = "PENDING_UPDATE",
|
|
348
|
+
}
|
|
349
|
+
export interface VpcIngressConnection {
|
|
350
|
+
VpcIngressConnectionArn?: string;
|
|
351
|
+
VpcIngressConnectionName?: string;
|
|
352
|
+
ServiceArn?: string;
|
|
353
|
+
Status?: VpcIngressConnectionStatus | string;
|
|
354
|
+
AccountId?: string;
|
|
355
|
+
DomainName?: string;
|
|
356
|
+
IngressVpcConfiguration?: IngressVpcConfiguration;
|
|
357
|
+
CreatedAt?: Date;
|
|
358
|
+
DeletedAt?: Date;
|
|
359
|
+
}
|
|
360
|
+
export interface CreateVpcIngressConnectionResponse {
|
|
361
|
+
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
362
|
+
}
|
|
319
363
|
export interface DeleteAutoScalingConfigurationRequest {
|
|
320
364
|
AutoScalingConfigurationArn: string | undefined;
|
|
321
365
|
}
|
|
@@ -355,6 +399,12 @@ export interface DeleteVpcConnectorRequest {
|
|
|
355
399
|
export interface DeleteVpcConnectorResponse {
|
|
356
400
|
VpcConnector: VpcConnector | undefined;
|
|
357
401
|
}
|
|
402
|
+
export interface DeleteVpcIngressConnectionRequest {
|
|
403
|
+
VpcIngressConnectionArn: string | undefined;
|
|
404
|
+
}
|
|
405
|
+
export interface DeleteVpcIngressConnectionResponse {
|
|
406
|
+
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
407
|
+
}
|
|
358
408
|
export interface DescribeAutoScalingConfigurationRequest {
|
|
359
409
|
AutoScalingConfigurationArn: string | undefined;
|
|
360
410
|
}
|
|
@@ -370,6 +420,7 @@ export interface DescribeCustomDomainsResponse {
|
|
|
370
420
|
DNSTarget: string | undefined;
|
|
371
421
|
ServiceArn: string | undefined;
|
|
372
422
|
CustomDomains: CustomDomain[] | undefined;
|
|
423
|
+
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
373
424
|
NextToken?: string;
|
|
374
425
|
}
|
|
375
426
|
export interface DescribeObservabilityConfigurationRequest {
|
|
@@ -390,6 +441,12 @@ export interface DescribeVpcConnectorRequest {
|
|
|
390
441
|
export interface DescribeVpcConnectorResponse {
|
|
391
442
|
VpcConnector: VpcConnector | undefined;
|
|
392
443
|
}
|
|
444
|
+
export interface DescribeVpcIngressConnectionRequest {
|
|
445
|
+
VpcIngressConnectionArn: string | undefined;
|
|
446
|
+
}
|
|
447
|
+
export interface DescribeVpcIngressConnectionResponse {
|
|
448
|
+
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
449
|
+
}
|
|
393
450
|
export interface DisassociateCustomDomainRequest {
|
|
394
451
|
ServiceArn: string | undefined;
|
|
395
452
|
DomainName: string | undefined;
|
|
@@ -398,6 +455,7 @@ export interface DisassociateCustomDomainResponse {
|
|
|
398
455
|
DNSTarget: string | undefined;
|
|
399
456
|
ServiceArn: string | undefined;
|
|
400
457
|
CustomDomain: CustomDomain | undefined;
|
|
458
|
+
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
401
459
|
}
|
|
402
460
|
export interface ListAutoScalingConfigurationsRequest {
|
|
403
461
|
AutoScalingConfigurationName?: string;
|
|
@@ -509,6 +567,23 @@ export interface ListVpcConnectorsResponse {
|
|
|
509
567
|
VpcConnectors: VpcConnector[] | undefined;
|
|
510
568
|
NextToken?: string;
|
|
511
569
|
}
|
|
570
|
+
export interface ListVpcIngressConnectionsFilter {
|
|
571
|
+
ServiceArn?: string;
|
|
572
|
+
VpcEndpointId?: string;
|
|
573
|
+
}
|
|
574
|
+
export interface ListVpcIngressConnectionsRequest {
|
|
575
|
+
Filter?: ListVpcIngressConnectionsFilter;
|
|
576
|
+
MaxResults?: number;
|
|
577
|
+
NextToken?: string;
|
|
578
|
+
}
|
|
579
|
+
export interface VpcIngressConnectionSummary {
|
|
580
|
+
VpcIngressConnectionArn?: string;
|
|
581
|
+
ServiceArn?: string;
|
|
582
|
+
}
|
|
583
|
+
export interface ListVpcIngressConnectionsResponse {
|
|
584
|
+
VpcIngressConnectionSummaryList: VpcIngressConnectionSummary[] | undefined;
|
|
585
|
+
NextToken?: string;
|
|
586
|
+
}
|
|
512
587
|
export interface PauseServiceRequest {
|
|
513
588
|
ServiceArn: string | undefined;
|
|
514
589
|
}
|
|
@@ -552,6 +627,13 @@ export interface UpdateServiceResponse {
|
|
|
552
627
|
Service: Service | undefined;
|
|
553
628
|
OperationId: string | undefined;
|
|
554
629
|
}
|
|
630
|
+
export interface UpdateVpcIngressConnectionRequest {
|
|
631
|
+
VpcIngressConnectionArn: string | undefined;
|
|
632
|
+
IngressVpcConfiguration: IngressVpcConfiguration | undefined;
|
|
633
|
+
}
|
|
634
|
+
export interface UpdateVpcIngressConnectionResponse {
|
|
635
|
+
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
636
|
+
}
|
|
555
637
|
export declare const AssociateCustomDomainRequestFilterSensitiveLog: (
|
|
556
638
|
obj: AssociateCustomDomainRequest
|
|
557
639
|
) => any;
|
|
@@ -559,6 +641,7 @@ export declare const CertificateValidationRecordFilterSensitiveLog: (
|
|
|
559
641
|
obj: CertificateValidationRecord
|
|
560
642
|
) => any;
|
|
561
643
|
export declare const CustomDomainFilterSensitiveLog: (obj: CustomDomain) => any;
|
|
644
|
+
export declare const VpcDNSTargetFilterSensitiveLog: (obj: VpcDNSTarget) => any;
|
|
562
645
|
export declare const AssociateCustomDomainResponseFilterSensitiveLog: (
|
|
563
646
|
obj: AssociateCustomDomainResponse
|
|
564
647
|
) => any;
|
|
@@ -603,6 +686,9 @@ export declare const InstanceConfigurationFilterSensitiveLog: (
|
|
|
603
686
|
export declare const EgressConfigurationFilterSensitiveLog: (
|
|
604
687
|
obj: EgressConfiguration
|
|
605
688
|
) => any;
|
|
689
|
+
export declare const IngressConfigurationFilterSensitiveLog: (
|
|
690
|
+
obj: IngressConfiguration
|
|
691
|
+
) => any;
|
|
606
692
|
export declare const NetworkConfigurationFilterSensitiveLog: (
|
|
607
693
|
obj: NetworkConfiguration
|
|
608
694
|
) => any;
|
|
@@ -650,6 +736,18 @@ export declare const VpcConnectorFilterSensitiveLog: (obj: VpcConnector) => any;
|
|
|
650
736
|
export declare const CreateVpcConnectorResponseFilterSensitiveLog: (
|
|
651
737
|
obj: CreateVpcConnectorResponse
|
|
652
738
|
) => any;
|
|
739
|
+
export declare const IngressVpcConfigurationFilterSensitiveLog: (
|
|
740
|
+
obj: IngressVpcConfiguration
|
|
741
|
+
) => any;
|
|
742
|
+
export declare const CreateVpcIngressConnectionRequestFilterSensitiveLog: (
|
|
743
|
+
obj: CreateVpcIngressConnectionRequest
|
|
744
|
+
) => any;
|
|
745
|
+
export declare const VpcIngressConnectionFilterSensitiveLog: (
|
|
746
|
+
obj: VpcIngressConnection
|
|
747
|
+
) => any;
|
|
748
|
+
export declare const CreateVpcIngressConnectionResponseFilterSensitiveLog: (
|
|
749
|
+
obj: CreateVpcIngressConnectionResponse
|
|
750
|
+
) => any;
|
|
653
751
|
export declare const DeleteAutoScalingConfigurationRequestFilterSensitiveLog: (
|
|
654
752
|
obj: DeleteAutoScalingConfigurationRequest
|
|
655
753
|
) => any;
|
|
@@ -680,6 +778,12 @@ export declare const DeleteVpcConnectorRequestFilterSensitiveLog: (
|
|
|
680
778
|
export declare const DeleteVpcConnectorResponseFilterSensitiveLog: (
|
|
681
779
|
obj: DeleteVpcConnectorResponse
|
|
682
780
|
) => any;
|
|
781
|
+
export declare const DeleteVpcIngressConnectionRequestFilterSensitiveLog: (
|
|
782
|
+
obj: DeleteVpcIngressConnectionRequest
|
|
783
|
+
) => any;
|
|
784
|
+
export declare const DeleteVpcIngressConnectionResponseFilterSensitiveLog: (
|
|
785
|
+
obj: DeleteVpcIngressConnectionResponse
|
|
786
|
+
) => any;
|
|
683
787
|
export declare const DescribeAutoScalingConfigurationRequestFilterSensitiveLog: (
|
|
684
788
|
obj: DescribeAutoScalingConfigurationRequest
|
|
685
789
|
) => any;
|
|
@@ -710,6 +814,12 @@ export declare const DescribeVpcConnectorRequestFilterSensitiveLog: (
|
|
|
710
814
|
export declare const DescribeVpcConnectorResponseFilterSensitiveLog: (
|
|
711
815
|
obj: DescribeVpcConnectorResponse
|
|
712
816
|
) => any;
|
|
817
|
+
export declare const DescribeVpcIngressConnectionRequestFilterSensitiveLog: (
|
|
818
|
+
obj: DescribeVpcIngressConnectionRequest
|
|
819
|
+
) => any;
|
|
820
|
+
export declare const DescribeVpcIngressConnectionResponseFilterSensitiveLog: (
|
|
821
|
+
obj: DescribeVpcIngressConnectionResponse
|
|
822
|
+
) => any;
|
|
713
823
|
export declare const DisassociateCustomDomainRequestFilterSensitiveLog: (
|
|
714
824
|
obj: DisassociateCustomDomainRequest
|
|
715
825
|
) => any;
|
|
@@ -770,6 +880,18 @@ export declare const ListVpcConnectorsRequestFilterSensitiveLog: (
|
|
|
770
880
|
export declare const ListVpcConnectorsResponseFilterSensitiveLog: (
|
|
771
881
|
obj: ListVpcConnectorsResponse
|
|
772
882
|
) => any;
|
|
883
|
+
export declare const ListVpcIngressConnectionsFilterFilterSensitiveLog: (
|
|
884
|
+
obj: ListVpcIngressConnectionsFilter
|
|
885
|
+
) => any;
|
|
886
|
+
export declare const ListVpcIngressConnectionsRequestFilterSensitiveLog: (
|
|
887
|
+
obj: ListVpcIngressConnectionsRequest
|
|
888
|
+
) => any;
|
|
889
|
+
export declare const VpcIngressConnectionSummaryFilterSensitiveLog: (
|
|
890
|
+
obj: VpcIngressConnectionSummary
|
|
891
|
+
) => any;
|
|
892
|
+
export declare const ListVpcIngressConnectionsResponseFilterSensitiveLog: (
|
|
893
|
+
obj: ListVpcIngressConnectionsResponse
|
|
894
|
+
) => any;
|
|
773
895
|
export declare const PauseServiceRequestFilterSensitiveLog: (
|
|
774
896
|
obj: PauseServiceRequest
|
|
775
897
|
) => any;
|
|
@@ -806,3 +928,9 @@ export declare const UpdateServiceRequestFilterSensitiveLog: (
|
|
|
806
928
|
export declare const UpdateServiceResponseFilterSensitiveLog: (
|
|
807
929
|
obj: UpdateServiceResponse
|
|
808
930
|
) => any;
|
|
931
|
+
export declare const UpdateVpcIngressConnectionRequestFilterSensitiveLog: (
|
|
932
|
+
obj: UpdateVpcIngressConnectionRequest
|
|
933
|
+
) => any;
|
|
934
|
+
export declare const UpdateVpcIngressConnectionResponseFilterSensitiveLog: (
|
|
935
|
+
obj: UpdateVpcIngressConnectionResponse
|
|
936
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListVpcIngressConnectionsCommandInput,
|
|
4
|
+
ListVpcIngressConnectionsCommandOutput,
|
|
5
|
+
} from "../commands/ListVpcIngressConnectionsCommand";
|
|
6
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListVpcIngressConnections(
|
|
8
|
+
config: AppRunnerPaginationConfiguration,
|
|
9
|
+
input: ListVpcIngressConnectionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListVpcIngressConnectionsCommandOutput>;
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
CreateVpcConnectorCommandInput,
|
|
28
28
|
CreateVpcConnectorCommandOutput,
|
|
29
29
|
} from "../commands/CreateVpcConnectorCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateVpcIngressConnectionCommandInput,
|
|
32
|
+
CreateVpcIngressConnectionCommandOutput,
|
|
33
|
+
} from "../commands/CreateVpcIngressConnectionCommand";
|
|
30
34
|
import {
|
|
31
35
|
DeleteAutoScalingConfigurationCommandInput,
|
|
32
36
|
DeleteAutoScalingConfigurationCommandOutput,
|
|
@@ -47,6 +51,10 @@ import {
|
|
|
47
51
|
DeleteVpcConnectorCommandInput,
|
|
48
52
|
DeleteVpcConnectorCommandOutput,
|
|
49
53
|
} from "../commands/DeleteVpcConnectorCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeleteVpcIngressConnectionCommandInput,
|
|
56
|
+
DeleteVpcIngressConnectionCommandOutput,
|
|
57
|
+
} from "../commands/DeleteVpcIngressConnectionCommand";
|
|
50
58
|
import {
|
|
51
59
|
DescribeAutoScalingConfigurationCommandInput,
|
|
52
60
|
DescribeAutoScalingConfigurationCommandOutput,
|
|
@@ -67,6 +75,10 @@ import {
|
|
|
67
75
|
DescribeVpcConnectorCommandInput,
|
|
68
76
|
DescribeVpcConnectorCommandOutput,
|
|
69
77
|
} from "../commands/DescribeVpcConnectorCommand";
|
|
78
|
+
import {
|
|
79
|
+
DescribeVpcIngressConnectionCommandInput,
|
|
80
|
+
DescribeVpcIngressConnectionCommandOutput,
|
|
81
|
+
} from "../commands/DescribeVpcIngressConnectionCommand";
|
|
70
82
|
import {
|
|
71
83
|
DisassociateCustomDomainCommandInput,
|
|
72
84
|
DisassociateCustomDomainCommandOutput,
|
|
@@ -99,6 +111,10 @@ import {
|
|
|
99
111
|
ListVpcConnectorsCommandInput,
|
|
100
112
|
ListVpcConnectorsCommandOutput,
|
|
101
113
|
} from "../commands/ListVpcConnectorsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListVpcIngressConnectionsCommandInput,
|
|
116
|
+
ListVpcIngressConnectionsCommandOutput,
|
|
117
|
+
} from "../commands/ListVpcIngressConnectionsCommand";
|
|
102
118
|
import {
|
|
103
119
|
PauseServiceCommandInput,
|
|
104
120
|
PauseServiceCommandOutput,
|
|
@@ -123,6 +139,10 @@ import {
|
|
|
123
139
|
UpdateServiceCommandInput,
|
|
124
140
|
UpdateServiceCommandOutput,
|
|
125
141
|
} from "../commands/UpdateServiceCommand";
|
|
142
|
+
import {
|
|
143
|
+
UpdateVpcIngressConnectionCommandInput,
|
|
144
|
+
UpdateVpcIngressConnectionCommandOutput,
|
|
145
|
+
} from "../commands/UpdateVpcIngressConnectionCommand";
|
|
126
146
|
export declare const serializeAws_json1_0AssociateCustomDomainCommand: (
|
|
127
147
|
input: AssociateCustomDomainCommandInput,
|
|
128
148
|
context: __SerdeContext
|
|
@@ -147,6 +167,10 @@ export declare const serializeAws_json1_0CreateVpcConnectorCommand: (
|
|
|
147
167
|
input: CreateVpcConnectorCommandInput,
|
|
148
168
|
context: __SerdeContext
|
|
149
169
|
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_0CreateVpcIngressConnectionCommand: (
|
|
171
|
+
input: CreateVpcIngressConnectionCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
150
174
|
export declare const serializeAws_json1_0DeleteAutoScalingConfigurationCommand: (
|
|
151
175
|
input: DeleteAutoScalingConfigurationCommandInput,
|
|
152
176
|
context: __SerdeContext
|
|
@@ -167,6 +191,10 @@ export declare const serializeAws_json1_0DeleteVpcConnectorCommand: (
|
|
|
167
191
|
input: DeleteVpcConnectorCommandInput,
|
|
168
192
|
context: __SerdeContext
|
|
169
193
|
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_0DeleteVpcIngressConnectionCommand: (
|
|
195
|
+
input: DeleteVpcIngressConnectionCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
170
198
|
export declare const serializeAws_json1_0DescribeAutoScalingConfigurationCommand: (
|
|
171
199
|
input: DescribeAutoScalingConfigurationCommandInput,
|
|
172
200
|
context: __SerdeContext
|
|
@@ -187,6 +215,10 @@ export declare const serializeAws_json1_0DescribeVpcConnectorCommand: (
|
|
|
187
215
|
input: DescribeVpcConnectorCommandInput,
|
|
188
216
|
context: __SerdeContext
|
|
189
217
|
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_json1_0DescribeVpcIngressConnectionCommand: (
|
|
219
|
+
input: DescribeVpcIngressConnectionCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
190
222
|
export declare const serializeAws_json1_0DisassociateCustomDomainCommand: (
|
|
191
223
|
input: DisassociateCustomDomainCommandInput,
|
|
192
224
|
context: __SerdeContext
|
|
@@ -219,6 +251,10 @@ export declare const serializeAws_json1_0ListVpcConnectorsCommand: (
|
|
|
219
251
|
input: ListVpcConnectorsCommandInput,
|
|
220
252
|
context: __SerdeContext
|
|
221
253
|
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const serializeAws_json1_0ListVpcIngressConnectionsCommand: (
|
|
255
|
+
input: ListVpcIngressConnectionsCommandInput,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<__HttpRequest>;
|
|
222
258
|
export declare const serializeAws_json1_0PauseServiceCommand: (
|
|
223
259
|
input: PauseServiceCommandInput,
|
|
224
260
|
context: __SerdeContext
|
|
@@ -243,6 +279,10 @@ export declare const serializeAws_json1_0UpdateServiceCommand: (
|
|
|
243
279
|
input: UpdateServiceCommandInput,
|
|
244
280
|
context: __SerdeContext
|
|
245
281
|
) => Promise<__HttpRequest>;
|
|
282
|
+
export declare const serializeAws_json1_0UpdateVpcIngressConnectionCommand: (
|
|
283
|
+
input: UpdateVpcIngressConnectionCommandInput,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<__HttpRequest>;
|
|
246
286
|
export declare const deserializeAws_json1_0AssociateCustomDomainCommand: (
|
|
247
287
|
output: __HttpResponse,
|
|
248
288
|
context: __SerdeContext
|
|
@@ -267,6 +307,10 @@ export declare const deserializeAws_json1_0CreateVpcConnectorCommand: (
|
|
|
267
307
|
output: __HttpResponse,
|
|
268
308
|
context: __SerdeContext
|
|
269
309
|
) => Promise<CreateVpcConnectorCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_json1_0CreateVpcIngressConnectionCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<CreateVpcIngressConnectionCommandOutput>;
|
|
270
314
|
export declare const deserializeAws_json1_0DeleteAutoScalingConfigurationCommand: (
|
|
271
315
|
output: __HttpResponse,
|
|
272
316
|
context: __SerdeContext
|
|
@@ -287,6 +331,10 @@ export declare const deserializeAws_json1_0DeleteVpcConnectorCommand: (
|
|
|
287
331
|
output: __HttpResponse,
|
|
288
332
|
context: __SerdeContext
|
|
289
333
|
) => Promise<DeleteVpcConnectorCommandOutput>;
|
|
334
|
+
export declare const deserializeAws_json1_0DeleteVpcIngressConnectionCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<DeleteVpcIngressConnectionCommandOutput>;
|
|
290
338
|
export declare const deserializeAws_json1_0DescribeAutoScalingConfigurationCommand: (
|
|
291
339
|
output: __HttpResponse,
|
|
292
340
|
context: __SerdeContext
|
|
@@ -307,6 +355,10 @@ export declare const deserializeAws_json1_0DescribeVpcConnectorCommand: (
|
|
|
307
355
|
output: __HttpResponse,
|
|
308
356
|
context: __SerdeContext
|
|
309
357
|
) => Promise<DescribeVpcConnectorCommandOutput>;
|
|
358
|
+
export declare const deserializeAws_json1_0DescribeVpcIngressConnectionCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<DescribeVpcIngressConnectionCommandOutput>;
|
|
310
362
|
export declare const deserializeAws_json1_0DisassociateCustomDomainCommand: (
|
|
311
363
|
output: __HttpResponse,
|
|
312
364
|
context: __SerdeContext
|
|
@@ -339,6 +391,10 @@ export declare const deserializeAws_json1_0ListVpcConnectorsCommand: (
|
|
|
339
391
|
output: __HttpResponse,
|
|
340
392
|
context: __SerdeContext
|
|
341
393
|
) => Promise<ListVpcConnectorsCommandOutput>;
|
|
394
|
+
export declare const deserializeAws_json1_0ListVpcIngressConnectionsCommand: (
|
|
395
|
+
output: __HttpResponse,
|
|
396
|
+
context: __SerdeContext
|
|
397
|
+
) => Promise<ListVpcIngressConnectionsCommandOutput>;
|
|
342
398
|
export declare const deserializeAws_json1_0PauseServiceCommand: (
|
|
343
399
|
output: __HttpResponse,
|
|
344
400
|
context: __SerdeContext
|
|
@@ -363,3 +419,7 @@ export declare const deserializeAws_json1_0UpdateServiceCommand: (
|
|
|
363
419
|
output: __HttpResponse,
|
|
364
420
|
context: __SerdeContext
|
|
365
421
|
) => Promise<UpdateServiceCommandOutput>;
|
|
422
|
+
export declare const deserializeAws_json1_0UpdateVpcIngressConnectionCommand: (
|
|
423
|
+
output: __HttpResponse,
|
|
424
|
+
context: __SerdeContext
|
|
425
|
+
) => Promise<UpdateVpcIngressConnectionCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-apprunner",
|
|
3
3
|
"description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.200.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",
|
|
@@ -19,37 +19,37 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.200.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.200.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.200.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.200.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.200.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.200.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.200.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.200.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.200.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.200.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.200.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.200.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.200.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.200.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.200.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.200.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.200.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.200.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.200.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.200.0",
|
|
42
|
+
"@aws-sdk/types": "3.200.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.200.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.188.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.200.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.200.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.200.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.200.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.200.0",
|
|
53
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
54
54
|
"@aws-sdk/util-utf8-node": "3.199.0",
|
|
55
55
|
"tslib": "^2.3.1"
|