@aws-sdk/client-appconfigdata 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.
- package/dist-cjs/index.js +0 -18
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +65 -0
- package/dist-es/models/models_0.js +0 -65
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +76 -0
- package/dist-types/models/models_0.d.ts +0 -75
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +39 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -38
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -117,14 +117,6 @@ let AppConfigDataServiceException$1 = class AppConfigDataServiceException extend
|
|
|
117
117
|
}
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const InvalidParameterProblem = {
|
|
121
|
-
CORRUPTED: "Corrupted",
|
|
122
|
-
EXPIRED: "Expired",
|
|
123
|
-
POLL_INTERVAL_NOT_SATISFIED: "PollIntervalNotSatisfied",
|
|
124
|
-
};
|
|
125
|
-
const BadRequestReason = {
|
|
126
|
-
INVALID_PARAMETERS: "InvalidParameters",
|
|
127
|
-
};
|
|
128
120
|
let BadRequestException$1 = class BadRequestException extends AppConfigDataServiceException$1 {
|
|
129
121
|
name = "BadRequestException";
|
|
130
122
|
$fault = "client";
|
|
@@ -157,13 +149,6 @@ let InternalServerException$1 = class InternalServerException extends AppConfigD
|
|
|
157
149
|
this.Message = opts.Message;
|
|
158
150
|
}
|
|
159
151
|
};
|
|
160
|
-
const ResourceType = {
|
|
161
|
-
APPLICATION: "Application",
|
|
162
|
-
CONFIGURATION: "Configuration",
|
|
163
|
-
CONFIGURATION_PROFILE: "ConfigurationProfile",
|
|
164
|
-
DEPLOYMENT: "Deployment",
|
|
165
|
-
ENVIRONMENT: "Environment",
|
|
166
|
-
};
|
|
167
152
|
let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppConfigDataServiceException$1 {
|
|
168
153
|
name = "ResourceNotFoundException";
|
|
169
154
|
$fault = "client";
|
|
@@ -420,11 +405,8 @@ exports.AppConfigData = AppConfigData;
|
|
|
420
405
|
exports.AppConfigDataClient = AppConfigDataClient;
|
|
421
406
|
exports.AppConfigDataServiceException = AppConfigDataServiceException$1;
|
|
422
407
|
exports.BadRequestException = BadRequestException$1;
|
|
423
|
-
exports.BadRequestReason = BadRequestReason;
|
|
424
408
|
exports.GetLatestConfigurationCommand = GetLatestConfigurationCommand;
|
|
425
409
|
exports.InternalServerException = InternalServerException$1;
|
|
426
|
-
exports.InvalidParameterProblem = InvalidParameterProblem;
|
|
427
410
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
428
|
-
exports.ResourceType = ResourceType;
|
|
429
411
|
exports.StartConfigurationSessionCommand = StartConfigurationSessionCommand;
|
|
430
412
|
exports.ThrottlingException = ThrottlingException$1;
|
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
2
|
+
export class BadRequestException extends __BaseException {
|
|
3
|
+
name = "BadRequestException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
6
|
+
Reason;
|
|
7
|
+
Details;
|
|
8
|
+
constructor(opts) {
|
|
9
|
+
super({
|
|
10
|
+
name: "BadRequestException",
|
|
11
|
+
$fault: "client",
|
|
12
|
+
...opts,
|
|
13
|
+
});
|
|
14
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
15
|
+
this.Message = opts.Message;
|
|
16
|
+
this.Reason = opts.Reason;
|
|
17
|
+
this.Details = opts.Details;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export class InternalServerException extends __BaseException {
|
|
21
|
+
name = "InternalServerException";
|
|
22
|
+
$fault = "server";
|
|
23
|
+
Message;
|
|
24
|
+
constructor(opts) {
|
|
25
|
+
super({
|
|
26
|
+
name: "InternalServerException",
|
|
27
|
+
$fault: "server",
|
|
28
|
+
...opts,
|
|
29
|
+
});
|
|
30
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
31
|
+
this.Message = opts.Message;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
35
|
+
name = "ResourceNotFoundException";
|
|
36
|
+
$fault = "client";
|
|
37
|
+
Message;
|
|
38
|
+
ResourceType;
|
|
39
|
+
ReferencedBy;
|
|
40
|
+
constructor(opts) {
|
|
41
|
+
super({
|
|
42
|
+
name: "ResourceNotFoundException",
|
|
43
|
+
$fault: "client",
|
|
44
|
+
...opts,
|
|
45
|
+
});
|
|
46
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
47
|
+
this.Message = opts.Message;
|
|
48
|
+
this.ResourceType = opts.ResourceType;
|
|
49
|
+
this.ReferencedBy = opts.ReferencedBy;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export class ThrottlingException extends __BaseException {
|
|
53
|
+
name = "ThrottlingException";
|
|
54
|
+
$fault = "client";
|
|
55
|
+
Message;
|
|
56
|
+
constructor(opts) {
|
|
57
|
+
super({
|
|
58
|
+
name: "ThrottlingException",
|
|
59
|
+
$fault: "client",
|
|
60
|
+
...opts,
|
|
61
|
+
});
|
|
62
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
63
|
+
this.Message = opts.Message;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
2
1
|
export const InvalidParameterProblem = {
|
|
3
2
|
CORRUPTED: "Corrupted",
|
|
4
3
|
EXPIRED: "Expired",
|
|
@@ -7,38 +6,6 @@ export const InvalidParameterProblem = {
|
|
|
7
6
|
export const BadRequestReason = {
|
|
8
7
|
INVALID_PARAMETERS: "InvalidParameters",
|
|
9
8
|
};
|
|
10
|
-
export class BadRequestException extends __BaseException {
|
|
11
|
-
name = "BadRequestException";
|
|
12
|
-
$fault = "client";
|
|
13
|
-
Message;
|
|
14
|
-
Reason;
|
|
15
|
-
Details;
|
|
16
|
-
constructor(opts) {
|
|
17
|
-
super({
|
|
18
|
-
name: "BadRequestException",
|
|
19
|
-
$fault: "client",
|
|
20
|
-
...opts,
|
|
21
|
-
});
|
|
22
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
23
|
-
this.Message = opts.Message;
|
|
24
|
-
this.Reason = opts.Reason;
|
|
25
|
-
this.Details = opts.Details;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
export class InternalServerException extends __BaseException {
|
|
29
|
-
name = "InternalServerException";
|
|
30
|
-
$fault = "server";
|
|
31
|
-
Message;
|
|
32
|
-
constructor(opts) {
|
|
33
|
-
super({
|
|
34
|
-
name: "InternalServerException",
|
|
35
|
-
$fault: "server",
|
|
36
|
-
...opts,
|
|
37
|
-
});
|
|
38
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
39
|
-
this.Message = opts.Message;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
9
|
export const ResourceType = {
|
|
43
10
|
APPLICATION: "Application",
|
|
44
11
|
CONFIGURATION: "Configuration",
|
|
@@ -46,35 +13,3 @@ export const ResourceType = {
|
|
|
46
13
|
DEPLOYMENT: "Deployment",
|
|
47
14
|
ENVIRONMENT: "Environment",
|
|
48
15
|
};
|
|
49
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
50
|
-
name = "ResourceNotFoundException";
|
|
51
|
-
$fault = "client";
|
|
52
|
-
Message;
|
|
53
|
-
ResourceType;
|
|
54
|
-
ReferencedBy;
|
|
55
|
-
constructor(opts) {
|
|
56
|
-
super({
|
|
57
|
-
name: "ResourceNotFoundException",
|
|
58
|
-
$fault: "client",
|
|
59
|
-
...opts,
|
|
60
|
-
});
|
|
61
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
62
|
-
this.Message = opts.Message;
|
|
63
|
-
this.ResourceType = opts.ResourceType;
|
|
64
|
-
this.ReferencedBy = opts.ReferencedBy;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
export class ThrottlingException extends __BaseException {
|
|
68
|
-
name = "ThrottlingException";
|
|
69
|
-
$fault = "client";
|
|
70
|
-
Message;
|
|
71
|
-
constructor(opts) {
|
|
72
|
-
super({
|
|
73
|
-
name: "ThrottlingException",
|
|
74
|
-
$fault: "client",
|
|
75
|
-
...opts,
|
|
76
|
-
});
|
|
77
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
78
|
-
this.Message = opts.Message;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
@@ -46,7 +46,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appconfigdata";
|
|
|
46
46
|
const n0 = "com.amazonaws.appconfigdata";
|
|
47
47
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
48
48
|
import { AppConfigDataServiceException as __AppConfigDataServiceException } from "../models/AppConfigDataServiceException";
|
|
49
|
-
import { BadRequestException as __BadRequestException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, } from "../models/
|
|
49
|
+
import { BadRequestException as __BadRequestException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, } from "../models/errors";
|
|
50
50
|
export var SensitiveBlob = [0, n0, _SB, 8, 21];
|
|
51
51
|
export var BadRequestException = [
|
|
52
52
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -67,5 +67,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
67
67
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
68
68
|
export type { AppConfigDataExtensionConfiguration } from "./extensionConfiguration";
|
|
69
69
|
export * from "./commands";
|
|
70
|
-
export * from "./models";
|
|
70
|
+
export * from "./models/errors";
|
|
71
|
+
export type * from "./models/models_0";
|
|
71
72
|
export { AppConfigDataServiceException } from "./models/AppConfigDataServiceException";
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
3
|
+
import { BadRequestDetails, BadRequestReason, ResourceType } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class BadRequestException extends __BaseException {
|
|
9
|
+
readonly name: "BadRequestException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
Message?: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>Code indicating the reason the request was invalid.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
Reason?: BadRequestReason | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>Details describing why the request was invalid.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
Details?: BadRequestDetails | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>There was an internal failure in the service.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class InternalServerException extends __BaseException {
|
|
32
|
+
readonly name: "InternalServerException";
|
|
33
|
+
readonly $fault: "server";
|
|
34
|
+
Message?: string | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p>The requested resource could not be found.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
45
|
+
readonly name: "ResourceNotFoundException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
Message?: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The type of resource that was not found.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
ResourceType?: ResourceType | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>A map indicating which parameters in the request reference the resource that was not
|
|
55
|
+
* found.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
ReferencedBy?: Record<string, string> | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>The request was denied due to request throttling.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class ThrottlingException extends __BaseException {
|
|
69
|
+
readonly name: "ThrottlingException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
Message?: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
76
|
+
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
3
1
|
/**
|
|
4
2
|
* @public
|
|
5
3
|
* @enum
|
|
@@ -82,42 +80,6 @@ export declare const BadRequestReason: {
|
|
|
82
80
|
* @public
|
|
83
81
|
*/
|
|
84
82
|
export type BadRequestReason = (typeof BadRequestReason)[keyof typeof BadRequestReason];
|
|
85
|
-
/**
|
|
86
|
-
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
87
|
-
* @public
|
|
88
|
-
*/
|
|
89
|
-
export declare class BadRequestException extends __BaseException {
|
|
90
|
-
readonly name: "BadRequestException";
|
|
91
|
-
readonly $fault: "client";
|
|
92
|
-
Message?: string | undefined;
|
|
93
|
-
/**
|
|
94
|
-
* <p>Code indicating the reason the request was invalid.</p>
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
Reason?: BadRequestReason | undefined;
|
|
98
|
-
/**
|
|
99
|
-
* <p>Details describing why the request was invalid.</p>
|
|
100
|
-
* @public
|
|
101
|
-
*/
|
|
102
|
-
Details?: BadRequestDetails | undefined;
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
107
|
-
}
|
|
108
|
-
/**
|
|
109
|
-
* <p>There was an internal failure in the service.</p>
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
export declare class InternalServerException extends __BaseException {
|
|
113
|
-
readonly name: "InternalServerException";
|
|
114
|
-
readonly $fault: "server";
|
|
115
|
-
Message?: string | undefined;
|
|
116
|
-
/**
|
|
117
|
-
* @internal
|
|
118
|
-
*/
|
|
119
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
120
|
-
}
|
|
121
83
|
/**
|
|
122
84
|
* @public
|
|
123
85
|
* @enum
|
|
@@ -148,30 +110,6 @@ export declare const ResourceType: {
|
|
|
148
110
|
* @public
|
|
149
111
|
*/
|
|
150
112
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
151
|
-
/**
|
|
152
|
-
* <p>The requested resource could not be found.</p>
|
|
153
|
-
* @public
|
|
154
|
-
*/
|
|
155
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
156
|
-
readonly name: "ResourceNotFoundException";
|
|
157
|
-
readonly $fault: "client";
|
|
158
|
-
Message?: string | undefined;
|
|
159
|
-
/**
|
|
160
|
-
* <p>The type of resource that was not found.</p>
|
|
161
|
-
* @public
|
|
162
|
-
*/
|
|
163
|
-
ResourceType?: ResourceType | undefined;
|
|
164
|
-
/**
|
|
165
|
-
* <p>A map indicating which parameters in the request reference the resource that was not
|
|
166
|
-
* found.</p>
|
|
167
|
-
* @public
|
|
168
|
-
*/
|
|
169
|
-
ReferencedBy?: Record<string, string> | undefined;
|
|
170
|
-
/**
|
|
171
|
-
* @internal
|
|
172
|
-
*/
|
|
173
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
174
|
-
}
|
|
175
113
|
/**
|
|
176
114
|
* @public
|
|
177
115
|
*/
|
|
@@ -222,19 +160,6 @@ export interface StartConfigurationSessionResponse {
|
|
|
222
160
|
*/
|
|
223
161
|
InitialConfigurationToken?: string | undefined;
|
|
224
162
|
}
|
|
225
|
-
/**
|
|
226
|
-
* <p>The request was denied due to request throttling.</p>
|
|
227
|
-
* @public
|
|
228
|
-
*/
|
|
229
|
-
export declare class ThrottlingException extends __BaseException {
|
|
230
|
-
readonly name: "ThrottlingException";
|
|
231
|
-
readonly $fault: "client";
|
|
232
|
-
Message?: string | undefined;
|
|
233
|
-
/**
|
|
234
|
-
* @internal
|
|
235
|
-
*/
|
|
236
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
237
|
-
}
|
|
238
163
|
/**
|
|
239
164
|
* @public
|
|
240
165
|
*/
|
|
@@ -4,5 +4,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { AppConfigDataExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
-
export * from "./models";
|
|
7
|
+
export * from "./models/errors";
|
|
8
|
+
export * from "./models/models_0";
|
|
8
9
|
export { AppConfigDataServiceException } from "./models/AppConfigDataServiceException";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
3
|
+
import { BadRequestDetails, BadRequestReason, ResourceType } from "./models_0";
|
|
4
|
+
export declare class BadRequestException extends __BaseException {
|
|
5
|
+
readonly name: "BadRequestException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message?: string | undefined;
|
|
8
|
+
Reason?: BadRequestReason | undefined;
|
|
9
|
+
Details?: BadRequestDetails | undefined;
|
|
10
|
+
constructor(
|
|
11
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
12
|
+
);
|
|
13
|
+
}
|
|
14
|
+
export declare class InternalServerException extends __BaseException {
|
|
15
|
+
readonly name: "InternalServerException";
|
|
16
|
+
readonly $fault: "server";
|
|
17
|
+
Message?: string | undefined;
|
|
18
|
+
constructor(
|
|
19
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
23
|
+
readonly name: "ResourceNotFoundException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
Message?: string | undefined;
|
|
26
|
+
ResourceType?: ResourceType | undefined;
|
|
27
|
+
ReferencedBy?: Record<string, string> | undefined;
|
|
28
|
+
constructor(
|
|
29
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
export declare class ThrottlingException extends __BaseException {
|
|
33
|
+
readonly name: "ThrottlingException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
Message?: string | undefined;
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
3
1
|
export declare const InvalidParameterProblem: {
|
|
4
2
|
readonly CORRUPTED: "Corrupted";
|
|
5
3
|
readonly EXPIRED: "Expired";
|
|
@@ -32,24 +30,6 @@ export declare const BadRequestReason: {
|
|
|
32
30
|
};
|
|
33
31
|
export type BadRequestReason =
|
|
34
32
|
(typeof BadRequestReason)[keyof typeof BadRequestReason];
|
|
35
|
-
export declare class BadRequestException extends __BaseException {
|
|
36
|
-
readonly name: "BadRequestException";
|
|
37
|
-
readonly $fault: "client";
|
|
38
|
-
Message?: string | undefined;
|
|
39
|
-
Reason?: BadRequestReason | undefined;
|
|
40
|
-
Details?: BadRequestDetails | undefined;
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
43
|
-
);
|
|
44
|
-
}
|
|
45
|
-
export declare class InternalServerException extends __BaseException {
|
|
46
|
-
readonly name: "InternalServerException";
|
|
47
|
-
readonly $fault: "server";
|
|
48
|
-
Message?: string | undefined;
|
|
49
|
-
constructor(
|
|
50
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
51
|
-
);
|
|
52
|
-
}
|
|
53
33
|
export declare const ResourceType: {
|
|
54
34
|
readonly APPLICATION: "Application";
|
|
55
35
|
readonly CONFIGURATION: "Configuration";
|
|
@@ -58,16 +38,6 @@ export declare const ResourceType: {
|
|
|
58
38
|
readonly ENVIRONMENT: "Environment";
|
|
59
39
|
};
|
|
60
40
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
61
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
62
|
-
readonly name: "ResourceNotFoundException";
|
|
63
|
-
readonly $fault: "client";
|
|
64
|
-
Message?: string | undefined;
|
|
65
|
-
ResourceType?: ResourceType | undefined;
|
|
66
|
-
ReferencedBy?: Record<string, string> | undefined;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
69
|
-
);
|
|
70
|
-
}
|
|
71
41
|
export interface StartConfigurationSessionRequest {
|
|
72
42
|
ApplicationIdentifier: string | undefined;
|
|
73
43
|
EnvironmentIdentifier: string | undefined;
|
|
@@ -77,14 +47,6 @@ export interface StartConfigurationSessionRequest {
|
|
|
77
47
|
export interface StartConfigurationSessionResponse {
|
|
78
48
|
InitialConfigurationToken?: string | undefined;
|
|
79
49
|
}
|
|
80
|
-
export declare class ThrottlingException extends __BaseException {
|
|
81
|
-
readonly name: "ThrottlingException";
|
|
82
|
-
readonly $fault: "client";
|
|
83
|
-
Message?: string | undefined;
|
|
84
|
-
constructor(
|
|
85
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
86
|
-
);
|
|
87
|
-
}
|
|
88
50
|
export interface GetLatestConfigurationRequest {
|
|
89
51
|
ConfigurationToken: string | undefined;
|
|
90
52
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfigdata",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfigdata Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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-appconfigdata",
|
|
@@ -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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
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.
|
|
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.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
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.
|
|
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.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
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",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|