@jjrawlins/cdk-ami-builder 0.0.189 → 0.0.190

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 (173) hide show
  1. package/.jsii +12 -12
  2. package/cdkamibuilder/go.mod +1 -1
  3. package/cdkamibuilder/jsii/jsii.go +2 -2
  4. package/cdkamibuilder/version +1 -1
  5. package/lib/ImagePipeline/ImagePipeline.js +1 -1
  6. package/lib/Lambdas/CheckStateMachineStatus/CheckStateMachineStatus-function.js +1 -1
  7. package/lib/Lambdas/StartStateMachine/StartStateMachine-function.js +1 -1
  8. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/BundleInstanceCommand.d.ts +4 -2
  9. package/node_modules/@aws-sdk/client-ec2/package.json +6 -6
  10. package/node_modules/@aws-sdk/client-ecs/README.md +91 -7
  11. package/node_modules/@aws-sdk/client-ecs/dist-cjs/index.js +530 -33
  12. package/node_modules/@aws-sdk/client-ecs/dist-cjs/models/errors.js +37 -11
  13. package/node_modules/@aws-sdk/client-ecs/dist-cjs/schemas/schemas_0.js +508 -100
  14. package/node_modules/@aws-sdk/client-ecs/dist-es/ECS.js +34 -0
  15. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/CreateDaemonCommand.js +16 -0
  16. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteDaemonCommand.js +16 -0
  17. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteDaemonTaskDefinitionCommand.js +16 -0
  18. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonCommand.js +16 -0
  19. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonDeploymentsCommand.js +16 -0
  20. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonRevisionsCommand.js +16 -0
  21. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonTaskDefinitionCommand.js +16 -0
  22. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonDeploymentsCommand.js +16 -0
  23. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonTaskDefinitionsCommand.js +16 -0
  24. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonsCommand.js +16 -0
  25. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/RegisterDaemonTaskDefinitionCommand.js +16 -0
  26. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateDaemonCommand.js +16 -0
  27. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/index.js +12 -0
  28. package/node_modules/@aws-sdk/client-ecs/dist-es/index.js +1 -0
  29. package/node_modules/@aws-sdk/client-ecs/dist-es/models/enums.js +72 -33
  30. package/node_modules/@aws-sdk/client-ecs/dist-es/models/errors.js +32 -8
  31. package/node_modules/@aws-sdk/client-ecs/dist-es/models/models_1.js +1 -0
  32. package/node_modules/@aws-sdk/client-ecs/dist-es/schemas/schemas_0.js +500 -93
  33. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/index.js +5 -0
  34. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonActive.js +40 -0
  35. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonDeploymentStopped.js +54 -0
  36. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonDeploymentSuccessful.js +99 -0
  37. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonTaskDefinitionActive.js +49 -0
  38. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonTaskDefinitionDeleted.js +31 -0
  39. package/node_modules/@aws-sdk/client-ecs/dist-types/ECS.d.ts +116 -0
  40. package/node_modules/@aws-sdk/client-ecs/dist-types/ECSClient.d.ts +14 -2
  41. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateDaemonCommand.d.ts +150 -0
  42. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
  43. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteDaemonCommand.d.ts +121 -0
  44. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteDaemonTaskDefinitionCommand.d.ts +101 -0
  45. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -0
  46. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
  47. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
  48. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -0
  49. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
  50. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonCommand.d.ts +148 -0
  51. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonDeploymentsCommand.d.ts +229 -0
  52. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonRevisionsCommand.d.ts +155 -0
  53. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonTaskDefinitionCommand.d.ts +286 -0
  54. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -0
  55. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
  56. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
  57. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
  58. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonDeploymentsCommand.d.ts +145 -0
  59. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonTaskDefinitionsCommand.d.ts +129 -0
  60. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonsCommand.d.ts +133 -0
  61. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTaskDefinitionsCommand.d.ts +2 -1
  62. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTasksCommand.d.ts +1 -0
  63. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
  64. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterDaemonTaskDefinitionCommand.d.ts +277 -0
  65. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +2 -1
  66. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RunTaskCommand.d.ts +1 -1
  67. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StartTaskCommand.d.ts +1 -1
  68. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StopTaskCommand.d.ts +1 -1
  69. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  70. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerAgentCommand.d.ts +1 -1
  71. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
  72. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateDaemonCommand.d.ts +149 -0
  73. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskProtectionCommand.d.ts +1 -1
  74. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskSetCommand.d.ts +1 -1
  75. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/index.d.ts +12 -0
  76. package/node_modules/@aws-sdk/client-ecs/dist-types/index.d.ts +1 -0
  77. package/node_modules/@aws-sdk/client-ecs/dist-types/models/enums.d.ts +155 -60
  78. package/node_modules/@aws-sdk/client-ecs/dist-types/models/errors.d.ts +32 -8
  79. package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_0.d.ts +2630 -2613
  80. package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_1.d.ts +1245 -0
  81. package/node_modules/@aws-sdk/client-ecs/dist-types/schemas/schemas_0.d.ts +58 -0
  82. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECS.d.ts +251 -0
  83. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECSClient.d.ts +72 -0
  84. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateDaemonCommand.d.ts +47 -0
  85. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateTaskSetCommand.d.ts +1 -1
  86. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteDaemonCommand.d.ts +47 -0
  87. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteDaemonTaskDefinitionCommand.d.ts +51 -0
  88. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteTaskSetCommand.d.ts +1 -1
  89. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonCommand.d.ts +50 -0
  90. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonDeploymentsCommand.d.ts +51 -0
  91. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonRevisionsCommand.d.ts +51 -0
  92. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonTaskDefinitionCommand.d.ts +51 -0
  93. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTaskSetsCommand.d.ts +1 -1
  94. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTasksCommand.d.ts +1 -1
  95. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/GetTaskProtectionCommand.d.ts +1 -1
  96. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonDeploymentsCommand.d.ts +51 -0
  97. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonTaskDefinitionsCommand.d.ts +51 -0
  98. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonsCommand.d.ts +47 -0
  99. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListTaskDefinitionsCommand.d.ts +2 -4
  100. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RegisterDaemonTaskDefinitionCommand.d.ts +51 -0
  101. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
  102. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RunTaskCommand.d.ts +1 -1
  103. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/StartTaskCommand.d.ts +1 -1
  104. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/StopTaskCommand.d.ts +1 -1
  105. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  106. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateDaemonCommand.d.ts +47 -0
  107. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
  108. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +1 -1
  109. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/index.d.ts +12 -0
  110. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/index.d.ts +1 -0
  111. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/enums.d.ts +92 -40
  112. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/errors.d.ts +21 -7
  113. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_0.d.ts +338 -324
  114. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_1.d.ts +322 -0
  115. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
  116. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/index.d.ts +5 -0
  117. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonActive.d.ts +11 -0
  118. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonDeploymentStopped.d.ts +11 -0
  119. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonDeploymentSuccessful.d.ts +11 -0
  120. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionActive.d.ts +11 -0
  121. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +11 -0
  122. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/index.d.ts +5 -0
  123. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonActive.d.ts +14 -0
  124. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonDeploymentStopped.d.ts +14 -0
  125. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonDeploymentSuccessful.d.ts +14 -0
  126. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonTaskDefinitionActive.d.ts +14 -0
  127. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +14 -0
  128. package/node_modules/@aws-sdk/client-ecs/package.json +6 -6
  129. package/node_modules/@aws-sdk/client-kms/package.json +6 -6
  130. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -0
  131. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +1 -0
  132. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +4 -0
  133. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +39 -8
  134. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +39 -8
  135. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +39 -8
  136. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +39 -8
  137. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +51 -0
  138. package/node_modules/@aws-sdk/client-s3/package.json +7 -7
  139. package/node_modules/@aws-sdk/client-secrets-manager/package.json +6 -6
  140. package/node_modules/@aws-sdk/client-sfn/package.json +6 -6
  141. package/node_modules/@aws-sdk/client-sns/package.json +6 -6
  142. package/node_modules/@aws-sdk/client-sqs/package.json +6 -6
  143. package/node_modules/@aws-sdk/client-ssm/package.json +6 -6
  144. package/node_modules/@aws-sdk/credential-provider-ini/package.json +5 -5
  145. package/node_modules/@aws-sdk/credential-provider-login/package.json +2 -2
  146. package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
  147. package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
  148. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
  149. package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
  150. package/node_modules/@aws-sdk/nested-clients/package.json +5 -5
  151. package/node_modules/@aws-sdk/token-providers/package.json +2 -2
  152. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  153. package/node_modules/@smithy/middleware-retry/package.json +2 -2
  154. package/node_modules/@smithy/util-retry/dist-cjs/index.js +9 -7
  155. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +9 -7
  156. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +71 -1
  157. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +71 -1
  158. package/node_modules/@smithy/util-retry/package.json +1 -1
  159. package/node_modules/lodash/README.md +2 -2
  160. package/node_modules/lodash/_baseOrderBy.js +1 -1
  161. package/node_modules/lodash/_baseUnset.js +7 -20
  162. package/node_modules/lodash/_setCacheHas.js +1 -1
  163. package/node_modules/lodash/compact.js +1 -1
  164. package/node_modules/lodash/core.js +3 -3
  165. package/node_modules/lodash/core.min.js +26 -25
  166. package/node_modules/lodash/fromPairs.js +3 -1
  167. package/node_modules/lodash/lodash.js +38 -27
  168. package/node_modules/lodash/lodash.min.js +125 -129
  169. package/node_modules/lodash/package.json +4 -2
  170. package/node_modules/lodash/random.js +9 -0
  171. package/node_modules/lodash/template.js +16 -4
  172. package/node_modules/lodash/templateSettings.js +4 -0
  173. package/package.json +12 -12
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.BlockedException = exports.TaskSetNotFoundException = exports.ServiceDeploymentNotFoundException = exports.ConflictException = exports.ResourceNotFoundException = exports.ServiceNotActiveException = exports.PlatformUnknownException = exports.PlatformTaskDefinitionIncompatibilityException = exports.NoUpdateAvailableException = exports.MissingVersionException = exports.AttributeLimitExceededException = exports.ServiceNotFoundException = exports.TargetNotFoundException = exports.ResourceInUseException = exports.TargetNotConnectedException = exports.ClusterContainsTasksException = exports.ClusterContainsServicesException = exports.ClusterContainsContainerInstancesException = exports.ClusterContainsCapacityProviderException = exports.NamespaceNotFoundException = exports.UpdateInProgressException = exports.UnsupportedFeatureException = exports.ServerException = exports.LimitExceededException = exports.InvalidParameterException = exports.ClusterNotFoundException = exports.ClientException = exports.AccessDeniedException = void 0;
3
+ exports.BlockedException = exports.TaskSetNotFoundException = exports.ServiceDeploymentNotFoundException = exports.ConflictException = exports.ResourceNotFoundException = exports.ServiceNotActiveException = exports.PlatformTaskDefinitionIncompatibilityException = exports.DaemonNotFoundException = exports.DaemonNotActiveException = exports.PlatformUnknownException = exports.NoUpdateAvailableException = exports.MissingVersionException = exports.AttributeLimitExceededException = exports.ServiceNotFoundException = exports.TargetNotFoundException = exports.ResourceInUseException = exports.TargetNotConnectedException = exports.ClusterContainsTasksException = exports.ClusterContainsServicesException = exports.ClusterContainsContainerInstancesException = exports.ClusterContainsCapacityProviderException = exports.NamespaceNotFoundException = exports.UpdateInProgressException = exports.UnsupportedFeatureException = exports.ServerException = exports.LimitExceededException = exports.InvalidParameterException = exports.ClusterNotFoundException = exports.ClientException = exports.AccessDeniedException = void 0;
4
4
  const ECSServiceException_1 = require("./ECSServiceException");
