@aws-sdk/client-ecs 3.296.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/dist-types/ECS.d.ts +57 -0
  2. package/dist-types/ECSClient.d.ts +24 -4
  3. package/dist-types/commands/CreateCapacityProviderCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateTaskSetCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteAccountSettingCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAttributesCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteTaskSetCommand.d.ts +16 -0
  14. package/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +16 -0
  15. package/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeClustersCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeContainerInstancesCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeServicesCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeTaskSetsCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeTasksCommand.d.ts +16 -0
  23. package/dist-types/commands/DiscoverPollEndpointCommand.d.ts +16 -0
  24. package/dist-types/commands/ExecuteCommandCommand.d.ts +16 -0
  25. package/dist-types/commands/GetTaskProtectionCommand.d.ts +16 -0
  26. package/dist-types/commands/ListAccountSettingsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListAttributesCommand.d.ts +16 -0
  28. package/dist-types/commands/ListClustersCommand.d.ts +16 -0
  29. package/dist-types/commands/ListContainerInstancesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListServicesByNamespaceCommand.d.ts +16 -0
  31. package/dist-types/commands/ListServicesCommand.d.ts +16 -0
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +16 -0
  34. package/dist-types/commands/ListTaskDefinitionsCommand.d.ts +16 -0
  35. package/dist-types/commands/ListTasksCommand.d.ts +16 -0
  36. package/dist-types/commands/PutAccountSettingCommand.d.ts +16 -0
  37. package/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +16 -0
  38. package/dist-types/commands/PutAttributesCommand.d.ts +16 -0
  39. package/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +16 -0
  40. package/dist-types/commands/RegisterContainerInstanceCommand.d.ts +16 -0
  41. package/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +16 -0
  42. package/dist-types/commands/RunTaskCommand.d.ts +16 -0
  43. package/dist-types/commands/StartTaskCommand.d.ts +16 -0
  44. package/dist-types/commands/StopTaskCommand.d.ts +16 -0
  45. package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +16 -0
  46. package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +16 -0
  47. package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +16 -0
  48. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  49. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  50. package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +16 -0
  51. package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
  52. package/dist-types/commands/UpdateClusterSettingsCommand.d.ts +16 -0
  53. package/dist-types/commands/UpdateContainerAgentCommand.d.ts +16 -0
  54. package/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +16 -0
  55. package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
  56. package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +16 -0
  57. package/dist-types/commands/UpdateTaskProtectionCommand.d.ts +16 -0
  58. package/dist-types/commands/UpdateTaskSetCommand.d.ts +16 -0
  59. package/dist-types/models/ECSServiceException.d.ts +2 -0
  60. package/dist-types/models/models_0.d.ts +631 -8
  61. package/dist-types/pagination/Interfaces.d.ts +3 -0
  62. package/dist-types/pagination/ListAccountSettingsPaginator.d.ts +3 -0
  63. package/dist-types/pagination/ListAttributesPaginator.d.ts +3 -0
  64. package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
  65. package/dist-types/pagination/ListContainerInstancesPaginator.d.ts +3 -0
  66. package/dist-types/pagination/ListServicesByNamespacePaginator.d.ts +3 -0
  67. package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
  68. package/dist-types/pagination/ListTaskDefinitionFamiliesPaginator.d.ts +3 -0
  69. package/dist-types/pagination/ListTaskDefinitionsPaginator.d.ts +3 -0
  70. package/dist-types/pagination/ListTasksPaginator.d.ts +3 -0
  71. package/package.json +3 -3
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { ECSClient } from "../ECSClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface ECSPaginationConfiguration extends PaginationConfiguration {
4
7
  client: ECSClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput } from "../commands/ListAccountSettingsCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAccountSettings(config: ECSPaginationConfiguration, input: ListAccountSettingsCommandInput, ...additionalArguments: any): Paginator<ListAccountSettingsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAttributesCommandInput, ListAttributesCommandOutput } from "../commands/ListAttributesCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAttributes(config: ECSPaginationConfiguration, input: ListAttributesCommandInput, ...additionalArguments: any): Paginator<ListAttributesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListClusters(config: ECSPaginationConfiguration, input: ListClustersCommandInput, ...additionalArguments: any): Paginator<ListClustersCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput } from "../commands/ListContainerInstancesCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListContainerInstances(config: ECSPaginationConfiguration, input: ListContainerInstancesCommandInput, ...additionalArguments: any): Paginator<ListContainerInstancesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput } from "../commands/ListServicesByNamespaceCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListServicesByNamespace(config: ECSPaginationConfiguration, input: ListServicesByNamespaceCommandInput, ...additionalArguments: any): Paginator<ListServicesByNamespaceCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListServices(config: ECSPaginationConfiguration, input: ListServicesCommandInput, ...additionalArguments: any): Paginator<ListServicesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTaskDefinitionFamiliesCommandInput, ListTaskDefinitionFamiliesCommandOutput } from "../commands/ListTaskDefinitionFamiliesCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTaskDefinitionFamilies(config: ECSPaginationConfiguration, input: ListTaskDefinitionFamiliesCommandInput, ...additionalArguments: any): Paginator<ListTaskDefinitionFamiliesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTaskDefinitionsCommandInput, ListTaskDefinitionsCommandOutput } from "../commands/ListTaskDefinitionsCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTaskDefinitions(config: ECSPaginationConfiguration, input: ListTaskDefinitionsCommandInput, ...additionalArguments: any): Paginator<ListTaskDefinitionsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTasksCommandInput, ListTasksCommandOutput } from "../commands/ListTasksCommand";
3
3
  import { ECSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTasks(config: ECSPaginationConfiguration, input: ListTasksCommandInput, ...additionalArguments: any): Paginator<ListTasksCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ecs",
3
3
  "description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",