@aws-sdk/client-appconfig 3.50.0 → 3.51.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 +8 -0
- package/dist-types/ts3.4/AppConfig.d.ts +170 -0
- package/dist-types/ts3.4/AppConfigClient.d.ts +106 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateConfigurationProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDeploymentStrategyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateHostedConfigurationVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDeploymentStrategyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteHostedConfigurationVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetConfigurationProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDeploymentStrategyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetHostedConfigurationVersionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListConfigurationProfilesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDeploymentStrategiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListHostedConfigurationVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateConfigurationProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDeploymentStrategyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ValidateConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +33 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +882 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListConfigurationProfilesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDeploymentStrategiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListHostedConfigurationVersionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,882 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
export interface Application {
|
|
3
|
+
|
|
4
|
+
Id?: string;
|
|
5
|
+
|
|
6
|
+
Name?: string;
|
|
7
|
+
|
|
8
|
+
Description?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare namespace Application {
|
|
11
|
+
|
|
12
|
+
const filterSensitiveLog: (obj: Application) => any;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface InvalidConfigurationDetail {
|
|
16
|
+
|
|
17
|
+
Constraint?: string;
|
|
18
|
+
|
|
19
|
+
Location?: string;
|
|
20
|
+
|
|
21
|
+
Reason?: string;
|
|
22
|
+
|
|
23
|
+
Type?: string;
|
|
24
|
+
}
|
|
25
|
+
export declare namespace InvalidConfigurationDetail {
|
|
26
|
+
|
|
27
|
+
const filterSensitiveLog: (obj: InvalidConfigurationDetail) => any;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export declare type BadRequestDetails = BadRequestDetails.InvalidConfigurationMember | BadRequestDetails.$UnknownMember;
|
|
31
|
+
export declare namespace BadRequestDetails {
|
|
32
|
+
|
|
33
|
+
interface InvalidConfigurationMember {
|
|
34
|
+
InvalidConfiguration: InvalidConfigurationDetail[];
|
|
35
|
+
$unknown?: never;
|
|
36
|
+
}
|
|
37
|
+
interface $UnknownMember {
|
|
38
|
+
InvalidConfiguration?: never;
|
|
39
|
+
$unknown: [
|
|
40
|
+
string,
|
|
41
|
+
any
|
|
42
|
+
];
|
|
43
|
+
}
|
|
44
|
+
interface Visitor<T> {
|
|
45
|
+
InvalidConfiguration: (value: InvalidConfigurationDetail[]) => T;
|
|
46
|
+
_: (name: string, value: any) => T;
|
|
47
|
+
}
|
|
48
|
+
const visit: <T>(value: BadRequestDetails, visitor: Visitor<T>) => T;
|
|
49
|
+
|
|
50
|
+
const filterSensitiveLog: (obj: BadRequestDetails) => any;
|
|
51
|
+
}
|
|
52
|
+
export declare enum BadRequestReason {
|
|
53
|
+
INVALID_CONFIGURATION = "InvalidConfiguration"
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface BadRequestException extends __SmithyException, $MetadataBearer {
|
|
57
|
+
name: "BadRequestException";
|
|
58
|
+
$fault: "client";
|
|
59
|
+
Message?: string;
|
|
60
|
+
Reason?: BadRequestReason | string;
|
|
61
|
+
|
|
62
|
+
Details?: BadRequestDetails;
|
|
63
|
+
}
|
|
64
|
+
export interface CreateApplicationRequest {
|
|
65
|
+
|
|
66
|
+
Name: string | undefined;
|
|
67
|
+
|
|
68
|
+
Description?: string;
|
|
69
|
+
|
|
70
|
+
Tags?: {
|
|
71
|
+
[key: string]: string;
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
export declare namespace CreateApplicationRequest {
|
|
75
|
+
|
|
76
|
+
const filterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
80
|
+
name: "InternalServerException";
|
|
81
|
+
$fault: "server";
|
|
82
|
+
Message?: string;
|
|
83
|
+
}
|
|
84
|
+
export declare enum ValidatorType {
|
|
85
|
+
JSON_SCHEMA = "JSON_SCHEMA",
|
|
86
|
+
LAMBDA = "LAMBDA"
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface Validator {
|
|
90
|
+
|
|
91
|
+
Type: ValidatorType | string | undefined;
|
|
92
|
+
|
|
93
|
+
Content: string | undefined;
|
|
94
|
+
}
|
|
95
|
+
export declare namespace Validator {
|
|
96
|
+
|
|
97
|
+
const filterSensitiveLog: (obj: Validator) => any;
|
|
98
|
+
}
|
|
99
|
+
export interface ConfigurationProfile {
|
|
100
|
+
|
|
101
|
+
ApplicationId?: string;
|
|
102
|
+
|
|
103
|
+
Id?: string;
|
|
104
|
+
|
|
105
|
+
Name?: string;
|
|
106
|
+
|
|
107
|
+
Description?: string;
|
|
108
|
+
|
|
109
|
+
LocationUri?: string;
|
|
110
|
+
|
|
111
|
+
RetrievalRoleArn?: string;
|
|
112
|
+
|
|
113
|
+
Validators?: Validator[];
|
|
114
|
+
|
|
115
|
+
Type?: string;
|
|
116
|
+
}
|
|
117
|
+
export declare namespace ConfigurationProfile {
|
|
118
|
+
|
|
119
|
+
const filterSensitiveLog: (obj: ConfigurationProfile) => any;
|
|
120
|
+
}
|
|
121
|
+
export interface CreateConfigurationProfileRequest {
|
|
122
|
+
|
|
123
|
+
ApplicationId: string | undefined;
|
|
124
|
+
|
|
125
|
+
Name: string | undefined;
|
|
126
|
+
|
|
127
|
+
Description?: string;
|
|
128
|
+
|
|
129
|
+
LocationUri: string | undefined;
|
|
130
|
+
|
|
131
|
+
RetrievalRoleArn?: string;
|
|
132
|
+
|
|
133
|
+
Validators?: Validator[];
|
|
134
|
+
|
|
135
|
+
Tags?: {
|
|
136
|
+
[key: string]: string;
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
Type?: string;
|
|
140
|
+
}
|
|
141
|
+
export declare namespace CreateConfigurationProfileRequest {
|
|
142
|
+
|
|
143
|
+
const filterSensitiveLog: (obj: CreateConfigurationProfileRequest) => any;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
147
|
+
name: "ResourceNotFoundException";
|
|
148
|
+
$fault: "client";
|
|
149
|
+
Message?: string;
|
|
150
|
+
ResourceName?: string;
|
|
151
|
+
}
|
|
152
|
+
export declare enum GrowthType {
|
|
153
|
+
EXPONENTIAL = "EXPONENTIAL",
|
|
154
|
+
LINEAR = "LINEAR"
|
|
155
|
+
}
|
|
156
|
+
export declare enum ReplicateTo {
|
|
157
|
+
NONE = "NONE",
|
|
158
|
+
SSM_DOCUMENT = "SSM_DOCUMENT"
|
|
159
|
+
}
|
|
160
|
+
export interface CreateDeploymentStrategyRequest {
|
|
161
|
+
|
|
162
|
+
Name: string | undefined;
|
|
163
|
+
|
|
164
|
+
Description?: string;
|
|
165
|
+
|
|
166
|
+
DeploymentDurationInMinutes: number | undefined;
|
|
167
|
+
|
|
168
|
+
FinalBakeTimeInMinutes?: number;
|
|
169
|
+
|
|
170
|
+
GrowthFactor: number | undefined;
|
|
171
|
+
|
|
172
|
+
GrowthType?: GrowthType | string;
|
|
173
|
+
|
|
174
|
+
ReplicateTo: ReplicateTo | string | undefined;
|
|
175
|
+
|
|
176
|
+
Tags?: {
|
|
177
|
+
[key: string]: string;
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
export declare namespace CreateDeploymentStrategyRequest {
|
|
181
|
+
|
|
182
|
+
const filterSensitiveLog: (obj: CreateDeploymentStrategyRequest) => any;
|
|
183
|
+
}
|
|
184
|
+
export interface DeploymentStrategy {
|
|
185
|
+
|
|
186
|
+
Id?: string;
|
|
187
|
+
|
|
188
|
+
Name?: string;
|
|
189
|
+
|
|
190
|
+
Description?: string;
|
|
191
|
+
|
|
192
|
+
DeploymentDurationInMinutes?: number;
|
|
193
|
+
|
|
194
|
+
GrowthType?: GrowthType | string;
|
|
195
|
+
|
|
196
|
+
GrowthFactor?: number;
|
|
197
|
+
|
|
198
|
+
FinalBakeTimeInMinutes?: number;
|
|
199
|
+
|
|
200
|
+
ReplicateTo?: ReplicateTo | string;
|
|
201
|
+
}
|
|
202
|
+
export declare namespace DeploymentStrategy {
|
|
203
|
+
|
|
204
|
+
const filterSensitiveLog: (obj: DeploymentStrategy) => any;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
export interface Monitor {
|
|
208
|
+
|
|
209
|
+
AlarmArn: string | undefined;
|
|
210
|
+
|
|
211
|
+
AlarmRoleArn?: string;
|
|
212
|
+
}
|
|
213
|
+
export declare namespace Monitor {
|
|
214
|
+
|
|
215
|
+
const filterSensitiveLog: (obj: Monitor) => any;
|
|
216
|
+
}
|
|
217
|
+
export interface CreateEnvironmentRequest {
|
|
218
|
+
|
|
219
|
+
ApplicationId: string | undefined;
|
|
220
|
+
|
|
221
|
+
Name: string | undefined;
|
|
222
|
+
|
|
223
|
+
Description?: string;
|
|
224
|
+
|
|
225
|
+
Monitors?: Monitor[];
|
|
226
|
+
|
|
227
|
+
Tags?: {
|
|
228
|
+
[key: string]: string;
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
export declare namespace CreateEnvironmentRequest {
|
|
232
|
+
|
|
233
|
+
const filterSensitiveLog: (obj: CreateEnvironmentRequest) => any;
|
|
234
|
+
}
|
|
235
|
+
export declare enum EnvironmentState {
|
|
236
|
+
DEPLOYING = "DEPLOYING",
|
|
237
|
+
READY_FOR_DEPLOYMENT = "READY_FOR_DEPLOYMENT",
|
|
238
|
+
ROLLED_BACK = "ROLLED_BACK",
|
|
239
|
+
ROLLING_BACK = "ROLLING_BACK"
|
|
240
|
+
}
|
|
241
|
+
export interface Environment {
|
|
242
|
+
|
|
243
|
+
ApplicationId?: string;
|
|
244
|
+
|
|
245
|
+
Id?: string;
|
|
246
|
+
|
|
247
|
+
Name?: string;
|
|
248
|
+
|
|
249
|
+
Description?: string;
|
|
250
|
+
|
|
251
|
+
State?: EnvironmentState | string;
|
|
252
|
+
|
|
253
|
+
Monitors?: Monitor[];
|
|
254
|
+
}
|
|
255
|
+
export declare namespace Environment {
|
|
256
|
+
|
|
257
|
+
const filterSensitiveLog: (obj: Environment) => any;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
261
|
+
name: "ConflictException";
|
|
262
|
+
$fault: "client";
|
|
263
|
+
Message?: string;
|
|
264
|
+
}
|
|
265
|
+
export interface CreateHostedConfigurationVersionRequest {
|
|
266
|
+
|
|
267
|
+
ApplicationId: string | undefined;
|
|
268
|
+
|
|
269
|
+
ConfigurationProfileId: string | undefined;
|
|
270
|
+
|
|
271
|
+
Description?: string;
|
|
272
|
+
|
|
273
|
+
Content: Uint8Array | undefined;
|
|
274
|
+
|
|
275
|
+
ContentType: string | undefined;
|
|
276
|
+
|
|
277
|
+
LatestVersionNumber?: number;
|
|
278
|
+
}
|
|
279
|
+
export declare namespace CreateHostedConfigurationVersionRequest {
|
|
280
|
+
|
|
281
|
+
const filterSensitiveLog: (obj: CreateHostedConfigurationVersionRequest) => any;
|
|
282
|
+
}
|
|
283
|
+
export interface HostedConfigurationVersion {
|
|
284
|
+
|
|
285
|
+
ApplicationId?: string;
|
|
286
|
+
|
|
287
|
+
ConfigurationProfileId?: string;
|
|
288
|
+
|
|
289
|
+
VersionNumber?: number;
|
|
290
|
+
|
|
291
|
+
Description?: string;
|
|
292
|
+
|
|
293
|
+
Content?: Uint8Array;
|
|
294
|
+
|
|
295
|
+
ContentType?: string;
|
|
296
|
+
}
|
|
297
|
+
export declare namespace HostedConfigurationVersion {
|
|
298
|
+
|
|
299
|
+
const filterSensitiveLog: (obj: HostedConfigurationVersion) => any;
|
|
300
|
+
}
|
|
301
|
+
export declare enum BytesMeasure {
|
|
302
|
+
KILOBYTES = "KILOBYTES"
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export interface PayloadTooLargeException extends __SmithyException, $MetadataBearer {
|
|
306
|
+
name: "PayloadTooLargeException";
|
|
307
|
+
$fault: "client";
|
|
308
|
+
Message?: string;
|
|
309
|
+
Measure?: BytesMeasure | string;
|
|
310
|
+
Limit?: number;
|
|
311
|
+
Size?: number;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
315
|
+
name: "ServiceQuotaExceededException";
|
|
316
|
+
$fault: "client";
|
|
317
|
+
Message?: string;
|
|
318
|
+
}
|
|
319
|
+
export interface DeleteApplicationRequest {
|
|
320
|
+
|
|
321
|
+
ApplicationId: string | undefined;
|
|
322
|
+
}
|
|
323
|
+
export declare namespace DeleteApplicationRequest {
|
|
324
|
+
|
|
325
|
+
const filterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
326
|
+
}
|
|
327
|
+
export interface DeleteConfigurationProfileRequest {
|
|
328
|
+
|
|
329
|
+
ApplicationId: string | undefined;
|
|
330
|
+
|
|
331
|
+
ConfigurationProfileId: string | undefined;
|
|
332
|
+
}
|
|
333
|
+
export declare namespace DeleteConfigurationProfileRequest {
|
|
334
|
+
|
|
335
|
+
const filterSensitiveLog: (obj: DeleteConfigurationProfileRequest) => any;
|
|
336
|
+
}
|
|
337
|
+
export interface DeleteDeploymentStrategyRequest {
|
|
338
|
+
|
|
339
|
+
DeploymentStrategyId: string | undefined;
|
|
340
|
+
}
|
|
341
|
+
export declare namespace DeleteDeploymentStrategyRequest {
|
|
342
|
+
|
|
343
|
+
const filterSensitiveLog: (obj: DeleteDeploymentStrategyRequest) => any;
|
|
344
|
+
}
|
|
345
|
+
export interface DeleteEnvironmentRequest {
|
|
346
|
+
|
|
347
|
+
ApplicationId: string | undefined;
|
|
348
|
+
|
|
349
|
+
EnvironmentId: string | undefined;
|
|
350
|
+
}
|
|
351
|
+
export declare namespace DeleteEnvironmentRequest {
|
|
352
|
+
|
|
353
|
+
const filterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
|
|
354
|
+
}
|
|
355
|
+
export interface DeleteHostedConfigurationVersionRequest {
|
|
356
|
+
|
|
357
|
+
ApplicationId: string | undefined;
|
|
358
|
+
|
|
359
|
+
ConfigurationProfileId: string | undefined;
|
|
360
|
+
|
|
361
|
+
VersionNumber: number | undefined;
|
|
362
|
+
}
|
|
363
|
+
export declare namespace DeleteHostedConfigurationVersionRequest {
|
|
364
|
+
|
|
365
|
+
const filterSensitiveLog: (obj: DeleteHostedConfigurationVersionRequest) => any;
|
|
366
|
+
}
|
|
367
|
+
export interface GetApplicationRequest {
|
|
368
|
+
|
|
369
|
+
ApplicationId: string | undefined;
|
|
370
|
+
}
|
|
371
|
+
export declare namespace GetApplicationRequest {
|
|
372
|
+
|
|
373
|
+
const filterSensitiveLog: (obj: GetApplicationRequest) => any;
|
|
374
|
+
}
|
|
375
|
+
export interface Configuration {
|
|
376
|
+
|
|
377
|
+
Content?: Uint8Array;
|
|
378
|
+
|
|
379
|
+
ConfigurationVersion?: string;
|
|
380
|
+
|
|
381
|
+
ContentType?: string;
|
|
382
|
+
}
|
|
383
|
+
export declare namespace Configuration {
|
|
384
|
+
|
|
385
|
+
const filterSensitiveLog: (obj: Configuration) => any;
|
|
386
|
+
}
|
|
387
|
+
export interface GetConfigurationRequest {
|
|
388
|
+
|
|
389
|
+
Application: string | undefined;
|
|
390
|
+
|
|
391
|
+
Environment: string | undefined;
|
|
392
|
+
|
|
393
|
+
Configuration: string | undefined;
|
|
394
|
+
|
|
395
|
+
ClientId: string | undefined;
|
|
396
|
+
|
|
397
|
+
ClientConfigurationVersion?: string;
|
|
398
|
+
}
|
|
399
|
+
export declare namespace GetConfigurationRequest {
|
|
400
|
+
|
|
401
|
+
const filterSensitiveLog: (obj: GetConfigurationRequest) => any;
|
|
402
|
+
}
|
|
403
|
+
export interface GetConfigurationProfileRequest {
|
|
404
|
+
|
|
405
|
+
ApplicationId: string | undefined;
|
|
406
|
+
|
|
407
|
+
ConfigurationProfileId: string | undefined;
|
|
408
|
+
}
|
|
409
|
+
export declare namespace GetConfigurationProfileRequest {
|
|
410
|
+
|
|
411
|
+
const filterSensitiveLog: (obj: GetConfigurationProfileRequest) => any;
|
|
412
|
+
}
|
|
413
|
+
export declare enum DeploymentEventType {
|
|
414
|
+
BAKE_TIME_STARTED = "BAKE_TIME_STARTED",
|
|
415
|
+
DEPLOYMENT_COMPLETED = "DEPLOYMENT_COMPLETED",
|
|
416
|
+
DEPLOYMENT_STARTED = "DEPLOYMENT_STARTED",
|
|
417
|
+
PERCENTAGE_UPDATED = "PERCENTAGE_UPDATED",
|
|
418
|
+
ROLLBACK_COMPLETED = "ROLLBACK_COMPLETED",
|
|
419
|
+
ROLLBACK_STARTED = "ROLLBACK_STARTED"
|
|
420
|
+
}
|
|
421
|
+
export declare enum TriggeredBy {
|
|
422
|
+
APPCONFIG = "APPCONFIG",
|
|
423
|
+
CLOUDWATCH_ALARM = "CLOUDWATCH_ALARM",
|
|
424
|
+
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
425
|
+
USER = "USER"
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export interface DeploymentEvent {
|
|
429
|
+
|
|
430
|
+
EventType?: DeploymentEventType | string;
|
|
431
|
+
|
|
432
|
+
TriggeredBy?: TriggeredBy | string;
|
|
433
|
+
|
|
434
|
+
Description?: string;
|
|
435
|
+
|
|
436
|
+
OccurredAt?: Date;
|
|
437
|
+
}
|
|
438
|
+
export declare namespace DeploymentEvent {
|
|
439
|
+
|
|
440
|
+
const filterSensitiveLog: (obj: DeploymentEvent) => any;
|
|
441
|
+
}
|
|
442
|
+
export declare enum DeploymentState {
|
|
443
|
+
BAKING = "BAKING",
|
|
444
|
+
COMPLETE = "COMPLETE",
|
|
445
|
+
DEPLOYING = "DEPLOYING",
|
|
446
|
+
ROLLED_BACK = "ROLLED_BACK",
|
|
447
|
+
ROLLING_BACK = "ROLLING_BACK",
|
|
448
|
+
VALIDATING = "VALIDATING"
|
|
449
|
+
}
|
|
450
|
+
export interface Deployment {
|
|
451
|
+
|
|
452
|
+
ApplicationId?: string;
|
|
453
|
+
|
|
454
|
+
EnvironmentId?: string;
|
|
455
|
+
|
|
456
|
+
DeploymentStrategyId?: string;
|
|
457
|
+
|
|
458
|
+
ConfigurationProfileId?: string;
|
|
459
|
+
|
|
460
|
+
DeploymentNumber?: number;
|
|
461
|
+
|
|
462
|
+
ConfigurationName?: string;
|
|
463
|
+
|
|
464
|
+
ConfigurationLocationUri?: string;
|
|
465
|
+
|
|
466
|
+
ConfigurationVersion?: string;
|
|
467
|
+
|
|
468
|
+
Description?: string;
|
|
469
|
+
|
|
470
|
+
DeploymentDurationInMinutes?: number;
|
|
471
|
+
|
|
472
|
+
GrowthType?: GrowthType | string;
|
|
473
|
+
|
|
474
|
+
GrowthFactor?: number;
|
|
475
|
+
|
|
476
|
+
FinalBakeTimeInMinutes?: number;
|
|
477
|
+
|
|
478
|
+
State?: DeploymentState | string;
|
|
479
|
+
|
|
480
|
+
EventLog?: DeploymentEvent[];
|
|
481
|
+
|
|
482
|
+
PercentageComplete?: number;
|
|
483
|
+
|
|
484
|
+
StartedAt?: Date;
|
|
485
|
+
|
|
486
|
+
CompletedAt?: Date;
|
|
487
|
+
}
|
|
488
|
+
export declare namespace Deployment {
|
|
489
|
+
|
|
490
|
+
const filterSensitiveLog: (obj: Deployment) => any;
|
|
491
|
+
}
|
|
492
|
+
export interface GetDeploymentRequest {
|
|
493
|
+
|
|
494
|
+
ApplicationId: string | undefined;
|
|
495
|
+
|
|
496
|
+
EnvironmentId: string | undefined;
|
|
497
|
+
|
|
498
|
+
DeploymentNumber: number | undefined;
|
|
499
|
+
}
|
|
500
|
+
export declare namespace GetDeploymentRequest {
|
|
501
|
+
|
|
502
|
+
const filterSensitiveLog: (obj: GetDeploymentRequest) => any;
|
|
503
|
+
}
|
|
504
|
+
export interface GetDeploymentStrategyRequest {
|
|
505
|
+
|
|
506
|
+
DeploymentStrategyId: string | undefined;
|
|
507
|
+
}
|
|
508
|
+
export declare namespace GetDeploymentStrategyRequest {
|
|
509
|
+
|
|
510
|
+
const filterSensitiveLog: (obj: GetDeploymentStrategyRequest) => any;
|
|
511
|
+
}
|
|
512
|
+
export interface GetEnvironmentRequest {
|
|
513
|
+
|
|
514
|
+
ApplicationId: string | undefined;
|
|
515
|
+
|
|
516
|
+
EnvironmentId: string | undefined;
|
|
517
|
+
}
|
|
518
|
+
export declare namespace GetEnvironmentRequest {
|
|
519
|
+
|
|
520
|
+
const filterSensitiveLog: (obj: GetEnvironmentRequest) => any;
|
|
521
|
+
}
|
|
522
|
+
export interface GetHostedConfigurationVersionRequest {
|
|
523
|
+
|
|
524
|
+
ApplicationId: string | undefined;
|
|
525
|
+
|
|
526
|
+
ConfigurationProfileId: string | undefined;
|
|
527
|
+
|
|
528
|
+
VersionNumber: number | undefined;
|
|
529
|
+
}
|
|
530
|
+
export declare namespace GetHostedConfigurationVersionRequest {
|
|
531
|
+
|
|
532
|
+
const filterSensitiveLog: (obj: GetHostedConfigurationVersionRequest) => any;
|
|
533
|
+
}
|
|
534
|
+
export interface Applications {
|
|
535
|
+
|
|
536
|
+
Items?: Application[];
|
|
537
|
+
|
|
538
|
+
NextToken?: string;
|
|
539
|
+
}
|
|
540
|
+
export declare namespace Applications {
|
|
541
|
+
|
|
542
|
+
const filterSensitiveLog: (obj: Applications) => any;
|
|
543
|
+
}
|
|
544
|
+
export interface ListApplicationsRequest {
|
|
545
|
+
|
|
546
|
+
MaxResults?: number;
|
|
547
|
+
|
|
548
|
+
NextToken?: string;
|
|
549
|
+
}
|
|
550
|
+
export declare namespace ListApplicationsRequest {
|
|
551
|
+
|
|
552
|
+
const filterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
export interface ConfigurationProfileSummary {
|
|
556
|
+
|
|
557
|
+
ApplicationId?: string;
|
|
558
|
+
|
|
559
|
+
Id?: string;
|
|
560
|
+
|
|
561
|
+
Name?: string;
|
|
562
|
+
|
|
563
|
+
LocationUri?: string;
|
|
564
|
+
|
|
565
|
+
ValidatorTypes?: (ValidatorType | string)[];
|
|
566
|
+
|
|
567
|
+
Type?: string;
|
|
568
|
+
}
|
|
569
|
+
export declare namespace ConfigurationProfileSummary {
|
|
570
|
+
|
|
571
|
+
const filterSensitiveLog: (obj: ConfigurationProfileSummary) => any;
|
|
572
|
+
}
|
|
573
|
+
export interface ConfigurationProfiles {
|
|
574
|
+
|
|
575
|
+
Items?: ConfigurationProfileSummary[];
|
|
576
|
+
|
|
577
|
+
NextToken?: string;
|
|
578
|
+
}
|
|
579
|
+
export declare namespace ConfigurationProfiles {
|
|
580
|
+
|
|
581
|
+
const filterSensitiveLog: (obj: ConfigurationProfiles) => any;
|
|
582
|
+
}
|
|
583
|
+
export interface ListConfigurationProfilesRequest {
|
|
584
|
+
|
|
585
|
+
ApplicationId: string | undefined;
|
|
586
|
+
|
|
587
|
+
MaxResults?: number;
|
|
588
|
+
|
|
589
|
+
NextToken?: string;
|
|
590
|
+
|
|
591
|
+
Type?: string;
|
|
592
|
+
}
|
|
593
|
+
export declare namespace ListConfigurationProfilesRequest {
|
|
594
|
+
|
|
595
|
+
const filterSensitiveLog: (obj: ListConfigurationProfilesRequest) => any;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
export interface DeploymentSummary {
|
|
599
|
+
|
|
600
|
+
DeploymentNumber?: number;
|
|
601
|
+
|
|
602
|
+
ConfigurationName?: string;
|
|
603
|
+
|
|
604
|
+
ConfigurationVersion?: string;
|
|
605
|
+
|
|
606
|
+
DeploymentDurationInMinutes?: number;
|
|
607
|
+
|
|
608
|
+
GrowthType?: GrowthType | string;
|
|
609
|
+
|
|
610
|
+
GrowthFactor?: number;
|
|
611
|
+
|
|
612
|
+
FinalBakeTimeInMinutes?: number;
|
|
613
|
+
|
|
614
|
+
State?: DeploymentState | string;
|
|
615
|
+
|
|
616
|
+
PercentageComplete?: number;
|
|
617
|
+
|
|
618
|
+
StartedAt?: Date;
|
|
619
|
+
|
|
620
|
+
CompletedAt?: Date;
|
|
621
|
+
}
|
|
622
|
+
export declare namespace DeploymentSummary {
|
|
623
|
+
|
|
624
|
+
const filterSensitiveLog: (obj: DeploymentSummary) => any;
|
|
625
|
+
}
|
|
626
|
+
export interface Deployments {
|
|
627
|
+
|
|
628
|
+
Items?: DeploymentSummary[];
|
|
629
|
+
|
|
630
|
+
NextToken?: string;
|
|
631
|
+
}
|
|
632
|
+
export declare namespace Deployments {
|
|
633
|
+
|
|
634
|
+
const filterSensitiveLog: (obj: Deployments) => any;
|
|
635
|
+
}
|
|
636
|
+
export interface ListDeploymentsRequest {
|
|
637
|
+
|
|
638
|
+
ApplicationId: string | undefined;
|
|
639
|
+
|
|
640
|
+
EnvironmentId: string | undefined;
|
|
641
|
+
|
|
642
|
+
MaxResults?: number;
|
|
643
|
+
|
|
644
|
+
NextToken?: string;
|
|
645
|
+
}
|
|
646
|
+
export declare namespace ListDeploymentsRequest {
|
|
647
|
+
|
|
648
|
+
const filterSensitiveLog: (obj: ListDeploymentsRequest) => any;
|
|
649
|
+
}
|
|
650
|
+
export interface DeploymentStrategies {
|
|
651
|
+
|
|
652
|
+
Items?: DeploymentStrategy[];
|
|
653
|
+
|
|
654
|
+
NextToken?: string;
|
|
655
|
+
}
|
|
656
|
+
export declare namespace DeploymentStrategies {
|
|
657
|
+
|
|
658
|
+
const filterSensitiveLog: (obj: DeploymentStrategies) => any;
|
|
659
|
+
}
|
|
660
|
+
export interface ListDeploymentStrategiesRequest {
|
|
661
|
+
|
|
662
|
+
MaxResults?: number;
|
|
663
|
+
|
|
664
|
+
NextToken?: string;
|
|
665
|
+
}
|
|
666
|
+
export declare namespace ListDeploymentStrategiesRequest {
|
|
667
|
+
|
|
668
|
+
const filterSensitiveLog: (obj: ListDeploymentStrategiesRequest) => any;
|
|
669
|
+
}
|
|
670
|
+
export interface Environments {
|
|
671
|
+
|
|
672
|
+
Items?: Environment[];
|
|
673
|
+
|
|
674
|
+
NextToken?: string;
|
|
675
|
+
}
|
|
676
|
+
export declare namespace Environments {
|
|
677
|
+
|
|
678
|
+
const filterSensitiveLog: (obj: Environments) => any;
|
|
679
|
+
}
|
|
680
|
+
export interface ListEnvironmentsRequest {
|
|
681
|
+
|
|
682
|
+
ApplicationId: string | undefined;
|
|
683
|
+
|
|
684
|
+
MaxResults?: number;
|
|
685
|
+
|
|
686
|
+
NextToken?: string;
|
|
687
|
+
}
|
|
688
|
+
export declare namespace ListEnvironmentsRequest {
|
|
689
|
+
|
|
690
|
+
const filterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
export interface HostedConfigurationVersionSummary {
|
|
694
|
+
|
|
695
|
+
ApplicationId?: string;
|
|
696
|
+
|
|
697
|
+
ConfigurationProfileId?: string;
|
|
698
|
+
|
|
699
|
+
VersionNumber?: number;
|
|
700
|
+
|
|
701
|
+
Description?: string;
|
|
702
|
+
|
|
703
|
+
ContentType?: string;
|
|
704
|
+
}
|
|
705
|
+
export declare namespace HostedConfigurationVersionSummary {
|
|
706
|
+
|
|
707
|
+
const filterSensitiveLog: (obj: HostedConfigurationVersionSummary) => any;
|
|
708
|
+
}
|
|
709
|
+
export interface HostedConfigurationVersions {
|
|
710
|
+
|
|
711
|
+
Items?: HostedConfigurationVersionSummary[];
|
|
712
|
+
|
|
713
|
+
NextToken?: string;
|
|
714
|
+
}
|
|
715
|
+
export declare namespace HostedConfigurationVersions {
|
|
716
|
+
|
|
717
|
+
const filterSensitiveLog: (obj: HostedConfigurationVersions) => any;
|
|
718
|
+
}
|
|
719
|
+
export interface ListHostedConfigurationVersionsRequest {
|
|
720
|
+
|
|
721
|
+
ApplicationId: string | undefined;
|
|
722
|
+
|
|
723
|
+
ConfigurationProfileId: string | undefined;
|
|
724
|
+
|
|
725
|
+
MaxResults?: number;
|
|
726
|
+
|
|
727
|
+
NextToken?: string;
|
|
728
|
+
}
|
|
729
|
+
export declare namespace ListHostedConfigurationVersionsRequest {
|
|
730
|
+
|
|
731
|
+
const filterSensitiveLog: (obj: ListHostedConfigurationVersionsRequest) => any;
|
|
732
|
+
}
|
|
733
|
+
export interface ListTagsForResourceRequest {
|
|
734
|
+
|
|
735
|
+
ResourceArn: string | undefined;
|
|
736
|
+
}
|
|
737
|
+
export declare namespace ListTagsForResourceRequest {
|
|
738
|
+
|
|
739
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
740
|
+
}
|
|
741
|
+
export interface ResourceTags {
|
|
742
|
+
|
|
743
|
+
Tags?: {
|
|
744
|
+
[key: string]: string;
|
|
745
|
+
};
|
|
746
|
+
}
|
|
747
|
+
export declare namespace ResourceTags {
|
|
748
|
+
|
|
749
|
+
const filterSensitiveLog: (obj: ResourceTags) => any;
|
|
750
|
+
}
|
|
751
|
+
export interface StartDeploymentRequest {
|
|
752
|
+
|
|
753
|
+
ApplicationId: string | undefined;
|
|
754
|
+
|
|
755
|
+
EnvironmentId: string | undefined;
|
|
756
|
+
|
|
757
|
+
DeploymentStrategyId: string | undefined;
|
|
758
|
+
|
|
759
|
+
ConfigurationProfileId: string | undefined;
|
|
760
|
+
|
|
761
|
+
ConfigurationVersion: string | undefined;
|
|
762
|
+
|
|
763
|
+
Description?: string;
|
|
764
|
+
|
|
765
|
+
Tags?: {
|
|
766
|
+
[key: string]: string;
|
|
767
|
+
};
|
|
768
|
+
}
|
|
769
|
+
export declare namespace StartDeploymentRequest {
|
|
770
|
+
|
|
771
|
+
const filterSensitiveLog: (obj: StartDeploymentRequest) => any;
|
|
772
|
+
}
|
|
773
|
+
export interface StopDeploymentRequest {
|
|
774
|
+
|
|
775
|
+
ApplicationId: string | undefined;
|
|
776
|
+
|
|
777
|
+
EnvironmentId: string | undefined;
|
|
778
|
+
|
|
779
|
+
DeploymentNumber: number | undefined;
|
|
780
|
+
}
|
|
781
|
+
export declare namespace StopDeploymentRequest {
|
|
782
|
+
|
|
783
|
+
const filterSensitiveLog: (obj: StopDeploymentRequest) => any;
|
|
784
|
+
}
|
|
785
|
+
export interface TagResourceRequest {
|
|
786
|
+
|
|
787
|
+
ResourceArn: string | undefined;
|
|
788
|
+
|
|
789
|
+
Tags: {
|
|
790
|
+
[key: string]: string;
|
|
791
|
+
} | undefined;
|
|
792
|
+
}
|
|
793
|
+
export declare namespace TagResourceRequest {
|
|
794
|
+
|
|
795
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
796
|
+
}
|
|
797
|
+
export interface UntagResourceRequest {
|
|
798
|
+
|
|
799
|
+
ResourceArn: string | undefined;
|
|
800
|
+
|
|
801
|
+
TagKeys: string[] | undefined;
|
|
802
|
+
}
|
|
803
|
+
export declare namespace UntagResourceRequest {
|
|
804
|
+
|
|
805
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
806
|
+
}
|
|
807
|
+
export interface UpdateApplicationRequest {
|
|
808
|
+
|
|
809
|
+
ApplicationId: string | undefined;
|
|
810
|
+
|
|
811
|
+
Name?: string;
|
|
812
|
+
|
|
813
|
+
Description?: string;
|
|
814
|
+
}
|
|
815
|
+
export declare namespace UpdateApplicationRequest {
|
|
816
|
+
|
|
817
|
+
const filterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
818
|
+
}
|
|
819
|
+
export interface UpdateConfigurationProfileRequest {
|
|
820
|
+
|
|
821
|
+
ApplicationId: string | undefined;
|
|
822
|
+
|
|
823
|
+
ConfigurationProfileId: string | undefined;
|
|
824
|
+
|
|
825
|
+
Name?: string;
|
|
826
|
+
|
|
827
|
+
Description?: string;
|
|
828
|
+
|
|
829
|
+
RetrievalRoleArn?: string;
|
|
830
|
+
|
|
831
|
+
Validators?: Validator[];
|
|
832
|
+
}
|
|
833
|
+
export declare namespace UpdateConfigurationProfileRequest {
|
|
834
|
+
|
|
835
|
+
const filterSensitiveLog: (obj: UpdateConfigurationProfileRequest) => any;
|
|
836
|
+
}
|
|
837
|
+
export interface UpdateDeploymentStrategyRequest {
|
|
838
|
+
|
|
839
|
+
DeploymentStrategyId: string | undefined;
|
|
840
|
+
|
|
841
|
+
Description?: string;
|
|
842
|
+
|
|
843
|
+
DeploymentDurationInMinutes?: number;
|
|
844
|
+
|
|
845
|
+
FinalBakeTimeInMinutes?: number;
|
|
846
|
+
|
|
847
|
+
GrowthFactor?: number;
|
|
848
|
+
|
|
849
|
+
GrowthType?: GrowthType | string;
|
|
850
|
+
}
|
|
851
|
+
export declare namespace UpdateDeploymentStrategyRequest {
|
|
852
|
+
|
|
853
|
+
const filterSensitiveLog: (obj: UpdateDeploymentStrategyRequest) => any;
|
|
854
|
+
}
|
|
855
|
+
export interface UpdateEnvironmentRequest {
|
|
856
|
+
|
|
857
|
+
ApplicationId: string | undefined;
|
|
858
|
+
|
|
859
|
+
EnvironmentId: string | undefined;
|
|
860
|
+
|
|
861
|
+
Name?: string;
|
|
862
|
+
|
|
863
|
+
Description?: string;
|
|
864
|
+
|
|
865
|
+
Monitors?: Monitor[];
|
|
866
|
+
}
|
|
867
|
+
export declare namespace UpdateEnvironmentRequest {
|
|
868
|
+
|
|
869
|
+
const filterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
|
|
870
|
+
}
|
|
871
|
+
export interface ValidateConfigurationRequest {
|
|
872
|
+
|
|
873
|
+
ApplicationId: string | undefined;
|
|
874
|
+
|
|
875
|
+
ConfigurationProfileId: string | undefined;
|
|
876
|
+
|
|
877
|
+
ConfigurationVersion: string | undefined;
|
|
878
|
+
}
|
|
879
|
+
export declare namespace ValidateConfigurationRequest {
|
|
880
|
+
|
|
881
|
+
const filterSensitiveLog: (obj: ValidateConfigurationRequest) => any;
|
|
882
|
+
}
|