5
5
  class AccessDeniedException extends ECSServiceException_1.ECSServiceException {
6
6
  name = "AccessDeniedException";
@@ -262,32 +262,58 @@ class NoUpdateAvailableException extends ECSServiceException_1.ECSServiceExcepti
262
262
  }
263
263
  }
264
264
  exports.NoUpdateAvailableException = NoUpdateAvailableException;
265
- class PlatformTaskDefinitionIncompatibilityException extends ECSServiceException_1.ECSServiceException {
266
- name = "PlatformTaskDefinitionIncompatibilityException";
265
+ class PlatformUnknownException extends ECSServiceException_1.ECSServiceException {
266
+ name = "PlatformUnknownException";
267
267
  $fault = "client";
268
268
  constructor(opts) {
269
269
  super({
270
- name: "PlatformTaskDefinitionIncompatibilityException",
270
+ name: "PlatformUnknownException",
271
271
  $fault: "client",
272
272
  ...opts,
273
273
  });
274
- Object.setPrototypeOf(this, PlatformTaskDefinitionIncompatibilityException.prototype);
274
+ Object.setPrototypeOf(this, PlatformUnknownException.prototype);
275
275
  }
276
276
  }
277
- exports.PlatformTaskDefinitionIncompatibilityException = PlatformTaskDefinitionIncompatibilityException;
278
- class PlatformUnknownException extends ECSServiceException_1.ECSServiceException {
279
- name = "PlatformUnknownException";
277
+ exports.PlatformUnknownException = PlatformUnknownException;
278
+ class DaemonNotActiveException extends ECSServiceException_1.ECSServiceException {
279
+ name = "DaemonNotActiveException";
280
280
  $fault = "client";
281
281
  constructor(opts) {
282
282
  super({
283
- name: "PlatformUnknownException",
283
+ name: "DaemonNotActiveException",
284
284
  $fault: "client",
285
285
  ...opts,
286
286
  });
287
- Object.setPrototypeOf(this, PlatformUnknownException.prototype);
287
+ Object.setPrototypeOf(this, DaemonNotActiveException.prototype);
288
288
  }
289
289
  }
290
- exports.PlatformUnknownException = PlatformUnknownException;
290
+ exports.DaemonNotActiveException = DaemonNotActiveException;
291
+ class DaemonNotFoundException extends ECSServiceException_1.ECSServiceException {
292
+ name = "DaemonNotFoundException";
293
+ $fault = "client";
294
+ constructor(opts) {
295
+ super({
296
+ name: "DaemonNotFoundException",
297
+ $fault: "client",
298
+ ...opts,
299
+ });
300
+ Object.setPrototypeOf(this, DaemonNotFoundException.prototype);
301
+ }
302
+ }
303
+ exports.DaemonNotFoundException = DaemonNotFoundException;
304
+ class PlatformTaskDefinitionIncompatibilityException extends ECSServiceException_1.ECSServiceException {
305
+ name = "PlatformTaskDefinitionIncompatibilityException";
306
+ $fault = "client";
307
+ constructor(opts) {
308
+ super({
309
+ name: "PlatformTaskDefinitionIncompatibilityException",
310
+ $fault: "client",
311
+ ...opts,
312
+ });
313
+ Object.setPrototypeOf(this, PlatformTaskDefinitionIncompatibilityException.prototype);
314
+ }
315
+ }
316
+ exports.PlatformTaskDefinitionIncompatibilityException = PlatformTaskDefinitionIncompatibilityException;
291
317
  class ServiceNotActiveException extends ECSServiceException_1.ECSServiceException {
292
318
  name = "ServiceNotActiveException";
293
319
  $fault = "client";