@aws-sdk/client-ecs 3.682.0 → 3.683.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.
Files changed (90) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +254 -11
  3. package/dist-es/ECS.js +6 -0
  4. package/dist-es/commands/DescribeServiceDeploymentsCommand.js +22 -0
  5. package/dist-es/commands/DescribeServiceRevisionsCommand.js +22 -0
  6. package/dist-es/commands/ListServiceDeploymentsCommand.js +22 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +16 -24
  9. package/dist-es/models/models_1.js +25 -1
  10. package/dist-es/protocols/Aws_json1_1.js +178 -1
  11. package/dist-types/ECS.d.ts +21 -0
  12. package/dist-types/ECSClient.d.ts +5 -2
  13. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +1 -1
  14. package/dist-types/commands/CreateClusterCommand.d.ts +2 -2
  15. package/dist-types/commands/CreateServiceCommand.d.ts +4 -4
  16. package/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteAccountSettingCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteClusterCommand.d.ts +1 -1
  20. package/dist-types/commands/DeleteServiceCommand.d.ts +2 -2
  21. package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -1
  22. package/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
  23. package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
  24. package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeClustersCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeServiceDeploymentsCommand.d.ts +177 -0
  29. package/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +243 -0
  30. package/dist-types/commands/DescribeServicesCommand.d.ts +2 -2
  31. package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
  33. package/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
  34. package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +1 -1
  35. package/dist-types/commands/ExecuteCommandCommand.d.ts +1 -1
  36. package/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
  37. package/dist-types/commands/ListAccountSettingsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListClustersCommand.d.ts +1 -1
  39. package/dist-types/commands/ListContainerInstancesCommand.d.ts +1 -1
  40. package/dist-types/commands/ListServiceDeploymentsCommand.d.ts +130 -0
  41. package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +1 -1
  42. package/dist-types/commands/ListServicesCommand.d.ts +1 -1
  43. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  44. package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +1 -1
  45. package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +1 -1
  46. package/dist-types/commands/ListTasksCommand.d.ts +1 -1
  47. package/dist-types/commands/PutAccountSettingCommand.d.ts +1 -1
  48. package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +1 -1
  49. package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +1 -1
  50. package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
  51. package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
  52. package/dist-types/commands/RunTaskCommand.d.ts +1 -1
  53. package/dist-types/commands/StartTaskCommand.d.ts +1 -1
  54. package/dist-types/commands/StopTaskCommand.d.ts +1 -1
  55. package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +1 -1
  56. package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +1 -1
  57. package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +1 -1
  58. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  59. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  60. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +1 -1
  61. package/dist-types/commands/UpdateClusterCommand.d.ts +2 -2
  62. package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +2 -2
  63. package/dist-types/commands/UpdateContainerAgentCommand.d.ts +2 -2
  64. package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +2 -2
  65. package/dist-types/commands/UpdateServiceCommand.d.ts +4 -4
  66. package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +2 -2
  67. package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +2 -2
  68. package/dist-types/commands/UpdateTaskSetCommand.d.ts +2 -3
  69. package/dist-types/commands/index.d.ts +3 -0
  70. package/dist-types/models/models_0.d.ts +3009 -2904
  71. package/dist-types/models/models_1.d.ts +517 -1
  72. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  73. package/dist-types/ts3.4/ECS.d.ts +51 -0
  74. package/dist-types/ts3.4/ECSClient.d.ts +18 -0
  75. package/dist-types/ts3.4/commands/DescribeServiceDeploymentsCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/DescribeServiceRevisionsCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/ListServiceDeploymentsCommand.d.ts +51 -0
  78. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +1 -1
  79. package/dist-types/ts3.4/commands/UpdateClusterSettingsCommand.d.ts +1 -1
  80. package/dist-types/ts3.4/commands/UpdateContainerAgentCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
  82. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +1 -1
  83. package/dist-types/ts3.4/commands/UpdateServicePrimaryTaskSetCommand.d.ts +1 -1
  84. package/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
  85. package/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +4 -2
  86. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  87. package/dist-types/ts3.4/models/models_0.d.ts +125 -95
  88. package/dist-types/ts3.4/models/models_1.d.ts +119 -1
  89. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
  90. package/package.json +1 -1
@@ -1 +1,25 @@
1
- export {};
1
+ import { ECSServiceException as __BaseException } from "./ECSServiceException";
2
+ export class MissingVersionException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "MissingVersionException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "MissingVersionException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, MissingVersionException.prototype);
12
+ }
13
+ }
14
+ export class NoUpdateAvailableException extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "NoUpdateAvailableException",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "NoUpdateAvailableException";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, NoUpdateAvailableException.prototype);
24
+ }
25
+ }
@@ -3,7 +3,8 @@ import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
3
3
  import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, limitedParseDouble as __limitedParseDouble, parseEpochTimestamp as __parseEpochTimestamp, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
4
4
  import { v4 as generateIdempotencyToken } from "uuid";
5
5
  import { ECSServiceException as __BaseException } from "../models/ECSServiceException";
