@aws-sdk/client-apprunner 3.934.0 → 3.936.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.
@@ -1,34 +1,35 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
1
+ import {
2
+ AutoScalingConfigurationStatus,
3
+ CertificateValidationRecordStatus,
4
+ ConfigurationSource,
5
+ ConnectionStatus,
6
+ CustomDomainAssociationStatus,
7
+ EgressType,
8
+ HealthCheckProtocol,
9
+ ImageRepositoryType,
10
+ IpAddressType,
11
+ ObservabilityConfigurationStatus,
12
+ OperationStatus,
13
+ OperationType,
14
+ ProviderType,
15
+ Runtime,
16
+ ServiceStatus,
17
+ SourceCodeVersionType,
18
+ TracingVendor,
19
+ VpcConnectorStatus,
20
+ VpcIngressConnectionStatus,
21
+ } from "./enums";
3
22
  export interface AssociateCustomDomainRequest {
4
23
  ServiceArn: string | undefined;
5
24
  DomainName: string | undefined;
6
25
  EnableWWWSubdomain?: boolean | undefined;
7
26
  }
8
- export declare const CertificateValidationRecordStatus: {
9
- readonly FAILED: "FAILED";
10
- readonly PENDING_VALIDATION: "PENDING_VALIDATION";
11
- readonly SUCCESS: "SUCCESS";
12
- };
13
- export type CertificateValidationRecordStatus =
14
- (typeof CertificateValidationRecordStatus)[keyof typeof CertificateValidationRecordStatus];
15
27
  export interface CertificateValidationRecord {
16
28
  Name?: string | undefined;
17
29
  Type?: string | undefined;
18
30
  Value?: string | undefined;
19
31
  Status?: CertificateValidationRecordStatus | undefined;
20
32
  }
