@aws-sdk/client-apprunner 3.933.0 → 3.935.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.
@@ -0,0 +1,264 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const CertificateValidationRecordStatus: {
6
+ readonly FAILED: "FAILED";
7
+ readonly PENDING_VALIDATION: "PENDING_VALIDATION";
8
+ readonly SUCCESS: "SUCCESS";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type CertificateValidationRecordStatus = (typeof CertificateValidationRecordStatus)[keyof typeof CertificateValidationRecordStatus];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const CustomDomainAssociationStatus: {
19
+ readonly ACTIVE: "ACTIVE";
20
+ readonly BINDING_CERTIFICATE: "BINDING_CERTIFICATE";
21
+ readonly CREATE_FAILED: "CREATE_FAILED";
22
+ readonly CREATING: "CREATING";
23
+ readonly DELETE_FAILED: "DELETE_FAILED";
24
+ readonly DELETING: "DELETING";
25
+ readonly PENDING_CERTIFICATE_DNS_VALIDATION: "PENDING_CERTIFICATE_DNS_VALIDATION";
26
+ };
27
+ /**
28
+ * @public
29
+ */
30
+ export type CustomDomainAssociationStatus = (typeof CustomDomainAssociationStatus)[keyof typeof CustomDomainAssociationStatus];
31
+ /**
32
+ * @public
33
+ * @enum
34
+ */
35
+ export declare const AutoScalingConfigurationStatus: {
36
+ readonly ACTIVE: "ACTIVE";
37
+ readonly INACTIVE: "INACTIVE";
38
+ };
39
+ /**
40
+ * @public
41
+ */
42
+ export type AutoScalingConfigurationStatus = (typeof AutoScalingConfigurationStatus)[keyof typeof AutoScalingConfigurationStatus];
43
+ /**
44
+ * @public
45
+ * @enum
46
+ */
47
+ export declare const ProviderType: {
48
+ readonly BITBUCKET: "BITBUCKET";
49
+ readonly GITHUB: "GITHUB";
50
+ };
51
+ /**
52
+ * @public
53
+ */
54
+ export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
55
+ /**
56
+ * @public
57
+ * @enum
58
+ */
59
+ export declare const ConnectionStatus: {
60
+ readonly AVAILABLE: "AVAILABLE";
61
+ readonly DELETED: "DELETED";
62
+ readonly ERROR: "ERROR";
63
+ readonly PENDING_HANDSHAKE: "PENDING_HANDSHAKE";
64
+ };
65
+ /**
66
+ * @public
67
+ */
68
+ export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
69
+ /**
70
+ * @public
71
+ * @enum
72
+ */
73
+ export declare const TracingVendor: {
74
+ readonly AWSXRAY: "AWSXRAY";
75
+ };
76
+ /**
77
+ * @public
78
+ */
79
+ export type TracingVendor = (typeof TracingVendor)[keyof typeof TracingVendor];
80
+ /**
81
+ * @public
82
+ * @enum
83
+ */
84
+ export declare const ObservabilityConfigurationStatus: {
85
+ readonly ACTIVE: "ACTIVE";
86
+ readonly INACTIVE: "INACTIVE";
87
+ };
88
+ /**
89
+ * @public
90
+ */
91
+ export type ObservabilityConfigurationStatus = (typeof ObservabilityConfigurationStatus)[keyof typeof ObservabilityConfigurationStatus];
92
+ /**
93
+ * @public
94
+ * @enum
95
+ */
96
+ export declare const HealthCheckProtocol: {
97
+ readonly HTTP: "HTTP";
98
+ readonly TCP: "TCP";
99
+ };
100
+ /**
101
+ * @public
102
+ */
103
+ export type HealthCheckProtocol = (typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
104
+ /**
105
+ * @public
106
+ * @enum
107
+ */
108
+ export declare const EgressType: {
109
+ readonly DEFAULT: "DEFAULT";
110
+ readonly VPC: "VPC";
111
+ };
112
+ /**
113
+ * @public
114
+ */
115
+ export type EgressType = (typeof EgressType)[keyof typeof EgressType];
116
+ /**
117
+ * @public
118
+ * @enum
119
+ */
120
+ export declare const IpAddressType: {
121
+ readonly DUAL_STACK: "DUAL_STACK";
122
+ readonly IPV4: "IPV4";
123
+ };
124
+ /**
125
+ * @public
126
+ */
127
+ export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
128
+ /**
129
+ * @public
130
+ * @enum
131
+ */
132
+ export declare const Runtime: {
133
+ readonly CORRETTO_11: "CORRETTO_11";
134
+ readonly CORRETTO_8: "CORRETTO_8";
135
+ readonly DOTNET_6: "DOTNET_6";
136
+ readonly GO_1: "GO_1";
137
+ readonly NODEJS_12: "NODEJS_12";
138
+ readonly NODEJS_14: "NODEJS_14";
139
+ readonly NODEJS_16: "NODEJS_16";
140
+ readonly NODEJS_18: "NODEJS_18";
141
+ readonly NODEJS_22: "NODEJS_22";
142
+ readonly PHP_81: "PHP_81";
143
+ readonly PYTHON_3: "PYTHON_3";
144
+ readonly PYTHON_311: "PYTHON_311";
145
+ readonly RUBY_31: "RUBY_31";
146
+ };
147
+ /**
148
+ * @public
149
+ */
150
+ export type Runtime = (typeof Runtime)[keyof typeof Runtime];
151
+ /**
152
+ * @public
153
+ * @enum
154
+ */
155
+ export declare const ConfigurationSource: {
156
+ readonly API: "API";
157
+ readonly REPOSITORY: "REPOSITORY";
158
+ };
159
+ /**
160
+ * @public
161
+ */
162
+ export type ConfigurationSource = (typeof ConfigurationSource)[keyof typeof ConfigurationSource];
163
+ /**
164
+ * @public
165
+ * @enum
166
+ */
167
+ export declare const SourceCodeVersionType: {
168
+ readonly BRANCH: "BRANCH";
169
+ };
170
+ /**
171
+ * @public
172
+ */
173
+ export type SourceCodeVersionType = (typeof SourceCodeVersionType)[keyof typeof SourceCodeVersionType];
174
+ /**
175
+ * @public
176
+ * @enum
177
+ */
178
+ export declare const ImageRepositoryType: {
179
+ readonly ECR: "ECR";
180
+ readonly ECR_PUBLIC: "ECR_PUBLIC";
181
+ };
182
+ /**
183
+ * @public
184
+ */
185
+ export type ImageRepositoryType = (typeof ImageRepositoryType)[keyof typeof ImageRepositoryType];
186
+ /**
187
+ * @public
188
+ * @enum
189
+ */
190
+ export declare const ServiceStatus: {
191
+ readonly CREATE_FAILED: "CREATE_FAILED";
192
+ readonly DELETED: "DELETED";
193
+ readonly DELETE_FAILED: "DELETE_FAILED";
194
+ readonly OPERATION_IN_PROGRESS: "OPERATION_IN_PROGRESS";
195
+ readonly PAUSED: "PAUSED";
196
+ readonly RUNNING: "RUNNING";
197
+ };
198
+ /**
199
+ * @public
200
+ */
201
+ export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
202
+ /**
203
+ * @public
204
+ * @enum
205
+ */
206
+ export declare const VpcConnectorStatus: {
207
+ readonly ACTIVE: "ACTIVE";
208
+ readonly INACTIVE: "INACTIVE";
209
+ };
210
+ /**
211
+ * @public
212
+ */
213
+ export type VpcConnectorStatus = (typeof VpcConnectorStatus)[keyof typeof VpcConnectorStatus];
214
+ /**
215
+ * @public
216
+ * @enum
217
+ */
218
+ export declare const VpcIngressConnectionStatus: {
219
+ readonly AVAILABLE: "AVAILABLE";
220
+ readonly DELETED: "DELETED";
221
+ readonly FAILED_CREATION: "FAILED_CREATION";
222
+ readonly FAILED_DELETION: "FAILED_DELETION";
223
+ readonly FAILED_UPDATE: "FAILED_UPDATE";
224
+ readonly PENDING_CREATION: "PENDING_CREATION";
225
+ readonly PENDING_DELETION: "PENDING_DELETION";
226
+ readonly PENDING_UPDATE: "PENDING_UPDATE";
227
+ };
228
+ /**
229
+ * @public
230
+ */
231
+ export type VpcIngressConnectionStatus = (typeof VpcIngressConnectionStatus)[keyof typeof VpcIngressConnectionStatus];
232
+ /**
233
+ * @public
234
+ * @enum
235
+ */
236
+ export declare const OperationStatus: {
237
+ readonly FAILED: "FAILED";
238
+ readonly IN_PROGRESS: "IN_PROGRESS";
239
+ readonly PENDING: "PENDING";
240
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
241
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
242
+ readonly ROLLBACK_SUCCEEDED: "ROLLBACK_SUCCEEDED";
243
+ readonly SUCCEEDED: "SUCCEEDED";
244
+ };
245
+ /**
246
+ * @public
247
+ */
248
+ export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
249
+ /**
250
+ * @public
251
+ * @enum
252
+ */
253
+ export declare const OperationType: {
254
+ readonly CREATE_SERVICE: "CREATE_SERVICE";
255
+ readonly DELETE_SERVICE: "DELETE_SERVICE";
256
+ readonly PAUSE_SERVICE: "PAUSE_SERVICE";
257
+ readonly RESUME_SERVICE: "RESUME_SERVICE";
258
+ readonly START_DEPLOYMENT: "START_DEPLOYMENT";
259
+ readonly UPDATE_SERVICE: "UPDATE_SERVICE";
260
+ };
261
+ /**
262
+ * @public
263
+ */
264
+ export type OperationType = (typeof OperationType)[keyof typeof OperationType];
@@ -0,0 +1,69 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
3
+ /**
4
+ * <p>An unexpected service exception occurred.</p>
5
+ * @public
6
+ */
7
+ export declare class InternalServiceErrorException extends __BaseException {
8
+ readonly name: "InternalServiceErrorException";
9
+ readonly $fault: "server";
10
+ Message?: string | undefined;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
18
+ * @public
19
+ */
20
+ export declare class InvalidRequestException extends __BaseException {
21
+ readonly name: "InvalidRequestException";
22
+ readonly $fault: "client";
23
+ Message?: string | undefined;
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
28
+ }
29
+ /**
30
+ * <p>You can't perform this action when the resource is in its current state.</p>
31
+ * @public
32
+ */
33
+ export declare class InvalidStateException extends __BaseException {
34
+ readonly name: "InvalidStateException";
35
+ readonly $fault: "client";
36
+ Message?: string | undefined;
37
+ /**
38
+ * @internal
39
+ */
40
+ constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
41
+ }
42
+ /**
43
+ * <p>App Runner can't create this resource. You've reached your account quota for this resource type.</p>
44
+ * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
45
+ * <i>Amazon Web Services General Reference</i>.</p>
46
+ * @public
47
+ */
48
+ export declare class ServiceQuotaExceededException extends __BaseException {
49
+ readonly name: "ServiceQuotaExceededException";
50
+ readonly $fault: "client";
51
+ Message?: string | undefined;
52
+ /**
53
+ * @internal
54
+ */
55
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
56
+ }
57
+ /**
58
+ * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
59
+ * @public
60
+ */
61
+ export declare class ResourceNotFoundException extends __BaseException {
62
+ readonly name: "ResourceNotFoundException";
63
+ readonly $fault: "client";
64
+ Message?: string | undefined;
65
+ /**
66
+ * @internal
67
+ */
68
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
69
+ }