6
- import { AccessDeniedException, AttributeLimitExceededException, BlockedException, ClientException, ClusterContainsContainerInstancesException, ClusterContainsServicesException, ClusterContainsTasksException, ClusterNotFoundException, ConflictException, InvalidParameterException, LimitExceededException, MissingVersionException, NamespaceNotFoundException, NoUpdateAvailableException, PlatformTaskDefinitionIncompatibilityException, PlatformUnknownException, ResourceInUseException, ResourceNotFoundException, ServerException, ServiceNotActiveException, ServiceNotFoundException, TargetNotConnectedException, TargetNotFoundException, TaskSetNotFoundException, UnsupportedFeatureException, UpdateInProgressException, } from "../models/models_0";
6
+ import { AccessDeniedException, AttributeLimitExceededException, BlockedException, ClientException, ClusterContainsContainerInstancesException, ClusterContainsServicesException, ClusterContainsTasksException, ClusterNotFoundException, ConflictException, InvalidParameterException, LimitExceededException, NamespaceNotFoundException, PlatformTaskDefinitionIncompatibilityException, PlatformUnknownException, ResourceInUseException, ResourceNotFoundException, ServerException, ServiceNotActiveException, ServiceNotFoundException, TargetNotConnectedException, TargetNotFoundException, TaskSetNotFoundException, UnsupportedFeatureException, UpdateInProgressException, } from "../models/models_0";
7
+ import { MissingVersionException, NoUpdateAvailableException, } from "../models/models_1";
7
8
  export const se_CreateCapacityProviderCommand = async (input, context) => {
8
9
  const headers = sharedHeaders("CreateCapacityProvider");
9
10
  let body;
@@ -100,6 +101,18 @@ export const se_DescribeContainerInstancesCommand = async (input, context) => {
100
101
  body = JSON.stringify(_json(input));
101
102
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
102
103
  };
104
+ export const se_DescribeServiceDeploymentsCommand = async (input, context) => {
105
+ const headers = sharedHeaders("DescribeServiceDeployments");
106
+ let body;
107
+ body = JSON.stringify(_json(input));
108
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
109
+ };
110
+ export const se_DescribeServiceRevisionsCommand = async (input, context) => {
111
+ const headers = sharedHeaders("DescribeServiceRevisions");
112
+ let body;
113
+ body = JSON.stringify(_json(input));
114
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
115
+ };
103
116
  export const se_DescribeServicesCommand = async (input, context) => {
104
117
  const headers = sharedHeaders("DescribeServices");
105
118
  let body;
@@ -166,6 +179,12 @@ export const se_ListContainerInstancesCommand = async (input, context) => {
166
179
  body = JSON.stringify(_json(input));
167
180
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
168
181
  };
182
+ export const se_ListServiceDeploymentsCommand = async (input, context) => {
183
+ const headers = sharedHeaders("ListServiceDeployments");
184
+ let body;
185
+ body = JSON.stringify(se_ListServiceDeploymentsRequest(input, context));
186
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
187
+ };
169
188
  export const se_ListServicesCommand = async (input, context) => {
170
189
  const headers = sharedHeaders("ListServices");
171
190
  let body;
@@ -548,6 +567,32 @@ export const de_DescribeContainerInstancesCommand = async (output, context) => {
548
567
  };
549
568
  return response;
550
569
  };
570
+ export const de_DescribeServiceDeploymentsCommand = async (output, context) => {
571
+ if (output.statusCode >= 300) {
572
+ return de_CommandError(output, context);
573
+ }
574
+ const data = await parseBody(output.body, context);
575
+ let contents = {};
576
+ contents = de_DescribeServiceDeploymentsResponse(data, context);
577
+ const response = {
578
+ $metadata: deserializeMetadata(output),
579
+ ...contents,
580
+ };
581
+ return response;
582
+ };
583
+ export const de_DescribeServiceRevisionsCommand = async (output, context) => {
584
+ if (output.statusCode >= 300) {
585
+ return de_CommandError(output, context);
586
+ }
587
+ const data = await parseBody(output.body, context);
588
+ let contents = {};
589
+ contents = de_DescribeServiceRevisionsResponse(data, context);
590
+ const response = {
591
+ $metadata: deserializeMetadata(output),
592
+ ...contents,
593
+ };
594
+ return response;
595
+ };
551
596
  export const de_DescribeServicesCommand = async (output, context) => {
552
597
  if (output.statusCode >= 300) {
553
598
  return de_CommandError(output, context);
@@ -691,6 +736,19 @@ export const de_ListContainerInstancesCommand = async (output, context) => {
691
736
  };
692
737
  return response;
693
738
  };
739
+ export const de_ListServiceDeploymentsCommand = async (output, context) => {
740
+ if (output.statusCode >= 300) {
741
+ return de_CommandError(output, context);
742
+ }
743
+ const data = await parseBody(output.body, context);
744
+ let contents = {};
745
+ contents = de_ListServiceDeploymentsResponse(data, context);
746
+ const response = {
747
+ $metadata: deserializeMetadata(output),
748
+ ...contents,
749
+ };
750
+ return response;
751
+ };
694
752
  export const de_ListServicesCommand = async (output, context) => {
695
753
  if (output.statusCode >= 300) {
696
754
  return de_CommandError(output, context);
@@ -1396,6 +1454,12 @@ const de_UpdateInProgressExceptionRes = async (parsedOutput, context) => {
1396
1454
  });
1397
1455
  return __decorateServiceException(exception, body);
1398
1456
  };
1457
+ const se_CreatedAt = (input, context) => {
1458
+ return take(input, {
1459
+ after: (_) => _.getTime() / 1000,
1460
+ before: (_) => _.getTime() / 1000,
1461
+ });
1462
+ };
1399
1463
  const se_CreateTaskSetRequest = (input, context) => {
1400
1464
  return take(input, {
1401
1465
  capacityProviderStrategy: _json,
@@ -1413,6 +1477,16 @@ const se_CreateTaskSetRequest = (input, context) => {
1413
1477
  taskDefinition: [],
1414
1478
  });
1415
1479
  };
1480
+ const se_ListServiceDeploymentsRequest = (input, context) => {
1481
+ return take(input, {
1482
+ cluster: [],
1483
+ createdAt: (_) => se_CreatedAt(_, context),
1484
+ maxResults: [],
1485
+ nextToken: [],
1486
+ service: [],
1487
+ status: _json,
1488
+ });
1489
+ };
1416
1490
  const se_RegisterContainerInstanceRequest = (input, context) => {
1417
1491
  return take(input, {
1418
1492
  attributes: _json,
@@ -1633,6 +1707,18 @@ const de_DescribeContainerInstancesResponse = (output, context) => {
1633
1707
  failures: _json,
1634
1708
  });
1635
1709
  };
1710
+ const de_DescribeServiceDeploymentsResponse = (output, context) => {
1711
+ return take(output, {
1712
+ failures: _json,
1713
+ serviceDeployments: (_) => de_ServiceDeployments(_, context),
1714
+ });
1715
+ };
1716
+ const de_DescribeServiceRevisionsResponse = (output, context) => {
1717
+ return take(output, {
1718
+ failures: _json,
1719
+ serviceRevisions: (_) => de_ServiceRevisions(_, context),
1720
+ });
1721
+ };
1636
1722
  const de_DescribeServicesResponse = (output, context) => {
1637
1723
  return take(output, {
1638
1724
  failures: _json,
@@ -1679,6 +1765,12 @@ const de_InstanceHealthCheckResultList = (output, context) => {
1679
1765
  });
1680
1766
  return retVal;
1681
1767
  };
1768
+ const de_ListServiceDeploymentsResponse = (output, context) => {
1769
+ return take(output, {
1770
+ nextToken: __expectString,
1771
+ serviceDeployments: (_) => de_ServiceDeploymentsBrief(_, context),
1772
+ });
1773
+ };
1682
1774
  const de_ManagedAgent = (output, context) => {
1683
1775
  return take(output, {
1684
1776
  lastStartedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -1739,6 +1831,13 @@ const de_Resources = (output, context) => {
1739
1831
  });
1740
1832
  return retVal;
1741
1833
  };
1834
+ const de_Rollback = (output, context) => {
1835
+ return take(output, {
1836
+ reason: __expectString,
1837
+ serviceRevisionArn: __expectString,
1838
+ startedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1839
+ });
1840
+ };
1742
1841
  const de_RunTaskResponse = (output, context) => {
1743
1842
  return take(output, {
1744
1843
  failures: _json,
@@ -1786,6 +1885,55 @@ const de_Service = (output, context) => {
1786
1885
  taskSets: (_) => de_TaskSets(_, context),
1787
1886
  });
1788
1887
  };
1888
+ const de_ServiceDeployment = (output, context) => {
1889
+ return take(output, {
1890
+ alarms: _json,
1891
+ clusterArn: __expectString,
1892
+ createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1893
+ deploymentCircuitBreaker: _json,
1894
+ deploymentConfiguration: _json,
1895
+ finishedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1896
+ rollback: (_) => de_Rollback(_, context),
1897
+ serviceArn: __expectString,
1898
+ serviceDeploymentArn: __expectString,
1899
+ sourceServiceRevisions: _json,
1900
+ startedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1901
+ status: __expectString,
1902
+ statusReason: __expectString,
1903
+ stoppedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1904
+ targetServiceRevision: _json,
1905
+ updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1906
+ });
1907
+ };
1908
+ const de_ServiceDeploymentBrief = (output, context) => {
1909
+ return take(output, {
1910
+ clusterArn: __expectString,
1911
+ createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1912
+ finishedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1913
+ serviceArn: __expectString,
1914
+ serviceDeploymentArn: __expectString,
1915
+ startedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1916
+ status: __expectString,
1917
+ statusReason: __expectString,
1918
+ targetServiceRevisionArn: __expectString,
1919
+ });
1920
+ };
1921
+ const de_ServiceDeployments = (output, context) => {
1922
+ const retVal = (output || [])
1923
+ .filter((e) => e != null)
1924
+ .map((entry) => {
1925
+ return de_ServiceDeployment(entry, context);
1926
+ });
1927
+ return retVal;
1928
+ };
1929
+ const de_ServiceDeploymentsBrief = (output, context) => {
1930
+ const retVal = (output || [])
1931
+ .filter((e) => e != null)
1932
+ .map((entry) => {
1933
+ return de_ServiceDeploymentBrief(entry, context);
1934
+ });
1935
+ return retVal;
1936
+ };
1789
1937
  const de_ServiceEvent = (output, context) => {
1790
1938
  return take(output, {
1791
1939
  createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -1801,6 +1949,35 @@ const de_ServiceEvents = (output, context) => {
1801
1949
  });
1802
1950
  return retVal;
1803
1951
  };
1952
+ const de_ServiceRevision = (output, context) => {
1953
+ return take(output, {
1954
+ capacityProviderStrategy: _json,
1955
+ clusterArn: __expectString,
1956
+ containerImages: _json,
1957
+ createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1958
+ fargateEphemeralStorage: _json,
1959
+ guardDutyEnabled: __expectBoolean,
1960
+ launchType: __expectString,
1961
+ loadBalancers: _json,
1962
+ networkConfiguration: _json,
1963
+ platformFamily: __expectString,
1964
+ platformVersion: __expectString,
1965
+ serviceArn: __expectString,
1966
+ serviceConnectConfiguration: _json,
1967
+ serviceRegistries: _json,
1968
+ serviceRevisionArn: __expectString,
1969
+ taskDefinition: __expectString,
1970
+ volumeConfigurations: _json,
1971
+ });
1972
+ };
1973
+ const de_ServiceRevisions = (output, context) => {
1974
+ const retVal = (output || [])
1975
+ .filter((e) => e != null)
1976
+ .map((entry) => {
1977
+ return de_ServiceRevision(entry, context);
1978
+ });
1979
+ return retVal;
1980
+ };
1804
1981
  const de_Services = (output, context) => {
1805
1982
  const retVal = (output || [])
1806
1983
  .filter((e) => e != null)
@@ -15,6 +15,8 @@ import { DeregisterTaskDefinitionCommandInput, DeregisterTaskDefinitionCommandOu
15
15
  import { DescribeCapacityProvidersCommandInput, DescribeCapacityProvidersCommandOutput } from "./commands/DescribeCapacityProvidersCommand";
16
16
  import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "./commands/DescribeClustersCommand";
17
17
  import { DescribeContainerInstancesCommandInput, DescribeContainerInstancesCommandOutput } from "./commands/DescribeContainerInstancesCommand";
18
+ import { DescribeServiceDeploymentsCommandInput, DescribeServiceDeploymentsCommandOutput } from "./commands/DescribeServiceDeploymentsCommand";
19
+ import { DescribeServiceRevisionsCommandInput, DescribeServiceRevisionsCommandOutput } from "./commands/DescribeServiceRevisionsCommand";
18
20
  import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
19
21
  import { DescribeTaskDefinitionCommandInput, DescribeTaskDefinitionCommandOutput } from "./commands/DescribeTaskDefinitionCommand";
20
22
  import { DescribeTasksCommandInput, DescribeTasksCommandOutput } from "./commands/DescribeTasksCommand";
@@ -26,6 +28,7 @@ import { ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput } fro
26
28
  import { ListAttributesCommandInput, ListAttributesCommandOutput } from "./commands/ListAttributesCommand";
27
29
  import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
28
30
  import { ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput } from "./commands/ListContainerInstancesCommand";
31
+ import { ListServiceDeploymentsCommandInput, ListServiceDeploymentsCommandOutput } from "./commands/ListServiceDeploymentsCommand";
29
32
  import { ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput } from "./commands/ListServicesByNamespaceCommand";
30
33
  import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
31
34
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
@@ -156,6 +159,18 @@ export interface ECS {
156
159
  describeContainerInstances(args: DescribeContainerInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContainerInstancesCommandOutput>;
157
160
  describeContainerInstances(args: DescribeContainerInstancesCommandInput, cb: (err: any, data?: DescribeContainerInstancesCommandOutput) => void): void;
158
161
  describeContainerInstances(args: DescribeContainerInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContainerInstancesCommandOutput) => void): void;
162
+ /**
163
+ * @see {@link DescribeServiceDeploymentsCommand}
164
+ */
165
+ describeServiceDeployments(args: DescribeServiceDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServiceDeploymentsCommandOutput>;
166
+ describeServiceDeployments(args: DescribeServiceDeploymentsCommandInput, cb: (err: any, data?: DescribeServiceDeploymentsCommandOutput) => void): void;
167
+ describeServiceDeployments(args: DescribeServiceDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceDeploymentsCommandOutput) => void): void;
168
+ /**
169
+ * @see {@link DescribeServiceRevisionsCommand}
170
+ */
171
+ describeServiceRevisions(args: DescribeServiceRevisionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServiceRevisionsCommandOutput>;
172
+ describeServiceRevisions(args: DescribeServiceRevisionsCommandInput, cb: (err: any, data?: DescribeServiceRevisionsCommandOutput) => void): void;
173
+ describeServiceRevisions(args: DescribeServiceRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceRevisionsCommandOutput) => void): void;
159
174
  /**
160
175
  * @see {@link DescribeServicesCommand}
161
176
  */
@@ -226,6 +241,12 @@ export interface ECS {
226
241
  listContainerInstances(args: ListContainerInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListContainerInstancesCommandOutput>;
227
242
  listContainerInstances(args: ListContainerInstancesCommandInput, cb: (err: any, data?: ListContainerInstancesCommandOutput) => void): void;
228
243
  listContainerInstances(args: ListContainerInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContainerInstancesCommandOutput) => void): void;
244
+ /**
245
+ * @see {@link ListServiceDeploymentsCommand}
246
+ */
247
+ listServiceDeployments(args: ListServiceDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceDeploymentsCommandOutput>;
248
+ listServiceDeployments(args: ListServiceDeploymentsCommandInput, cb: (err: any, data?: ListServiceDeploymentsCommandOutput) => void): void;
249
+ listServiceDeployments(args: ListServiceDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceDeploymentsCommandOutput) => void): void;
229
250
  /**
230
251
  * @see {@link ListServicesCommand}
231
252
  */
@@ -23,6 +23,8 @@ import { DeregisterTaskDefinitionCommandInput, DeregisterTaskDefinitionCommandOu
23
23
  import { DescribeCapacityProvidersCommandInput, DescribeCapacityProvidersCommandOutput } from "./commands/DescribeCapacityProvidersCommand";
24
24
  import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "./commands/DescribeClustersCommand";
25
25
  import { DescribeContainerInstancesCommandInput, DescribeContainerInstancesCommandOutput } from "./commands/DescribeContainerInstancesCommand";
26
+ import { DescribeServiceDeploymentsCommandInput, DescribeServiceDeploymentsCommandOutput } from "./commands/DescribeServiceDeploymentsCommand";
27
+ import { DescribeServiceRevisionsCommandInput, DescribeServiceRevisionsCommandOutput } from "./commands/DescribeServiceRevisionsCommand";
26
28
  import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
27
29
  import { DescribeTaskDefinitionCommandInput, DescribeTaskDefinitionCommandOutput } from "./commands/DescribeTaskDefinitionCommand";
28
30
  import { DescribeTasksCommandInput, DescribeTasksCommandOutput } from "./commands/DescribeTasksCommand";
@@ -34,6 +36,7 @@ import { ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput } fro
34
36
  import { ListAttributesCommandInput, ListAttributesCommandOutput } from "./commands/ListAttributesCommand";
35
37
  import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
36
38
  import { ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput } from "./commands/ListContainerInstancesCommand";
39
+ import { ListServiceDeploymentsCommandInput, ListServiceDeploymentsCommandOutput } from "./commands/ListServiceDeploymentsCommand";
37
40
  import { ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput } from "./commands/ListServicesByNamespaceCommand";
38
41
  import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
39
42
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
@@ -69,11 +72,11 @@ export { __Client };
69
72
  /**
70
73
  * @public
71
74
  */
72
- export type ServiceInputTypes = CreateCapacityProviderCommandInput | CreateClusterCommandInput | CreateServiceCommandInput | CreateTaskSetCommandInput | DeleteAccountSettingCommandInput | DeleteAttributesCommandInput | DeleteCapacityProviderCommandInput | DeleteClusterCommandInput | DeleteServiceCommandInput | DeleteTaskDefinitionsCommandInput | DeleteTaskSetCommandInput | DeregisterContainerInstanceCommandInput | DeregisterTaskDefinitionCommandInput | DescribeCapacityProvidersCommandInput | DescribeClustersCommandInput | DescribeContainerInstancesCommandInput | DescribeServicesCommandInput | DescribeTaskDefinitionCommandInput | DescribeTaskSetsCommandInput | DescribeTasksCommandInput | DiscoverPollEndpointCommandInput | ExecuteCommandCommandInput | GetTaskProtectionCommandInput | ListAccountSettingsCommandInput | ListAttributesCommandInput | ListClustersCommandInput | ListContainerInstancesCommandInput | ListServicesByNamespaceCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListTaskDefinitionFamiliesCommandInput | ListTaskDefinitionsCommandInput | ListTasksCommandInput | PutAccountSettingCommandInput | PutAccountSettingDefaultCommandInput | PutAttributesCommandInput | PutClusterCapacityProvidersCommandInput | RegisterContainerInstanceCommandInput | RegisterTaskDefinitionCommandInput | RunTaskCommandInput | StartTaskCommandInput | StopTaskCommandInput | SubmitAttachmentStateChangesCommandInput | SubmitContainerStateChangeCommandInput | SubmitTaskStateChangeCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCapacityProviderCommandInput | UpdateClusterCommandInput | UpdateClusterSettingsCommandInput | UpdateContainerAgentCommandInput | UpdateContainerInstancesStateCommandInput | UpdateServiceCommandInput | UpdateServicePrimaryTaskSetCommandInput | UpdateTaskProtectionCommandInput | UpdateTaskSetCommandInput;
75
+ export type ServiceInputTypes = CreateCapacityProviderCommandInput | CreateClusterCommandInput | CreateServiceCommandInput | CreateTaskSetCommandInput | DeleteAccountSettingCommandInput | DeleteAttributesCommandInput | DeleteCapacityProviderCommandInput | DeleteClusterCommandInput | DeleteServiceCommandInput | DeleteTaskDefinitionsCommandInput | DeleteTaskSetCommandInput | DeregisterContainerInstanceCommandInput | DeregisterTaskDefinitionCommandInput | DescribeCapacityProvidersCommandInput | DescribeClustersCommandInput | DescribeContainerInstancesCommandInput | DescribeServiceDeploymentsCommandInput | DescribeServiceRevisionsCommandInput | DescribeServicesCommandInput | DescribeTaskDefinitionCommandInput | DescribeTaskSetsCommandInput | DescribeTasksCommandInput | DiscoverPollEndpointCommandInput | ExecuteCommandCommandInput | GetTaskProtectionCommandInput | ListAccountSettingsCommandInput | ListAttributesCommandInput | ListClustersCommandInput | ListContainerInstancesCommandInput | ListServiceDeploymentsCommandInput | ListServicesByNamespaceCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListTaskDefinitionFamiliesCommandInput | ListTaskDefinitionsCommandInput | ListTasksCommandInput | PutAccountSettingCommandInput | PutAccountSettingDefaultCommandInput | PutAttributesCommandInput | PutClusterCapacityProvidersCommandInput | RegisterContainerInstanceCommandInput | RegisterTaskDefinitionCommandInput | RunTaskCommandInput | StartTaskCommandInput | StopTaskCommandInput | SubmitAttachmentStateChangesCommandInput | SubmitContainerStateChangeCommandInput | SubmitTaskStateChangeCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCapacityProviderCommandInput | UpdateClusterCommandInput | UpdateClusterSettingsCommandInput | UpdateContainerAgentCommandInput | UpdateContainerInstancesStateCommandInput | UpdateServiceCommandInput | UpdateServicePrimaryTaskSetCommandInput | UpdateTaskProtectionCommandInput | UpdateTaskSetCommandInput;
73
76
  /**
74
77
  * @public
75
78
  */
76
- export type ServiceOutputTypes = CreateCapacityProviderCommandOutput | CreateClusterCommandOutput | CreateServiceCommandOutput | CreateTaskSetCommandOutput | DeleteAccountSettingCommandOutput | DeleteAttributesCommandOutput | DeleteCapacityProviderCommandOutput | DeleteClusterCommandOutput | DeleteServiceCommandOutput | DeleteTaskDefinitionsCommandOutput | DeleteTaskSetCommandOutput | DeregisterContainerInstanceCommandOutput | DeregisterTaskDefinitionCommandOutput | DescribeCapacityProvidersCommandOutput | DescribeClustersCommandOutput | DescribeContainerInstancesCommandOutput | DescribeServicesCommandOutput | DescribeTaskDefinitionCommandOutput | DescribeTaskSetsCommandOutput | DescribeTasksCommandOutput | DiscoverPollEndpointCommandOutput | ExecuteCommandCommandOutput | GetTaskProtectionCommandOutput | ListAccountSettingsCommandOutput | ListAttributesCommandOutput | ListClustersCommandOutput | ListContainerInstancesCommandOutput | ListServicesByNamespaceCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListTaskDefinitionFamiliesCommandOutput | ListTaskDefinitionsCommandOutput | ListTasksCommandOutput | PutAccountSettingCommandOutput | PutAccountSettingDefaultCommandOutput | PutAttributesCommandOutput | PutClusterCapacityProvidersCommandOutput | RegisterContainerInstanceCommandOutput | RegisterTaskDefinitionCommandOutput | RunTaskCommandOutput | StartTaskCommandOutput | StopTaskCommandOutput | SubmitAttachmentStateChangesCommandOutput | SubmitContainerStateChangeCommandOutput | SubmitTaskStateChangeCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCapacityProviderCommandOutput | UpdateClusterCommandOutput | UpdateClusterSettingsCommandOutput | UpdateContainerAgentCommandOutput | UpdateContainerInstancesStateCommandOutput | UpdateServiceCommandOutput | UpdateServicePrimaryTaskSetCommandOutput | UpdateTaskProtectionCommandOutput | UpdateTaskSetCommandOutput;
79
+ export type ServiceOutputTypes = CreateCapacityProviderCommandOutput | CreateClusterCommandOutput | CreateServiceCommandOutput | CreateTaskSetCommandOutput | DeleteAccountSettingCommandOutput | DeleteAttributesCommandOutput | DeleteCapacityProviderCommandOutput | DeleteClusterCommandOutput | DeleteServiceCommandOutput | DeleteTaskDefinitionsCommandOutput | DeleteTaskSetCommandOutput | DeregisterContainerInstanceCommandOutput | DeregisterTaskDefinitionCommandOutput | DescribeCapacityProvidersCommandOutput | DescribeClustersCommandOutput | DescribeContainerInstancesCommandOutput | DescribeServiceDeploymentsCommandOutput | DescribeServiceRevisionsCommandOutput | DescribeServicesCommandOutput | DescribeTaskDefinitionCommandOutput | DescribeTaskSetsCommandOutput | DescribeTasksCommandOutput | DiscoverPollEndpointCommandOutput | ExecuteCommandCommandOutput | GetTaskProtectionCommandOutput | ListAccountSettingsCommandOutput | ListAttributesCommandOutput | ListClustersCommandOutput | ListContainerInstancesCommandOutput | ListServiceDeploymentsCommandOutput | ListServicesByNamespaceCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListTaskDefinitionFamiliesCommandOutput | ListTaskDefinitionsCommandOutput | ListTasksCommandOutput | PutAccountSettingCommandOutput | PutAccountSettingDefaultCommandOutput | PutAttributesCommandOutput | PutClusterCapacityProvidersCommandOutput | RegisterContainerInstanceCommandOutput | RegisterTaskDefinitionCommandOutput | RunTaskCommandOutput | StartTaskCommandOutput | StopTaskCommandOutput | SubmitAttachmentStateChangesCommandOutput | SubmitContainerStateChangeCommandOutput | SubmitTaskStateChangeCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCapacityProviderCommandOutput | UpdateClusterCommandOutput | UpdateClusterSettingsCommandOutput | UpdateContainerAgentCommandOutput | UpdateContainerInstancesStateCommandOutput | UpdateServiceCommandOutput | UpdateServicePrimaryTaskSetCommandOutput | UpdateTaskProtectionCommandOutput | UpdateTaskSetCommandOutput;
77
80
  /**
78
81
  * @public
79
82
  */
@@ -108,7 +108,7 @@ declare const CreateCapacityProviderCommand_base: {
108
108
  * <li>
109
109
  * <p>The <code>RunTask</code> could not be processed because you use managed
110
110
  * scaling and there is a capacity error because the quota of tasks in the
111
- * <code>PROVISIONING</code> per cluster has been reached. For information
111
+ * <code>PROVISIONING</code> per cluster has been reached. For information
112
112
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
113
113
  * service quotas</a>.</p>
114
114
  * </li>
@@ -31,7 +31,7 @@ declare const CreateClusterCommand_base: {
31
31
  * cluster when you launch your first container instance. However, you can create your own
32
32
  * cluster with a unique name.</p>
33
33
  * <note>
34
- * <p>When you call the <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateCluster.html">CreateCluster</a> API operation, Amazon ECS attempts to
34
+ * <p>When you call the <a>CreateCluster</a> API operation, Amazon ECS attempts to
35
35
  * create the Amazon ECS service-linked role for your account. This is so that it can manage
36
36
  * required resources in other Amazon Web Services services on your behalf. However, if the user that
37
37
  * makes the call doesn't have permissions to create the service-linked role, it isn't
@@ -182,7 +182,7 @@ declare const CreateClusterCommand_base: {
182
182
  * <li>
183
183
  * <p>The <code>RunTask</code> could not be processed because you use managed
184
184
  * scaling and there is a capacity error because the quota of tasks in the
185
- * <code>PROVISIONING</code> per cluster has been reached. For information
185
+ * <code>PROVISIONING</code> per cluster has been reached. For information
186
186
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
187
187
  * service quotas</a>.</p>
188
188
  * </li>
@@ -30,7 +30,7 @@ declare const CreateServiceCommand_base: {
30
30
  * <p>Runs and maintains your desired number of tasks from a specified task definition. If
31
31
  * the number of tasks running in a service drops below the <code>desiredCount</code>,
32
32
  * Amazon ECS runs another copy of the task in the specified cluster. To update an existing
33
- * service, use <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_UpdateService.html">UpdateService</a>.</p>
33
+ * service, see the <a>UpdateService</a> action.</p>
34
34
  * <note>
35
35
  * <p>On March 21, 2024, a change was made to resolve the task definition revision before authorization. When a task definition revision is not specified, authorization will occur using the latest revision of a task definition.</p>
36
36
  * </note>
@@ -163,8 +163,8 @@ declare const CreateServiceCommand_base: {
163
163
  * alarmNames: [ // StringList // required
164
164
  * "STRING_VALUE",
165
165
  * ],
166
- * enable: true || false, // required
167
166
  * rollback: true || false, // required
167
+ * enable: true || false, // required
168
168
  * },
169
169
  * },
170
170
  * placementConstraints: [ // PlacementConstraints
@@ -322,8 +322,8 @@ declare const CreateServiceCommand_base: {
322
322
  * // alarmNames: [ // StringList // required
323
323
  * // "STRING_VALUE",
324
324
  * // ],
325
- * // enable: true || false, // required
326
325
  * // rollback: true || false, // required
326
+ * // enable: true || false, // required
327
327
  * // },
328
328
  * // },
329
329
  * // taskSets: [ // TaskSets
@@ -569,7 +569,7 @@ declare const CreateServiceCommand_base: {
569
569
  * <li>
570
570
  * <p>The <code>RunTask</code> could not be processed because you use managed
571
571
  * scaling and there is a capacity error because the quota of tasks in the
572
- * <code>PROVISIONING</code> per cluster has been reached. For information
572
+ * <code>PROVISIONING</code> per cluster has been reached. For information
573
573
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
574
574
  * service quotas</a>.</p>
575
575
  * </li>
@@ -187,7 +187,7 @@ declare const CreateTaskSetCommand_base: {
187
187
  * <li>
188
188
  * <p>The <code>RunTask</code> could not be processed because you use managed
189
189
  * scaling and there is a capacity error because the quota of tasks in the
190
- * <code>PROVISIONING</code> per cluster has been reached. For information
190
+ * <code>PROVISIONING</code> per cluster has been reached. For information
191
191
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
192
192
  * service quotas</a>.</p>
193
193
  * </li>
@@ -67,7 +67,7 @@ declare const DeleteAccountSettingCommand_base: {
67
67
  * <li>
68
68
  * <p>The <code>RunTask</code> could not be processed because you use managed
69
69
  * scaling and there is a capacity error because the quota of tasks in the
70
- * <code>PROVISIONING</code> per cluster has been reached. For information
70
+ * <code>PROVISIONING</code> per cluster has been reached. For information
71
71
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
72
72
  * service quotas</a>.</p>
73
73
  * </li>
@@ -97,7 +97,7 @@ declare const DeleteCapacityProviderCommand_base: {
97
97
  * <li>
98
98
  * <p>The <code>RunTask</code> could not be processed because you use managed
99
99
  * scaling and there is a capacity error because the quota of tasks in the
100
- * <code>PROVISIONING</code> per cluster has been reached. For information
100
+ * <code>PROVISIONING</code> per cluster has been reached. For information
101
101
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
102
102
  * service quotas</a>.</p>
103
103
  * </li>
@@ -135,7 +135,7 @@ declare const DeleteClusterCommand_base: {
135
135
  * <li>
136
136
  * <p>The <code>RunTask</code> could not be processed because you use managed
137
137
  * scaling and there is a capacity error because the quota of tasks in the
138
- * <code>PROVISIONING</code> per cluster has been reached. For information
138
+ * <code>PROVISIONING</code> per cluster has been reached. For information
139
139
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
140
140
  * service quotas</a>.</p>
141
141
  * </li>
@@ -108,8 +108,8 @@ declare const DeleteServiceCommand_base: {
108
108
  * // alarmNames: [ // StringList // required
109
109
  * // "STRING_VALUE",
110
110
  * // ],
111
- * // enable: true || false, // required
112
111
  * // rollback: true || false, // required
112
+ * // enable: true || false, // required
113
113
  * // },
114
114
  * // },
115
115
  * // taskSets: [ // TaskSets
@@ -352,7 +352,7 @@ declare const DeleteServiceCommand_base: {
352
352
  * <li>
353
353
  * <p>The <code>RunTask</code> could not be processed because you use managed
354
354
  * scaling and there is a capacity error because the quota of tasks in the
355
- * <code>PROVISIONING</code> per cluster has been reached. For information
355
+ * <code>PROVISIONING</code> per cluster has been reached. For information
356
356
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
357
357
  * service quotas</a>.</p>
358
358
  * </li>
@@ -362,7 +362,7 @@ declare const DeleteTaskDefinitionsCommand_base: {
362
362
  * <li>
363
363
  * <p>The <code>RunTask</code> could not be processed because you use managed
364
364
  * scaling and there is a capacity error because the quota of tasks in the
365
- * <code>PROVISIONING</code> per cluster has been reached. For information
365
+ * <code>PROVISIONING</code> per cluster has been reached. For information
366
366
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
367
367
  * service quotas</a>.</p>
368
368
  * </li>
@@ -133,7 +133,7 @@ declare const DeleteTaskSetCommand_base: {
133
133
  * <li>
134
134
  * <p>The <code>RunTask</code> could not be processed because you use managed
135
135
  * scaling and there is a capacity error because the quota of tasks in the
136
- * <code>PROVISIONING</code> per cluster has been reached. For information
136
+ * <code>PROVISIONING</code> per cluster has been reached. For information
137
137
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
138
138
  * service quotas</a>.</p>
139
139
  * </li>
@@ -154,7 +154,7 @@ declare const DeregisterContainerInstanceCommand_base: {
154
154
  * <li>
155
155
  * <p>The <code>RunTask</code> could not be processed because you use managed
156
156
  * scaling and there is a capacity error because the quota of tasks in the
157
- * <code>PROVISIONING</code> per cluster has been reached. For information
157
+ * <code>PROVISIONING</code> per cluster has been reached. For information
158
158
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
159
159
  * service quotas</a>.</p>
160
160
  * </li>
@@ -346,7 +346,7 @@ declare const DeregisterTaskDefinitionCommand_base: {
346
346
  * <li>
347
347
  * <p>The <code>RunTask</code> could not be processed because you use managed
348
348
  * scaling and there is a capacity error because the quota of tasks in the
349
- * <code>PROVISIONING</code> per cluster has been reached. For information
349
+ * <code>PROVISIONING</code> per cluster has been reached. For information
350
350
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
351
351
  * service quotas</a>.</p>
352
352
  * </li>
@@ -101,7 +101,7 @@ declare const DescribeCapacityProvidersCommand_base: {
101
101
  * <li>
102
102
  * <p>The <code>RunTask</code> could not be processed because you use managed
103
103
  * scaling and there is a capacity error because the quota of tasks in the
104
- * <code>PROVISIONING</code> per cluster has been reached. For information
104
+ * <code>PROVISIONING</code> per cluster has been reached. For information
105
105
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
106
106
  * service quotas</a>.</p>
107
107
  * </li>
@@ -144,7 +144,7 @@ declare const DescribeClustersCommand_base: {
144
144
  * <li>
145
145
  * <p>The <code>RunTask</code> could not be processed because you use managed
146
146
  * scaling and there is a capacity error because the quota of tasks in the
147
- * <code>PROVISIONING</code> per cluster has been reached. For information
147
+ * <code>PROVISIONING</code> per cluster has been reached. For information
148
148
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
149
149
  * service quotas</a>.</p>
150
150
  * </li>
@@ -155,7 +155,7 @@ declare const DescribeContainerInstancesCommand_base: {
155
155
  * <li>
156
156
  * <p>The <code>RunTask</code> could not be processed because you use managed
157
157
  * scaling and there is a capacity error because the quota of tasks in the
158
- * <code>PROVISIONING</code> per cluster has been reached. For information
158
+ * <code>PROVISIONING</code> per cluster has been reached. For information
159
159
  * about the service quotas, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html">Amazon ECS
160
160
  * service quotas</a>.</p>
161
161
  * </li>