@aws-sdk/client-apprunner 3.52.0 → 3.53.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 +12 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppRunnerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +76 -2
- package/dist-cjs/protocols/Aws_json1_0.js +221 -786
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppRunnerServiceException.js +12 -0
- package/dist-es/models/models_0.js +70 -1
- package/dist-es/protocols/Aws_json1_0.js +512 -881
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppRunnerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +40 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppRunnerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -16
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from AppRunner service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AppRunnerServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
|
|
2
3
|
export interface AssociateCustomDomainRequest {
|
|
3
4
|
/**
|
|
4
5
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to associate a custom domain name with.</p>
|
|
@@ -119,26 +120,38 @@ export declare namespace AssociateCustomDomainResponse {
|
|
|
119
120
|
/**
|
|
120
121
|
* <p>An unexpected service exception occurred.</p>
|
|
121
122
|
*/
|
|
122
|
-
export
|
|
123
|
-
name: "InternalServiceErrorException";
|
|
124
|
-
$fault: "server";
|
|
123
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
124
|
+
readonly name: "InternalServiceErrorException";
|
|
125
|
+
readonly $fault: "server";
|
|
125
126
|
Message?: string;
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
130
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
126
131
|
}
|
|
127
132
|
/**
|
|
128
133
|
* <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>
|
|
129
134
|
*/
|
|
130
|
-
export
|
|
131
|
-
name: "InvalidRequestException";
|
|
132
|
-
$fault: "client";
|
|
135
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
136
|
+
readonly name: "InvalidRequestException";
|
|
137
|
+
readonly $fault: "client";
|
|
133
138
|
Message?: string;
|
|
139
|
+
/**
|
|
140
|
+
* @internal
|
|
141
|
+
*/
|
|
142
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
134
143
|
}
|
|
135
144
|
/**
|
|
136
145
|
* <p>You can't perform this action when the resource is in its current state.</p>
|
|
137
146
|
*/
|
|
138
|
-
export
|
|
139
|
-
name: "InvalidStateException";
|
|
140
|
-
$fault: "client";
|
|
147
|
+
export declare class InvalidStateException extends __BaseException {
|
|
148
|
+
readonly name: "InvalidStateException";
|
|
149
|
+
readonly $fault: "client";
|
|
141
150
|
Message?: string;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
142
155
|
}
|
|
143
156
|
/**
|
|
144
157
|
* <p>Describes a tag that is applied to an App Runner resource. A tag is a metadata item consisting of a key-value pair.</p>
|
|
@@ -288,10 +301,14 @@ export declare namespace CreateAutoScalingConfigurationResponse {
|
|
|
288
301
|
* <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
|
|
289
302
|
* <i>Amazon Web Services General Reference</i>.</p>
|
|
290
303
|
*/
|
|
291
|
-
export
|
|
292
|
-
name: "ServiceQuotaExceededException";
|
|
293
|
-
$fault: "client";
|
|
304
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
305
|
+
readonly name: "ServiceQuotaExceededException";
|
|
306
|
+
readonly $fault: "client";
|
|
294
307
|
Message?: string;
|
|
308
|
+
/**
|
|
309
|
+
* @internal
|
|
310
|
+
*/
|
|
311
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
295
312
|
}
|
|
296
313
|
export declare enum ProviderType {
|
|
297
314
|
GITHUB = "GITHUB"
|
|
@@ -526,7 +543,10 @@ export declare namespace AuthenticationConfiguration {
|
|
|
526
543
|
const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
|
|
527
544
|
}
|
|
528
545
|
export declare enum Runtime {
|
|
546
|
+
CORRETTO_11 = "CORRETTO_11",
|
|
547
|
+
CORRETTO_8 = "CORRETTO_8",
|
|
529
548
|
NODEJS_12 = "NODEJS_12",
|
|
549
|
+
NODEJS_14 = "NODEJS_14",
|
|
530
550
|
PYTHON_3 = "PYTHON_3"
|
|
531
551
|
}
|
|
532
552
|
/**
|
|
@@ -1044,10 +1064,14 @@ export declare namespace DeleteAutoScalingConfigurationResponse {
|
|
|
1044
1064
|
/**
|
|
1045
1065
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
1046
1066
|
*/
|
|
1047
|
-
export
|
|
1048
|
-
name: "ResourceNotFoundException";
|
|
1049
|
-
$fault: "client";
|
|
1067
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
1068
|
+
readonly name: "ResourceNotFoundException";
|
|
1069
|
+
readonly $fault: "client";
|
|
1050
1070
|
Message?: string;
|
|
1071
|
+
/**
|
|
1072
|
+
* @internal
|
|
1073
|
+
*/
|
|
1074
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1051
1075
|
}
|
|
1052
1076
|
export interface DeleteConnectionRequest {
|
|
1053
1077
|
/**
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class AppRunnerServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
|
|
2
3
|
export interface AssociateCustomDomainRequest {
|
|
3
4
|
|
|
4
5
|
ServiceArn: string | undefined;
|
|
@@ -68,22 +69,28 @@ export declare namespace AssociateCustomDomainResponse {
|
|
|
68
69
|
const filterSensitiveLog: (obj: AssociateCustomDomainResponse) => any;
|
|
69
70
|
}
|
|
70
71
|
|
|
71
|
-
export
|
|
72
|
-
name: "InternalServiceErrorException";
|
|
73
|
-
$fault: "server";
|
|
72
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
73
|
+
readonly name: "InternalServiceErrorException";
|
|
74
|
+
readonly $fault: "server";
|
|
74
75
|
Message?: string;
|
|
76
|
+
|
|
77
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
75
78
|
}
|
|
76
79
|
|
|
77
|
-
export
|
|
78
|
-
name: "InvalidRequestException";
|
|
79
|
-
$fault: "client";
|
|
80
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
81
|
+
readonly name: "InvalidRequestException";
|
|
82
|
+
readonly $fault: "client";
|
|
80
83
|
Message?: string;
|
|
84
|
+
|
|
85
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
81
86
|
}
|
|
82
87
|
|
|
83
|
-
export
|
|
84
|
-
name: "InvalidStateException";
|
|
85
|
-
$fault: "client";
|
|
88
|
+
export declare class InvalidStateException extends __BaseException {
|
|
89
|
+
readonly name: "InvalidStateException";
|
|
90
|
+
readonly $fault: "client";
|
|
86
91
|
Message?: string;
|
|
92
|
+
|
|
93
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
87
94
|
}
|
|
88
95
|
|
|
89
96
|
export interface Tag {
|
|
@@ -152,10 +159,12 @@ export declare namespace CreateAutoScalingConfigurationResponse {
|
|
|
152
159
|
const filterSensitiveLog: (obj: CreateAutoScalingConfigurationResponse) => any;
|
|
153
160
|
}
|
|
154
161
|
|
|
155
|
-
export
|
|
156
|
-
name: "ServiceQuotaExceededException";
|
|
157
|
-
$fault: "client";
|
|
162
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
163
|
+
readonly name: "ServiceQuotaExceededException";
|
|
164
|
+
readonly $fault: "client";
|
|
158
165
|
Message?: string;
|
|
166
|
+
|
|
167
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
159
168
|
}
|
|
160
169
|
export declare enum ProviderType {
|
|
161
170
|
GITHUB = "GITHUB"
|
|
@@ -284,7 +293,10 @@ export declare namespace AuthenticationConfiguration {
|
|
|
284
293
|
const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
|
|
285
294
|
}
|
|
286
295
|
export declare enum Runtime {
|
|
296
|
+
CORRETTO_11 = "CORRETTO_11",
|
|
297
|
+
CORRETTO_8 = "CORRETTO_8",
|
|
287
298
|
NODEJS_12 = "NODEJS_12",
|
|
299
|
+
NODEJS_14 = "NODEJS_14",
|
|
288
300
|
PYTHON_3 = "PYTHON_3"
|
|
289
301
|
}
|
|
290
302
|
|
|
@@ -549,10 +561,12 @@ export declare namespace DeleteAutoScalingConfigurationResponse {
|
|
|
549
561
|
const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationResponse) => any;
|
|
550
562
|
}
|
|
551
563
|
|
|
552
|
-
export
|
|
553
|
-
name: "ResourceNotFoundException";
|
|
554
|
-
$fault: "client";
|
|
564
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
565
|
+
readonly name: "ResourceNotFoundException";
|
|
566
|
+
readonly $fault: "client";
|
|
555
567
|
Message?: string;
|
|
568
|
+
|
|
569
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
556
570
|
}
|
|
557
571
|
export interface DeleteConnectionRequest {
|
|
558
572
|
|
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.53.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",
|
|
@@ -18,34 +18,34 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
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.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|