@aws-sdk/client-apprunner 3.48.0 → 3.52.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 +35 -0
- package/dist-cjs/AppRunner.js +60 -0
- package/dist-cjs/commands/CreateVpcConnectorCommand.js +36 -0
- package/dist-cjs/commands/DeleteVpcConnectorCommand.js +36 -0
- package/dist-cjs/commands/DescribeVpcConnectorCommand.js +36 -0
- package/dist-cjs/commands/ListVpcConnectorsCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +79 -2
- package/dist-cjs/pagination/ListVpcConnectorsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +435 -1
- package/dist-es/AppRunner.js +60 -0
- package/dist-es/commands/CreateVpcConnectorCommand.js +39 -0
- package/dist-es/commands/DeleteVpcConnectorCommand.js +39 -0
- package/dist-es/commands/DescribeVpcConnectorCommand.js +39 -0
- package/dist-es/commands/ListVpcConnectorsCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +55 -1
- package/dist-es/pagination/ListVpcConnectorsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +456 -2
- package/dist-types/AppRunner.d.ts +33 -3
- package/dist-types/AppRunnerClient.d.ts +6 -2
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/CreateVpcConnectorCommand.d.ts +36 -0
- package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +36 -0
- package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +35 -0
- package/dist-types/commands/ListVpcConnectorsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +254 -11
- package/dist-types/pagination/ListVpcConnectorsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +12 -0
- package/dist-types/ts3.4/AppRunner.d.ts +20 -0
- package/dist-types/ts3.4/AppRunnerClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/CreateVpcConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteVpcConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeVpcConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListVpcConnectorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +131 -0
- package/dist-types/ts3.4/pagination/ListVpcConnectorsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
- package/package.json +40 -34
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
4
|
+
import { ListVpcConnectorsRequest, ListVpcConnectorsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListVpcConnectorsCommandInput extends ListVpcConnectorsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListVpcConnectorsCommandOutput extends ListVpcConnectorsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListVpcConnectorsCommand extends $Command<ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: ListVpcConnectorsCommandInput;
|
|
12
|
+
constructor(input: ListVpcConnectorsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -2,18 +2,22 @@ export * from "./AssociateCustomDomainCommand";
|
|
|
2
2
|
export * from "./CreateAutoScalingConfigurationCommand";
|
|
3
3
|
export * from "./CreateConnectionCommand";
|
|
4
4
|
export * from "./CreateServiceCommand";
|
|
5
|
+
export * from "./CreateVpcConnectorCommand";
|
|
5
6
|
export * from "./DeleteAutoScalingConfigurationCommand";
|
|
6
7
|
export * from "./DeleteConnectionCommand";
|
|
7
8
|
export * from "./DeleteServiceCommand";
|
|
9
|
+
export * from "./DeleteVpcConnectorCommand";
|
|
8
10
|
export * from "./DescribeAutoScalingConfigurationCommand";
|
|
9
11
|
export * from "./DescribeCustomDomainsCommand";
|
|
10
12
|
export * from "./DescribeServiceCommand";
|
|
13
|
+
export * from "./DescribeVpcConnectorCommand";
|
|
11
14
|
export * from "./DisassociateCustomDomainCommand";
|
|
12
15
|
export * from "./ListAutoScalingConfigurationsCommand";
|
|
13
16
|
export * from "./ListConnectionsCommand";
|
|
14
17
|
export * from "./ListOperationsCommand";
|
|
15
18
|
export * from "./ListServicesCommand";
|
|
16
19
|
export * from "./ListTagsForResourceCommand";
|
|
20
|
+
export * from "./ListVpcConnectorsCommand";
|
|
17
21
|
export * from "./PauseServiceCommand";
|
|
18
22
|
export * from "./ResumeServiceCommand";
|
|
19
23
|
export * from "./StartDeploymentCommand";
|
|
@@ -248,6 +248,30 @@ export declare namespace InstanceConfiguration {
|
|
|
248
248
|
|
|
249
249
|
const filterSensitiveLog: (obj: InstanceConfiguration) => any;
|
|
250
250
|
}
|
|
251
|
+
export declare enum EgressType {
|
|
252
|
+
DEFAULT = "DEFAULT",
|
|
253
|
+
VPC = "VPC"
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export interface EgressConfiguration {
|
|
257
|
+
|
|
258
|
+
EgressType?: EgressType | string;
|
|
259
|
+
|
|
260
|
+
VpcConnectorArn?: string;
|
|
261
|
+
}
|
|
262
|
+
export declare namespace EgressConfiguration {
|
|
263
|
+
|
|
264
|
+
const filterSensitiveLog: (obj: EgressConfiguration) => any;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
export interface NetworkConfiguration {
|
|
268
|
+
|
|
269
|
+
EgressConfiguration?: EgressConfiguration;
|
|
270
|
+
}
|
|
271
|
+
export declare namespace NetworkConfiguration {
|
|
272
|
+
|
|
273
|
+
const filterSensitiveLog: (obj: NetworkConfiguration) => any;
|
|
274
|
+
}
|
|
251
275
|
|
|
252
276
|
export interface AuthenticationConfiguration {
|
|
253
277
|
|
|
@@ -386,6 +410,8 @@ export interface CreateServiceRequest {
|
|
|
386
410
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
387
411
|
|
|
388
412
|
AutoScalingConfigurationArn?: string;
|
|
413
|
+
|
|
414
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
389
415
|
}
|
|
390
416
|
export declare namespace CreateServiceRequest {
|
|
391
417
|
|
|
@@ -440,6 +466,8 @@ export interface Service {
|
|
|
440
466
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
441
467
|
|
|
442
468
|
AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
|
|
469
|
+
|
|
470
|
+
NetworkConfiguration: NetworkConfiguration | undefined;
|
|
443
471
|
}
|
|
444
472
|
export declare namespace Service {
|
|
445
473
|
|
|
@@ -455,6 +483,55 @@ export declare namespace CreateServiceResponse {
|
|
|
455
483
|
|
|
456
484
|
const filterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
457
485
|
}
|
|
486
|
+
export interface CreateVpcConnectorRequest {
|
|
487
|
+
|
|
488
|
+
VpcConnectorName: string | undefined;
|
|
489
|
+
|
|
490
|
+
Subnets: string[] | undefined;
|
|
491
|
+
|
|
492
|
+
SecurityGroups?: string[];
|
|
493
|
+
|
|
494
|
+
Tags?: Tag[];
|
|
495
|
+
}
|
|
496
|
+
export declare namespace CreateVpcConnectorRequest {
|
|
497
|
+
|
|
498
|
+
const filterSensitiveLog: (obj: CreateVpcConnectorRequest) => any;
|
|
499
|
+
}
|
|
500
|
+
export declare enum VpcConnectorStatus {
|
|
501
|
+
ACTIVE = "ACTIVE",
|
|
502
|
+
INACTIVE = "INACTIVE"
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
export interface VpcConnector {
|
|
506
|
+
|
|
507
|
+
VpcConnectorName?: string;
|
|
508
|
+
|
|
509
|
+
VpcConnectorArn?: string;
|
|
510
|
+
|
|
511
|
+
VpcConnectorRevision?: number;
|
|
512
|
+
|
|
513
|
+
Subnets?: string[];
|
|
514
|
+
|
|
515
|
+
SecurityGroups?: string[];
|
|
516
|
+
|
|
517
|
+
Status?: VpcConnectorStatus | string;
|
|
518
|
+
|
|
519
|
+
CreatedAt?: Date;
|
|
520
|
+
|
|
521
|
+
DeletedAt?: Date;
|
|
522
|
+
}
|
|
523
|
+
export declare namespace VpcConnector {
|
|
524
|
+
|
|
525
|
+
const filterSensitiveLog: (obj: VpcConnector) => any;
|
|
526
|
+
}
|
|
527
|
+
export interface CreateVpcConnectorResponse {
|
|
528
|
+
|
|
529
|
+
VpcConnector: VpcConnector | undefined;
|
|
530
|
+
}
|
|
531
|
+
export declare namespace CreateVpcConnectorResponse {
|
|
532
|
+
|
|
533
|
+
const filterSensitiveLog: (obj: CreateVpcConnectorResponse) => any;
|
|
534
|
+
}
|
|
458
535
|
export interface DeleteAutoScalingConfigurationRequest {
|
|
459
536
|
|
|
460
537
|
AutoScalingConfigurationArn: string | undefined;
|
|
@@ -511,6 +588,22 @@ export declare namespace DeleteServiceResponse {
|
|
|
511
588
|
|
|
512
589
|
const filterSensitiveLog: (obj: DeleteServiceResponse) => any;
|
|
513
590
|
}
|
|
591
|
+
export interface DeleteVpcConnectorRequest {
|
|
592
|
+
|
|
593
|
+
VpcConnectorArn: string | undefined;
|
|
594
|
+
}
|
|
595
|
+
export declare namespace DeleteVpcConnectorRequest {
|
|
596
|
+
|
|
597
|
+
const filterSensitiveLog: (obj: DeleteVpcConnectorRequest) => any;
|
|
598
|
+
}
|
|
599
|
+
export interface DeleteVpcConnectorResponse {
|
|
600
|
+
|
|
601
|
+
VpcConnector: VpcConnector | undefined;
|
|
602
|
+
}
|
|
603
|
+
export declare namespace DeleteVpcConnectorResponse {
|
|
604
|
+
|
|
605
|
+
const filterSensitiveLog: (obj: DeleteVpcConnectorResponse) => any;
|
|
606
|
+
}
|
|
514
607
|
export interface DescribeAutoScalingConfigurationRequest {
|
|
515
608
|
|
|
516
609
|
AutoScalingConfigurationArn: string | undefined;
|
|
@@ -569,6 +662,22 @@ export declare namespace DescribeServiceResponse {
|
|
|
569
662
|
|
|
570
663
|
const filterSensitiveLog: (obj: DescribeServiceResponse) => any;
|
|
571
664
|
}
|
|
665
|
+
export interface DescribeVpcConnectorRequest {
|
|
666
|
+
|
|
667
|
+
VpcConnectorArn: string | undefined;
|
|
668
|
+
}
|
|
669
|
+
export declare namespace DescribeVpcConnectorRequest {
|
|
670
|
+
|
|
671
|
+
const filterSensitiveLog: (obj: DescribeVpcConnectorRequest) => any;
|
|
672
|
+
}
|
|
673
|
+
export interface DescribeVpcConnectorResponse {
|
|
674
|
+
|
|
675
|
+
VpcConnector: VpcConnector | undefined;
|
|
676
|
+
}
|
|
677
|
+
export declare namespace DescribeVpcConnectorResponse {
|
|
678
|
+
|
|
679
|
+
const filterSensitiveLog: (obj: DescribeVpcConnectorResponse) => any;
|
|
680
|
+
}
|
|
572
681
|
export interface DisassociateCustomDomainRequest {
|
|
573
682
|
|
|
574
683
|
ServiceArn: string | undefined;
|
|
@@ -770,6 +879,26 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
770
879
|
|
|
771
880
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
772
881
|
}
|
|
882
|
+
export interface ListVpcConnectorsRequest {
|
|
883
|
+
|
|
884
|
+
MaxResults?: number;
|
|
885
|
+
|
|
886
|
+
NextToken?: string;
|
|
887
|
+
}
|
|
888
|
+
export declare namespace ListVpcConnectorsRequest {
|
|
889
|
+
|
|
890
|
+
const filterSensitiveLog: (obj: ListVpcConnectorsRequest) => any;
|
|
891
|
+
}
|
|
892
|
+
export interface ListVpcConnectorsResponse {
|
|
893
|
+
|
|
894
|
+
VpcConnectors: VpcConnector[] | undefined;
|
|
895
|
+
|
|
896
|
+
NextToken?: string;
|
|
897
|
+
}
|
|
898
|
+
export declare namespace ListVpcConnectorsResponse {
|
|
899
|
+
|
|
900
|
+
const filterSensitiveLog: (obj: ListVpcConnectorsResponse) => any;
|
|
901
|
+
}
|
|
773
902
|
export interface PauseServiceRequest {
|
|
774
903
|
|
|
775
904
|
ServiceArn: string | undefined;
|
|
@@ -865,6 +994,8 @@ export interface UpdateServiceRequest {
|
|
|
865
994
|
AutoScalingConfigurationArn?: string;
|
|
866
995
|
|
|
867
996
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
997
|
+
|
|
998
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
868
999
|
}
|
|
869
1000
|
export declare namespace UpdateServiceRequest {
|
|
870
1001
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "../commands/ListVpcConnectorsCommand";
|
|
3
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListVpcConnectors(config: AppRunnerPaginationConfiguration, input: ListVpcConnectorsCommandInput, ...additionalArguments: any): Paginator<ListVpcConnectorsCommandOutput>;
|
|
@@ -4,18 +4,22 @@ import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput }
|
|
|
4
4
|
import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "../commands/CreateAutoScalingConfigurationCommand";
|
|
5
5
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "../commands/CreateConnectionCommand";
|
|
6
6
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "../commands/CreateServiceCommand";
|
|
7
|
+
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "../commands/CreateVpcConnectorCommand";
|
|
7
8
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "../commands/DeleteAutoScalingConfigurationCommand";
|
|
8
9
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "../commands/DeleteConnectionCommand";
|
|
9
10
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "../commands/DeleteServiceCommand";
|
|
11
|
+
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "../commands/DeleteVpcConnectorCommand";
|
|
10
12
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "../commands/DescribeAutoScalingConfigurationCommand";
|
|
11
13
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "../commands/DescribeCustomDomainsCommand";
|
|
12
14
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "../commands/DescribeServiceCommand";
|
|
15
|
+
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "../commands/DescribeVpcConnectorCommand";
|
|
13
16
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "../commands/DisassociateCustomDomainCommand";
|
|
14
17
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "../commands/ListAutoScalingConfigurationsCommand";
|
|
15
18
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
|
|
16
19
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "../commands/ListOperationsCommand";
|
|
17
20
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
|
|
18
21
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
22
|
+
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "../commands/ListVpcConnectorsCommand";
|
|
19
23
|
import { PauseServiceCommandInput, PauseServiceCommandOutput } from "../commands/PauseServiceCommand";
|
|
20
24
|
import { ResumeServiceCommandInput, ResumeServiceCommandOutput } from "../commands/ResumeServiceCommand";
|
|
21
25
|
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "../commands/StartDeploymentCommand";
|
|
@@ -26,18 +30,22 @@ export declare const serializeAws_json1_0AssociateCustomDomainCommand: (input: A
|
|
|
26
30
|
export declare const serializeAws_json1_0CreateAutoScalingConfigurationCommand: (input: CreateAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
31
|
export declare const serializeAws_json1_0CreateConnectionCommand: (input: CreateConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
32
|
export declare const serializeAws_json1_0CreateServiceCommand: (input: CreateServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_json1_0CreateVpcConnectorCommand: (input: CreateVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
34
|
export declare const serializeAws_json1_0DeleteAutoScalingConfigurationCommand: (input: DeleteAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
35
|
export declare const serializeAws_json1_0DeleteConnectionCommand: (input: DeleteConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
36
|
export declare const serializeAws_json1_0DeleteServiceCommand: (input: DeleteServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
+
export declare const serializeAws_json1_0DeleteVpcConnectorCommand: (input: DeleteVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
38
|
export declare const serializeAws_json1_0DescribeAutoScalingConfigurationCommand: (input: DescribeAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
39
|
export declare const serializeAws_json1_0DescribeCustomDomainsCommand: (input: DescribeCustomDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
40
|
export declare const serializeAws_json1_0DescribeServiceCommand: (input: DescribeServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const serializeAws_json1_0DescribeVpcConnectorCommand: (input: DescribeVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
42
|
export declare const serializeAws_json1_0DisassociateCustomDomainCommand: (input: DisassociateCustomDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
43
|
export declare const serializeAws_json1_0ListAutoScalingConfigurationsCommand: (input: ListAutoScalingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
44
|
export declare const serializeAws_json1_0ListConnectionsCommand: (input: ListConnectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
45
|
export declare const serializeAws_json1_0ListOperationsCommand: (input: ListOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
46
|
export declare const serializeAws_json1_0ListServicesCommand: (input: ListServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
47
|
export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
export declare const serializeAws_json1_0ListVpcConnectorsCommand: (input: ListVpcConnectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
49
|
export declare const serializeAws_json1_0PauseServiceCommand: (input: PauseServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
50
|
export declare const serializeAws_json1_0ResumeServiceCommand: (input: ResumeServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
51
|
export declare const serializeAws_json1_0StartDeploymentCommand: (input: StartDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -48,18 +56,22 @@ export declare const deserializeAws_json1_0AssociateCustomDomainCommand: (output
|
|
|
48
56
|
export declare const deserializeAws_json1_0CreateAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAutoScalingConfigurationCommandOutput>;
|
|
49
57
|
export declare const deserializeAws_json1_0CreateConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConnectionCommandOutput>;
|
|
50
58
|
export declare const deserializeAws_json1_0CreateServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceCommandOutput>;
|
|
59
|
+
export declare const deserializeAws_json1_0CreateVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVpcConnectorCommandOutput>;
|
|
51
60
|
export declare const deserializeAws_json1_0DeleteAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAutoScalingConfigurationCommandOutput>;
|
|
52
61
|
export declare const deserializeAws_json1_0DeleteConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionCommandOutput>;
|
|
53
62
|
export declare const deserializeAws_json1_0DeleteServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceCommandOutput>;
|
|
63
|
+
export declare const deserializeAws_json1_0DeleteVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVpcConnectorCommandOutput>;
|
|
54
64
|
export declare const deserializeAws_json1_0DescribeAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
55
65
|
export declare const deserializeAws_json1_0DescribeCustomDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCustomDomainsCommandOutput>;
|
|
56
66
|
export declare const deserializeAws_json1_0DescribeServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeServiceCommandOutput>;
|
|
67
|
+
export declare const deserializeAws_json1_0DescribeVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVpcConnectorCommandOutput>;
|
|
57
68
|
export declare const deserializeAws_json1_0DisassociateCustomDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateCustomDomainCommandOutput>;
|
|
58
69
|
export declare const deserializeAws_json1_0ListAutoScalingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAutoScalingConfigurationsCommandOutput>;
|
|
59
70
|
export declare const deserializeAws_json1_0ListConnectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectionsCommandOutput>;
|
|
60
71
|
export declare const deserializeAws_json1_0ListOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOperationsCommandOutput>;
|
|
61
72
|
export declare const deserializeAws_json1_0ListServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServicesCommandOutput>;
|
|
62
73
|
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
74
|
+
export declare const deserializeAws_json1_0ListVpcConnectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVpcConnectorsCommandOutput>;
|
|
63
75
|
export declare const deserializeAws_json1_0PauseServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PauseServiceCommandOutput>;
|
|
64
76
|
export declare const deserializeAws_json1_0ResumeServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeServiceCommandOutput>;
|
|
65
77
|
export declare const deserializeAws_json1_0StartDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDeploymentCommandOutput>;
|
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.52.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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,41 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.52.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.52.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.52.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.52.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.52.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.52.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.52.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.52.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.52.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.52.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.52.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.52.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.52.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.52.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.52.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.52.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.52.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.52.0",
|
|
39
|
+
"@aws-sdk/types": "3.52.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.52.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.52.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.52.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.52.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.52.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
-
"@
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
55
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
|
+
"@types/node": "^12.7.5",
|
|
57
|
+
"concurrently": "7.0.0",
|
|
58
|
+
"downlevel-dts": "0.7.0",
|
|
59
|
+
"rimraf": "3.0.2",
|
|
60
|
+
"typedoc": "0.19.2",
|
|
61
|
+
"typescript": "~4.3.5"
|
|
56
62
|
},
|
|
57
63
|
"engines": {
|
|
58
64
|
"node": ">=12.0.0"
|