@aws-sdk/client-imagebuilder 3.40.0 → 3.45.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 (75) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/dist-cjs/Imagebuilder.js +15 -0
  3. package/dist-cjs/commands/ImportVmImageCommand.js +36 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/endpoints.js +9 -0
  6. package/dist-cjs/models/models_0.js +34 -4
  7. package/dist-cjs/protocols/Aws_restJson1.js +186 -2
  8. package/dist-es/Imagebuilder.js +15 -0
  9. package/dist-es/commands/ImportVmImageCommand.js +39 -0
  10. package/dist-es/commands/index.js +1 -0
  11. package/dist-es/endpoints.js +9 -0
  12. package/dist-es/models/models_0.js +24 -0
  13. package/dist-es/protocols/Aws_restJson1.js +189 -3
  14. package/dist-types/Imagebuilder.d.ts +17 -2
  15. package/dist-types/ImagebuilderClient.d.ts +3 -2
  16. package/dist-types/commands/CancelImageCreationCommand.d.ts +1 -1
  17. package/dist-types/commands/CreateComponentCommand.d.ts +1 -1
  18. package/dist-types/commands/CreateContainerRecipeCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateDistributionConfigurationCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateImageCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateImagePipelineCommand.d.ts +1 -1
  22. package/dist-types/commands/CreateImageRecipeCommand.d.ts +1 -1
  23. package/dist-types/commands/CreateInfrastructureConfigurationCommand.d.ts +1 -1
  24. package/dist-types/commands/DeleteComponentCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteContainerRecipeCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteDistributionConfigurationCommand.d.ts +1 -1
  27. package/dist-types/commands/DeleteImageCommand.d.ts +2 -2
  28. package/dist-types/commands/DeleteImagePipelineCommand.d.ts +1 -1
  29. package/dist-types/commands/DeleteImageRecipeCommand.d.ts +1 -1
  30. package/dist-types/commands/DeleteInfrastructureConfigurationCommand.d.ts +1 -1
  31. package/dist-types/commands/GetComponentCommand.d.ts +1 -1
  32. package/dist-types/commands/GetComponentPolicyCommand.d.ts +1 -1
  33. package/dist-types/commands/GetContainerRecipeCommand.d.ts +1 -1
  34. package/dist-types/commands/GetContainerRecipePolicyCommand.d.ts +1 -1
  35. package/dist-types/commands/GetDistributionConfigurationCommand.d.ts +1 -1
  36. package/dist-types/commands/GetImageCommand.d.ts +1 -1
  37. package/dist-types/commands/GetImagePipelineCommand.d.ts +1 -1
  38. package/dist-types/commands/GetImagePolicyCommand.d.ts +1 -1
  39. package/dist-types/commands/GetImageRecipeCommand.d.ts +1 -1
  40. package/dist-types/commands/GetImageRecipePolicyCommand.d.ts +1 -1
  41. package/dist-types/commands/GetInfrastructureConfigurationCommand.d.ts +1 -1
  42. package/dist-types/commands/ImportComponentCommand.d.ts +1 -1
  43. package/dist-types/commands/ImportVmImageCommand.d.ts +43 -0
  44. package/dist-types/commands/ListComponentBuildVersionsCommand.d.ts +1 -1
  45. package/dist-types/commands/ListComponentsCommand.d.ts +1 -1
  46. package/dist-types/commands/ListContainerRecipesCommand.d.ts +1 -1
  47. package/dist-types/commands/ListDistributionConfigurationsCommand.d.ts +1 -1
  48. package/dist-types/commands/ListImageBuildVersionsCommand.d.ts +1 -1
  49. package/dist-types/commands/ListImagePackagesCommand.d.ts +1 -1
  50. package/dist-types/commands/ListImagePipelineImagesCommand.d.ts +1 -1
  51. package/dist-types/commands/ListImagePipelinesCommand.d.ts +1 -1
  52. package/dist-types/commands/ListImageRecipesCommand.d.ts +1 -1
  53. package/dist-types/commands/ListImagesCommand.d.ts +1 -1
  54. package/dist-types/commands/ListInfrastructureConfigurationsCommand.d.ts +1 -1
  55. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  56. package/dist-types/commands/PutComponentPolicyCommand.d.ts +1 -1
  57. package/dist-types/commands/PutContainerRecipePolicyCommand.d.ts +2 -2
  58. package/dist-types/commands/PutImagePolicyCommand.d.ts +1 -1
  59. package/dist-types/commands/PutImageRecipePolicyCommand.d.ts +1 -1
  60. package/dist-types/commands/StartImagePipelineExecutionCommand.d.ts +1 -1
  61. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  62. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  63. package/dist-types/commands/UpdateDistributionConfigurationCommand.d.ts +1 -1
  64. package/dist-types/commands/UpdateImagePipelineCommand.d.ts +1 -1
  65. package/dist-types/commands/UpdateInfrastructureConfigurationCommand.d.ts +1 -1
  66. package/dist-types/commands/index.d.ts +1 -0
  67. package/dist-types/models/models_0.d.ts +253 -14
  68. package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
  69. package/dist-types/ts3.4/Imagebuilder.d.ts +5 -0
  70. package/dist-types/ts3.4/ImagebuilderClient.d.ts +3 -2
  71. package/dist-types/ts3.4/commands/ImportVmImageCommand.d.ts +17 -0
  72. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  73. package/dist-types/ts3.4/models/models_0.d.ts +73 -0
  74. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
  75. package/package.json +6 -6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-imagebuilder",
3
3
  "description": "AWS SDK for JavaScript Imagebuilder Client for Node.js, Browser and React Native",
4
- "version": "3.40.0",
4
+ "version": "3.45.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.40.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.40.0",
24
+ "@aws-sdk/client-sts": "3.45.0",
25
+ "@aws-sdk/config-resolver": "3.45.0",
26
+ "@aws-sdk/credential-provider-node": "3.45.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",
28
28
  "@aws-sdk/hash-node": "3.40.0",
29
29
  "@aws-sdk/invalid-dependency": "3.40.0",
@@ -32,13 +32,13 @@
32
32
  "@aws-sdk/middleware-logger": "3.40.0",
33
33
  "@aws-sdk/middleware-retry": "3.40.0",
34
34
  "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.40.0",
35
+ "@aws-sdk/middleware-signing": "3.45.0",
36
36
  "@aws-sdk/middleware-stack": "3.40.0",
37
37
  "@aws-sdk/middleware-user-agent": "3.40.0",
38
38
  "@aws-sdk/node-config-provider": "3.40.0",
39
39
  "@aws-sdk/node-http-handler": "3.40.0",
40
40
  "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.40.0",
41
+ "@aws-sdk/smithy-client": "3.41.0",
42
42
  "@aws-sdk/types": "3.40.0",
43
43
  "@aws-sdk/url-parser": "3.40.0",
44
44
  "@aws-sdk/util-base64-browser": "3.37.0",