@aws-sdk/client-appconfig 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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppConfigServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +93 -2
- package/dist-cjs/protocols/Aws_restJson1.js +293 -995
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppConfigServiceException.js +12 -0
- package/dist-es/models/models_0.js +86 -1
- package/dist-es/protocols/Aws_restJson1.js +647 -1134
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppConfigServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppConfigServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- 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 AppConfig service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AppConfigServiceException 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 { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
|
|
2
3
|
export interface Application {
|
|
3
4
|
/**
|
|
4
5
|
* <p>The application ID.</p>
|
|
@@ -83,9 +84,9 @@ export declare enum BadRequestReason {
|
|
|
83
84
|
/**
|
|
84
85
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
85
86
|
*/
|
|
86
|
-
export
|
|
87
|
-
name: "BadRequestException";
|
|
88
|
-
$fault: "client";
|
|
87
|
+
export declare class BadRequestException extends __BaseException {
|
|
88
|
+
readonly name: "BadRequestException";
|
|
89
|
+
readonly $fault: "client";
|
|
89
90
|
Message?: string;
|
|
90
91
|
Reason?: BadRequestReason | string;
|
|
91
92
|
/**
|
|
@@ -93,6 +94,10 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
|
|
|
93
94
|
* a call.</p>
|
|
94
95
|
*/
|
|
95
96
|
Details?: BadRequestDetails;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
96
101
|
}
|
|
97
102
|
export interface CreateApplicationRequest {
|
|
98
103
|
/**
|
|
@@ -121,10 +126,14 @@ export declare namespace CreateApplicationRequest {
|
|
|
121
126
|
/**
|
|
122
127
|
* <p>There was an internal failure in the AppConfig service.</p>
|
|
123
128
|
*/
|
|
124
|
-
export
|
|
125
|
-
name: "InternalServerException";
|
|
126
|
-
$fault: "server";
|
|
129
|
+
export declare class InternalServerException extends __BaseException {
|
|
130
|
+
readonly name: "InternalServerException";
|
|
131
|
+
readonly $fault: "server";
|
|
127
132
|
Message?: string;
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
136
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
128
137
|
}
|
|
129
138
|
export declare enum ValidatorType {
|
|
130
139
|
JSON_SCHEMA = "JSON_SCHEMA",
|
|
@@ -280,11 +289,15 @@ export declare namespace CreateConfigurationProfileRequest {
|
|
|
280
289
|
/**
|
|
281
290
|
* <p>The requested resource could not be found.</p>
|
|
282
291
|
*/
|
|
283
|
-
export
|
|
284
|
-
name: "ResourceNotFoundException";
|
|
285
|
-
$fault: "client";
|
|
292
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
293
|
+
readonly name: "ResourceNotFoundException";
|
|
294
|
+
readonly $fault: "client";
|
|
286
295
|
Message?: string;
|
|
287
296
|
ResourceName?: string;
|
|
297
|
+
/**
|
|
298
|
+
* @internal
|
|
299
|
+
*/
|
|
300
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
288
301
|
}
|
|
289
302
|
export declare enum GrowthType {
|
|
290
303
|
EXPONENTIAL = "EXPONENTIAL",
|
|
@@ -507,10 +520,14 @@ export declare namespace Environment {
|
|
|
507
520
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
508
521
|
* resource.</p>
|
|
509
522
|
*/
|
|
510
|
-
export
|
|
511
|
-
name: "ConflictException";
|
|
512
|
-
$fault: "client";
|
|
523
|
+
export declare class ConflictException extends __BaseException {
|
|
524
|
+
readonly name: "ConflictException";
|
|
525
|
+
readonly $fault: "client";
|
|
513
526
|
Message?: string;
|
|
527
|
+
/**
|
|
528
|
+
* @internal
|
|
529
|
+
*/
|
|
530
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
514
531
|
}
|
|
515
532
|
export interface CreateHostedConfigurationVersionRequest {
|
|
516
533
|
/**
|
|
@@ -587,22 +604,30 @@ export declare enum BytesMeasure {
|
|
|
587
604
|
/**
|
|
588
605
|
* <p>The configuration size is too large.</p>
|
|
589
606
|
*/
|
|
590
|
-
export
|
|
591
|
-
name: "PayloadTooLargeException";
|
|
592
|
-
$fault: "client";
|
|
607
|
+
export declare class PayloadTooLargeException extends __BaseException {
|
|
608
|
+
readonly name: "PayloadTooLargeException";
|
|
609
|
+
readonly $fault: "client";
|
|
593
610
|
Message?: string;
|
|
594
611
|
Measure?: BytesMeasure | string;
|
|
595
612
|
Limit?: number;
|
|
596
613
|
Size?: number;
|
|
614
|
+
/**
|
|
615
|
+
* @internal
|
|
616
|
+
*/
|
|
617
|
+
constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
|
|
597
618
|
}
|
|
598
619
|
/**
|
|
599
620
|
* <p>The number of hosted configuration versions exceeds the limit for the AppConfig hosted
|
|
600
621
|
* configuration store. Delete one or more versions and try again.</p>
|
|
601
622
|
*/
|
|
602
|
-
export
|
|
603
|
-
name: "ServiceQuotaExceededException";
|
|
604
|
-
$fault: "client";
|
|
623
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
624
|
+
readonly name: "ServiceQuotaExceededException";
|
|
625
|
+
readonly $fault: "client";
|
|
605
626
|
Message?: string;
|
|
627
|
+
/**
|
|
628
|
+
* @internal
|
|
629
|
+
*/
|
|
630
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
606
631
|
}
|
|
607
632
|
export interface DeleteApplicationRequest {
|
|
608
633
|
/**
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class AppConfigServiceException 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 { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
|
|
2
3
|
export interface Application {
|
|
3
4
|
|
|
4
5
|
Id?: string;
|
|
@@ -53,13 +54,15 @@ export declare enum BadRequestReason {
|
|
|
53
54
|
INVALID_CONFIGURATION = "InvalidConfiguration"
|
|
54
55
|
}
|
|
55
56
|
|
|
56
|
-
export
|
|
57
|
-
name: "BadRequestException";
|
|
58
|
-
$fault: "client";
|
|
57
|
+
export declare class BadRequestException extends __BaseException {
|
|
58
|
+
readonly name: "BadRequestException";
|
|
59
|
+
readonly $fault: "client";
|
|
59
60
|
Message?: string;
|
|
60
61
|
Reason?: BadRequestReason | string;
|
|
61
62
|
|
|
62
63
|
Details?: BadRequestDetails;
|
|
64
|
+
|
|
65
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
63
66
|
}
|
|
64
67
|
export interface CreateApplicationRequest {
|
|
65
68
|
|
|
@@ -76,10 +79,12 @@ export declare namespace CreateApplicationRequest {
|
|
|
76
79
|
const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
77
80
|
}
|
|
78
81
|
|
|
79
|
-
export
|
|
80
|
-
name: "InternalServerException";
|
|
81
|
-
$fault: "server";
|
|
82
|
+
export declare class InternalServerException extends __BaseException {
|
|
83
|
+
readonly name: "InternalServerException";
|
|
84
|
+
readonly $fault: "server";
|
|
82
85
|
Message?: string;
|
|
86
|
+
|
|
87
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
83
88
|
}
|
|
84
89
|
export declare enum ValidatorType {
|
|
85
90
|
JSON_SCHEMA = "JSON_SCHEMA",
|
|
@@ -143,11 +148,13 @@ export declare namespace CreateConfigurationProfileRequest {
|
|
|
143
148
|
const filterSensitiveLog: (obj: CreateConfigurationProfileRequest) => any;
|
|
144
149
|
}
|
|
145
150
|
|
|
146
|
-
export
|
|
147
|
-
name: "ResourceNotFoundException";
|
|
148
|
-
$fault: "client";
|
|
151
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
152
|
+
readonly name: "ResourceNotFoundException";
|
|
153
|
+
readonly $fault: "client";
|
|
149
154
|
Message?: string;
|
|
150
155
|
ResourceName?: string;
|
|
156
|
+
|
|
157
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
151
158
|
}
|
|
152
159
|
export declare enum GrowthType {
|
|
153
160
|
EXPONENTIAL = "EXPONENTIAL",
|
|
@@ -257,10 +264,12 @@ export declare namespace Environment {
|
|
|
257
264
|
const filterSensitiveLog: (obj: Environment) => any;
|
|
258
265
|
}
|
|
259
266
|
|
|
260
|
-
export
|
|
261
|
-
name: "ConflictException";
|
|
262
|
-
$fault: "client";
|
|
267
|
+
export declare class ConflictException extends __BaseException {
|
|
268
|
+
readonly name: "ConflictException";
|
|
269
|
+
readonly $fault: "client";
|
|
263
270
|
Message?: string;
|
|
271
|
+
|
|
272
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
264
273
|
}
|
|
265
274
|
export interface CreateHostedConfigurationVersionRequest {
|
|
266
275
|
|
|
@@ -302,19 +311,23 @@ export declare enum BytesMeasure {
|
|
|
302
311
|
KILOBYTES = "KILOBYTES"
|
|
303
312
|
}
|
|
304
313
|
|
|
305
|
-
export
|
|
306
|
-
name: "PayloadTooLargeException";
|
|
307
|
-
$fault: "client";
|
|
314
|
+
export declare class PayloadTooLargeException extends __BaseException {
|
|
315
|
+
readonly name: "PayloadTooLargeException";
|
|
316
|
+
readonly $fault: "client";
|
|
308
317
|
Message?: string;
|
|
309
318
|
Measure?: BytesMeasure | string;
|
|
310
319
|
Limit?: number;
|
|
311
320
|
Size?: number;
|
|
321
|
+
|
|
322
|
+
constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
|
|
312
323
|
}
|
|
313
324
|
|
|
314
|
-
export
|
|
315
|
-
name: "ServiceQuotaExceededException";
|
|
316
|
-
$fault: "client";
|
|
325
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
326
|
+
readonly name: "ServiceQuotaExceededException";
|
|
327
|
+
readonly $fault: "client";
|
|
317
328
|
Message?: string;
|
|
329
|
+
|
|
330
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
318
331
|
}
|
|
319
332
|
export interface DeleteApplicationRequest {
|
|
320
333
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfig",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfig 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"
|