@aws-sdk/client-appconfig 3.295.0 → 3.297.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-types/AppConfig.d.ts +44 -0
- package/dist-types/AppConfigClient.d.ts +24 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +16 -0
- package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +16 -0
- package/dist-types/commands/CreateExtensionCommand.d.ts +16 -0
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteExtensionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetConfigurationProfileCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +16 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +16 -0
- package/dist-types/commands/GetExtensionCommand.d.ts +16 -0
- package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +16 -0
- package/dist-types/commands/ListDeploymentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/ListExtensionsCommand.d.ts +16 -0
- package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/StartDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/StopDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateExtensionCommand.d.ts +16 -0
- package/dist-types/commands/ValidateConfigurationCommand.d.ts +16 -0
- package/dist-types/models/AppConfigServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +236 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConfigurationProfilesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentStrategiesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDeploymentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExtensionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListHostedConfigurationVersionsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>An action defines the tasks that the extension performs during the AppConfig
|
|
5
6
|
* workflow. Each action includes an action point such as
|
|
6
7
|
* <code>ON_CREATE_HOSTED_CONFIGURATION</code>, <code>PRE_DEPLOYMENT</code>, or
|
|
@@ -66,6 +67,7 @@ export interface Action {
|
|
|
66
67
|
RoleArn?: string;
|
|
67
68
|
}
|
|
68
69
|
/**
|
|
70
|
+
* @public
|
|
69
71
|
* <p>An extension that was invoked as part of a deployment event.</p>
|
|
70
72
|
*/
|
|
71
73
|
export interface ActionInvocation {
|
|
@@ -100,6 +102,9 @@ export interface ActionInvocation {
|
|
|
100
102
|
*/
|
|
101
103
|
InvocationId?: string;
|
|
102
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
103
108
|
export declare enum ActionPoint {
|
|
104
109
|
ON_DEPLOYMENT_BAKING = "ON_DEPLOYMENT_BAKING",
|
|
105
110
|
ON_DEPLOYMENT_COMPLETE = "ON_DEPLOYMENT_COMPLETE",
|
|
@@ -109,6 +114,9 @@ export declare enum ActionPoint {
|
|
|
109
114
|
PRE_CREATE_HOSTED_CONFIGURATION_VERSION = "PRE_CREATE_HOSTED_CONFIGURATION_VERSION",
|
|
110
115
|
PRE_START_DEPLOYMENT = "PRE_START_DEPLOYMENT"
|
|
111
116
|
}
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
112
120
|
export interface Application {
|
|
113
121
|
/**
|
|
114
122
|
* <p>The application ID.</p>
|
|
@@ -124,6 +132,7 @@ export interface Application {
|
|
|
124
132
|
Description?: string;
|
|
125
133
|
}
|
|
126
134
|
/**
|
|
135
|
+
* @public
|
|
127
136
|
* <p>Detailed information about the bad request exception error when creating a hosted
|
|
128
137
|
* configuration version.</p>
|
|
129
138
|
*/
|
|
@@ -153,10 +162,14 @@ export interface InvalidConfigurationDetail {
|
|
|
153
162
|
Value?: string;
|
|
154
163
|
}
|
|
155
164
|
/**
|
|
165
|
+
* @public
|
|
156
166
|
* <p>Detailed information about the input that failed to satisfy the constraints specified by
|
|
157
167
|
* a call.</p>
|
|
158
168
|
*/
|
|
159
169
|
export type BadRequestDetails = BadRequestDetails.InvalidConfigurationMember | BadRequestDetails.$UnknownMember;
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
160
173
|
export declare namespace BadRequestDetails {
|
|
161
174
|
/**
|
|
162
175
|
* <p>Detailed information about the bad request exception error when creating a hosted
|
|
@@ -176,10 +189,14 @@ export declare namespace BadRequestDetails {
|
|
|
176
189
|
}
|
|
177
190
|
const visit: <T>(value: BadRequestDetails, visitor: Visitor<T>) => T;
|
|
178
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
179
195
|
export declare enum BadRequestReason {
|
|
180
196
|
INVALID_CONFIGURATION = "InvalidConfiguration"
|
|
181
197
|
}
|
|
182
198
|
/**
|
|
199
|
+
* @public
|
|
183
200
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
184
201
|
*/
|
|
185
202
|
export declare class BadRequestException extends __BaseException {
|
|
@@ -197,6 +214,9 @@ export declare class BadRequestException extends __BaseException {
|
|
|
197
214
|
*/
|
|
198
215
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
199
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
200
220
|
export interface CreateApplicationRequest {
|
|
201
221
|
/**
|
|
202
222
|
* <p>A name for the application.</p>
|
|
@@ -213,6 +233,7 @@ export interface CreateApplicationRequest {
|
|
|
213
233
|
Tags?: Record<string, string>;
|
|
214
234
|
}
|
|
215
235
|
/**
|
|
236
|
+
* @public
|
|
216
237
|
* <p>There was an internal failure in the AppConfig service.</p>
|
|
217
238
|
*/
|
|
218
239
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -224,11 +245,15 @@ export declare class InternalServerException extends __BaseException {
|
|
|
224
245
|
*/
|
|
225
246
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
226
247
|
}
|
|
248
|
+
/**
|
|
249
|
+
* @public
|
|
250
|
+
*/
|
|
227
251
|
export declare enum ValidatorType {
|
|
228
252
|
JSON_SCHEMA = "JSON_SCHEMA",
|
|
229
253
|
LAMBDA = "LAMBDA"
|
|
230
254
|
}
|
|
231
255
|
/**
|
|
256
|
+
* @public
|
|
232
257
|
* <p>A validator provides a syntactic or semantic check to ensure the configuration that you
|
|
233
258
|
* want to deploy functions as intended. To validate your application configuration data, you
|
|
234
259
|
* provide a schema or an Amazon Web Services Lambda function that runs against the configuration. The
|
|
@@ -248,6 +273,9 @@ export interface Validator {
|
|
|
248
273
|
*/
|
|
249
274
|
Content: string | undefined;
|
|
250
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* @public
|
|
278
|
+
*/
|
|
251
279
|
export interface ConfigurationProfile {
|
|
252
280
|
/**
|
|
253
281
|
* <p>The application ID.</p>
|
|
@@ -293,6 +321,9 @@ export interface ConfigurationProfile {
|
|
|
293
321
|
*/
|
|
294
322
|
Type?: string;
|
|
295
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
296
327
|
export interface CreateConfigurationProfileRequest {
|
|
297
328
|
/**
|
|
298
329
|
* <p>The application ID.</p>
|
|
@@ -370,6 +401,7 @@ export interface CreateConfigurationProfileRequest {
|
|
|
370
401
|
Type?: string;
|
|
371
402
|
}
|
|
372
403
|
/**
|
|
404
|
+
* @public
|
|
373
405
|
* <p>The requested resource could not be found.</p>
|
|
374
406
|
*/
|
|
375
407
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -382,14 +414,23 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
382
414
|
*/
|
|
383
415
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
384
416
|
}
|
|
417
|
+
/**
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
385
420
|
export declare enum GrowthType {
|
|
386
421
|
EXPONENTIAL = "EXPONENTIAL",
|
|
387
422
|
LINEAR = "LINEAR"
|
|
388
423
|
}
|
|
424
|
+
/**
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
389
427
|
export declare enum ReplicateTo {
|
|
390
428
|
NONE = "NONE",
|
|
391
429
|
SSM_DOCUMENT = "SSM_DOCUMENT"
|
|
392
430
|
}
|
|
431
|
+
/**
|
|
432
|
+
* @public
|
|
433
|
+
*/
|
|
393
434
|
export interface CreateDeploymentStrategyRequest {
|
|
394
435
|
/**
|
|
395
436
|
* <p>A name for the deployment strategy.</p>
|
|
@@ -460,6 +501,9 @@ export interface CreateDeploymentStrategyRequest {
|
|
|
460
501
|
*/
|
|
461
502
|
Tags?: Record<string, string>;
|
|
462
503
|
}
|
|
504
|
+
/**
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
463
507
|
export interface DeploymentStrategy {
|
|
464
508
|
/**
|
|
465
509
|
* <p>The deployment strategy ID.</p>
|
|
@@ -497,6 +541,7 @@ export interface DeploymentStrategy {
|
|
|
497
541
|
ReplicateTo?: ReplicateTo | string;
|
|
498
542
|
}
|
|
499
543
|
/**
|
|
544
|
+
* @public
|
|
500
545
|
* <p>Amazon CloudWatch alarms to monitor during the deployment process.</p>
|
|
501
546
|
*/
|
|
502
547
|
export interface Monitor {
|
|
@@ -510,6 +555,9 @@ export interface Monitor {
|
|
|
510
555
|
*/
|
|
511
556
|
AlarmRoleArn?: string;
|
|
512
557
|
}
|
|
558
|
+
/**
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
513
561
|
export interface CreateEnvironmentRequest {
|
|
514
562
|
/**
|
|
515
563
|
* <p>The application ID.</p>
|
|
@@ -533,12 +581,18 @@ export interface CreateEnvironmentRequest {
|
|
|
533
581
|
*/
|
|
534
582
|
Tags?: Record<string, string>;
|
|
535
583
|
}
|
|
584
|
+
/**
|
|
585
|
+
* @public
|
|
586
|
+
*/
|
|
536
587
|
export declare enum EnvironmentState {
|
|
537
588
|
DEPLOYING = "DEPLOYING",
|
|
538
589
|
READY_FOR_DEPLOYMENT = "READY_FOR_DEPLOYMENT",
|
|
539
590
|
ROLLED_BACK = "ROLLED_BACK",
|
|
540
591
|
ROLLING_BACK = "ROLLING_BACK"
|
|
541
592
|
}
|
|
593
|
+
/**
|
|
594
|
+
* @public
|
|
595
|
+
*/
|
|
542
596
|
export interface Environment {
|
|
543
597
|
/**
|
|
544
598
|
* <p>The application ID.</p>
|
|
@@ -569,6 +623,7 @@ export interface Environment {
|
|
|
569
623
|
Monitors?: Monitor[];
|
|
570
624
|
}
|
|
571
625
|
/**
|
|
626
|
+
* @public
|
|
572
627
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
573
628
|
* resource.</p>
|
|
574
629
|
*/
|
|
@@ -582,6 +637,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
582
637
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
583
638
|
}
|
|
584
639
|
/**
|
|
640
|
+
* @public
|
|
585
641
|
* <p>A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered
|
|
586
642
|
* in an extension when invoked. Parameter values are specified in an extension association.
|
|
587
643
|
* For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
|
|
@@ -598,6 +654,9 @@ export interface Parameter {
|
|
|
598
654
|
*/
|
|
599
655
|
Required?: boolean;
|
|
600
656
|
}
|
|
657
|
+
/**
|
|
658
|
+
* @public
|
|
659
|
+
*/
|
|
601
660
|
export interface CreateExtensionRequest {
|
|
602
661
|
/**
|
|
603
662
|
* <p>A name for the extension. Each extension name in your account must be unique. Extension
|
|
@@ -632,6 +691,9 @@ export interface CreateExtensionRequest {
|
|
|
632
691
|
*/
|
|
633
692
|
LatestVersionNumber?: number;
|
|
634
693
|
}
|
|
694
|
+
/**
|
|
695
|
+
* @public
|
|
696
|
+
*/
|
|
635
697
|
export interface Extension {
|
|
636
698
|
/**
|
|
637
699
|
* <p>The system-generated ID of the extension.</p>
|
|
@@ -666,6 +728,7 @@ export interface Extension {
|
|
|
666
728
|
Parameters?: Record<string, Parameter>;
|
|
667
729
|
}
|
|
668
730
|
/**
|
|
731
|
+
* @public
|
|
669
732
|
* <p>The number of hosted configuration versions exceeds the limit for the AppConfig hosted configuration store. Delete one or more versions and try again.</p>
|
|
670
733
|
*/
|
|
671
734
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -677,6 +740,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
677
740
|
*/
|
|
678
741
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
679
742
|
}
|
|
743
|
+
/**
|
|
744
|
+
* @public
|
|
745
|
+
*/
|
|
680
746
|
export interface CreateExtensionAssociationRequest {
|
|
681
747
|
/**
|
|
682
748
|
* <p>The name, the ID, or the Amazon Resource Name (ARN) of the extension.</p>
|
|
@@ -704,6 +770,9 @@ export interface CreateExtensionAssociationRequest {
|
|
|
704
770
|
*/
|
|
705
771
|
Tags?: Record<string, string>;
|
|
706
772
|
}
|
|
773
|
+
/**
|
|
774
|
+
* @public
|
|
775
|
+
*/
|
|
707
776
|
export interface ExtensionAssociation {
|
|
708
777
|
/**
|
|
709
778
|
* <p>The system-generated ID for the association.</p>
|
|
@@ -731,6 +800,9 @@ export interface ExtensionAssociation {
|
|
|
731
800
|
*/
|
|
732
801
|
ExtensionVersionNumber?: number;
|
|
733
802
|
}
|
|
803
|
+
/**
|
|
804
|
+
* @public
|
|
805
|
+
*/
|
|
734
806
|
export interface CreateHostedConfigurationVersionRequest {
|
|
735
807
|
/**
|
|
736
808
|
* <p>The application ID.</p>
|
|
@@ -765,6 +837,9 @@ export interface CreateHostedConfigurationVersionRequest {
|
|
|
765
837
|
*/
|
|
766
838
|
VersionLabel?: string;
|
|
767
839
|
}
|
|
840
|
+
/**
|
|
841
|
+
* @public
|
|
842
|
+
*/
|
|
768
843
|
export interface HostedConfigurationVersion {
|
|
769
844
|
/**
|
|
770
845
|
* <p>The application ID.</p>
|
|
@@ -796,10 +871,14 @@ export interface HostedConfigurationVersion {
|
|
|
796
871
|
*/
|
|
797
872
|
VersionLabel?: string;
|
|
798
873
|
}
|
|
874
|
+
/**
|
|
875
|
+
* @public
|
|
876
|
+
*/
|
|
799
877
|
export declare enum BytesMeasure {
|
|
800
878
|
KILOBYTES = "KILOBYTES"
|
|
801
879
|
}
|
|
802
880
|
/**
|
|
881
|
+
* @public
|
|
803
882
|
* <p>The configuration size is too large.</p>
|
|
804
883
|
*/
|
|
805
884
|
export declare class PayloadTooLargeException extends __BaseException {
|
|
@@ -814,12 +893,18 @@ export declare class PayloadTooLargeException extends __BaseException {
|
|
|
814
893
|
*/
|
|
815
894
|
constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
|
|
816
895
|
}
|
|
896
|
+
/**
|
|
897
|
+
* @public
|
|
898
|
+
*/
|
|
817
899
|
export interface DeleteApplicationRequest {
|
|
818
900
|
/**
|
|
819
901
|
* <p>The ID of the application to delete.</p>
|
|
820
902
|
*/
|
|
821
903
|
ApplicationId: string | undefined;
|
|
822
904
|
}
|
|
905
|
+
/**
|
|
906
|
+
* @public
|
|
907
|
+
*/
|
|
823
908
|
export interface DeleteConfigurationProfileRequest {
|
|
824
909
|
/**
|
|
825
910
|
* <p>The application ID that includes the configuration profile you want to delete.</p>
|
|
@@ -830,12 +915,18 @@ export interface DeleteConfigurationProfileRequest {
|
|
|
830
915
|
*/
|
|
831
916
|
ConfigurationProfileId: string | undefined;
|
|
832
917
|
}
|
|
918
|
+
/**
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
833
921
|
export interface DeleteDeploymentStrategyRequest {
|
|
834
922
|
/**
|
|
835
923
|
* <p>The ID of the deployment strategy you want to delete.</p>
|
|
836
924
|
*/
|
|
837
925
|
DeploymentStrategyId: string | undefined;
|
|
838
926
|
}
|
|
927
|
+
/**
|
|
928
|
+
* @public
|
|
929
|
+
*/
|
|
839
930
|
export interface DeleteEnvironmentRequest {
|
|
840
931
|
/**
|
|
841
932
|
* <p>The application ID that includes the environment that you want to delete.</p>
|
|
@@ -846,6 +937,9 @@ export interface DeleteEnvironmentRequest {
|
|
|
846
937
|
*/
|
|
847
938
|
EnvironmentId: string | undefined;
|
|
848
939
|
}
|
|
940
|
+
/**
|
|
941
|
+
* @public
|
|
942
|
+
*/
|
|
849
943
|
export interface DeleteExtensionRequest {
|
|
850
944
|
/**
|
|
851
945
|
* <p>The name, ID, or Amazon Resource Name (ARN) of the extension you want to delete.</p>
|
|
@@ -857,12 +951,18 @@ export interface DeleteExtensionRequest {
|
|
|
857
951
|
*/
|
|
858
952
|
VersionNumber?: number;
|
|
859
953
|
}
|
|
954
|
+
/**
|
|
955
|
+
* @public
|
|
956
|
+
*/
|
|
860
957
|
export interface DeleteExtensionAssociationRequest {
|
|
861
958
|
/**
|
|
862
959
|
* <p>The ID of the extension association to delete.</p>
|
|
863
960
|
*/
|
|
864
961
|
ExtensionAssociationId: string | undefined;
|
|
865
962
|
}
|
|
963
|
+
/**
|
|
964
|
+
* @public
|
|
965
|
+
*/
|
|
866
966
|
export interface DeleteHostedConfigurationVersionRequest {
|
|
867
967
|
/**
|
|
868
968
|
* <p>The application ID.</p>
|
|
@@ -877,12 +977,18 @@ export interface DeleteHostedConfigurationVersionRequest {
|
|
|
877
977
|
*/
|
|
878
978
|
VersionNumber: number | undefined;
|
|
879
979
|
}
|
|
980
|
+
/**
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
880
983
|
export interface GetApplicationRequest {
|
|
881
984
|
/**
|
|
882
985
|
* <p>The ID of the application you want to get.</p>
|
|
883
986
|
*/
|
|
884
987
|
ApplicationId: string | undefined;
|
|
885
988
|
}
|
|
989
|
+
/**
|
|
990
|
+
* @public
|
|
991
|
+
*/
|
|
886
992
|
export interface Configuration {
|
|
887
993
|
/**
|
|
888
994
|
* <p>The content of the configuration or the configuration data.</p>
|
|
@@ -905,6 +1011,9 @@ export interface Configuration {
|
|
|
905
1011
|
*/
|
|
906
1012
|
ContentType?: string;
|
|
907
1013
|
}
|
|
1014
|
+
/**
|
|
1015
|
+
* @public
|
|
1016
|
+
*/
|
|
908
1017
|
export interface GetConfigurationRequest {
|
|
909
1018
|
/**
|
|
910
1019
|
* <p>The application to get. Specify either the application name or the application
|
|
@@ -950,6 +1059,9 @@ export interface GetConfigurationRequest {
|
|
|
950
1059
|
*/
|
|
951
1060
|
ClientConfigurationVersion?: string;
|
|
952
1061
|
}
|
|
1062
|
+
/**
|
|
1063
|
+
* @public
|
|
1064
|
+
*/
|
|
953
1065
|
export interface GetConfigurationProfileRequest {
|
|
954
1066
|
/**
|
|
955
1067
|
* <p>The ID of the application that includes the configuration profile you want to
|
|
@@ -962,6 +1074,7 @@ export interface GetConfigurationProfileRequest {
|
|
|
962
1074
|
ConfigurationProfileId: string | undefined;
|
|
963
1075
|
}
|
|
964
1076
|
/**
|
|
1077
|
+
* @public
|
|
965
1078
|
* <p>An extension that was invoked during a deployment.</p>
|
|
966
1079
|
*/
|
|
967
1080
|
export interface AppliedExtension {
|
|
@@ -982,6 +1095,9 @@ export interface AppliedExtension {
|
|
|
982
1095
|
*/
|
|
983
1096
|
Parameters?: Record<string, string>;
|
|
984
1097
|
}
|
|
1098
|
+
/**
|
|
1099
|
+
* @public
|
|
1100
|
+
*/
|
|
985
1101
|
export declare enum DeploymentEventType {
|
|
986
1102
|
BAKE_TIME_STARTED = "BAKE_TIME_STARTED",
|
|
987
1103
|
DEPLOYMENT_COMPLETED = "DEPLOYMENT_COMPLETED",
|
|
@@ -990,6 +1106,9 @@ export declare enum DeploymentEventType {
|
|
|
990
1106
|
ROLLBACK_COMPLETED = "ROLLBACK_COMPLETED",
|
|
991
1107
|
ROLLBACK_STARTED = "ROLLBACK_STARTED"
|
|
992
1108
|
}
|
|
1109
|
+
/**
|
|
1110
|
+
* @public
|
|
1111
|
+
*/
|
|
993
1112
|
export declare enum TriggeredBy {
|
|
994
1113
|
APPCONFIG = "APPCONFIG",
|
|
995
1114
|
CLOUDWATCH_ALARM = "CLOUDWATCH_ALARM",
|
|
@@ -997,6 +1116,7 @@ export declare enum TriggeredBy {
|
|
|
997
1116
|
USER = "USER"
|
|
998
1117
|
}
|
|
999
1118
|
/**
|
|
1119
|
+
* @public
|
|
1000
1120
|
* <p>An object that describes a deployment event.</p>
|
|
1001
1121
|
*/
|
|
1002
1122
|
export interface DeploymentEvent {
|
|
@@ -1027,6 +1147,9 @@ export interface DeploymentEvent {
|
|
|
1027
1147
|
*/
|
|
1028
1148
|
OccurredAt?: Date;
|
|
1029
1149
|
}
|
|
1150
|
+
/**
|
|
1151
|
+
* @public
|
|
1152
|
+
*/
|
|
1030
1153
|
export declare enum DeploymentState {
|
|
1031
1154
|
BAKING = "BAKING",
|
|
1032
1155
|
COMPLETE = "COMPLETE",
|
|
@@ -1035,6 +1158,9 @@ export declare enum DeploymentState {
|
|
|
1035
1158
|
ROLLING_BACK = "ROLLING_BACK",
|
|
1036
1159
|
VALIDATING = "VALIDATING"
|
|
1037
1160
|
}
|
|
1161
|
+
/**
|
|
1162
|
+
* @public
|
|
1163
|
+
*/
|
|
1038
1164
|
export interface Deployment {
|
|
1039
1165
|
/**
|
|
1040
1166
|
* <p>The ID of the application that was deployed.</p>
|
|
@@ -1129,6 +1255,9 @@ export interface Deployment {
|
|
|
1129
1255
|
*/
|
|
1130
1256
|
KmsKeyIdentifier?: string;
|
|
1131
1257
|
}
|
|
1258
|
+
/**
|
|
1259
|
+
* @public
|
|
1260
|
+
*/
|
|
1132
1261
|
export interface GetDeploymentRequest {
|
|
1133
1262
|
/**
|
|
1134
1263
|
* <p>The ID of the application that includes the deployment you want to get. </p>
|
|
@@ -1143,12 +1272,18 @@ export interface GetDeploymentRequest {
|
|
|
1143
1272
|
*/
|
|
1144
1273
|
DeploymentNumber: number | undefined;
|
|
1145
1274
|
}
|
|
1275
|
+
/**
|
|
1276
|
+
* @public
|
|
1277
|
+
*/
|
|
1146
1278
|
export interface GetDeploymentStrategyRequest {
|
|
1147
1279
|
/**
|
|
1148
1280
|
* <p>The ID of the deployment strategy to get.</p>
|
|
1149
1281
|
*/
|
|
1150
1282
|
DeploymentStrategyId: string | undefined;
|
|
1151
1283
|
}
|
|
1284
|
+
/**
|
|
1285
|
+
* @public
|
|
1286
|
+
*/
|
|
1152
1287
|
export interface GetEnvironmentRequest {
|
|
1153
1288
|
/**
|
|
1154
1289
|
* <p>The ID of the application that includes the environment you want to get.</p>
|
|
@@ -1159,6 +1294,9 @@ export interface GetEnvironmentRequest {
|
|
|
1159
1294
|
*/
|
|
1160
1295
|
EnvironmentId: string | undefined;
|
|
1161
1296
|
}
|
|
1297
|
+
/**
|
|
1298
|
+
* @public
|
|
1299
|
+
*/
|
|
1162
1300
|
export interface GetExtensionRequest {
|
|
1163
1301
|
/**
|
|
1164
1302
|
* <p>The name, the ID, or the Amazon Resource Name (ARN) of the extension.</p>
|
|
@@ -1170,12 +1308,18 @@ export interface GetExtensionRequest {
|
|
|
1170
1308
|
*/
|
|
1171
1309
|
VersionNumber?: number;
|
|
1172
1310
|
}
|
|
1311
|
+
/**
|
|
1312
|
+
* @public
|
|
1313
|
+
*/
|
|
1173
1314
|
export interface GetExtensionAssociationRequest {
|
|
1174
1315
|
/**
|
|
1175
1316
|
* <p>The extension association ID to get.</p>
|
|
1176
1317
|
*/
|
|
1177
1318
|
ExtensionAssociationId: string | undefined;
|
|
1178
1319
|
}
|
|
1320
|
+
/**
|
|
1321
|
+
* @public
|
|
1322
|
+
*/
|
|
1179
1323
|
export interface GetHostedConfigurationVersionRequest {
|
|
1180
1324
|
/**
|
|
1181
1325
|
* <p>The application ID.</p>
|
|
@@ -1190,6 +1334,9 @@ export interface GetHostedConfigurationVersionRequest {
|
|
|
1190
1334
|
*/
|
|
1191
1335
|
VersionNumber: number | undefined;
|
|
1192
1336
|
}
|
|
1337
|
+
/**
|
|
1338
|
+
* @public
|
|
1339
|
+
*/
|
|
1193
1340
|
export interface Applications {
|
|
1194
1341
|
/**
|
|
1195
1342
|
* <p>The elements from this collection.</p>
|
|
@@ -1201,6 +1348,9 @@ export interface Applications {
|
|
|
1201
1348
|
*/
|
|
1202
1349
|
NextToken?: string;
|
|
1203
1350
|
}
|
|
1351
|
+
/**
|
|
1352
|
+
* @public
|
|
1353
|
+
*/
|
|
1204
1354
|
export interface ListApplicationsRequest {
|
|
1205
1355
|
/**
|
|
1206
1356
|
* <p>The maximum number of items to return for this call. The call also returns a token that
|
|
@@ -1216,6 +1366,7 @@ export interface ListApplicationsRequest {
|
|
|
1216
1366
|
NextToken?: string;
|
|
1217
1367
|
}
|
|
1218
1368
|
/**
|
|
1369
|
+
* @public
|
|
1219
1370
|
* <p>A summary of a configuration profile.</p>
|
|
1220
1371
|
*/
|
|
1221
1372
|
export interface ConfigurationProfileSummary {
|
|
@@ -1254,6 +1405,9 @@ export interface ConfigurationProfileSummary {
|
|
|
1254
1405
|
*/
|
|
1255
1406
|
Type?: string;
|
|
1256
1407
|
}
|
|
1408
|
+
/**
|
|
1409
|
+
* @public
|
|
1410
|
+
*/
|
|
1257
1411
|
export interface ConfigurationProfiles {
|
|
1258
1412
|
/**
|
|
1259
1413
|
* <p>The elements from this collection.</p>
|
|
@@ -1265,6 +1419,9 @@ export interface ConfigurationProfiles {
|
|
|
1265
1419
|
*/
|
|
1266
1420
|
NextToken?: string;
|
|
1267
1421
|
}
|
|
1422
|
+
/**
|
|
1423
|
+
* @public
|
|
1424
|
+
*/
|
|
1268
1425
|
export interface ListConfigurationProfilesRequest {
|
|
1269
1426
|
/**
|
|
1270
1427
|
* <p>The application ID.</p>
|
|
@@ -1286,6 +1443,7 @@ export interface ListConfigurationProfilesRequest {
|
|
|
1286
1443
|
Type?: string;
|
|
1287
1444
|
}
|
|
1288
1445
|
/**
|
|
1446
|
+
* @public
|
|
1289
1447
|
* <p>Information about the deployment.</p>
|
|
1290
1448
|
*/
|
|
1291
1449
|
export interface DeploymentSummary {
|
|
@@ -1336,6 +1494,9 @@ export interface DeploymentSummary {
|
|
|
1336
1494
|
*/
|
|
1337
1495
|
CompletedAt?: Date;
|
|
1338
1496
|
}
|
|
1497
|
+
/**
|
|
1498
|
+
* @public
|
|
1499
|
+
*/
|
|
1339
1500
|
export interface Deployments {
|
|
1340
1501
|
/**
|
|
1341
1502
|
* <p>The elements from this collection.</p>
|
|
@@ -1347,6 +1508,9 @@ export interface Deployments {
|
|
|
1347
1508
|
*/
|
|
1348
1509
|
NextToken?: string;
|
|
1349
1510
|
}
|
|
1511
|
+
/**
|
|
1512
|
+
* @public
|
|
1513
|
+
*/
|
|
1350
1514
|
export interface ListDeploymentsRequest {
|
|
1351
1515
|
/**
|
|
1352
1516
|
* <p>The application ID.</p>
|
|
@@ -1369,6 +1533,9 @@ export interface ListDeploymentsRequest {
|
|
|
1369
1533
|
*/
|
|
1370
1534
|
NextToken?: string;
|
|
1371
1535
|
}
|
|
1536
|
+
/**
|
|
1537
|
+
* @public
|
|
1538
|
+
*/
|
|
1372
1539
|
export interface DeploymentStrategies {
|
|
1373
1540
|
/**
|
|
1374
1541
|
* <p>The elements from this collection.</p>
|
|
@@ -1380,6 +1547,9 @@ export interface DeploymentStrategies {
|
|
|
1380
1547
|
*/
|
|
1381
1548
|
NextToken?: string;
|
|
1382
1549
|
}
|
|
1550
|
+
/**
|
|
1551
|
+
* @public
|
|
1552
|
+
*/
|
|
1383
1553
|
export interface ListDeploymentStrategiesRequest {
|
|
1384
1554
|
/**
|
|
1385
1555
|
* <p>The maximum number of items to return for this call. The call also returns a token that
|
|
@@ -1391,6 +1561,9 @@ export interface ListDeploymentStrategiesRequest {
|
|
|
1391
1561
|
*/
|
|
1392
1562
|
NextToken?: string;
|
|
1393
1563
|
}
|
|
1564
|
+
/**
|
|
1565
|
+
* @public
|
|
1566
|
+
*/
|
|
1394
1567
|
export interface Environments {
|
|
1395
1568
|
/**
|
|
1396
1569
|
* <p>The elements from this collection.</p>
|
|
@@ -1402,6 +1575,9 @@ export interface Environments {
|
|
|
1402
1575
|
*/
|
|
1403
1576
|
NextToken?: string;
|
|
1404
1577
|
}
|
|
1578
|
+
/**
|
|
1579
|
+
* @public
|
|
1580
|
+
*/
|
|
1405
1581
|
export interface ListEnvironmentsRequest {
|
|
1406
1582
|
/**
|
|
1407
1583
|
* <p>The application ID.</p>
|
|
@@ -1418,6 +1594,7 @@ export interface ListEnvironmentsRequest {
|
|
|
1418
1594
|
NextToken?: string;
|
|
1419
1595
|
}
|
|
1420
1596
|
/**
|
|
1597
|
+
* @public
|
|
1421
1598
|
* <p>Information about an association between an extension and an AppConfig
|
|
1422
1599
|
* resource such as an application, environment, or configuration profile. Call
|
|
1423
1600
|
* <code>GetExtensionAssociation</code> to get more information about an
|
|
@@ -1440,6 +1617,9 @@ export interface ExtensionAssociationSummary {
|
|
|
1440
1617
|
*/
|
|
1441
1618
|
ResourceArn?: string;
|
|
1442
1619
|
}
|
|
1620
|
+
/**
|
|
1621
|
+
* @public
|
|
1622
|
+
*/
|
|
1443
1623
|
export interface ExtensionAssociations {
|
|
1444
1624
|
/**
|
|
1445
1625
|
* <p>The list of extension associations. Each item represents an extension association to an
|
|
@@ -1452,6 +1632,9 @@ export interface ExtensionAssociations {
|
|
|
1452
1632
|
*/
|
|
1453
1633
|
NextToken?: string;
|
|
1454
1634
|
}
|
|
1635
|
+
/**
|
|
1636
|
+
* @public
|
|
1637
|
+
*/
|
|
1455
1638
|
export interface ListExtensionAssociationsRequest {
|
|
1456
1639
|
/**
|
|
1457
1640
|
* <p>The ARN of an application, configuration profile, or environment.</p>
|
|
@@ -1477,6 +1660,7 @@ export interface ListExtensionAssociationsRequest {
|
|
|
1477
1660
|
NextToken?: string;
|
|
1478
1661
|
}
|
|
1479
1662
|
/**
|
|
1663
|
+
* @public
|
|
1480
1664
|
* <p>Information about an extension. Call <code>GetExtension</code> to get more information
|
|
1481
1665
|
* about an extension.</p>
|
|
1482
1666
|
*/
|
|
@@ -1502,6 +1686,9 @@ export interface ExtensionSummary {
|
|
|
1502
1686
|
*/
|
|
1503
1687
|
Description?: string;
|
|
1504
1688
|
}
|
|
1689
|
+
/**
|
|
1690
|
+
* @public
|
|
1691
|
+
*/
|
|
1505
1692
|
export interface Extensions {
|
|
1506
1693
|
/**
|
|
1507
1694
|
* <p>The list of available extensions. The list includes Amazon Web Services authored and
|
|
@@ -1514,6 +1701,9 @@ export interface Extensions {
|
|
|
1514
1701
|
*/
|
|
1515
1702
|
NextToken?: string;
|
|
1516
1703
|
}
|
|
1704
|
+
/**
|
|
1705
|
+
* @public
|
|
1706
|
+
*/
|
|
1517
1707
|
export interface ListExtensionsRequest {
|
|
1518
1708
|
/**
|
|
1519
1709
|
* <p>The maximum number of items to return for this call. The call also returns a token that
|
|
@@ -1530,6 +1720,7 @@ export interface ListExtensionsRequest {
|
|
|
1530
1720
|
Name?: string;
|
|
1531
1721
|
}
|
|
1532
1722
|
/**
|
|
1723
|
+
* @public
|
|
1533
1724
|
* <p>Information about the configuration.</p>
|
|
1534
1725
|
*/
|
|
1535
1726
|
export interface HostedConfigurationVersionSummary {
|
|
@@ -1559,6 +1750,9 @@ export interface HostedConfigurationVersionSummary {
|
|
|
1559
1750
|
*/
|
|
1560
1751
|
VersionLabel?: string;
|
|
1561
1752
|
}
|
|
1753
|
+
/**
|
|
1754
|
+
* @public
|
|
1755
|
+
*/
|
|
1562
1756
|
export interface HostedConfigurationVersions {
|
|
1563
1757
|
/**
|
|
1564
1758
|
* <p>The elements from this collection.</p>
|
|
@@ -1570,6 +1764,9 @@ export interface HostedConfigurationVersions {
|
|
|
1570
1764
|
*/
|
|
1571
1765
|
NextToken?: string;
|
|
1572
1766
|
}
|
|
1767
|
+
/**
|
|
1768
|
+
* @public
|
|
1769
|
+
*/
|
|
1573
1770
|
export interface ListHostedConfigurationVersionsRequest {
|
|
1574
1771
|
/**
|
|
1575
1772
|
* <p>The application ID.</p>
|
|
@@ -1593,12 +1790,18 @@ export interface ListHostedConfigurationVersionsRequest {
|
|
|
1593
1790
|
*/
|
|
1594
1791
|
VersionLabel?: string;
|
|
1595
1792
|
}
|
|
1793
|
+
/**
|
|
1794
|
+
* @public
|
|
1795
|
+
*/
|
|
1596
1796
|
export interface ListTagsForResourceRequest {
|
|
1597
1797
|
/**
|
|
1598
1798
|
* <p>The resource ARN.</p>
|
|
1599
1799
|
*/
|
|
1600
1800
|
ResourceArn: string | undefined;
|
|
1601
1801
|
}
|
|
1802
|
+
/**
|
|
1803
|
+
* @public
|
|
1804
|
+
*/
|
|
1602
1805
|
export interface ResourceTags {
|
|
1603
1806
|
/**
|
|
1604
1807
|
* <p>Metadata to assign to AppConfig resources. Tags help organize and categorize
|
|
@@ -1607,6 +1810,9 @@ export interface ResourceTags {
|
|
|
1607
1810
|
*/
|
|
1608
1811
|
Tags?: Record<string, string>;
|
|
1609
1812
|
}
|
|
1813
|
+
/**
|
|
1814
|
+
* @public
|
|
1815
|
+
*/
|
|
1610
1816
|
export interface StartDeploymentRequest {
|
|
1611
1817
|
/**
|
|
1612
1818
|
* <p>The application ID.</p>
|
|
@@ -1642,6 +1848,9 @@ export interface StartDeploymentRequest {
|
|
|
1642
1848
|
*/
|
|
1643
1849
|
KmsKeyIdentifier?: string;
|
|
1644
1850
|
}
|
|
1851
|
+
/**
|
|
1852
|
+
* @public
|
|
1853
|
+
*/
|
|
1645
1854
|
export interface StopDeploymentRequest {
|
|
1646
1855
|
/**
|
|
1647
1856
|
* <p>The application ID.</p>
|
|
@@ -1656,6 +1865,9 @@ export interface StopDeploymentRequest {
|
|
|
1656
1865
|
*/
|
|
1657
1866
|
DeploymentNumber: number | undefined;
|
|
1658
1867
|
}
|
|
1868
|
+
/**
|
|
1869
|
+
* @public
|
|
1870
|
+
*/
|
|
1659
1871
|
export interface TagResourceRequest {
|
|
1660
1872
|
/**
|
|
1661
1873
|
* <p>The ARN of the resource for which to retrieve tags.</p>
|
|
@@ -1668,6 +1880,9 @@ export interface TagResourceRequest {
|
|
|
1668
1880
|
*/
|
|
1669
1881
|
Tags: Record<string, string> | undefined;
|
|
1670
1882
|
}
|
|
1883
|
+
/**
|
|
1884
|
+
* @public
|
|
1885
|
+
*/
|
|
1671
1886
|
export interface UntagResourceRequest {
|
|
1672
1887
|
/**
|
|
1673
1888
|
* <p>The ARN of the resource for which to remove tags.</p>
|
|
@@ -1678,6 +1893,9 @@ export interface UntagResourceRequest {
|
|
|
1678
1893
|
*/
|
|
1679
1894
|
TagKeys: string[] | undefined;
|
|
1680
1895
|
}
|
|
1896
|
+
/**
|
|
1897
|
+
* @public
|
|
1898
|
+
*/
|
|
1681
1899
|
export interface UpdateApplicationRequest {
|
|
1682
1900
|
/**
|
|
1683
1901
|
* <p>The application ID.</p>
|
|
@@ -1692,6 +1910,9 @@ export interface UpdateApplicationRequest {
|
|
|
1692
1910
|
*/
|
|
1693
1911
|
Description?: string;
|
|
1694
1912
|
}
|
|
1913
|
+
/**
|
|
1914
|
+
* @public
|
|
1915
|
+
*/
|
|
1695
1916
|
export interface UpdateConfigurationProfileRequest {
|
|
1696
1917
|
/**
|
|
1697
1918
|
* <p>The application ID.</p>
|
|
@@ -1719,6 +1940,9 @@ export interface UpdateConfigurationProfileRequest {
|
|
|
1719
1940
|
*/
|
|
1720
1941
|
Validators?: Validator[];
|
|
1721
1942
|
}
|
|
1943
|
+
/**
|
|
1944
|
+
* @public
|
|
1945
|
+
*/
|
|
1722
1946
|
export interface UpdateDeploymentStrategyRequest {
|
|
1723
1947
|
/**
|
|
1724
1948
|
* <p>The deployment strategy ID.</p>
|
|
@@ -1774,6 +1998,9 @@ export interface UpdateDeploymentStrategyRequest {
|
|
|
1774
1998
|
*/
|
|
1775
1999
|
GrowthType?: GrowthType | string;
|
|
1776
2000
|
}
|
|
2001
|
+
/**
|
|
2002
|
+
* @public
|
|
2003
|
+
*/
|
|
1777
2004
|
export interface UpdateEnvironmentRequest {
|
|
1778
2005
|
/**
|
|
1779
2006
|
* <p>The application ID.</p>
|
|
@@ -1796,6 +2023,9 @@ export interface UpdateEnvironmentRequest {
|
|
|
1796
2023
|
*/
|
|
1797
2024
|
Monitors?: Monitor[];
|
|
1798
2025
|
}
|
|
2026
|
+
/**
|
|
2027
|
+
* @public
|
|
2028
|
+
*/
|
|
1799
2029
|
export interface UpdateExtensionRequest {
|
|
1800
2030
|
/**
|
|
1801
2031
|
* <p>The name, the ID, or the Amazon Resource Name (ARN) of the extension.</p>
|
|
@@ -1818,6 +2048,9 @@ export interface UpdateExtensionRequest {
|
|
|
1818
2048
|
*/
|
|
1819
2049
|
VersionNumber?: number;
|
|
1820
2050
|
}
|
|
2051
|
+
/**
|
|
2052
|
+
* @public
|
|
2053
|
+
*/
|
|
1821
2054
|
export interface UpdateExtensionAssociationRequest {
|
|
1822
2055
|
/**
|
|
1823
2056
|
* <p>The system-generated ID for the association.</p>
|
|
@@ -1828,6 +2061,9 @@ export interface UpdateExtensionAssociationRequest {
|
|
|
1828
2061
|
*/
|
|
1829
2062
|
Parameters?: Record<string, string>;
|
|
1830
2063
|
}
|
|
2064
|
+
/**
|
|
2065
|
+
* @public
|
|
2066
|
+
*/
|
|
1831
2067
|
export interface ValidateConfigurationRequest {
|
|
1832
2068
|
/**
|
|
1833
2069
|
* <p>The application ID.</p>
|