@aws-sdk/client-ecs 3.1021.0 → 3.1022.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/README.md +91 -7
- package/dist-cjs/index.js +530 -33
- package/dist-cjs/models/errors.js +37 -11
- package/dist-cjs/schemas/schemas_0.js +508 -100
- package/dist-es/ECS.js +34 -0
- package/dist-es/commands/CreateDaemonCommand.js +16 -0
- package/dist-es/commands/DeleteDaemonCommand.js +16 -0
- package/dist-es/commands/DeleteDaemonTaskDefinitionCommand.js +16 -0
- package/dist-es/commands/DescribeDaemonCommand.js +16 -0
- package/dist-es/commands/DescribeDaemonDeploymentsCommand.js +16 -0
- package/dist-es/commands/DescribeDaemonRevisionsCommand.js +16 -0
- package/dist-es/commands/DescribeDaemonTaskDefinitionCommand.js +16 -0
- package/dist-es/commands/ListDaemonDeploymentsCommand.js +16 -0
- package/dist-es/commands/ListDaemonTaskDefinitionsCommand.js +16 -0
- package/dist-es/commands/ListDaemonsCommand.js +16 -0
- package/dist-es/commands/RegisterDaemonTaskDefinitionCommand.js +16 -0
- package/dist-es/commands/UpdateDaemonCommand.js +16 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +72 -33
- package/dist-es/models/errors.js +32 -8
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/schemas/schemas_0.js +500 -93
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForDaemonActive.js +40 -0
- package/dist-es/waiters/waitForDaemonDeploymentStopped.js +54 -0
- package/dist-es/waiters/waitForDaemonDeploymentSuccessful.js +99 -0
- package/dist-es/waiters/waitForDaemonTaskDefinitionActive.js +49 -0
- package/dist-es/waiters/waitForDaemonTaskDefinitionDeleted.js +31 -0
- package/dist-types/ECS.d.ts +116 -0
- package/dist-types/ECSClient.d.ts +14 -2
- package/dist-types/commands/CreateDaemonCommand.d.ts +150 -0
- package/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDaemonCommand.d.ts +121 -0
- package/dist-types/commands/DeleteDaemonTaskDefinitionCommand.d.ts +101 -0
- package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDaemonCommand.d.ts +148 -0
- package/dist-types/commands/DescribeDaemonDeploymentsCommand.d.ts +229 -0
- package/dist-types/commands/DescribeDaemonRevisionsCommand.d.ts +155 -0
- package/dist-types/commands/DescribeDaemonTaskDefinitionCommand.d.ts +286 -0
- package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
- package/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
- package/dist-types/commands/ListDaemonDeploymentsCommand.d.ts +145 -0
- package/dist-types/commands/ListDaemonTaskDefinitionsCommand.d.ts +129 -0
- package/dist-types/commands/ListDaemonsCommand.d.ts +133 -0
- package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/ListTasksCommand.d.ts +1 -0
- package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
- package/dist-types/commands/RegisterDaemonTaskDefinitionCommand.d.ts +277 -0
- package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/RunTaskCommand.d.ts +1 -1
- package/dist-types/commands/StartTaskCommand.d.ts +1 -1
- package/dist-types/commands/StopTaskCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContainerAgentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDaemonCommand.d.ts +149 -0
- package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +155 -60
- package/dist-types/models/errors.d.ts +32 -8
- package/dist-types/models/models_0.d.ts +2630 -2613
- package/dist-types/models/models_1.d.ts +1245 -0
- package/dist-types/schemas/schemas_0.d.ts +58 -0
- package/dist-types/ts3.4/ECS.d.ts +251 -0
- package/dist-types/ts3.4/ECSClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/CreateDaemonCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateTaskSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteDaemonCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteDaemonTaskDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTaskSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeDaemonCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeDaemonDeploymentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeDaemonRevisionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeDaemonTaskDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeTaskSetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTasksCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTaskProtectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListDaemonDeploymentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDaemonTaskDefinitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDaemonsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTaskDefinitionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RegisterDaemonTaskDefinitionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RunTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopTaskCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDaemonCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +92 -40
- package/dist-types/ts3.4/models/errors.d.ts +21 -7
- package/dist-types/ts3.4/models/models_0.d.ts +338 -324
- package/dist-types/ts3.4/models/models_1.d.ts +322 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForDaemonActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForDaemonDeploymentStopped.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForDaemonDeploymentSuccessful.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForDaemonActive.d.ts +14 -0
- package/dist-types/waiters/waitForDaemonDeploymentStopped.d.ts +14 -0
- package/dist-types/waiters/waitForDaemonDeploymentSuccessful.d.ts +14 -0
- package/dist-types/waiters/waitForDaemonTaskDefinitionActive.d.ts +14 -0
- package/dist-types/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +14 -0
- package/package.json +1 -1
|
@@ -350,7 +350,9 @@ export type InstanceHealthCheckState = (typeof InstanceHealthCheckState)[keyof t
|
|
|
350
350
|
* @enum
|
|
351
351
|
*/
|
|
352
352
|
export declare const InstanceHealthCheckType: {
|
|
353
|
+
readonly ACCELERATED_COMPUTE: "ACCELERATED_COMPUTE";
|
|
353
354
|
readonly CONTAINER_RUNTIME: "CONTAINER_RUNTIME";
|
|
355
|
+
readonly DAEMON: "DAEMON";
|
|
354
356
|
};
|
|
355
357
|
/**
|
|
356
358
|
* @public
|
|
@@ -463,49 +465,58 @@ export type PlatformDeviceType = (typeof PlatformDeviceType)[keyof typeof Platfo
|
|
|
463
465
|
* @public
|
|
464
466
|
* @enum
|
|
465
467
|
*/
|
|
466
|
-
export declare const
|
|
467
|
-
readonly
|
|
468
|
-
readonly
|
|
469
|
-
readonly
|
|
470
|
-
readonly
|
|
471
|
-
readonly FARGATE_EVENT_WINDOWS: "fargateEventWindows";
|
|
472
|
-
readonly FARGATE_FIPS_MODE: "fargateFIPSMode";
|
|
473
|
-
readonly FARGATE_TASK_RETIREMENT_WAIT_PERIOD: "fargateTaskRetirementWaitPeriod";
|
|
474
|
-
readonly GUARD_DUTY_ACTIVATE: "guardDutyActivate";
|
|
475
|
-
readonly SERVICE_LONG_ARN_FORMAT: "serviceLongArnFormat";
|
|
476
|
-
readonly TAG_RESOURCE_AUTHORIZATION: "tagResourceAuthorization";
|
|
477
|
-
readonly TASK_LONG_ARN_FORMAT: "taskLongArnFormat";
|
|
468
|
+
export declare const DaemonDeploymentRollbackMonitorsStatus: {
|
|
469
|
+
readonly DISABLED: "DISABLED";
|
|
470
|
+
readonly MONITORING: "MONITORING";
|
|
471
|
+
readonly MONITORING_COMPLETE: "MONITORING_COMPLETE";
|
|
472
|
+
readonly TRIGGERED: "TRIGGERED";
|
|
478
473
|
};
|
|
479
474
|
/**
|
|
480
475
|
* @public
|
|
481
476
|
*/
|
|
482
|
-
export type
|
|
477
|
+
export type DaemonDeploymentRollbackMonitorsStatus = (typeof DaemonDeploymentRollbackMonitorsStatus)[keyof typeof DaemonDeploymentRollbackMonitorsStatus];
|
|
483
478
|
/**
|
|
484
479
|
* @public
|
|
485
480
|
* @enum
|
|
486
481
|
*/
|
|
487
|
-
export declare const
|
|
488
|
-
readonly
|
|
489
|
-
readonly
|
|
482
|
+
export declare const DaemonDeploymentStatus: {
|
|
483
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
484
|
+
readonly PENDING: "PENDING";
|
|
485
|
+
readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
|
|
486
|
+
readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
|
|
487
|
+
readonly ROLLBACK_SUCCESSFUL: "ROLLBACK_SUCCESSFUL";
|
|
488
|
+
readonly STOPPED: "STOPPED";
|
|
489
|
+
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
490
|
+
readonly SUCCESSFUL: "SUCCESSFUL";
|
|
490
491
|
};
|
|
491
492
|
/**
|
|
492
493
|
* @public
|
|
493
494
|
*/
|
|
494
|
-
export type
|
|
495
|
+
export type DaemonDeploymentStatus = (typeof DaemonDeploymentStatus)[keyof typeof DaemonDeploymentStatus];
|
|
495
496
|
/**
|
|
496
497
|
* @public
|
|
497
498
|
* @enum
|
|
498
499
|
*/
|
|
499
|
-
export declare const
|
|
500
|
-
readonly
|
|
501
|
-
readonly
|
|
502
|
-
readonly FARGATE: "FARGATE";
|
|
503
|
-
readonly MANAGED_INSTANCES: "MANAGED_INSTANCES";
|
|
500
|
+
export declare const DaemonPropagateTags: {
|
|
501
|
+
readonly DAEMON: "DAEMON";
|
|
502
|
+
readonly NONE: "NONE";
|
|
504
503
|
};
|
|
505
504
|
/**
|
|
506
505
|
* @public
|
|
507
506
|
*/
|
|
508
|
-
export type
|
|
507
|
+
export type DaemonPropagateTags = (typeof DaemonPropagateTags)[keyof typeof DaemonPropagateTags];
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
* @enum
|
|
511
|
+
*/
|
|
512
|
+
export declare const DaemonStatus: {
|
|
513
|
+
readonly ACTIVE: "ACTIVE";
|
|
514
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
515
|
+
};
|
|
516
|
+
/**
|
|
517
|
+
* @public
|
|
518
|
+
*/
|
|
519
|
+
export type DaemonStatus = (typeof DaemonStatus)[keyof typeof DaemonStatus];
|
|
509
520
|
/**
|
|
510
521
|
* @public
|
|
511
522
|
* @enum
|
|
@@ -574,31 +585,6 @@ export declare const LogDriver: {
|
|
|
574
585
|
* @public
|
|
575
586
|
*/
|
|
576
587
|
export type LogDriver = (typeof LogDriver)[keyof typeof LogDriver];
|
|
577
|
-
/**
|
|
578
|
-
* @public
|
|
579
|
-
* @enum
|
|
580
|
-
*/
|
|
581
|
-
export declare const ApplicationProtocol: {
|
|
582
|
-
readonly GRPC: "grpc";
|
|
583
|
-
readonly HTTP: "http";
|
|
584
|
-
readonly HTTP2: "http2";
|
|
585
|
-
};
|
|
586
|
-
/**
|
|
587
|
-
* @public
|
|
588
|
-
*/
|
|
589
|
-
export type ApplicationProtocol = (typeof ApplicationProtocol)[keyof typeof ApplicationProtocol];
|
|
590
|
-
/**
|
|
591
|
-
* @public
|
|
592
|
-
* @enum
|
|
593
|
-
*/
|
|
594
|
-
export declare const ResourceType: {
|
|
595
|
-
readonly GPU: "GPU";
|
|
596
|
-
readonly INFERENCE_ACCELERATOR: "InferenceAccelerator";
|
|
597
|
-
};
|
|
598
|
-
/**
|
|
599
|
-
* @public
|
|
600
|
-
*/
|
|
601
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
602
588
|
/**
|
|
603
589
|
* @public
|
|
604
590
|
* @enum
|
|
@@ -624,6 +610,127 @@ export declare const UlimitName: {
|
|
|
624
610
|
* @public
|
|
625
611
|
*/
|
|
626
612
|
export type UlimitName = (typeof UlimitName)[keyof typeof UlimitName];
|
|
613
|
+
/**
|
|
614
|
+
* @public
|
|
615
|
+
* @enum
|
|
616
|
+
*/
|
|
617
|
+
export declare const DaemonTaskDefinitionStatus: {
|
|
618
|
+
readonly ACTIVE: "ACTIVE";
|
|
619
|
+
readonly DELETED: "DELETED";
|
|
620
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
621
|
+
};
|
|
622
|
+
/**
|
|
623
|
+
* @public
|
|
624
|
+
*/
|
|
625
|
+
export type DaemonTaskDefinitionStatus = (typeof DaemonTaskDefinitionStatus)[keyof typeof DaemonTaskDefinitionStatus];
|
|
626
|
+
/**
|
|
627
|
+
* @public
|
|
628
|
+
* @enum
|
|
629
|
+
*/
|
|
630
|
+
export declare const DaemonTaskDefinitionRevisionFilter: {
|
|
631
|
+
readonly LAST_REGISTERED: "LAST_REGISTERED";
|
|
632
|
+
};
|
|
633
|
+
/**
|
|
634
|
+
* @public
|
|
635
|
+
*/
|
|
636
|
+
export type DaemonTaskDefinitionRevisionFilter = (typeof DaemonTaskDefinitionRevisionFilter)[keyof typeof DaemonTaskDefinitionRevisionFilter];
|
|
637
|
+
/**
|
|
638
|
+
* @public
|
|
639
|
+
* @enum
|
|
640
|
+
*/
|
|
641
|
+
export declare const SortOrder: {
|
|
642
|
+
readonly ASC: "ASC";
|
|
643
|
+
readonly DESC: "DESC";
|
|
644
|
+
};
|
|
645
|
+
/**
|
|
646
|
+
* @public
|
|
647
|
+
*/
|
|
648
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
649
|
+
/**
|
|
650
|
+
* @public
|
|
651
|
+
* @enum
|
|
652
|
+
*/
|
|
653
|
+
export declare const DaemonTaskDefinitionStatusFilter: {
|
|
654
|
+
readonly ACTIVE: "ACTIVE";
|
|
655
|
+
readonly ALL: "ALL";
|
|
656
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
657
|
+
};
|
|
658
|
+
/**
|
|
659
|
+
* @public
|
|
660
|
+
*/
|
|
661
|
+
export type DaemonTaskDefinitionStatusFilter = (typeof DaemonTaskDefinitionStatusFilter)[keyof typeof DaemonTaskDefinitionStatusFilter];
|
|
662
|
+
/**
|
|
663
|
+
* @public
|
|
664
|
+
* @enum
|
|
665
|
+
*/
|
|
666
|
+
export declare const SettingName: {
|
|
667
|
+
readonly AWSVPC_TRUNKING: "awsvpcTrunking";
|
|
668
|
+
readonly CONTAINER_INSIGHTS: "containerInsights";
|
|
669
|
+
readonly CONTAINER_INSTANCE_LONG_ARN_FORMAT: "containerInstanceLongArnFormat";
|
|
670
|
+
readonly DEFAULT_LOG_DRIVER_MODE: "defaultLogDriverMode";
|
|
671
|
+
readonly FARGATE_EVENT_WINDOWS: "fargateEventWindows";
|
|
672
|
+
readonly FARGATE_FIPS_MODE: "fargateFIPSMode";
|
|
673
|
+
readonly FARGATE_TASK_RETIREMENT_WAIT_PERIOD: "fargateTaskRetirementWaitPeriod";
|
|
674
|
+
readonly GUARD_DUTY_ACTIVATE: "guardDutyActivate";
|
|
675
|
+
readonly SERVICE_LONG_ARN_FORMAT: "serviceLongArnFormat";
|
|
676
|
+
readonly TAG_RESOURCE_AUTHORIZATION: "tagResourceAuthorization";
|
|
677
|
+
readonly TASK_LONG_ARN_FORMAT: "taskLongArnFormat";
|
|
678
|
+
};
|
|
679
|
+
/**
|
|
680
|
+
* @public
|
|
681
|
+
*/
|
|
682
|
+
export type SettingName = (typeof SettingName)[keyof typeof SettingName];
|
|
683
|
+
/**
|
|
684
|
+
* @public
|
|
685
|
+
* @enum
|
|
686
|
+
*/
|
|
687
|
+
export declare const SettingType: {
|
|
688
|
+
readonly AWS_MANAGED: "aws_managed";
|
|
689
|
+
readonly USER: "user";
|
|
690
|
+
};
|
|
691
|
+
/**
|
|
692
|
+
* @public
|
|
693
|
+
*/
|
|
694
|
+
export type SettingType = (typeof SettingType)[keyof typeof SettingType];
|
|
695
|
+
/**
|
|
696
|
+
* @public
|
|
697
|
+
* @enum
|
|
698
|
+
*/
|
|
699
|
+
export declare const Compatibility: {
|
|
700
|
+
readonly EC2: "EC2";
|
|
701
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
702
|
+
readonly FARGATE: "FARGATE";
|
|
703
|
+
readonly MANAGED_INSTANCES: "MANAGED_INSTANCES";
|
|
704
|
+
};
|
|
705
|
+
/**
|
|
706
|
+
* @public
|
|
707
|
+
*/
|
|
708
|
+
export type Compatibility = (typeof Compatibility)[keyof typeof Compatibility];
|
|
709
|
+
/**
|
|
710
|
+
* @public
|
|
711
|
+
* @enum
|
|
712
|
+
*/
|
|
713
|
+
export declare const ApplicationProtocol: {
|
|
714
|
+
readonly GRPC: "grpc";
|
|
715
|
+
readonly HTTP: "http";
|
|
716
|
+
readonly HTTP2: "http2";
|
|
717
|
+
};
|
|
718
|
+
/**
|
|
719
|
+
* @public
|
|
720
|
+
*/
|
|
721
|
+
export type ApplicationProtocol = (typeof ApplicationProtocol)[keyof typeof ApplicationProtocol];
|
|
722
|
+
/**
|
|
723
|
+
* @public
|
|
724
|
+
* @enum
|
|
725
|
+
*/
|
|
726
|
+
export declare const ResourceType: {
|
|
727
|
+
readonly GPU: "GPU";
|
|
728
|
+
readonly INFERENCE_ACCELERATOR: "InferenceAccelerator";
|
|
729
|
+
};
|
|
730
|
+
/**
|
|
731
|
+
* @public
|
|
732
|
+
*/
|
|
733
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
627
734
|
/**
|
|
628
735
|
* @public
|
|
629
736
|
* @enum
|
|
@@ -1145,18 +1252,6 @@ export declare const ManagedResourceStatus: {
|
|
|
1145
1252
|
* @public
|
|
1146
1253
|
*/
|
|
1147
1254
|
export type ManagedResourceStatus = (typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
|
|
1148
|
-
/**
|
|
1149
|
-
* @public
|
|
1150
|
-
* @enum
|
|
1151
|
-
*/
|
|
1152
|
-
export declare const SortOrder: {
|
|
1153
|
-
readonly ASC: "ASC";
|
|
1154
|
-
readonly DESC: "DESC";
|
|
1155
|
-
};
|
|
1156
|
-
/**
|
|
1157
|
-
* @public
|
|
1158
|
-
*/
|
|
1159
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1160
1255
|
/**
|
|
1161
1256
|
* @public
|
|
1162
1257
|
* @enum
|
|
@@ -241,28 +241,52 @@ export declare class NoUpdateAvailableException extends __BaseException {
|
|
|
241
241
|
constructor(opts: __ExceptionOptionType<NoUpdateAvailableException, __BaseException>);
|
|
242
242
|
}
|
|
243
243
|
/**
|
|
244
|
-
* <p>The specified platform version doesn't
|
|
244
|
+
* <p>The specified platform version doesn't exist.</p>
|
|
245
245
|
* @public
|
|
246
246
|
*/
|
|
247
|
-
export declare class
|
|
248
|
-
readonly name: "
|
|
247
|
+
export declare class PlatformUnknownException extends __BaseException {
|
|
248
|
+
readonly name: "PlatformUnknownException";
|
|
249
249
|
readonly $fault: "client";
|
|
250
250
|
/**
|
|
251
251
|
* @internal
|
|
252
252
|
*/
|
|
253
|
-
constructor(opts: __ExceptionOptionType<
|
|
253
|
+
constructor(opts: __ExceptionOptionType<PlatformUnknownException, __BaseException>);
|
|
254
254
|
}
|
|
255
255
|
/**
|
|
256
|
-
* <p>The specified
|
|
256
|
+
* <p>The specified daemon isn't active. You can't update a daemon that's inactive. If you have previously deleted a daemon, you can re-create it with <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateDaemon.html">CreateDaemon</a>.</p>
|
|
257
257
|
* @public
|
|
258
258
|
*/
|
|
259
|
-
export declare class
|
|
260
|
-
readonly name: "
|
|
259
|
+
export declare class DaemonNotActiveException extends __BaseException {
|
|
260
|
+
readonly name: "DaemonNotActiveException";
|
|
261
261
|
readonly $fault: "client";
|
|
262
262
|
/**
|
|
263
263
|
* @internal
|
|
264
264
|
*/
|
|
265
|
-
constructor(opts: __ExceptionOptionType<
|
|
265
|
+
constructor(opts: __ExceptionOptionType<DaemonNotActiveException, __BaseException>);
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* <p>The specified daemon wasn't found. You can view your available daemons with <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ListDaemons.html">ListDaemons</a>. Amazon ECS daemons are cluster specific and Region specific.</p>
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
export declare class DaemonNotFoundException extends __BaseException {
|
|
272
|
+
readonly name: "DaemonNotFoundException";
|
|
273
|
+
readonly $fault: "client";
|
|
274
|
+
/**
|
|
275
|
+
* @internal
|
|
276
|
+
*/
|
|
277
|
+
constructor(opts: __ExceptionOptionType<DaemonNotFoundException, __BaseException>);
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* <p>The specified platform version doesn't satisfy the required capabilities of the task definition.</p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
export declare class PlatformTaskDefinitionIncompatibilityException extends __BaseException {
|
|
284
|
+
readonly name: "PlatformTaskDefinitionIncompatibilityException";
|
|
285
|
+
readonly $fault: "client";
|
|
286
|
+
/**
|
|
287
|
+
* @internal
|
|
288
|
+
*/
|
|
289
|
+
constructor(opts: __ExceptionOptionType<PlatformTaskDefinitionIncompatibilityException, __BaseException>);
|
|
266
290
|
}
|
|
267
291
|
/**
|
|
268
292
|
* <p>The specified service isn't active. You can't update a service that's inactive. If you have previously deleted a service, you can re-create it with <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateService.html">CreateService</a>.</p>
|