@aws-sdk/client-apprunner 3.198.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 +22 -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 +82 -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 +63 -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 +335 -2
- 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 +133 -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 +29 -29
|
@@ -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;
|
|
@@ -192,10 +202,14 @@ export interface AuthenticationConfiguration {
|
|
|
192
202
|
export declare enum Runtime {
|
|
193
203
|
CORRETTO_11 = "CORRETTO_11",
|
|
194
204
|
CORRETTO_8 = "CORRETTO_8",
|
|
205
|
+
DOTNET_6 = "DOTNET_6",
|
|
206
|
+
GO_1 = "GO_1",
|
|
195
207
|
NODEJS_12 = "NODEJS_12",
|
|
196
208
|
NODEJS_14 = "NODEJS_14",
|
|
197
209
|
NODEJS_16 = "NODEJS_16",
|
|
210
|
+
PHP_81 = "PHP_81",
|
|
198
211
|
PYTHON_3 = "PYTHON_3",
|
|
212
|
+
RUBY_31 = "RUBY_31",
|
|
199
213
|
}
|
|
200
214
|
export interface CodeConfigurationValues {
|
|
201
215
|
Runtime: Runtime | string | undefined;
|
|
@@ -272,7 +286,7 @@ export interface Service {
|
|
|
272
286
|
ServiceName: string | undefined;
|
|
273
287
|
ServiceId: string | undefined;
|
|
274
288
|
ServiceArn: string | undefined;
|
|
275
|
-
ServiceUrl
|
|
289
|
+
ServiceUrl?: string;
|
|
276
290
|
CreatedAt: Date | undefined;
|
|
277
291
|
UpdatedAt: Date | undefined;
|
|
278
292
|
DeletedAt?: Date;
|
|
@@ -312,6 +326,40 @@ export interface VpcConnector {
|
|
|
312
326
|
export interface CreateVpcConnectorResponse {
|
|
313
327
|
VpcConnector: VpcConnector | undefined;
|
|
314
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
|
+
}
|
|
315
363
|
export interface DeleteAutoScalingConfigurationRequest {
|
|
316
364
|
AutoScalingConfigurationArn: string | undefined;
|
|
317
365
|
}
|
|
@@ -351,6 +399,12 @@ export interface DeleteVpcConnectorRequest {
|
|
|
351
399
|
export interface DeleteVpcConnectorResponse {
|
|
352
400
|
VpcConnector: VpcConnector | undefined;
|
|
353
401
|
}
|
|
402
|
+
export interface DeleteVpcIngressConnectionRequest {
|
|
403
|
+
VpcIngressConnectionArn: string | undefined;
|
|
404
|
+
}
|
|
405
|
+
export interface DeleteVpcIngressConnectionResponse {
|
|
406
|
+
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
407
|
+
}
|
|
354
408
|
export interface DescribeAutoScalingConfigurationRequest {
|
|
355
409
|
AutoScalingConfigurationArn: string | undefined;
|
|
356
410
|
}
|
|
@@ -366,6 +420,7 @@ export interface DescribeCustomDomainsResponse {
|
|
|
366
420
|
DNSTarget: string | undefined;
|
|
367
421
|
ServiceArn: string | undefined;
|
|
368
422
|
CustomDomains: CustomDomain[] | undefined;
|
|
423
|
+
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
369
424
|
NextToken?: string;
|
|
370
425
|
}
|
|
371
426
|
export interface DescribeObservabilityConfigurationRequest {
|
|
@@ -386,6 +441,12 @@ export interface DescribeVpcConnectorRequest {
|
|
|
386
441
|
export interface DescribeVpcConnectorResponse {
|
|
387
442
|
VpcConnector: VpcConnector | undefined;
|
|
388
443
|
}
|
|
444
|
+
export interface DescribeVpcIngressConnectionRequest {
|
|
445
|
+
VpcIngressConnectionArn: string | undefined;
|
|
446
|
+
}
|
|
447
|
+
export interface DescribeVpcIngressConnectionResponse {
|
|
448
|
+
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
449
|
+
}
|
|
389
450
|
export interface DisassociateCustomDomainRequest {
|
|
390
451
|
ServiceArn: string | undefined;
|
|
391
452
|
DomainName: string | undefined;
|
|
@@ -394,6 +455,7 @@ export interface DisassociateCustomDomainResponse {
|
|
|
394
455
|
DNSTarget: string | undefined;
|
|
395
456
|
ServiceArn: string | undefined;
|
|
396
457
|
CustomDomain: CustomDomain | undefined;
|
|
458
|
+
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
397
459
|
}
|
|
398
460
|
export interface ListAutoScalingConfigurationsRequest {
|
|
399
461
|
AutoScalingConfigurationName?: string;
|
|
@@ -505,6 +567,23 @@ export interface ListVpcConnectorsResponse {
|
|
|
505
567
|
VpcConnectors: VpcConnector[] | undefined;
|
|
506
568
|
NextToken?: string;
|
|
507
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
|
+
}
|
|
508
587
|
export interface PauseServiceRequest {
|
|
509
588
|
ServiceArn: string | undefined;
|
|
510
589
|
}
|
|
@@ -548,6 +627,13 @@ export interface UpdateServiceResponse {
|
|
|
548
627
|
Service: Service | undefined;
|
|
549
628
|
OperationId: string | undefined;
|
|
550
629
|
}
|
|
630
|
+
export interface UpdateVpcIngressConnectionRequest {
|
|
631
|
+
VpcIngressConnectionArn: string | undefined;
|
|
632
|
+
IngressVpcConfiguration: IngressVpcConfiguration | undefined;
|
|
633
|
+
}
|
|
634
|
+
export interface UpdateVpcIngressConnectionResponse {
|
|
635
|
+
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
636
|
+
}
|
|
551
637
|
export declare const AssociateCustomDomainRequestFilterSensitiveLog: (
|
|
552
638
|
obj: AssociateCustomDomainRequest
|
|
553
639
|
) => any;
|
|
@@ -555,6 +641,7 @@ export declare const CertificateValidationRecordFilterSensitiveLog: (
|
|
|
555
641
|
obj: CertificateValidationRecord
|
|
556
642
|
) => any;
|
|
557
643
|
export declare const CustomDomainFilterSensitiveLog: (obj: CustomDomain) => any;
|
|
644
|
+
export declare const VpcDNSTargetFilterSensitiveLog: (obj: VpcDNSTarget) => any;
|
|
558
645
|
export declare const AssociateCustomDomainResponseFilterSensitiveLog: (
|
|
559
646
|
obj: AssociateCustomDomainResponse
|
|
560
647
|
) => any;
|
|
@@ -599,6 +686,9 @@ export declare const InstanceConfigurationFilterSensitiveLog: (
|
|
|
599
686
|
export declare const EgressConfigurationFilterSensitiveLog: (
|
|
600
687
|
obj: EgressConfiguration
|
|
601
688
|
) => any;
|
|
689
|
+
export declare const IngressConfigurationFilterSensitiveLog: (
|
|
690
|
+
obj: IngressConfiguration
|
|
691
|
+
) => any;
|
|
602
692
|
export declare const NetworkConfigurationFilterSensitiveLog: (
|
|
603
693
|
obj: NetworkConfiguration
|
|
604
694
|
) => any;
|
|
@@ -646,6 +736,18 @@ export declare const VpcConnectorFilterSensitiveLog: (obj: VpcConnector) => any;
|
|
|
646
736
|
export declare const CreateVpcConnectorResponseFilterSensitiveLog: (
|
|
647
737
|
obj: CreateVpcConnectorResponse
|
|
648
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;
|
|
649
751
|
export declare const DeleteAutoScalingConfigurationRequestFilterSensitiveLog: (
|
|
650
752
|
obj: DeleteAutoScalingConfigurationRequest
|
|
651
753
|
) => any;
|
|
@@ -676,6 +778,12 @@ export declare const DeleteVpcConnectorRequestFilterSensitiveLog: (
|
|
|
676
778
|
export declare const DeleteVpcConnectorResponseFilterSensitiveLog: (
|
|
677
779
|
obj: DeleteVpcConnectorResponse
|
|
678
780
|
) => any;
|
|
781
|
+
export declare const DeleteVpcIngressConnectionRequestFilterSensitiveLog: (
|
|
782
|
+
obj: DeleteVpcIngressConnectionRequest
|
|
783
|
+
) => any;
|
|
784
|
+
export declare const DeleteVpcIngressConnectionResponseFilterSensitiveLog: (
|
|
785
|
+
obj: DeleteVpcIngressConnectionResponse
|
|
786
|
+
) => any;
|
|
679
787
|
export declare const DescribeAutoScalingConfigurationRequestFilterSensitiveLog: (
|
|
680
788
|
obj: DescribeAutoScalingConfigurationRequest
|
|
681
789
|
) => any;
|
|
@@ -706,6 +814,12 @@ export declare const DescribeVpcConnectorRequestFilterSensitiveLog: (
|
|
|
706
814
|
export declare const DescribeVpcConnectorResponseFilterSensitiveLog: (
|
|
707
815
|
obj: DescribeVpcConnectorResponse
|
|
708
816
|
) => any;
|
|
817
|
+
export declare const DescribeVpcIngressConnectionRequestFilterSensitiveLog: (
|
|
818
|
+
obj: DescribeVpcIngressConnectionRequest
|
|
819
|
+
) => any;
|
|
820
|
+
export declare const DescribeVpcIngressConnectionResponseFilterSensitiveLog: (
|
|
821
|
+
obj: DescribeVpcIngressConnectionResponse
|
|
822
|
+
) => any;
|
|
709
823
|
export declare const DisassociateCustomDomainRequestFilterSensitiveLog: (
|
|
710
824
|
obj: DisassociateCustomDomainRequest
|
|
711
825
|
) => any;
|
|
@@ -766,6 +880,18 @@ export declare const ListVpcConnectorsRequestFilterSensitiveLog: (
|
|
|
766
880
|
export declare const ListVpcConnectorsResponseFilterSensitiveLog: (
|
|
767
881
|
obj: ListVpcConnectorsResponse
|
|
768
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;
|
|
769
895
|
export declare const PauseServiceRequestFilterSensitiveLog: (
|
|
770
896
|
obj: PauseServiceRequest
|
|
771
897
|
) => any;
|
|
@@ -802,3 +928,9 @@ export declare const UpdateServiceRequestFilterSensitiveLog: (
|
|
|
802
928
|
export declare const UpdateServiceResponseFilterSensitiveLog: (
|
|
803
929
|
obj: UpdateServiceResponse
|
|
804
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,39 +19,39 @@
|
|
|
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
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
54
|
+
"@aws-sdk/util-utf8-node": "3.199.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|