@aws-sdk/client-sagemaker 3.939.0 → 3.943.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 (91) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +277 -12
  3. package/dist-es/SageMaker.js +12 -0
  4. package/dist-es/commands/CreateMlflowAppCommand.js +16 -0
  5. package/dist-es/commands/CreatePresignedMlflowAppUrlCommand.js +16 -0
  6. package/dist-es/commands/DeleteMlflowAppCommand.js +16 -0
  7. package/dist-es/commands/DescribeMlflowAppCommand.js +16 -0
  8. package/dist-es/commands/ListMlflowAppsCommand.js +16 -0
  9. package/dist-es/commands/UpdateMlflowAppCommand.js +16 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/enums.js +37 -0
  12. package/dist-es/pagination/ListMlflowAppsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +149 -12
  15. package/dist-types/SageMaker.d.ts +43 -0
  16. package/dist-types/SageMakerClient.d.ts +8 -2
  17. package/dist-types/commands/CreateClusterCommand.d.ts +3 -3
  18. package/dist-types/commands/CreateComputeQuotaCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateDomainCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateHubContentPresignedUrlsCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateMlflowAppCommand.d.ts +91 -0
  22. package/dist-types/commands/CreatePresignedMlflowAppUrlCommand.d.ts +79 -0
  23. package/dist-types/commands/CreateTrainingJobCommand.d.ts +1 -2
  24. package/dist-types/commands/CreateUserProfileCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteHubContentCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteHubContentReferenceCommand.d.ts +1 -1
  27. package/dist-types/commands/DeleteMlflowAppCommand.d.ts +77 -0
  28. package/dist-types/commands/DescribeClusterCommand.d.ts +2 -2
  29. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -1
  30. package/dist-types/commands/DescribeComputeQuotaCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeDomainCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeHubContentCommand.d.ts +3 -3
  33. package/dist-types/commands/DescribeMlflowAppCommand.d.ts +111 -0
  34. package/dist-types/commands/DescribeSubscribedWorkteamCommand.d.ts +2 -1
  35. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +1 -1
  36. package/dist-types/commands/DescribeUserProfileCommand.d.ts +1 -1
  37. package/dist-types/commands/ImportHubContentCommand.d.ts +1 -1
  38. package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -1
  39. package/dist-types/commands/ListComputeQuotasCommand.d.ts +1 -1
  40. package/dist-types/commands/ListHubContentVersionsCommand.d.ts +3 -3
  41. package/dist-types/commands/ListHubContentsCommand.d.ts +3 -3
  42. package/dist-types/commands/ListMlflowAppsCommand.d.ts +93 -0
  43. package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +2 -1
  44. package/dist-types/commands/ListTagsCommand.d.ts +1 -1
  45. package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
  46. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  47. package/dist-types/commands/ListTrainingPlansCommand.d.ts +1 -2
  48. package/dist-types/commands/UpdateClusterCommand.d.ts +2 -2
  49. package/dist-types/commands/UpdateComputeQuotaCommand.d.ts +1 -1
  50. package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
  51. package/dist-types/commands/UpdateHubContentCommand.d.ts +1 -1
  52. package/dist-types/commands/UpdateHubContentReferenceCommand.d.ts +1 -1
  53. package/dist-types/commands/UpdateMlflowAppCommand.d.ts +88 -0
  54. package/dist-types/commands/UpdateUserProfileCommand.d.ts +1 -1
  55. package/dist-types/commands/index.d.ts +6 -0
  56. package/dist-types/models/enums.d.ts +77 -0
  57. package/dist-types/models/models_0.d.ts +3 -3
  58. package/dist-types/models/models_1.d.ts +87 -170
  59. package/dist-types/models/models_2.d.ts +280 -372
  60. package/dist-types/models/models_3.d.ts +486 -383
  61. package/dist-types/models/models_4.d.ts +427 -4
  62. package/dist-types/pagination/ListMlflowAppsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/index.d.ts +1 -0
  64. package/dist-types/schemas/schemas_0.d.ts +21 -0
  65. package/dist-types/ts3.4/SageMaker.d.ts +103 -0
  66. package/dist-types/ts3.4/SageMakerClient.d.ts +36 -0
  67. package/dist-types/ts3.4/commands/CreateMlflowAppCommand.d.ts +50 -0
  68. package/dist-types/ts3.4/commands/CreatePresignedMlflowAppUrlCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +4 -2
  70. package/dist-types/ts3.4/commands/DeleteMlflowAppCommand.d.ts +50 -0
  71. package/dist-types/ts3.4/commands/DescribeMlflowAppCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/DescribeSubscribedWorkteamCommand.d.ts +2 -4
  73. package/dist-types/ts3.4/commands/DescribeTrainingJobCommand.d.ts +1 -1
  74. package/dist-types/ts3.4/commands/ListMlflowAppsCommand.d.ts +50 -0
  75. package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +2 -4
  76. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
  77. package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
  78. package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  79. package/dist-types/ts3.4/commands/ListTrainingPlansCommand.d.ts +4 -2
  80. package/dist-types/ts3.4/commands/UpdateMlflowAppCommand.d.ts +50 -0
  81. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  82. package/dist-types/ts3.4/models/enums.d.ts +47 -0
  83. package/dist-types/ts3.4/models/models_0.d.ts +1 -1
  84. package/dist-types/ts3.4/models/models_1.d.ts +23 -38
  85. package/dist-types/ts3.4/models/models_2.d.ts +67 -86
  86. package/dist-types/ts3.4/models/models_3.d.ts +127 -91
  87. package/dist-types/ts3.4/models/models_4.d.ts +112 -4
  88. package/dist-types/ts3.4/pagination/ListMlflowAppsPaginator.d.ts +11 -0
  89. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  90. package/dist-types/ts3.4/schemas/schemas_0.d.ts +21 -0
  91. package/package.json +5 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
4
- "version": "3.939.0",
4
+ "version": "3.943.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-sagemaker",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.939.0",
23
+ "@aws-sdk/core": "3.943.0",
24
+ "@aws-sdk/credential-provider-node": "3.943.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
- "@aws-sdk/middleware-user-agent": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.943.0",
29
29
  "@aws-sdk/region-config-resolver": "3.936.0",
30
30
  "@aws-sdk/types": "3.936.0",
31
31
  "@aws-sdk/util-endpoints": "3.936.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.936.0",
33
- "@aws-sdk/util-user-agent-node": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.943.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",