@aws-sdk/client-proton 3.301.0 → 3.303.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/models/models_0.js +116 -135
- package/dist-es/models/models_0.js +116 -135
- package/dist-types/models/models_0.d.ts +211 -116
- package/dist-types/ts3.4/models/models_0.d.ts +149 -116
- package/package.json +35 -35
|
@@ -11,12 +11,17 @@ export interface AcceptEnvironmentAccountConnectionInput {
|
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* @public
|
|
14
|
+
* @enum
|
|
14
15
|
*/
|
|
15
|
-
export declare
|
|
16
|
-
CONNECTED
|
|
17
|
-
PENDING
|
|
18
|
-
REJECTED
|
|
19
|
-
}
|
|
16
|
+
export declare const EnvironmentAccountConnectionStatus: {
|
|
17
|
+
readonly CONNECTED: "CONNECTED";
|
|
18
|
+
readonly PENDING: "PENDING";
|
|
19
|
+
readonly REJECTED: "REJECTED";
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export type EnvironmentAccountConnectionStatus = (typeof EnvironmentAccountConnectionStatus)[keyof typeof EnvironmentAccountConnectionStatus];
|
|
20
25
|
/**
|
|
21
26
|
* @public
|
|
22
27
|
* <p>Detailed data of an Proton environment account connection resource.</p>
|
|
@@ -161,12 +166,17 @@ export declare class ValidationException extends __BaseException {
|
|
|
161
166
|
}
|
|
162
167
|
/**
|
|
163
168
|
* @public
|
|
169
|
+
* @enum
|
|
164
170
|
*/
|
|
165
|
-
export declare
|
|
166
|
-
BITBUCKET
|
|
167
|
-
GITHUB
|
|
168
|
-
GITHUB_ENTERPRISE
|
|
169
|
-
}
|
|
171
|
+
export declare const RepositoryProvider: {
|
|
172
|
+
readonly BITBUCKET: "BITBUCKET";
|
|
173
|
+
readonly GITHUB: "GITHUB";
|
|
174
|
+
readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
|
|
175
|
+
};
|
|
176
|
+
/**
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
export type RepositoryProvider = (typeof RepositoryProvider)[keyof typeof RepositoryProvider];
|
|
170
180
|
/**
|
|
171
181
|
* @public
|
|
172
182
|
* <p>Detail data for a linked repository branch.</p>
|
|
@@ -291,17 +301,22 @@ export interface CancelComponentDeploymentInput {
|
|
|
291
301
|
}
|
|
292
302
|
/**
|
|
293
303
|
* @public
|
|
304
|
+
* @enum
|
|
294
305
|
*/
|
|
295
|
-
export declare
|
|
296
|
-
CANCELLED
|
|
297
|
-
CANCELLING
|
|
298
|
-
DELETE_COMPLETE
|
|
299
|
-
DELETE_FAILED
|
|
300
|
-
DELETE_IN_PROGRESS
|
|
301
|
-
FAILED
|
|
302
|
-
IN_PROGRESS
|
|
303
|
-
SUCCEEDED
|
|
304
|
-
}
|
|
306
|
+
export declare const DeploymentStatus: {
|
|
307
|
+
readonly CANCELLED: "CANCELLED";
|
|
308
|
+
readonly CANCELLING: "CANCELLING";
|
|
309
|
+
readonly DELETE_COMPLETE: "DELETE_COMPLETE";
|
|
310
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
311
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
312
|
+
readonly FAILED: "FAILED";
|
|
313
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
314
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
315
|
+
};
|
|
316
|
+
/**
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
319
|
+
export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
305
320
|
/**
|
|
306
321
|
* @public
|
|
307
322
|
* <p>Detailed data of an Proton component resource.</p>
|
|
@@ -383,10 +398,15 @@ export interface CancelEnvironmentDeploymentInput {
|
|
|
383
398
|
}
|
|
384
399
|
/**
|
|
385
400
|
* @public
|
|
401
|
+
* @enum
|
|
386
402
|
*/
|
|
387
|
-
export declare
|
|
388
|
-
CUSTOMER_MANAGED
|
|
389
|
-
}
|
|
403
|
+
export declare const Provisioning: {
|
|
404
|
+
readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
|
|
405
|
+
};
|
|
406
|
+
/**
|
|
407
|
+
* @public
|
|
408
|
+
*/
|
|
409
|
+
export type Provisioning = (typeof Provisioning)[keyof typeof Provisioning];
|
|
390
410
|
/**
|
|
391
411
|
* @public
|
|
392
412
|
* <p>Detailed data of an Proton environment resource. An Proton environment is a set of resources shared across Proton services.</p>
|
|
@@ -685,11 +705,16 @@ export interface ListComponentProvisionedResourcesInput {
|
|
|
685
705
|
}
|
|
686
706
|
/**
|
|
687
707
|
* @public
|
|
708
|
+
* @enum
|
|
688
709
|
*/
|
|
689
|
-
export declare
|
|
690
|
-
CLOUDFORMATION
|
|
691
|
-
TERRAFORM
|
|
692
|
-
}
|
|
710
|
+
export declare const ProvisionedResourceEngine: {
|
|
711
|
+
readonly CLOUDFORMATION: "CLOUDFORMATION";
|
|
712
|
+
readonly TERRAFORM: "TERRAFORM";
|
|
713
|
+
};
|
|
714
|
+
/**
|
|
715
|
+
* @public
|
|
716
|
+
*/
|
|
717
|
+
export type ProvisionedResourceEngine = (typeof ProvisionedResourceEngine)[keyof typeof ProvisionedResourceEngine];
|
|
693
718
|
/**
|
|
694
719
|
* @public
|
|
695
720
|
* <p>Detail data for a provisioned resource.</p>
|
|
@@ -942,11 +967,16 @@ export interface ListComponentsOutput {
|
|
|
942
967
|
}
|
|
943
968
|
/**
|
|
944
969
|
* @public
|
|
970
|
+
* @enum
|
|
945
971
|
*/
|
|
946
|
-
export declare
|
|
947
|
-
CURRENT_VERSION
|
|
948
|
-
NONE
|
|
949
|
-
}
|
|
972
|
+
export declare const ComponentDeploymentUpdateType: {
|
|
973
|
+
readonly CURRENT_VERSION: "CURRENT_VERSION";
|
|
974
|
+
readonly NONE: "NONE";
|
|
975
|
+
};
|
|
976
|
+
/**
|
|
977
|
+
* @public
|
|
978
|
+
*/
|
|
979
|
+
export type ComponentDeploymentUpdateType = (typeof ComponentDeploymentUpdateType)[keyof typeof ComponentDeploymentUpdateType];
|
|
950
980
|
/**
|
|
951
981
|
* @public
|
|
952
982
|
*/
|
|
@@ -1108,11 +1138,16 @@ export interface GetEnvironmentAccountConnectionOutput {
|
|
|
1108
1138
|
}
|
|
1109
1139
|
/**
|
|
1110
1140
|
* @public
|
|
1141
|
+
* @enum
|
|
1111
1142
|
*/
|
|
1112
|
-
export declare
|
|
1113
|
-
ENVIRONMENT_ACCOUNT
|
|
1114
|
-
MANAGEMENT_ACCOUNT
|
|
1115
|
-
}
|
|
1143
|
+
export declare const EnvironmentAccountConnectionRequesterAccountType: {
|
|
1144
|
+
readonly ENVIRONMENT_ACCOUNT: "ENVIRONMENT_ACCOUNT";
|
|
1145
|
+
readonly MANAGEMENT_ACCOUNT: "MANAGEMENT_ACCOUNT";
|
|
1146
|
+
};
|
|
1147
|
+
/**
|
|
1148
|
+
* @public
|
|
1149
|
+
*/
|
|
1150
|
+
export type EnvironmentAccountConnectionRequesterAccountType = (typeof EnvironmentAccountConnectionRequesterAccountType)[keyof typeof EnvironmentAccountConnectionRequesterAccountType];
|
|
1116
1151
|
/**
|
|
1117
1152
|
* @public
|
|
1118
1153
|
*/
|
|
@@ -1556,13 +1591,18 @@ export interface ListEnvironmentsOutput {
|
|
|
1556
1591
|
}
|
|
1557
1592
|
/**
|
|
1558
1593
|
* @public
|
|
1594
|
+
* @enum
|
|
1559
1595
|
*/
|
|
1560
|
-
export declare
|
|
1561
|
-
CURRENT_VERSION
|
|
1562
|
-
MAJOR_VERSION
|
|
1563
|
-
MINOR_VERSION
|
|
1564
|
-
NONE
|
|
1565
|
-
}
|
|
1596
|
+
export declare const DeploymentUpdateType: {
|
|
1597
|
+
readonly CURRENT_VERSION: "CURRENT_VERSION";
|
|
1598
|
+
readonly MAJOR_VERSION: "MAJOR_VERSION";
|
|
1599
|
+
readonly MINOR_VERSION: "MINOR_VERSION";
|
|
1600
|
+
readonly NONE: "NONE";
|
|
1601
|
+
};
|
|
1602
|
+
/**
|
|
1603
|
+
* @public
|
|
1604
|
+
*/
|
|
1605
|
+
export type DeploymentUpdateType = (typeof DeploymentUpdateType)[keyof typeof DeploymentUpdateType];
|
|
1566
1606
|
/**
|
|
1567
1607
|
* @public
|
|
1568
1608
|
*/
|
|
@@ -1948,13 +1988,18 @@ export interface CreateEnvironmentTemplateVersionInput {
|
|
|
1948
1988
|
}
|
|
1949
1989
|
/**
|
|
1950
1990
|
* @public
|
|
1991
|
+
* @enum
|
|
1951
1992
|
*/
|
|
1952
|
-
export declare
|
|
1953
|
-
DRAFT
|
|
1954
|
-
PUBLISHED
|
|
1955
|
-
REGISTRATION_FAILED
|
|
1956
|
-
REGISTRATION_IN_PROGRESS
|
|
1957
|
-
}
|
|
1993
|
+
export declare const TemplateVersionStatus: {
|
|
1994
|
+
readonly DRAFT: "DRAFT";
|
|
1995
|
+
readonly PUBLISHED: "PUBLISHED";
|
|
1996
|
+
readonly REGISTRATION_FAILED: "REGISTRATION_FAILED";
|
|
1997
|
+
readonly REGISTRATION_IN_PROGRESS: "REGISTRATION_IN_PROGRESS";
|
|
1998
|
+
};
|
|
1999
|
+
/**
|
|
2000
|
+
* @public
|
|
2001
|
+
*/
|
|
2002
|
+
export type TemplateVersionStatus = (typeof TemplateVersionStatus)[keyof typeof TemplateVersionStatus];
|
|
1958
2003
|
/**
|
|
1959
2004
|
* @public
|
|
1960
2005
|
* <p>The environment template version data.</p>
|
|
@@ -2186,10 +2231,15 @@ export interface UpdateEnvironmentTemplateVersionOutput {
|
|
|
2186
2231
|
}
|
|
2187
2232
|
/**
|
|
2188
2233
|
* @public
|
|
2234
|
+
* @enum
|
|
2189
2235
|
*/
|
|
2190
|
-
export declare
|
|
2191
|
-
TEMPLATE_SYNC
|
|
2192
|
-
}
|
|
2236
|
+
export declare const SyncType: {
|
|
2237
|
+
readonly TEMPLATE_SYNC: "TEMPLATE_SYNC";
|
|
2238
|
+
};
|
|
2239
|
+
/**
|
|
2240
|
+
* @public
|
|
2241
|
+
*/
|
|
2242
|
+
export type SyncType = (typeof SyncType)[keyof typeof SyncType];
|
|
2193
2243
|
/**
|
|
2194
2244
|
* @public
|
|
2195
2245
|
*/
|
|
@@ -2235,34 +2285,39 @@ export interface RepositorySyncEvent {
|
|
|
2235
2285
|
}
|
|
2236
2286
|
/**
|
|
2237
2287
|
* @public
|
|
2288
|
+
* @enum
|
|
2238
2289
|
*/
|
|
2239
|
-
export declare
|
|
2290
|
+
export declare const RepositorySyncStatus: {
|
|
2240
2291
|
/**
|
|
2241
2292
|
* The repository sync attempt has failed.
|
|
2242
2293
|
*
|
|
2243
2294
|
*/
|
|
2244
|
-
FAILED
|
|
2295
|
+
readonly FAILED: "FAILED";
|
|
2245
2296
|
/**
|
|
2246
2297
|
* A repository sync attempt has been created and will begin soon.
|
|
2247
2298
|
*
|
|
2248
2299
|
*/
|
|
2249
|
-
INITIATED
|
|
2300
|
+
readonly INITIATED: "INITIATED";
|
|
2250
2301
|
/**
|
|
2251
2302
|
* A repository sync attempt has started and work is being done to reconcile the branch.
|
|
2252
2303
|
*
|
|
2253
2304
|
*/
|
|
2254
|
-
IN_PROGRESS
|
|
2305
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2255
2306
|
/**
|
|
2256
2307
|
* The repository sync attempt didn't execute and was queued.
|
|
2257
2308
|
*
|
|
2258
2309
|
*/
|
|
2259
|
-
QUEUED
|
|
2310
|
+
readonly QUEUED: "QUEUED";
|
|
2260
2311
|
/**
|
|
2261
2312
|
* The repository sync attempt has completed successfully.
|
|
2262
2313
|
*
|
|
2263
2314
|
*/
|
|
2264
|
-
SUCCEEDED
|
|
2265
|
-
}
|
|
2315
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
2316
|
+
};
|
|
2317
|
+
/**
|
|
2318
|
+
* @public
|
|
2319
|
+
*/
|
|
2320
|
+
export type RepositorySyncStatus = (typeof RepositorySyncStatus)[keyof typeof RepositorySyncStatus];
|
|
2266
2321
|
/**
|
|
2267
2322
|
* @public
|
|
2268
2323
|
* <p>Detail data for a repository sync attempt activated by a push to a repository.</p>
|
|
@@ -2372,11 +2427,16 @@ export interface GetResourcesSummaryOutput {
|
|
|
2372
2427
|
}
|
|
2373
2428
|
/**
|
|
2374
2429
|
* @public
|
|
2430
|
+
* @enum
|
|
2375
2431
|
*/
|
|
2376
|
-
export declare
|
|
2377
|
-
ENVIRONMENT
|
|
2378
|
-
SERVICE
|
|
2379
|
-
}
|
|
2432
|
+
export declare const TemplateType: {
|
|
2433
|
+
readonly ENVIRONMENT: "ENVIRONMENT";
|
|
2434
|
+
readonly SERVICE: "SERVICE";
|
|
2435
|
+
};
|
|
2436
|
+
/**
|
|
2437
|
+
* @public
|
|
2438
|
+
*/
|
|
2439
|
+
export type TemplateType = (typeof TemplateType)[keyof typeof TemplateType];
|
|
2380
2440
|
/**
|
|
2381
2441
|
* @public
|
|
2382
2442
|
*/
|
|
@@ -2444,29 +2504,34 @@ export interface ResourceSyncEvent {
|
|
|
2444
2504
|
}
|
|
2445
2505
|
/**
|
|
2446
2506
|
* @public
|
|
2507
|
+
* @enum
|
|
2447
2508
|
*/
|
|
2448
|
-
export declare
|
|
2509
|
+
export declare const ResourceSyncStatus: {
|
|
2449
2510
|
/**
|
|
2450
2511
|
* Syncing has failed.
|
|
2451
2512
|
*
|
|
2452
2513
|
*/
|
|
2453
|
-
FAILED
|
|
2514
|
+
readonly FAILED: "FAILED";
|
|
2454
2515
|
/**
|
|
2455
2516
|
* A sync attempt has been created and will begin soon.
|
|
2456
2517
|
*
|
|
2457
2518
|
*/
|
|
2458
|
-
INITIATED
|
|
2519
|
+
readonly INITIATED: "INITIATED";
|
|
2459
2520
|
/**
|
|
2460
2521
|
* Syncing has started and work is being done to reconcile state.
|
|
2461
2522
|
*
|
|
2462
2523
|
*/
|
|
2463
|
-
IN_PROGRESS
|
|
2524
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2464
2525
|
/**
|
|
2465
2526
|
* Syncing has completed successfully.
|
|
2466
2527
|
*
|
|
2467
2528
|
*/
|
|
2468
|
-
SUCCEEDED
|
|
2469
|
-
}
|
|
2529
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
2530
|
+
};
|
|
2531
|
+
/**
|
|
2532
|
+
* @public
|
|
2533
|
+
*/
|
|
2534
|
+
export type ResourceSyncStatus = (typeof ResourceSyncStatus)[keyof typeof ResourceSyncStatus];
|
|
2470
2535
|
/**
|
|
2471
2536
|
* @public
|
|
2472
2537
|
* <p>Detail data for a resource sync attempt activated by a push to a repository.</p>
|
|
@@ -2606,12 +2671,17 @@ export interface ListTagsForResourceOutput {
|
|
|
2606
2671
|
}
|
|
2607
2672
|
/**
|
|
2608
2673
|
* @public
|
|
2674
|
+
* @enum
|
|
2609
2675
|
*/
|
|
2610
|
-
export declare
|
|
2611
|
-
FAILED
|
|
2612
|
-
IN_PROGRESS
|
|
2613
|
-
SUCCEEDED
|
|
2614
|
-
}
|
|
2676
|
+
export declare const ResourceDeploymentStatus: {
|
|
2677
|
+
readonly FAILED: "FAILED";
|
|
2678
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2679
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
2680
|
+
};
|
|
2681
|
+
/**
|
|
2682
|
+
* @public
|
|
2683
|
+
*/
|
|
2684
|
+
export type ResourceDeploymentStatus = (typeof ResourceDeploymentStatus)[keyof typeof ResourceDeploymentStatus];
|
|
2615
2685
|
/**
|
|
2616
2686
|
* @public
|
|
2617
2687
|
*/
|
|
@@ -2879,19 +2949,24 @@ export interface GetServiceInstanceOutput {
|
|
|
2879
2949
|
}
|
|
2880
2950
|
/**
|
|
2881
2951
|
* @public
|
|
2952
|
+
* @enum
|
|
2882
2953
|
*/
|
|
2883
|
-
export declare
|
|
2884
|
-
CREATED_AT_AFTER
|
|
2885
|
-
CREATED_AT_BEFORE
|
|
2886
|
-
DEPLOYED_TEMPLATE_VERSION_STATUS
|
|
2887
|
-
DEPLOYMENT_STATUS
|
|
2888
|
-
ENVIRONMENT_NAME
|
|
2889
|
-
LAST_DEPLOYMENT_ATTEMPTED_AT_AFTER
|
|
2890
|
-
LAST_DEPLOYMENT_ATTEMPTED_AT_BEFORE
|
|
2891
|
-
NAME
|
|
2892
|
-
SERVICE_NAME
|
|
2893
|
-
TEMPLATE_NAME
|
|
2894
|
-
}
|
|
2954
|
+
export declare const ListServiceInstancesFilterBy: {
|
|
2955
|
+
readonly CREATED_AT_AFTER: "createdAtAfter";
|
|
2956
|
+
readonly CREATED_AT_BEFORE: "createdAtBefore";
|
|
2957
|
+
readonly DEPLOYED_TEMPLATE_VERSION_STATUS: "deployedTemplateVersionStatus";
|
|
2958
|
+
readonly DEPLOYMENT_STATUS: "deploymentStatus";
|
|
2959
|
+
readonly ENVIRONMENT_NAME: "environmentName";
|
|
2960
|
+
readonly LAST_DEPLOYMENT_ATTEMPTED_AT_AFTER: "lastDeploymentAttemptedAtAfter";
|
|
2961
|
+
readonly LAST_DEPLOYMENT_ATTEMPTED_AT_BEFORE: "lastDeploymentAttemptedAtBefore";
|
|
2962
|
+
readonly NAME: "name";
|
|
2963
|
+
readonly SERVICE_NAME: "serviceName";
|
|
2964
|
+
readonly TEMPLATE_NAME: "templateName";
|
|
2965
|
+
};
|
|
2966
|
+
/**
|
|
2967
|
+
* @public
|
|
2968
|
+
*/
|
|
2969
|
+
export type ListServiceInstancesFilterBy = (typeof ListServiceInstancesFilterBy)[keyof typeof ListServiceInstancesFilterBy];
|
|
2895
2970
|
/**
|
|
2896
2971
|
* @public
|
|
2897
2972
|
* <p>A filtering criterion to scope down the result list of the <a>ListServiceInstances</a> action.</p>
|
|
@@ -2910,23 +2985,33 @@ export interface ListServiceInstancesFilter {
|
|
|
2910
2985
|
}
|
|
2911
2986
|
/**
|
|
2912
2987
|
* @public
|
|
2988
|
+
* @enum
|
|
2913
2989
|
*/
|
|
2914
|
-
export declare
|
|
2915
|
-
CREATED_AT
|
|
2916
|
-
DEPLOYMENT_STATUS
|
|
2917
|
-
ENVIRONMENT_NAME
|
|
2918
|
-
LAST_DEPLOYMENT_ATTEMPTED_AT
|
|
2919
|
-
NAME
|
|
2920
|
-
SERVICE_NAME
|
|
2921
|
-
TEMPLATE_NAME
|
|
2922
|
-
}
|
|
2990
|
+
export declare const ListServiceInstancesSortBy: {
|
|
2991
|
+
readonly CREATED_AT: "createdAt";
|
|
2992
|
+
readonly DEPLOYMENT_STATUS: "deploymentStatus";
|
|
2993
|
+
readonly ENVIRONMENT_NAME: "environmentName";
|
|
2994
|
+
readonly LAST_DEPLOYMENT_ATTEMPTED_AT: "lastDeploymentAttemptedAt";
|
|
2995
|
+
readonly NAME: "name";
|
|
2996
|
+
readonly SERVICE_NAME: "serviceName";
|
|
2997
|
+
readonly TEMPLATE_NAME: "templateName";
|
|
2998
|
+
};
|
|
2923
2999
|
/**
|
|
2924
3000
|
* @public
|
|
2925
3001
|
*/
|
|
2926
|
-
export
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
3002
|
+
export type ListServiceInstancesSortBy = (typeof ListServiceInstancesSortBy)[keyof typeof ListServiceInstancesSortBy];
|
|
3003
|
+
/**
|
|
3004
|
+
* @public
|
|
3005
|
+
* @enum
|
|
3006
|
+
*/
|
|
3007
|
+
export declare const SortOrder: {
|
|
3008
|
+
readonly ASCENDING: "ASCENDING";
|
|
3009
|
+
readonly DESCENDING: "DESCENDING";
|
|
3010
|
+
};
|
|
3011
|
+
/**
|
|
3012
|
+
* @public
|
|
3013
|
+
*/
|
|
3014
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
2930
3015
|
/**
|
|
2931
3016
|
* @public
|
|
2932
3017
|
*/
|
|
@@ -3280,23 +3365,28 @@ export interface CreateServiceInput {
|
|
|
3280
3365
|
}
|
|
3281
3366
|
/**
|
|
3282
3367
|
* @public
|
|
3368
|
+
* @enum
|
|
3283
3369
|
*/
|
|
3284
|
-
export declare
|
|
3285
|
-
ACTIVE
|
|
3286
|
-
CREATE_FAILED
|
|
3287
|
-
CREATE_FAILED_CLEANUP_COMPLETE
|
|
3288
|
-
CREATE_FAILED_CLEANUP_FAILED
|
|
3289
|
-
CREATE_FAILED_CLEANUP_IN_PROGRESS
|
|
3290
|
-
CREATE_IN_PROGRESS
|
|
3291
|
-
DELETE_FAILED
|
|
3292
|
-
DELETE_IN_PROGRESS
|
|
3293
|
-
UPDATE_COMPLETE_CLEANUP_FAILED
|
|
3294
|
-
UPDATE_FAILED
|
|
3295
|
-
UPDATE_FAILED_CLEANUP_COMPLETE
|
|
3296
|
-
UPDATE_FAILED_CLEANUP_FAILED
|
|
3297
|
-
UPDATE_FAILED_CLEANUP_IN_PROGRESS
|
|
3298
|
-
UPDATE_IN_PROGRESS
|
|
3299
|
-
}
|
|
3370
|
+
export declare const ServiceStatus: {
|
|
3371
|
+
readonly ACTIVE: "ACTIVE";
|
|
3372
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
3373
|
+
readonly CREATE_FAILED_CLEANUP_COMPLETE: "CREATE_FAILED_CLEANUP_COMPLETE";
|
|
3374
|
+
readonly CREATE_FAILED_CLEANUP_FAILED: "CREATE_FAILED_CLEANUP_FAILED";
|
|
3375
|
+
readonly CREATE_FAILED_CLEANUP_IN_PROGRESS: "CREATE_FAILED_CLEANUP_IN_PROGRESS";
|
|
3376
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
3377
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
3378
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
3379
|
+
readonly UPDATE_COMPLETE_CLEANUP_FAILED: "UPDATE_COMPLETE_CLEANUP_FAILED";
|
|
3380
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
3381
|
+
readonly UPDATE_FAILED_CLEANUP_COMPLETE: "UPDATE_FAILED_CLEANUP_COMPLETE";
|
|
3382
|
+
readonly UPDATE_FAILED_CLEANUP_FAILED: "UPDATE_FAILED_CLEANUP_FAILED";
|
|
3383
|
+
readonly UPDATE_FAILED_CLEANUP_IN_PROGRESS: "UPDATE_FAILED_CLEANUP_IN_PROGRESS";
|
|
3384
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
3385
|
+
};
|
|
3386
|
+
/**
|
|
3387
|
+
* @public
|
|
3388
|
+
*/
|
|
3389
|
+
export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
|
|
3300
3390
|
/**
|
|
3301
3391
|
* @public
|
|
3302
3392
|
* <p>Detailed data of an Proton service resource.</p>
|
|
@@ -3722,10 +3812,15 @@ export interface CompatibleEnvironmentTemplateInput {
|
|
|
3722
3812
|
}
|
|
3723
3813
|
/**
|
|
3724
3814
|
* @public
|
|
3815
|
+
* @enum
|
|
3725
3816
|
*/
|
|
3726
|
-
export declare
|
|
3727
|
-
DIRECTLY_DEFINED
|
|
3728
|
-
}
|
|
3817
|
+
export declare const ServiceTemplateSupportedComponentSourceType: {
|
|
3818
|
+
readonly DIRECTLY_DEFINED: "DIRECTLY_DEFINED";
|
|
3819
|
+
};
|
|
3820
|
+
/**
|
|
3821
|
+
* @public
|
|
3822
|
+
*/
|
|
3823
|
+
export type ServiceTemplateSupportedComponentSourceType = (typeof ServiceTemplateSupportedComponentSourceType)[keyof typeof ServiceTemplateSupportedComponentSourceType];
|
|
3729
3824
|
/**
|
|
3730
3825
|
* @public
|
|
3731
3826
|
*/
|