21
- export declare const CustomDomainAssociationStatus: {
22
- readonly ACTIVE: "ACTIVE";
23
- readonly BINDING_CERTIFICATE: "BINDING_CERTIFICATE";
24
- readonly CREATE_FAILED: "CREATE_FAILED";
25
- readonly CREATING: "CREATING";
26
- readonly DELETE_FAILED: "DELETE_FAILED";
27
- readonly DELETING: "DELETING";
28
- readonly PENDING_CERTIFICATE_DNS_VALIDATION: "PENDING_CERTIFICATE_DNS_VALIDATION";
29
- };
30
- export type CustomDomainAssociationStatus =
31
- (typeof CustomDomainAssociationStatus)[keyof typeof CustomDomainAssociationStatus];
32
33
  export interface CustomDomain {
33
34
  DomainName: string | undefined;
34
35
  EnableWWWSubdomain: boolean | undefined;
@@ -46,30 +47,6 @@ export interface AssociateCustomDomainResponse {
46
47
  CustomDomain: CustomDomain | undefined;
47
48
  VpcDNSTargets: VpcDNSTarget[] | undefined;
48
49
  }
49
- export declare class InternalServiceErrorException extends __BaseException {
50
- readonly name: "InternalServiceErrorException";
51
- readonly $fault: "server";
52
- Message?: string | undefined;
53
- constructor(
54
- opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
55
- );
56
- }
57
- export declare class InvalidRequestException extends __BaseException {
58
- readonly name: "InvalidRequestException";
59
- readonly $fault: "client";
60
- Message?: string | undefined;
61
- constructor(
62
- opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
63
- );
64
- }
65
- export declare class InvalidStateException extends __BaseException {
66
- readonly name: "InvalidStateException";
67
- readonly $fault: "client";
68
- Message?: string | undefined;
69
- constructor(
70
- opts: __ExceptionOptionType<InvalidStateException, __BaseException>
71
- );
72
- }
73
50
  export interface Tag {
74
51
  Key?: string | undefined;
75
52
  Value?: string | undefined;
@@ -81,12 +58,6 @@ export interface CreateAutoScalingConfigurationRequest {
81
58
  MaxSize?: number | undefined;
82
59
  Tags?: Tag[] | undefined;
83
60
  }
84
- export declare const AutoScalingConfigurationStatus: {
85
- readonly ACTIVE: "ACTIVE";
86
- readonly INACTIVE: "INACTIVE";
87
- };
88
- export type AutoScalingConfigurationStatus =
89
- (typeof AutoScalingConfigurationStatus)[keyof typeof AutoScalingConfigurationStatus];
90
61
  export interface AutoScalingConfiguration {
91
62
  AutoScalingConfigurationArn?: string | undefined;
92
63
  AutoScalingConfigurationName?: string | undefined;
@@ -104,32 +75,11 @@ export interface AutoScalingConfiguration {
104
75
  export interface CreateAutoScalingConfigurationResponse {
105
76
  AutoScalingConfiguration: AutoScalingConfiguration | undefined;
106
77
  }
107
- export declare class ServiceQuotaExceededException extends __BaseException {
108
- readonly name: "ServiceQuotaExceededException";
109
- readonly $fault: "client";
110
- Message?: string | undefined;
111
- constructor(
112
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
113
- );
114
- }
115
- export declare const ProviderType: {
116
- readonly BITBUCKET: "BITBUCKET";
117
- readonly GITHUB: "GITHUB";
118
- };
119
- export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
120
78
  export interface CreateConnectionRequest {
121
79
  ConnectionName: string | undefined;
122
80
  ProviderType: ProviderType | undefined;
123
81
  Tags?: Tag[] | undefined;
124
82
  }
125
- export declare const ConnectionStatus: {
126
- readonly AVAILABLE: "AVAILABLE";
127
- readonly DELETED: "DELETED";
128
- readonly ERROR: "ERROR";
129
- readonly PENDING_HANDSHAKE: "PENDING_HANDSHAKE";
130
- };
131
- export type ConnectionStatus =
132
- (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
133
83
  export interface Connection {
134
84
  ConnectionName?: string | undefined;
135
85
  ConnectionArn?: string | undefined;
@@ -140,10 +90,6 @@ export interface Connection {
140
90
  export interface CreateConnectionResponse {
141
91
  Connection: Connection | undefined;
142
92
  }
143
- export declare const TracingVendor: {
144
- readonly AWSXRAY: "AWSXRAY";
145
- };
146
- export type TracingVendor = (typeof TracingVendor)[keyof typeof TracingVendor];
147
93
  export interface TraceConfiguration {
148
94
  Vendor: TracingVendor | undefined;
149
95
  }
@@ -152,12 +98,6 @@ export interface CreateObservabilityConfigurationRequest {
152
98
  TraceConfiguration?: TraceConfiguration | undefined;
153
99
  Tags?: Tag[] | undefined;
154
100
  }
155
- export declare const ObservabilityConfigurationStatus: {
156
- readonly ACTIVE: "ACTIVE";
157
- readonly INACTIVE: "INACTIVE";
158
- };
159
- export type ObservabilityConfigurationStatus =
160
- (typeof ObservabilityConfigurationStatus)[keyof typeof ObservabilityConfigurationStatus];
161
101
  export interface ObservabilityConfiguration {
162
102
  ObservabilityConfigurationArn?: string | undefined;
163
103
  ObservabilityConfigurationName?: string | undefined;
@@ -174,12 +114,6 @@ export interface CreateObservabilityConfigurationResponse {
174
114
  export interface EncryptionConfiguration {
175
115
  KmsKey: string | undefined;
176
116
  }
177
- export declare const HealthCheckProtocol: {
178
- readonly HTTP: "HTTP";
179
- readonly TCP: "TCP";
180
- };
181
- export type HealthCheckProtocol =
182
- (typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
183
117
  export interface HealthCheckConfiguration {
184
118
  Protocol?: HealthCheckProtocol | undefined;
185
119
  Path?: string | undefined;
@@ -193,11 +127,6 @@ export interface InstanceConfiguration {
193
127
  Memory?: string | undefined;
194
128
  InstanceRoleArn?: string | undefined;
195
129
  }
196
- export declare const EgressType: {
197
- readonly DEFAULT: "DEFAULT";
198
- readonly VPC: "VPC";
199
- };
200
- export type EgressType = (typeof EgressType)[keyof typeof EgressType];
201
130
  export interface EgressConfiguration {
202
131
  EgressType?: EgressType | undefined;
203
132
  VpcConnectorArn?: string | undefined;
@@ -205,11 +134,6 @@ export interface EgressConfiguration {
205
134
  export interface IngressConfiguration {
206
135
  IsPubliclyAccessible?: boolean | undefined;
207
136
  }
208
- export declare const IpAddressType: {
209
- readonly DUAL_STACK: "DUAL_STACK";
210
- readonly IPV4: "IPV4";
211
- };
212
- export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
213
137
  export interface NetworkConfiguration {
214
138
  EgressConfiguration?: EgressConfiguration | undefined;
215
139
  IngressConfiguration?: IngressConfiguration | undefined;
@@ -223,22 +147,6 @@ export interface AuthenticationConfiguration {
223
147
  ConnectionArn?: string | undefined;
224
148
  AccessRoleArn?: string | undefined;
225
149
  }
226
- export declare const Runtime: {
227
- readonly CORRETTO_11: "CORRETTO_11";
228
- readonly CORRETTO_8: "CORRETTO_8";
229
- readonly DOTNET_6: "DOTNET_6";
230
- readonly GO_1: "GO_1";
231
- readonly NODEJS_12: "NODEJS_12";
232
- readonly NODEJS_14: "NODEJS_14";
233
- readonly NODEJS_16: "NODEJS_16";
234
- readonly NODEJS_18: "NODEJS_18";
235
- readonly NODEJS_22: "NODEJS_22";
236
- readonly PHP_81: "PHP_81";
237
- readonly PYTHON_3: "PYTHON_3";
238
- readonly PYTHON_311: "PYTHON_311";
239
- readonly RUBY_31: "RUBY_31";
240
- };
241
- export type Runtime = (typeof Runtime)[keyof typeof Runtime];
242
150
  export interface CodeConfigurationValues {
243
151
  Runtime: Runtime | undefined;
244
152
  BuildCommand?: string | undefined;
@@ -247,21 +155,10 @@ export interface CodeConfigurationValues {
247
155
  RuntimeEnvironmentVariables?: Record<string, string> | undefined;
248
156
  RuntimeEnvironmentSecrets?: Record<string, string> | undefined;
249
157
  }
250
- export declare const ConfigurationSource: {
251
- readonly API: "API";
252
- readonly REPOSITORY: "REPOSITORY";
253
- };
254
- export type ConfigurationSource =
255
- (typeof ConfigurationSource)[keyof typeof ConfigurationSource];
256
158
  export interface CodeConfiguration {
257
159
  ConfigurationSource: ConfigurationSource | undefined;
258
160
  CodeConfigurationValues?: CodeConfigurationValues | undefined;
259
161
  }
260
- export declare const SourceCodeVersionType: {
261
- readonly BRANCH: "BRANCH";
262
- };
263
- export type SourceCodeVersionType =
264
- (typeof SourceCodeVersionType)[keyof typeof SourceCodeVersionType];
265
162
  export interface SourceCodeVersion {
266
163
  Type: SourceCodeVersionType | undefined;
267
164
  Value: string | undefined;
@@ -278,12 +175,6 @@ export interface ImageConfiguration {
278
175
  Port?: string | undefined;
279
176
  RuntimeEnvironmentSecrets?: Record<string, string> | undefined;
280
177
  }
281
- export declare const ImageRepositoryType: {
282
- readonly ECR: "ECR";
283
- readonly ECR_PUBLIC: "ECR_PUBLIC";
284
- };
285
- export type ImageRepositoryType =
286
- (typeof ImageRepositoryType)[keyof typeof ImageRepositoryType];
287
178
  export interface ImageRepository {
288
179
  ImageIdentifier: string | undefined;
289
180
  ImageConfiguration?: ImageConfiguration | undefined;
@@ -315,15 +206,6 @@ export interface AutoScalingConfigurationSummary {
315
206
  HasAssociatedService?: boolean | undefined;
316
207
  IsDefault?: boolean | undefined;
317
208
  }
318
- export declare const ServiceStatus: {
319
- readonly CREATE_FAILED: "CREATE_FAILED";
320
- readonly DELETED: "DELETED";
321
- readonly DELETE_FAILED: "DELETE_FAILED";
322
- readonly OPERATION_IN_PROGRESS: "OPERATION_IN_PROGRESS";
323
- readonly PAUSED: "PAUSED";
324
- readonly RUNNING: "RUNNING";
325
- };
326
- export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
327
209
  export interface Service {
328
210
  ServiceName: string | undefined;
329
211
  ServiceId: string | undefined;
@@ -351,12 +233,6 @@ export interface CreateVpcConnectorRequest {
351
233
  SecurityGroups?: string[] | undefined;
352
234
  Tags?: Tag[] | undefined;
353
235
  }
354
- export declare const VpcConnectorStatus: {
355
- readonly ACTIVE: "ACTIVE";
356
- readonly INACTIVE: "INACTIVE";
357
- };
358
- export type VpcConnectorStatus =
359
- (typeof VpcConnectorStatus)[keyof typeof VpcConnectorStatus];
360
236
  export interface VpcConnector {
361
237
  VpcConnectorName?: string | undefined;
362
238
  VpcConnectorArn?: string | undefined;
@@ -380,18 +256,6 @@ export interface CreateVpcIngressConnectionRequest {
380
256
  IngressVpcConfiguration: IngressVpcConfiguration | undefined;
381
257
  Tags?: Tag[] | undefined;
382
258
  }
383
- export declare const VpcIngressConnectionStatus: {
384
- readonly AVAILABLE: "AVAILABLE";
385
- readonly DELETED: "DELETED";
386
- readonly FAILED_CREATION: "FAILED_CREATION";
387
- readonly FAILED_DELETION: "FAILED_DELETION";
388
- readonly FAILED_UPDATE: "FAILED_UPDATE";
389
- readonly PENDING_CREATION: "PENDING_CREATION";
390
- readonly PENDING_DELETION: "PENDING_DELETION";
391
- readonly PENDING_UPDATE: "PENDING_UPDATE";
392
- };
393
- export type VpcIngressConnectionStatus =
394
- (typeof VpcIngressConnectionStatus)[keyof typeof VpcIngressConnectionStatus];
395
259
  export interface VpcIngressConnection {
396
260
  VpcIngressConnectionArn?: string | undefined;
397
261
  VpcIngressConnectionName?: string | undefined;
@@ -413,14 +277,6 @@ export interface DeleteAutoScalingConfigurationRequest {
413
277
  export interface DeleteAutoScalingConfigurationResponse {
414
278
  AutoScalingConfiguration: AutoScalingConfiguration | undefined;
415
279
  }
416
- export declare class ResourceNotFoundException extends __BaseException {
417
- readonly name: "ResourceNotFoundException";
418
- readonly $fault: "client";
419
- Message?: string | undefined;
420
- constructor(
421
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
422
- );
423
- }
424
280
  export interface DeleteConnectionRequest {
425
281
  ConnectionArn: string | undefined;
426
282
  }
@@ -554,26 +410,6 @@ export interface ListOperationsRequest {
554
410
  NextToken?: string | undefined;
555
411
  MaxResults?: number | undefined;
556
412
  }
557
- export declare const OperationStatus: {
558
- readonly FAILED: "FAILED";
559
- readonly IN_PROGRESS: "IN_PROGRESS";
560
- readonly PENDING: "PENDING";
561
- readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
562
- readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
563
- readonly ROLLBACK_SUCCEEDED: "ROLLBACK_SUCCEEDED";
564
- readonly SUCCEEDED: "SUCCEEDED";
565
- };
566
- export type OperationStatus =
567
- (typeof OperationStatus)[keyof typeof OperationStatus];
568
- export declare const OperationType: {
569
- readonly CREATE_SERVICE: "CREATE_SERVICE";
570
- readonly DELETE_SERVICE: "DELETE_SERVICE";
571
- readonly PAUSE_SERVICE: "PAUSE_SERVICE";
572
- readonly RESUME_SERVICE: "RESUME_SERVICE";
573
- readonly START_DEPLOYMENT: "START_DEPLOYMENT";
574
- readonly UPDATE_SERVICE: "UPDATE_SERVICE";
575
- };
576
- export type OperationType = (typeof OperationType)[keyof typeof OperationType];
577
413
  export interface OperationSummary {
578
414
  Id?: string | undefined;
579
415
  Type?: OperationType | undefined;
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.934.0",
4
+ "version": "3.936.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-apprunner",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
25
- "@aws-sdk/middleware-host-header": "3.930.0",
26
- "@aws-sdk/middleware-logger": "3.930.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
29
- "@aws-sdk/region-config-resolver": "3.930.0",
30
- "@aws-sdk/types": "3.930.0",
31
- "@aws-sdk/util-endpoints": "3.930.0",
32
- "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
23
+ "@aws-sdk/core": "3.936.0",
24
+ "@aws-sdk/credential-provider-node": "3.936.0",
25
+ "@aws-sdk/middleware-host-header": "3.936.0",
26
+ "@aws-sdk/middleware-logger": "3.936.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.936.0",
29
+ "@aws-sdk/region-config-resolver": "3.936.0",
30
+ "@aws-sdk/types": "3.936.0",
31
+ "@aws-sdk/util-endpoints": "3.936.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.936.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";