@aws-sdk/client-cloudformation 3.535.0 → 3.536.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 (31) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +91 -2
  3. package/dist-es/CloudFormation.js +2 -0
  4. package/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +24 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +0 -4
  7. package/dist-es/models/models_1.js +4 -0
  8. package/dist-es/protocols/Aws_query.js +73 -0
  9. package/dist-types/CloudFormation.d.ts +7 -0
  10. package/dist-types/CloudFormationClient.d.ts +3 -2
  11. package/dist-types/commands/ActivateTypeCommand.d.ts +3 -1
  12. package/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +73 -0
  13. package/dist-types/commands/RegisterTypeCommand.d.ts +2 -2
  14. package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +2 -1
  15. package/dist-types/commands/SignalResourceCommand.d.ts +1 -1
  16. package/dist-types/commands/TestTypeCommand.d.ts +2 -2
  17. package/dist-types/commands/UpdateStackInstancesCommand.d.ts +6 -6
  18. package/dist-types/commands/index.d.ts +1 -0
  19. package/dist-types/models/models_0.d.ts +115 -74
  20. package/dist-types/models/models_1.d.ts +56 -11
  21. package/dist-types/protocols/Aws_query.d.ts +9 -0
  22. package/dist-types/ts3.4/CloudFormation.d.ts +23 -0
  23. package/dist-types/ts3.4/CloudFormationClient.d.ts +6 -0
  24. package/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +39 -0
  25. package/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +2 -4
  26. package/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +1 -1
  27. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +14 -13
  29. package/dist-types/ts3.4/models/models_1.d.ts +13 -0
  30. package/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
  31. package/package.json +1 -1
@@ -231,6 +231,10 @@ import {
231
231
  ListStacksCommandInput,
232
232
  ListStacksCommandOutput,
233
233
  } from "../commands/ListStacksCommand";
234
+ import {
235
+ ListStackSetAutoDeploymentTargetsCommandInput,
236
+ ListStackSetAutoDeploymentTargetsCommandOutput,
237
+ } from "../commands/ListStackSetAutoDeploymentTargetsCommand";
234
238
  import {
235
239
  ListStackSetOperationResultsCommandInput,
236
240
  ListStackSetOperationResultsCommandOutput,
@@ -555,6 +559,10 @@ export declare const se_ListStacksCommand: (
555
559
  input: ListStacksCommandInput,
556
560
  context: __SerdeContext
557
561
  ) => Promise<__HttpRequest>;
562
+ export declare const se_ListStackSetAutoDeploymentTargetsCommand: (
563
+ input: ListStackSetAutoDeploymentTargetsCommandInput,
564
+ context: __SerdeContext
565
+ ) => Promise<__HttpRequest>;
558
566
  export declare const se_ListStackSetOperationResultsCommand: (
559
567
  input: ListStackSetOperationResultsCommandInput,
560
568
  context: __SerdeContext
@@ -879,6 +887,10 @@ export declare const de_ListStacksCommand: (
879
887
  output: __HttpResponse,
880
888
  context: __SerdeContext
881
889
  ) => Promise<ListStacksCommandOutput>;
890
+ export declare const de_ListStackSetAutoDeploymentTargetsCommand: (
891
+ output: __HttpResponse,
892
+ context: __SerdeContext
893
+ ) => Promise<ListStackSetAutoDeploymentTargetsCommandOutput>;
882
894
  export declare const de_ListStackSetOperationResultsCommand: (
883
895
  output: __HttpResponse,
884
896
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudformation",
3
3
  "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
4
- "version": "3.535.0",
4
+ "version": "3.536.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cloudformation",