@aws-sdk/client-apprunner 3.300.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 +104 -122
- package/dist-es/models/models_0.js +104 -122
- package/dist-types/commands/AssociateCustomDomainCommand.d.ts +1 -1
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +3 -3
- package/dist-types/commands/CreateConnectionCommand.d.ts +3 -3
- package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +4 -4
- package/dist-types/commands/CreateServiceCommand.d.ts +20 -20
- package/dist-types/commands/CreateVpcConnectorCommand.d.ts +4 -4
- package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +4 -4
- package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteServiceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeServiceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +1 -1
- package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +1 -1
- package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListOperationsCommand.d.ts +1 -1
- package/dist-types/commands/ListServicesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcConnectorsCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +2 -2
- package/dist-types/commands/PauseServiceCommand.d.ts +1 -1
- package/dist-types/commands/ResumeServiceCommand.d.ts +1 -1
- package/dist-types/commands/StartDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateServiceCommand.d.ts +17 -17
- package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +194 -104
- package/dist-types/ts3.4/models/models_0.d.ts +134 -104
- package/package.json +34 -34
|
@@ -24,12 +24,17 @@ export interface AssociateCustomDomainRequest {
|
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* @public
|
|
27
|
+
* @enum
|
|
27
28
|
*/
|
|
28
|
-
export declare
|
|
29
|
-
FAILED
|
|
30
|
-
PENDING_VALIDATION
|
|
31
|
-
SUCCESS
|
|
32
|
-
}
|
|
29
|
+
export declare const CertificateValidationRecordStatus: {
|
|
30
|
+
readonly FAILED: "FAILED";
|
|
31
|
+
readonly PENDING_VALIDATION: "PENDING_VALIDATION";
|
|
32
|
+
readonly SUCCESS: "SUCCESS";
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export type CertificateValidationRecordStatus = (typeof CertificateValidationRecordStatus)[keyof typeof CertificateValidationRecordStatus];
|
|
33
38
|
/**
|
|
34
39
|
* @public
|
|
35
40
|
* <p>Describes a certificate CNAME record to add to your DNS. For more information, see <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_AssociateCustomDomain.html">AssociateCustomDomain</a>.</p>
|
|
@@ -55,16 +60,21 @@ export interface CertificateValidationRecord {
|
|
|
55
60
|
}
|
|
56
61
|
/**
|
|
57
62
|
* @public
|
|
63
|
+
* @enum
|
|
58
64
|
*/
|
|
59
|
-
export declare
|
|
60
|
-
ACTIVE
|
|
61
|
-
BINDING_CERTIFICATE
|
|
62
|
-
CREATE_FAILED
|
|
63
|
-
CREATING
|
|
64
|
-
DELETE_FAILED
|
|
65
|
-
DELETING
|
|
66
|
-
PENDING_CERTIFICATE_DNS_VALIDATION
|
|
67
|
-
}
|
|
65
|
+
export declare const CustomDomainAssociationStatus: {
|
|
66
|
+
readonly ACTIVE: "ACTIVE";
|
|
67
|
+
readonly BINDING_CERTIFICATE: "BINDING_CERTIFICATE";
|
|
68
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
69
|
+
readonly CREATING: "CREATING";
|
|
70
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
71
|
+
readonly DELETING: "DELETING";
|
|
72
|
+
readonly PENDING_CERTIFICATE_DNS_VALIDATION: "PENDING_CERTIFICATE_DNS_VALIDATION";
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export type CustomDomainAssociationStatus = (typeof CustomDomainAssociationStatus)[keyof typeof CustomDomainAssociationStatus];
|
|
68
78
|
/**
|
|
69
79
|
* @public
|
|
70
80
|
* <p>Describes a custom domain that's associated with an App Runner service.</p>
|
|
@@ -227,11 +237,16 @@ export interface CreateAutoScalingConfigurationRequest {
|
|
|
227
237
|
}
|
|
228
238
|
/**
|
|
229
239
|
* @public
|
|
240
|
+
* @enum
|
|
230
241
|
*/
|
|
231
|
-
export declare
|
|
232
|
-
ACTIVE
|
|
233
|
-
INACTIVE
|
|
234
|
-
}
|
|
242
|
+
export declare const AutoScalingConfigurationStatus: {
|
|
243
|
+
readonly ACTIVE: "ACTIVE";
|
|
244
|
+
readonly INACTIVE: "INACTIVE";
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* @public
|
|
248
|
+
*/
|
|
249
|
+
export type AutoScalingConfigurationStatus = (typeof AutoScalingConfigurationStatus)[keyof typeof AutoScalingConfigurationStatus];
|
|
235
250
|
/**
|
|
236
251
|
* @public
|
|
237
252
|
* <p>Describes an App Runner automatic scaling configuration resource.</p>
|
|
@@ -316,10 +331,15 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
316
331
|
}
|
|
317
332
|
/**
|
|
318
333
|
* @public
|
|
334
|
+
* @enum
|
|
319
335
|
*/
|
|
320
|
-
export declare
|
|
321
|
-
GITHUB
|
|
322
|
-
}
|
|
336
|
+
export declare const ProviderType: {
|
|
337
|
+
readonly GITHUB: "GITHUB";
|
|
338
|
+
};
|
|
339
|
+
/**
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
|
|
323
343
|
/**
|
|
324
344
|
* @public
|
|
325
345
|
*/
|
|
@@ -339,13 +359,18 @@ export interface CreateConnectionRequest {
|
|
|
339
359
|
}
|
|
340
360
|
/**
|
|
341
361
|
* @public
|
|
362
|
+
* @enum
|
|
342
363
|
*/
|
|
343
|
-
export declare
|
|
344
|
-
AVAILABLE
|
|
345
|
-
DELETED
|
|
346
|
-
ERROR
|
|
347
|
-
PENDING_HANDSHAKE
|
|
348
|
-
}
|
|
364
|
+
export declare const ConnectionStatus: {
|
|
365
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
366
|
+
readonly DELETED: "DELETED";
|
|
367
|
+
readonly ERROR: "ERROR";
|
|
368
|
+
readonly PENDING_HANDSHAKE: "PENDING_HANDSHAKE";
|
|
369
|
+
};
|
|
370
|
+
/**
|
|
371
|
+
* @public
|
|
372
|
+
*/
|
|
373
|
+
export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
349
374
|
/**
|
|
350
375
|
* @public
|
|
351
376
|
* <p>Describes an App Runner connection resource.</p>
|
|
@@ -383,10 +408,15 @@ export interface CreateConnectionResponse {
|
|
|
383
408
|
}
|
|
384
409
|
/**
|
|
385
410
|
* @public
|
|
411
|
+
* @enum
|
|
386
412
|
*/
|
|
387
|
-
export declare
|
|
388
|
-
AWSXRAY
|
|
389
|
-
}
|
|
413
|
+
export declare const TracingVendor: {
|
|
414
|
+
readonly AWSXRAY: "AWSXRAY";
|
|
415
|
+
};
|
|
416
|
+
/**
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
419
|
+
export type TracingVendor = (typeof TracingVendor)[keyof typeof TracingVendor];
|
|
390
420
|
/**
|
|
391
421
|
* @public
|
|
392
422
|
* <p>Describes the configuration of the tracing feature within an App Runner observability configuration.</p>
|
|
@@ -423,11 +453,16 @@ export interface CreateObservabilityConfigurationRequest {
|
|
|
423
453
|
}
|
|
424
454
|
/**
|
|
425
455
|
* @public
|
|
456
|
+
* @enum
|
|
426
457
|
*/
|
|
427
|
-
export declare
|
|
428
|
-
ACTIVE
|
|
429
|
-
INACTIVE
|
|
430
|
-
}
|
|
458
|
+
export declare const ObservabilityConfigurationStatus: {
|
|
459
|
+
readonly ACTIVE: "ACTIVE";
|
|
460
|
+
readonly INACTIVE: "INACTIVE";
|
|
461
|
+
};
|
|
462
|
+
/**
|
|
463
|
+
* @public
|
|
464
|
+
*/
|
|
465
|
+
export type ObservabilityConfigurationStatus = (typeof ObservabilityConfigurationStatus)[keyof typeof ObservabilityConfigurationStatus];
|
|
431
466
|
/**
|
|
432
467
|
* @public
|
|
433
468
|
* <p>Describes an App Runner observability configuration resource. Multiple revisions of a configuration have the same
|
|
@@ -494,11 +529,16 @@ export interface EncryptionConfiguration {
|
|
|
494
529
|
}
|
|
495
530
|
/**
|
|
496
531
|
* @public
|
|
532
|
+
* @enum
|
|
497
533
|
*/
|
|
498
|
-
export declare
|
|
499
|
-
HTTP
|
|
500
|
-
TCP
|
|
501
|
-
}
|
|
534
|
+
export declare const HealthCheckProtocol: {
|
|
535
|
+
readonly HTTP: "HTTP";
|
|
536
|
+
readonly TCP: "TCP";
|
|
537
|
+
};
|
|
538
|
+
/**
|
|
539
|
+
* @public
|
|
540
|
+
*/
|
|
541
|
+
export type HealthCheckProtocol = (typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
|
|
502
542
|
/**
|
|
503
543
|
* @public
|
|
504
544
|
* <p>Describes the settings for the health check that App Runner performs to monitor the health of a service.</p>
|
|
@@ -569,11 +609,16 @@ export interface InstanceConfiguration {
|
|
|
569
609
|
}
|
|
570
610
|
/**
|
|
571
611
|
* @public
|
|
612
|
+
* @enum
|
|
572
613
|
*/
|
|
573
|
-
export declare
|
|
574
|
-
DEFAULT
|
|
575
|
-
VPC
|
|
576
|
-
}
|
|
614
|
+
export declare const EgressType: {
|
|
615
|
+
readonly DEFAULT: "DEFAULT";
|
|
616
|
+
readonly VPC: "VPC";
|
|
617
|
+
};
|
|
618
|
+
/**
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
621
|
+
export type EgressType = (typeof EgressType)[keyof typeof EgressType];
|
|
577
622
|
/**
|
|
578
623
|
* @public
|
|
579
624
|
* <p>Describes configuration settings related to outbound network traffic of an App Runner service.</p>
|
|
@@ -658,19 +703,24 @@ export interface AuthenticationConfiguration {
|
|
|
658
703
|
}
|
|
659
704
|
/**
|
|
660
705
|
* @public
|
|
706
|
+
* @enum
|
|
661
707
|
*/
|
|
662
|
-
export declare
|
|
663
|
-
CORRETTO_11
|
|
664
|
-
CORRETTO_8
|
|
665
|
-
DOTNET_6
|
|
666
|
-
GO_1
|
|
667
|
-
NODEJS_12
|
|
668
|
-
NODEJS_14
|
|
669
|
-
NODEJS_16
|
|
670
|
-
PHP_81
|
|
671
|
-
PYTHON_3
|
|
672
|
-
RUBY_31
|
|
673
|
-
}
|
|
708
|
+
export declare const Runtime: {
|
|
709
|
+
readonly CORRETTO_11: "CORRETTO_11";
|
|
710
|
+
readonly CORRETTO_8: "CORRETTO_8";
|
|
711
|
+
readonly DOTNET_6: "DOTNET_6";
|
|
712
|
+
readonly GO_1: "GO_1";
|
|
713
|
+
readonly NODEJS_12: "NODEJS_12";
|
|
714
|
+
readonly NODEJS_14: "NODEJS_14";
|
|
715
|
+
readonly NODEJS_16: "NODEJS_16";
|
|
716
|
+
readonly PHP_81: "PHP_81";
|
|
717
|
+
readonly PYTHON_3: "PYTHON_3";
|
|
718
|
+
readonly RUBY_31: "RUBY_31";
|
|
719
|
+
};
|
|
720
|
+
/**
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
723
|
+
export type Runtime = (typeof Runtime)[keyof typeof Runtime];
|
|
674
724
|
/**
|
|
675
725
|
* @public
|
|
676
726
|
* <p>Describes the basic configuration needed for building and running an App Runner service. This type doesn't support the full set of possible
|
|
@@ -724,11 +774,16 @@ export interface CodeConfigurationValues {
|
|
|
724
774
|
}
|
|
725
775
|
/**
|
|
726
776
|
* @public
|
|
777
|
+
* @enum
|
|
727
778
|
*/
|
|
728
|
-
export declare
|
|
729
|
-
API
|
|
730
|
-
REPOSITORY
|
|
731
|
-
}
|
|
779
|
+
export declare const ConfigurationSource: {
|
|
780
|
+
readonly API: "API";
|
|
781
|
+
readonly REPOSITORY: "REPOSITORY";
|
|
782
|
+
};
|
|
783
|
+
/**
|
|
784
|
+
* @public
|
|
785
|
+
*/
|
|
786
|
+
export type ConfigurationSource = (typeof ConfigurationSource)[keyof typeof ConfigurationSource];
|
|
732
787
|
/**
|
|
733
788
|
* @public
|
|
734
789
|
* <p>Describes the configuration that App Runner uses to build and run an App Runner service from a source code repository.</p>
|
|
@@ -758,10 +813,15 @@ export interface CodeConfiguration {
|
|
|
758
813
|
}
|
|
759
814
|
/**
|
|
760
815
|
* @public
|
|
816
|
+
* @enum
|
|
761
817
|
*/
|
|
762
|
-
export declare
|
|
763
|
-
BRANCH
|
|
764
|
-
}
|
|
818
|
+
export declare const SourceCodeVersionType: {
|
|
819
|
+
readonly BRANCH: "BRANCH";
|
|
820
|
+
};
|
|
821
|
+
/**
|
|
822
|
+
* @public
|
|
823
|
+
*/
|
|
824
|
+
export type SourceCodeVersionType = (typeof SourceCodeVersionType)[keyof typeof SourceCodeVersionType];
|
|
765
825
|
/**
|
|
766
826
|
* @public
|
|
767
827
|
* <p>Identifies a version of code that App Runner refers to within a source code repository.</p>
|
|
@@ -843,11 +903,16 @@ export interface ImageConfiguration {
|
|
|
843
903
|
}
|
|
844
904
|
/**
|
|
845
905
|
* @public
|
|
906
|
+
* @enum
|
|
846
907
|
*/
|
|
847
|
-
export declare
|
|
848
|
-
ECR
|
|
849
|
-
ECR_PUBLIC
|
|
850
|
-
}
|
|
908
|
+
export declare const ImageRepositoryType: {
|
|
909
|
+
readonly ECR: "ECR";
|
|
910
|
+
readonly ECR_PUBLIC: "ECR_PUBLIC";
|
|
911
|
+
};
|
|
912
|
+
/**
|
|
913
|
+
* @public
|
|
914
|
+
*/
|
|
915
|
+
export type ImageRepositoryType = (typeof ImageRepositoryType)[keyof typeof ImageRepositoryType];
|
|
851
916
|
/**
|
|
852
917
|
* @public
|
|
853
918
|
* <p>Describes a source image repository.</p>
|
|
@@ -968,15 +1033,20 @@ export interface AutoScalingConfigurationSummary {
|
|
|
968
1033
|
}
|
|
969
1034
|
/**
|
|
970
1035
|
* @public
|
|
1036
|
+
* @enum
|
|
971
1037
|
*/
|
|
972
|
-
export declare
|
|
973
|
-
CREATE_FAILED
|
|
974
|
-
DELETED
|
|
975
|
-
DELETE_FAILED
|
|
976
|
-
OPERATION_IN_PROGRESS
|
|
977
|
-
PAUSED
|
|
978
|
-
RUNNING
|
|
979
|
-
}
|
|
1038
|
+
export declare const ServiceStatus: {
|
|
1039
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1040
|
+
readonly DELETED: "DELETED";
|
|
1041
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1042
|
+
readonly OPERATION_IN_PROGRESS: "OPERATION_IN_PROGRESS";
|
|
1043
|
+
readonly PAUSED: "PAUSED";
|
|
1044
|
+
readonly RUNNING: "RUNNING";
|
|
1045
|
+
};
|
|
1046
|
+
/**
|
|
1047
|
+
* @public
|
|
1048
|
+
*/
|
|
1049
|
+
export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
|
|
980
1050
|
/**
|
|
981
1051
|
* @public
|
|
982
1052
|
* <p>Describes an App Runner service. It can describe a service in any state, including deleted services.</p>
|
|
@@ -1102,11 +1172,16 @@ export interface CreateVpcConnectorRequest {
|
|
|
1102
1172
|
}
|
|
1103
1173
|
/**
|
|
1104
1174
|
* @public
|
|
1175
|
+
* @enum
|
|
1105
1176
|
*/
|
|
1106
|
-
export declare
|
|
1107
|
-
ACTIVE
|
|
1108
|
-
INACTIVE
|
|
1109
|
-
}
|
|
1177
|
+
export declare const VpcConnectorStatus: {
|
|
1178
|
+
readonly ACTIVE: "ACTIVE";
|
|
1179
|
+
readonly INACTIVE: "INACTIVE";
|
|
1180
|
+
};
|
|
1181
|
+
/**
|
|
1182
|
+
* @public
|
|
1183
|
+
*/
|
|
1184
|
+
export type VpcConnectorStatus = (typeof VpcConnectorStatus)[keyof typeof VpcConnectorStatus];
|
|
1110
1185
|
/**
|
|
1111
1186
|
* @public
|
|
1112
1187
|
* <p>Describes an App Runner VPC connector resource. A VPC connector describes the Amazon Virtual Private Cloud (Amazon VPC) that an App Runner service is
|
|
@@ -1206,17 +1281,22 @@ export interface CreateVpcIngressConnectionRequest {
|
|
|
1206
1281
|
}
|
|
1207
1282
|
/**
|
|
1208
1283
|
* @public
|
|
1284
|
+
* @enum
|
|
1209
1285
|
*/
|
|
1210
|
-
export declare
|
|
1211
|
-
AVAILABLE
|
|
1212
|
-
DELETED
|
|
1213
|
-
FAILED_CREATION
|
|
1214
|
-
FAILED_DELETION
|
|
1215
|
-
FAILED_UPDATE
|
|
1216
|
-
PENDING_CREATION
|
|
1217
|
-
PENDING_DELETION
|
|
1218
|
-
PENDING_UPDATE
|
|
1219
|
-
}
|
|
1286
|
+
export declare const VpcIngressConnectionStatus: {
|
|
1287
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
1288
|
+
readonly DELETED: "DELETED";
|
|
1289
|
+
readonly FAILED_CREATION: "FAILED_CREATION";
|
|
1290
|
+
readonly FAILED_DELETION: "FAILED_DELETION";
|
|
1291
|
+
readonly FAILED_UPDATE: "FAILED_UPDATE";
|
|
1292
|
+
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
1293
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
1294
|
+
readonly PENDING_UPDATE: "PENDING_UPDATE";
|
|
1295
|
+
};
|
|
1296
|
+
/**
|
|
1297
|
+
* @public
|
|
1298
|
+
*/
|
|
1299
|
+
export type VpcIngressConnectionStatus = (typeof VpcIngressConnectionStatus)[keyof typeof VpcIngressConnectionStatus];
|
|
1220
1300
|
/**
|
|
1221
1301
|
* @public
|
|
1222
1302
|
* <p>The App Runner resource that specifies an App Runner endpoint for incoming traffic. It establishes a connection between a VPC interface endpoint and a App Runner
|
|
@@ -1803,27 +1883,37 @@ export interface ListOperationsRequest {
|
|
|
1803
1883
|
}
|
|
1804
1884
|
/**
|
|
1805
1885
|
* @public
|
|
1886
|
+
* @enum
|
|
1806
1887
|
*/
|
|
1807
|
-
export declare
|
|
1808
|
-
FAILED
|
|
1809
|
-
IN_PROGRESS
|
|
1810
|
-
PENDING
|
|
1811
|
-
ROLLBACK_FAILED
|
|
1812
|
-
ROLLBACK_IN_PROGRESS
|
|
1813
|
-
ROLLBACK_SUCCEEDED
|
|
1814
|
-
SUCCEEDED
|
|
1815
|
-
}
|
|
1888
|
+
export declare const OperationStatus: {
|
|
1889
|
+
readonly FAILED: "FAILED";
|
|
1890
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1891
|
+
readonly PENDING: "PENDING";
|
|
1892
|
+
readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
|
|
1893
|
+
readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
|
|
1894
|
+
readonly ROLLBACK_SUCCEEDED: "ROLLBACK_SUCCEEDED";
|
|
1895
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1896
|
+
};
|
|
1816
1897
|
/**
|
|
1817
1898
|
* @public
|
|
1818
1899
|
*/
|
|
1819
|
-
export
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1900
|
+
export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
|
|
1901
|
+
/**
|
|
1902
|
+
* @public
|
|
1903
|
+
* @enum
|
|
1904
|
+
*/
|
|
1905
|
+
export declare const OperationType: {
|
|
1906
|
+
readonly CREATE_SERVICE: "CREATE_SERVICE";
|
|
1907
|
+
readonly DELETE_SERVICE: "DELETE_SERVICE";
|
|
1908
|
+
readonly PAUSE_SERVICE: "PAUSE_SERVICE";
|
|
1909
|
+
readonly RESUME_SERVICE: "RESUME_SERVICE";
|
|
1910
|
+
readonly START_DEPLOYMENT: "START_DEPLOYMENT";
|
|
1911
|
+
readonly UPDATE_SERVICE: "UPDATE_SERVICE";
|
|
1912
|
+
};
|
|
1913
|
+
/**
|
|
1914
|
+
* @public
|
|
1915
|
+
*/
|
|
1916
|
+
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
1827
1917
|
/**
|
|
1828
1918
|
* @public
|
|
1829
1919
|
* <p>Provides summary information for an operation that occurred on an App Runner service.</p>
|