@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
|
@@ -163,6 +163,12 @@ export interface CreateAutoScalingConfigurationRequest {
|
|
|
163
163
|
/**
|
|
164
164
|
* <p>A name for the auto scaling configuration. When you use it for the first time in an Amazon Web Services Region, App Runner creates revision number <code>1</code> of this
|
|
165
165
|
* name. When you use the same name in subsequent calls, App Runner creates incremental revisions of the configuration.</p>
|
|
166
|
+
* <note>
|
|
167
|
+
* <p>The name <code>DefaultConfiguration</code> is reserved (it's the configuration that App Runner uses if you don't provide a custome one). You can't use it
|
|
168
|
+
* to create a new auto scaling configuration, and you can't create a revision of it.</p>
|
|
169
|
+
* <p>When you want to use your own auto scaling configuration for your App Runner service, <i>create a configuration with a different name</i>,
|
|
170
|
+
* and then provide it when you create or update your service.</p>
|
|
171
|
+
* </note>
|
|
166
172
|
*/
|
|
167
173
|
AutoScalingConfigurationName: string | undefined;
|
|
168
174
|
/**
|
|
@@ -203,11 +209,12 @@ export declare enum AutoScalingConfigurationStatus {
|
|
|
203
209
|
INACTIVE = "INACTIVE"
|
|
204
210
|
}
|
|
205
211
|
/**
|
|
206
|
-
* <p>Describes an App Runner automatic scaling configuration resource
|
|
207
|
-
* <code>AutoScalingConfigurationName</code> and different <code>AutoScalingConfigurationRevision</code> values.</p>
|
|
212
|
+
* <p>Describes an App Runner automatic scaling configuration resource.</p>
|
|
208
213
|
* <p>A higher <code>MinSize</code> increases the spread of your App Runner service over more Availability Zones in the Amazon Web Services Region. The tradeoff is a higher
|
|
209
214
|
* minimal cost.</p>
|
|
210
215
|
* <p>A lower <code>MaxSize</code> controls your cost. The tradeoff is lower responsiveness during peak demand.</p>
|
|
216
|
+
* <p>Multiple revisions of a configuration might have the same <code>AutoScalingConfigurationName</code> and different
|
|
217
|
+
* <code>AutoScalingConfigurationRevision</code> values.</p>
|
|
211
218
|
*/
|
|
212
219
|
export interface AutoScalingConfiguration {
|
|
213
220
|
/**
|
|
@@ -455,6 +462,48 @@ export declare namespace InstanceConfiguration {
|
|
|
455
462
|
*/
|
|
456
463
|
const filterSensitiveLog: (obj: InstanceConfiguration) => any;
|
|
457
464
|
}
|
|
465
|
+
export declare enum EgressType {
|
|
466
|
+
DEFAULT = "DEFAULT",
|
|
467
|
+
VPC = "VPC"
|
|
468
|
+
}
|
|
469
|
+
/**
|
|
470
|
+
* <p>Describes configuration settings related to outbound network traffic of an App Runner service.</p>
|
|
471
|
+
*/
|
|
472
|
+
export interface EgressConfiguration {
|
|
473
|
+
/**
|
|
474
|
+
* <p>The type of egress configuration.</p>
|
|
475
|
+
* <p>Set to <code>DEFAULT</code> for access to resources hosted on public networks.</p>
|
|
476
|
+
* <p>Set to <code>VPC</code> to associate your service to a custom VPC specified by <code>VpcConnectorArn</code>.</p>
|
|
477
|
+
*/
|
|
478
|
+
EgressType?: EgressType | string;
|
|
479
|
+
/**
|
|
480
|
+
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when <code>EgressType =
|
|
481
|
+
* VPC</code>.</p>
|
|
482
|
+
*/
|
|
483
|
+
VpcConnectorArn?: string;
|
|
484
|
+
}
|
|
485
|
+
export declare namespace EgressConfiguration {
|
|
486
|
+
/**
|
|
487
|
+
* @internal
|
|
488
|
+
*/
|
|
489
|
+
const filterSensitiveLog: (obj: EgressConfiguration) => any;
|
|
490
|
+
}
|
|
491
|
+
/**
|
|
492
|
+
* <p>Describes configuration settings related to network traffic of an App Runner service. Consists of embedded objects for each configurable network
|
|
493
|
+
* feature.</p>
|
|
494
|
+
*/
|
|
495
|
+
export interface NetworkConfiguration {
|
|
496
|
+
/**
|
|
497
|
+
* <p>Network configuration settings for outbound message traffic.</p>
|
|
498
|
+
*/
|
|
499
|
+
EgressConfiguration?: EgressConfiguration;
|
|
500
|
+
}
|
|
501
|
+
export declare namespace NetworkConfiguration {
|
|
502
|
+
/**
|
|
503
|
+
* @internal
|
|
504
|
+
*/
|
|
505
|
+
const filterSensitiveLog: (obj: NetworkConfiguration) => any;
|
|
506
|
+
}
|
|
458
507
|
/**
|
|
459
508
|
* <p>Describes resources needed to authenticate access to some source repositories. The specific resource depends on the repository provider.</p>
|
|
460
509
|
*/
|
|
@@ -694,7 +743,7 @@ export declare namespace SourceConfiguration {
|
|
|
694
743
|
}
|
|
695
744
|
export interface CreateServiceRequest {
|
|
696
745
|
/**
|
|
697
|
-
* <p>A name for the
|
|
746
|
+
* <p>A name for the App Runner service. It must be unique across all the running App Runner services in your Amazon Web Services account in the Amazon Web Services Region.</p>
|
|
698
747
|
*/
|
|
699
748
|
ServiceName: string | undefined;
|
|
700
749
|
/**
|
|
@@ -706,23 +755,27 @@ export interface CreateServiceRequest {
|
|
|
706
755
|
*/
|
|
707
756
|
InstanceConfiguration?: InstanceConfiguration;
|
|
708
757
|
/**
|
|
709
|
-
* <p>An optional list of metadata items that you can associate with
|
|
758
|
+
* <p>An optional list of metadata items that you can associate with the App Runner service resource. A tag is a key-value pair.</p>
|
|
710
759
|
*/
|
|
711
760
|
Tags?: Tag[];
|
|
712
761
|
/**
|
|
713
762
|
* <p>An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that it maintains and your service logs. By default,
|
|
714
|
-
* App Runner uses an Amazon Web Services managed
|
|
763
|
+
* App Runner uses an Amazon Web Services managed key.</p>
|
|
715
764
|
*/
|
|
716
765
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
717
766
|
/**
|
|
718
|
-
* <p>The settings for the health check that App Runner performs to monitor the health of
|
|
767
|
+
* <p>The settings for the health check that App Runner performs to monitor the health of the App Runner service.</p>
|
|
719
768
|
*/
|
|
720
769
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
721
770
|
/**
|
|
722
|
-
* <p>The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with
|
|
723
|
-
* associates the latest revision of a default auto scaling configuration.</p>
|
|
771
|
+
* <p>The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with the App Runner service. If not provided,
|
|
772
|
+
* App Runner associates the latest revision of a default auto scaling configuration.</p>
|
|
724
773
|
*/
|
|
725
774
|
AutoScalingConfigurationArn?: string;
|
|
775
|
+
/**
|
|
776
|
+
* <p>Configuration settings related to network traffic of the web application that the App Runner service runs.</p>
|
|
777
|
+
*/
|
|
778
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
726
779
|
}
|
|
727
780
|
export declare namespace CreateServiceRequest {
|
|
728
781
|
/**
|
|
@@ -826,7 +879,7 @@ export interface Service {
|
|
|
826
879
|
InstanceConfiguration: InstanceConfiguration | undefined;
|
|
827
880
|
/**
|
|
828
881
|
* <p>The encryption key that App Runner uses to encrypt the service logs and the copy of the source repository that App Runner maintains for the service. It can be
|
|
829
|
-
* either a customer-provided encryption key or an Amazon Web Services managed
|
|
882
|
+
* either a customer-provided encryption key or an Amazon Web Services managed key.</p>
|
|
830
883
|
*/
|
|
831
884
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
832
885
|
/**
|
|
@@ -837,6 +890,10 @@ export interface Service {
|
|
|
837
890
|
* <p>Summary information for the App Runner automatic scaling configuration resource that's associated with this service.</p>
|
|
838
891
|
*/
|
|
839
892
|
AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
|
|
893
|
+
/**
|
|
894
|
+
* <p>Configuration settings related to network traffic of the web application that this service runs.</p>
|
|
895
|
+
*/
|
|
896
|
+
NetworkConfiguration: NetworkConfiguration | undefined;
|
|
840
897
|
}
|
|
841
898
|
export declare namespace Service {
|
|
842
899
|
/**
|
|
@@ -860,6 +917,102 @@ export declare namespace CreateServiceResponse {
|
|
|
860
917
|
*/
|
|
861
918
|
const filterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
862
919
|
}
|
|
920
|
+
export interface CreateVpcConnectorRequest {
|
|
921
|
+
/**
|
|
922
|
+
* <p>A name for the VPC connector.</p>
|
|
923
|
+
*/
|
|
924
|
+
VpcConnectorName: string | undefined;
|
|
925
|
+
/**
|
|
926
|
+
* <p>A list of IDs of subnets that App Runner should use when it associates your service with a custom Amazon VPC. Specify IDs of subnets of a single
|
|
927
|
+
* Amazon VPC. App Runner determines the Amazon VPC from the subnets you specify.</p>
|
|
928
|
+
*/
|
|
929
|
+
Subnets: string[] | undefined;
|
|
930
|
+
/**
|
|
931
|
+
* <p>A list of IDs of security groups that App Runner should use for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the
|
|
932
|
+
* default security group of the Amazon VPC. The default security group allows all outbound traffic.</p>
|
|
933
|
+
*/
|
|
934
|
+
SecurityGroups?: string[];
|
|
935
|
+
/**
|
|
936
|
+
* <p>A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair.</p>
|
|
937
|
+
*/
|
|
938
|
+
Tags?: Tag[];
|
|
939
|
+
}
|
|
940
|
+
export declare namespace CreateVpcConnectorRequest {
|
|
941
|
+
/**
|
|
942
|
+
* @internal
|
|
943
|
+
*/
|
|
944
|
+
const filterSensitiveLog: (obj: CreateVpcConnectorRequest) => any;
|
|
945
|
+
}
|
|
946
|
+
export declare enum VpcConnectorStatus {
|
|
947
|
+
ACTIVE = "ACTIVE",
|
|
948
|
+
INACTIVE = "INACTIVE"
|
|
949
|
+
}
|
|
950
|
+
/**
|
|
951
|
+
* <p>Describes an App Runner VPC connector resource. A VPC connector describes the Amazon Virtual Private Cloud (Amazon VPC) that an App Runner service is
|
|
952
|
+
* associated with, and the subnets and security group that are used.</p>
|
|
953
|
+
* <p>Multiple revisions of a connector might have the same <code>Name</code> and different <code>Revision</code> values.</p>
|
|
954
|
+
* <note>
|
|
955
|
+
* <p>At this time, App Runner supports only one revision per name.</p>
|
|
956
|
+
* </note>
|
|
957
|
+
*/
|
|
958
|
+
export interface VpcConnector {
|
|
959
|
+
/**
|
|
960
|
+
* <p>The customer-provided VPC connector name.</p>
|
|
961
|
+
*/
|
|
962
|
+
VpcConnectorName?: string;
|
|
963
|
+
/**
|
|
964
|
+
* <p>The Amazon Resource Name (ARN) of this VPC connector.</p>
|
|
965
|
+
*/
|
|
966
|
+
VpcConnectorArn?: string;
|
|
967
|
+
/**
|
|
968
|
+
* <p>The revision of this VPC connector. It's unique among all the active connectors (<code>"Status": "ACTIVE"</code>) that share the same
|
|
969
|
+
* <code>Name</code>.</p>
|
|
970
|
+
* <note>
|
|
971
|
+
* <p>At this time, App Runner supports only one revision per name.</p>
|
|
972
|
+
* </note>
|
|
973
|
+
*/
|
|
974
|
+
VpcConnectorRevision?: number;
|
|
975
|
+
/**
|
|
976
|
+
* <p>A list of IDs of subnets that App Runner uses for your service. All IDs are of subnets of a single Amazon VPC.</p>
|
|
977
|
+
*/
|
|
978
|
+
Subnets?: string[];
|
|
979
|
+
/**
|
|
980
|
+
* <p>A list of IDs of security groups that App Runner uses for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the default
|
|
981
|
+
* security group of the Amazon VPC. The default security group allows all outbound traffic.</p>
|
|
982
|
+
*/
|
|
983
|
+
SecurityGroups?: string[];
|
|
984
|
+
/**
|
|
985
|
+
* <p>The current state of the VPC connector. If the status of a connector revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
986
|
+
* used. Inactive connector revisions are permanently removed some time after they are deleted.</p>
|
|
987
|
+
*/
|
|
988
|
+
Status?: VpcConnectorStatus | string;
|
|
989
|
+
/**
|
|
990
|
+
* <p>The time when the VPC connector was created. It's in Unix time stamp format.</p>
|
|
991
|
+
*/
|
|
992
|
+
CreatedAt?: Date;
|
|
993
|
+
/**
|
|
994
|
+
* <p>The time when the VPC connector was deleted. It's in Unix time stamp format.</p>
|
|
995
|
+
*/
|
|
996
|
+
DeletedAt?: Date;
|
|
997
|
+
}
|
|
998
|
+
export declare namespace VpcConnector {
|
|
999
|
+
/**
|
|
1000
|
+
* @internal
|
|
1001
|
+
*/
|
|
1002
|
+
const filterSensitiveLog: (obj: VpcConnector) => any;
|
|
1003
|
+
}
|
|
1004
|
+
export interface CreateVpcConnectorResponse {
|
|
1005
|
+
/**
|
|
1006
|
+
* <p>A description of the App Runner VPC connector that's created by this request.</p>
|
|
1007
|
+
*/
|
|
1008
|
+
VpcConnector: VpcConnector | undefined;
|
|
1009
|
+
}
|
|
1010
|
+
export declare namespace CreateVpcConnectorResponse {
|
|
1011
|
+
/**
|
|
1012
|
+
* @internal
|
|
1013
|
+
*/
|
|
1014
|
+
const filterSensitiveLog: (obj: CreateVpcConnectorResponse) => any;
|
|
1015
|
+
}
|
|
863
1016
|
export interface DeleteAutoScalingConfigurationRequest {
|
|
864
1017
|
/**
|
|
865
1018
|
* <p>The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to delete.</p>
|
|
@@ -949,6 +1102,31 @@ export declare namespace DeleteServiceResponse {
|
|
|
949
1102
|
*/
|
|
950
1103
|
const filterSensitiveLog: (obj: DeleteServiceResponse) => any;
|
|
951
1104
|
}
|
|
1105
|
+
export interface DeleteVpcConnectorRequest {
|
|
1106
|
+
/**
|
|
1107
|
+
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to delete.</p>
|
|
1108
|
+
* <p>The ARN must be a full VPC connector ARN.</p>
|
|
1109
|
+
*/
|
|
1110
|
+
VpcConnectorArn: string | undefined;
|
|
1111
|
+
}
|
|
1112
|
+
export declare namespace DeleteVpcConnectorRequest {
|
|
1113
|
+
/**
|
|
1114
|
+
* @internal
|
|
1115
|
+
*/
|
|
1116
|
+
const filterSensitiveLog: (obj: DeleteVpcConnectorRequest) => any;
|
|
1117
|
+
}
|
|
1118
|
+
export interface DeleteVpcConnectorResponse {
|
|
1119
|
+
/**
|
|
1120
|
+
* <p>A description of the App Runner VPC connector that this request just deleted.</p>
|
|
1121
|
+
*/
|
|
1122
|
+
VpcConnector: VpcConnector | undefined;
|
|
1123
|
+
}
|
|
1124
|
+
export declare namespace DeleteVpcConnectorResponse {
|
|
1125
|
+
/**
|
|
1126
|
+
* @internal
|
|
1127
|
+
*/
|
|
1128
|
+
const filterSensitiveLog: (obj: DeleteVpcConnectorResponse) => any;
|
|
1129
|
+
}
|
|
952
1130
|
export interface DescribeAutoScalingConfigurationRequest {
|
|
953
1131
|
/**
|
|
954
1132
|
* <p>The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want a description for.</p>
|
|
@@ -1050,6 +1228,31 @@ export declare namespace DescribeServiceResponse {
|
|
|
1050
1228
|
*/
|
|
1051
1229
|
const filterSensitiveLog: (obj: DescribeServiceResponse) => any;
|
|
1052
1230
|
}
|
|
1231
|
+
export interface DescribeVpcConnectorRequest {
|
|
1232
|
+
/**
|
|
1233
|
+
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want a description for.</p>
|
|
1234
|
+
* <p>The ARN must be a full VPC connector ARN.</p>
|
|
1235
|
+
*/
|
|
1236
|
+
VpcConnectorArn: string | undefined;
|
|
1237
|
+
}
|
|
1238
|
+
export declare namespace DescribeVpcConnectorRequest {
|
|
1239
|
+
/**
|
|
1240
|
+
* @internal
|
|
1241
|
+
*/
|
|
1242
|
+
const filterSensitiveLog: (obj: DescribeVpcConnectorRequest) => any;
|
|
1243
|
+
}
|
|
1244
|
+
export interface DescribeVpcConnectorResponse {
|
|
1245
|
+
/**
|
|
1246
|
+
* <p>A description of the App Runner VPC connector that you specified in this request.</p>
|
|
1247
|
+
*/
|
|
1248
|
+
VpcConnector: VpcConnector | undefined;
|
|
1249
|
+
}
|
|
1250
|
+
export declare namespace DescribeVpcConnectorResponse {
|
|
1251
|
+
/**
|
|
1252
|
+
* @internal
|
|
1253
|
+
*/
|
|
1254
|
+
const filterSensitiveLog: (obj: DescribeVpcConnectorResponse) => any;
|
|
1255
|
+
}
|
|
1053
1256
|
export interface DisassociateCustomDomainRequest {
|
|
1054
1257
|
/**
|
|
1055
1258
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to disassociate a custom domain name from.</p>
|
|
@@ -1413,6 +1616,42 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
1413
1616
|
*/
|
|
1414
1617
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1415
1618
|
}
|
|
1619
|
+
export interface ListVpcConnectorsRequest {
|
|
1620
|
+
/**
|
|
1621
|
+
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
1622
|
+
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
1623
|
+
*/
|
|
1624
|
+
MaxResults?: number;
|
|
1625
|
+
/**
|
|
1626
|
+
* <p>A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be
|
|
1627
|
+
* identical to the ones that are specified in the initial request.</p>
|
|
1628
|
+
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
1629
|
+
*/
|
|
1630
|
+
NextToken?: string;
|
|
1631
|
+
}
|
|
1632
|
+
export declare namespace ListVpcConnectorsRequest {
|
|
1633
|
+
/**
|
|
1634
|
+
* @internal
|
|
1635
|
+
*/
|
|
1636
|
+
const filterSensitiveLog: (obj: ListVpcConnectorsRequest) => any;
|
|
1637
|
+
}
|
|
1638
|
+
export interface ListVpcConnectorsResponse {
|
|
1639
|
+
/**
|
|
1640
|
+
* <p>A list of information records for VPC connectors. In a paginated request, the request returns up to <code>MaxResults</code> records for each
|
|
1641
|
+
* call.</p>
|
|
1642
|
+
*/
|
|
1643
|
+
VpcConnectors: VpcConnector[] | undefined;
|
|
1644
|
+
/**
|
|
1645
|
+
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
1646
|
+
*/
|
|
1647
|
+
NextToken?: string;
|
|
1648
|
+
}
|
|
1649
|
+
export declare namespace ListVpcConnectorsResponse {
|
|
1650
|
+
/**
|
|
1651
|
+
* @internal
|
|
1652
|
+
*/
|
|
1653
|
+
const filterSensitiveLog: (obj: ListVpcConnectorsResponse) => any;
|
|
1654
|
+
}
|
|
1416
1655
|
export interface PauseServiceRequest {
|
|
1417
1656
|
/**
|
|
1418
1657
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to pause.</p>
|
|
@@ -1565,13 +1804,17 @@ export interface UpdateServiceRequest {
|
|
|
1565
1804
|
*/
|
|
1566
1805
|
InstanceConfiguration?: InstanceConfiguration;
|
|
1567
1806
|
/**
|
|
1568
|
-
* <p>The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with
|
|
1807
|
+
* <p>The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with the App Runner service.</p>
|
|
1569
1808
|
*/
|
|
1570
1809
|
AutoScalingConfigurationArn?: string;
|
|
1571
1810
|
/**
|
|
1572
|
-
* <p>The settings for the health check that App Runner performs to monitor the health of
|
|
1811
|
+
* <p>The settings for the health check that App Runner performs to monitor the health of the App Runner service.</p>
|
|
1573
1812
|
*/
|
|
1574
1813
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
1814
|
+
/**
|
|
1815
|
+
* <p>Configuration settings related to network traffic of the web application that the App Runner service runs.</p>
|
|
1816
|
+
*/
|
|
1817
|
+
NetworkConfiguration?: NetworkConfiguration;
|
|
1575
1818
|
}
|
|
1576
1819
|
export declare namespace UpdateServiceRequest {
|
|
1577
1820
|
/**
|
|
@@ -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>;
|
|
@@ -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";
|
|
@@ -41,6 +45,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
41
45
|
createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
42
46
|
createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
43
47
|
|
|
48
|
+
createVpcConnector(args: CreateVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcConnectorCommandOutput>;
|
|
49
|
+
createVpcConnector(args: CreateVpcConnectorCommandInput, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
50
|
+
createVpcConnector(args: CreateVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
51
|
+
|
|
44
52
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAutoScalingConfigurationCommandOutput>;
|
|
45
53
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
|
|
46
54
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
|
|
@@ -53,6 +61,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
53
61
|
deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
54
62
|
deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
55
63
|
|
|
64
|
+
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcConnectorCommandOutput>;
|
|
65
|
+
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
66
|
+
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
67
|
+
|
|
56
68
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
57
69
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
|
|
58
70
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
|
|
@@ -65,6 +77,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
65
77
|
describeService(args: DescribeServiceCommandInput, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
66
78
|
describeService(args: DescribeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
67
79
|
|
|
80
|
+
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcConnectorCommandOutput>;
|
|
81
|
+
describeVpcConnector(args: DescribeVpcConnectorCommandInput, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
82
|
+
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
83
|
+
|
|
68
84
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateCustomDomainCommandOutput>;
|
|
69
85
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
|
|
70
86
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
|
|
@@ -89,6 +105,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
89
105
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
90
106
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
91
107
|
|
|
108
|
+
listVpcConnectors(args: ListVpcConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcConnectorsCommandOutput>;
|
|
109
|
+
listVpcConnectors(args: ListVpcConnectorsCommandInput, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
110
|
+
listVpcConnectors(args: ListVpcConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
111
|
+
|
|
92
112
|
pauseService(args: PauseServiceCommandInput, options?: __HttpHandlerOptions): Promise<PauseServiceCommandOutput>;
|
|
93
113
|
pauseService(args: PauseServiceCommandInput, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
|
|
94
114
|
pauseService(args: PauseServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
|
|
@@ -10,26 +10,30 @@ import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput }
|
|
|
10
10
|
import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "./commands/CreateAutoScalingConfigurationCommand";
|
|
11
11
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
12
12
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
13
|
+
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "./commands/CreateVpcConnectorCommand";
|
|
13
14
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "./commands/DeleteAutoScalingConfigurationCommand";
|
|
14
15
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
15
16
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
17
|
+
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "./commands/DeleteVpcConnectorCommand";
|
|
16
18
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "./commands/DescribeAutoScalingConfigurationCommand";
|
|
17
19
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "./commands/DescribeCustomDomainsCommand";
|
|
18
20
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "./commands/DescribeServiceCommand";
|
|
21
|
+
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "./commands/DescribeVpcConnectorCommand";
|
|
19
22
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "./commands/DisassociateCustomDomainCommand";
|
|
20
23
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "./commands/ListAutoScalingConfigurationsCommand";
|
|
21
24
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
22
25
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./commands/ListOperationsCommand";
|
|
23
26
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
24
27
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
28
|
+
import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "./commands/ListVpcConnectorsCommand";
|
|
25
29
|
import { PauseServiceCommandInput, PauseServiceCommandOutput } from "./commands/PauseServiceCommand";
|
|
26
30
|
import { ResumeServiceCommandInput, ResumeServiceCommandOutput } from "./commands/ResumeServiceCommand";
|
|
27
31
|
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
|
|
28
32
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
29
33
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
30
34
|
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
31
|
-
export declare type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateServiceCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteServiceCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeServiceCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput;
|
|
32
|
-
export declare type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateServiceCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteServiceCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeServiceCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput;
|
|
35
|
+
export declare type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateServiceCommandInput | CreateVpcConnectorCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteServiceCommandInput | DeleteVpcConnectorCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeServiceCommandInput | DescribeVpcConnectorCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListVpcConnectorsCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput;
|
|
36
|
+
export declare type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateServiceCommandOutput | CreateVpcConnectorCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteServiceCommandOutput | DeleteVpcConnectorCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeServiceCommandOutput | DescribeVpcConnectorCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListVpcConnectorsCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput;
|
|
33
37
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
34
38
|
|
|
35
39
|
requestHandler?: __HttpHandler;
|
|
@@ -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 { CreateVpcConnectorRequest, CreateVpcConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateVpcConnectorCommandInput extends CreateVpcConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateVpcConnectorCommand extends $Command<CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateVpcConnectorCommandInput;
|
|
12
|
+
constructor(input: CreateVpcConnectorCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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 { DeleteVpcConnectorRequest, DeleteVpcConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteVpcConnectorCommandInput extends DeleteVpcConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteVpcConnectorCommand extends $Command<DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteVpcConnectorCommandInput;
|
|
12
|
+
constructor(input: DeleteVpcConnectorCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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 { DescribeVpcConnectorRequest, DescribeVpcConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeVpcConnectorCommandInput extends DescribeVpcConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeVpcConnectorCommandOutput extends DescribeVpcConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeVpcConnectorCommand extends $Command<DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeVpcConnectorCommandInput;
|
|
12
|
+
constructor(input: DescribeVpcConnectorCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|