@aws-sdk/client-sagemaker 3.460.0 → 3.462.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 (181) hide show
  1. package/README.md +104 -0
  2. package/dist-cjs/SageMaker.js +26 -0
  3. package/dist-cjs/commands/CreateClusterCommand.js +51 -0
  4. package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
  5. package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
  7. package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
  8. package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
  9. package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
  10. package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
  11. package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
  12. package/dist-cjs/commands/ListClustersCommand.js +51 -0
  13. package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
  14. package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
  15. package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
  16. package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
  17. package/dist-cjs/commands/index.js +13 -0
  18. package/dist-cjs/models/models_0.js +62 -51
  19. package/dist-cjs/models/models_1.js +63 -30
  20. package/dist-cjs/models/models_2.js +37 -39
  21. package/dist-cjs/models/models_3.js +45 -44
  22. package/dist-cjs/models/models_4.js +45 -3
  23. package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
  24. package/dist-cjs/pagination/index.js +1 -0
  25. package/dist-cjs/protocols/Aws_json1_1.js +845 -13
  26. package/dist-es/SageMaker.js +26 -0
  27. package/dist-es/commands/CreateClusterCommand.js +47 -0
  28. package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
  29. package/dist-es/commands/CreateWorkforceCommand.js +1 -1
  30. package/dist-es/commands/DeleteClusterCommand.js +47 -0
  31. package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
  32. package/dist-es/commands/DescribeClusterCommand.js +47 -0
  33. package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
  34. package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
  35. package/dist-es/commands/ListClusterNodesCommand.js +47 -0
  36. package/dist-es/commands/ListClustersCommand.js +47 -0
  37. package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
  38. package/dist-es/commands/UpdateClusterCommand.js +47 -0
  39. package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
  40. package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
  41. package/dist-es/commands/index.js +13 -0
  42. package/dist-es/models/models_0.js +60 -50
  43. package/dist-es/models/models_1.js +62 -27
  44. package/dist-es/models/models_2.js +34 -38
  45. package/dist-es/models/models_3.js +43 -42
  46. package/dist-es/models/models_4.js +43 -1
  47. package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
  48. package/dist-es/pagination/index.js +1 -0
  49. package/dist-es/protocols/Aws_json1_1.js +807 -1
  50. package/dist-types/SageMaker.d.ts +91 -0
  51. package/dist-types/SageMakerClient.d.ts +15 -2
  52. package/dist-types/commands/AddTagsCommand.d.ts +1 -1
  53. package/dist-types/commands/CreateAppCommand.d.ts +2 -1
  54. package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
  55. package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
  56. package/dist-types/commands/CreateDomainCommand.d.ts +15 -8
  57. package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
  58. package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
  59. package/dist-types/commands/CreateModelCommand.d.ts +1 -1
  60. package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
  61. package/dist-types/commands/CreateSpaceCommand.d.ts +2 -0
  62. package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateTrainingJobCommand.d.ts +3 -0
  64. package/dist-types/commands/CreateUserProfileCommand.d.ts +9 -2
  65. package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
  66. package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
  67. package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
  68. package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
  69. package/dist-types/commands/DeleteAppCommand.d.ts +1 -1
  70. package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  71. package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
  72. package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
  73. package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
  74. package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
  75. package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
  76. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
  77. package/dist-types/commands/DescribeAppCommand.d.ts +1 -0
  78. package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
  79. package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
  80. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
  81. package/dist-types/commands/DescribeDomainCommand.d.ts +7 -0
  82. package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
  83. package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
  84. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
  85. package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
  86. package/dist-types/commands/DescribeSpaceCommand.d.ts +3 -0
  87. package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
  88. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +3 -0
  89. package/dist-types/commands/DescribeUserProfileCommand.d.ts +8 -1
  90. package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
  91. package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
  92. package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  93. package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  94. package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  95. package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
  96. package/dist-types/commands/ListClustersCommand.d.ts +87 -0
  97. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
  98. package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
  99. package/dist-types/commands/ListSpacesCommand.d.ts +1 -1
  100. package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
  101. package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +2 -2
  102. package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  103. package/dist-types/commands/ListTagsCommand.d.ts +1 -1
  104. package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
  105. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  106. package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
  107. package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
  108. package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
  109. package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
  110. package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
  111. package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
  112. package/dist-types/commands/SearchCommand.d.ts +16 -0
  113. package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
  114. package/dist-types/commands/UpdateDomainCommand.d.ts +11 -0
  115. package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
  116. package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
  117. package/dist-types/commands/UpdateSpaceCommand.d.ts +2 -0
  118. package/dist-types/commands/UpdateUserProfileCommand.d.ts +6 -0
  119. package/dist-types/commands/index.d.ts +13 -0
  120. package/dist-types/models/models_0.d.ts +409 -345
  121. package/dist-types/models/models_1.d.ts +708 -551
  122. package/dist-types/models/models_2.d.ts +5059 -5239
  123. package/dist-types/models/models_3.d.ts +4732 -4693
  124. package/dist-types/models/models_4.d.ts +1446 -4
  125. package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/index.d.ts +1 -0
  127. package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
  128. package/dist-types/ts3.4/SageMaker.d.ts +227 -0
  129. package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
  130. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
  131. package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +2 -4
  133. package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
  134. package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
  135. package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
  136. package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
  137. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  139. package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
  142. package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
  143. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
  144. package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
  145. package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
  146. package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +2 -4
  147. package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
  153. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
  154. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
  155. package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
  156. package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
  170. package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
  171. package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
  172. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  173. package/dist-types/ts3.4/models/models_0.d.ts +124 -111
  174. package/dist-types/ts3.4/models/models_1.d.ts +188 -151
  175. package/dist-types/ts3.4/models/models_2.d.ts +227 -288
  176. package/dist-types/ts3.4/models/models_3.d.ts +349 -344
  177. package/dist-types/ts3.4/models/models_4.d.ts +372 -15
  178. package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
  179. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  180. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
  181. package/package.json +3 -3
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DescribeClusterNodeCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
+ class DescribeClusterNodeCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeClusterNodeCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "SageMakerClient";
29
+ const commandName = "DescribeClusterNodeCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "SageMaker",
38
+ operation: "DescribeClusterNode",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_json1_1_1.se_DescribeClusterNodeCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_json1_1_1.de_DescribeClusterNodeCommand)(output, context);
49
+ }
50
+ }
51
+ exports.DescribeClusterNodeCommand = DescribeClusterNodeCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DescribeInferenceComponentCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
+ class DescribeInferenceComponentCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DescribeInferenceComponentCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "SageMakerClient";
29
+ const commandName = "DescribeInferenceComponentCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "SageMaker",
38
+ operation: "DescribeInferenceComponent",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_json1_1_1.se_DescribeInferenceComponentCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_json1_1_1.de_DescribeInferenceComponentCommand)(output, context);
49
+ }
50
+ }
51
+ exports.DescribeInferenceComponentCommand = DescribeInferenceComponentCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListClusterNodesCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
+ class ListClusterNodesCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListClusterNodesCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "SageMakerClient";
29
+ const commandName = "ListClusterNodesCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "SageMaker",
38
+ operation: "ListClusterNodes",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_json1_1_1.se_ListClusterNodesCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_json1_1_1.de_ListClusterNodesCommand)(output, context);
49
+ }
50
+ }
51
+ exports.ListClusterNodesCommand = ListClusterNodesCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListClustersCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
+ class ListClustersCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListClustersCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "SageMakerClient";
29
+ const commandName = "ListClustersCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "SageMaker",
38
+ operation: "ListClusters",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_json1_1_1.se_ListClustersCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_json1_1_1.de_ListClustersCommand)(output, context);
49
+ }
50
+ }
51
+ exports.ListClustersCommand = ListClustersCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListInferenceComponentsCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
+ class ListInferenceComponentsCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListInferenceComponentsCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "SageMakerClient";
29
+ const commandName = "ListInferenceComponentsCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "SageMaker",
38
+ operation: "ListInferenceComponents",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_json1_1_1.se_ListInferenceComponentsCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_json1_1_1.de_ListInferenceComponentsCommand)(output, context);
49
+ }
50
+ }
51
+ exports.ListInferenceComponentsCommand = ListInferenceComponentsCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateClusterCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
+ class UpdateClusterCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UpdateClusterCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "SageMakerClient";
29
+ const commandName = "UpdateClusterCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "SageMaker",
38
+ operation: "UpdateCluster",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_json1_1_1.se_UpdateClusterCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_json1_1_1.de_UpdateClusterCommand)(output, context);
49
+ }
50
+ }
51
+ exports.UpdateClusterCommand = UpdateClusterCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateInferenceComponentCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
+ class UpdateInferenceComponentCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UpdateInferenceComponentCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "SageMakerClient";
29
+ const commandName = "UpdateInferenceComponentCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "SageMaker",
38
+ operation: "UpdateInferenceComponent",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_json1_1_1.se_UpdateInferenceComponentCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_json1_1_1.de_UpdateInferenceComponentCommand)(output, context);
49
+ }
50
+ }
51
+ exports.UpdateInferenceComponentCommand = UpdateInferenceComponentCommand;
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateInferenceComponentRuntimeConfigCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
9
+ const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
10
+ class UpdateInferenceComponentRuntimeConfigCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UpdateInferenceComponentRuntimeConfigCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "SageMakerClient";
29
+ const commandName = "UpdateInferenceComponentRuntimeConfigCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "SageMaker",
38
+ operation: "UpdateInferenceComponentRuntimeConfig",
39
+ },
40
+ };
41
+ const { requestHandler } = configuration;
42
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
43
+ }
44
+ serialize(input, context) {
45
+ return (0, Aws_json1_1_1.se_UpdateInferenceComponentRuntimeConfigCommand)(input, context);
46
+ }
47
+ deserialize(output, context) {
48
+ return (0, Aws_json1_1_1.de_UpdateInferenceComponentRuntimeConfigCommand)(output, context);
49
+ }
50
+ }
51
+ exports.UpdateInferenceComponentRuntimeConfigCommand = UpdateInferenceComponentRuntimeConfigCommand;
@@ -12,6 +12,7 @@ tslib_1.__exportStar(require("./CreateAppImageConfigCommand"), exports);
12
12
  tslib_1.__exportStar(require("./CreateArtifactCommand"), exports);
13
13
  tslib_1.__exportStar(require("./CreateAutoMLJobCommand"), exports);
14
14
  tslib_1.__exportStar(require("./CreateAutoMLJobV2Command"), exports);
15
+ tslib_1.__exportStar(require("./CreateClusterCommand"), exports);
15
16
  tslib_1.__exportStar(require("./CreateCodeRepositoryCommand"), exports);
16
17
  tslib_1.__exportStar(require("./CreateCompilationJobCommand"), exports);
17
18
  tslib_1.__exportStar(require("./CreateContextCommand"), exports);
@@ -31,6 +32,7 @@ tslib_1.__exportStar(require("./CreateHumanTaskUiCommand"), exports);
31
32
  tslib_1.__exportStar(require("./CreateHyperParameterTuningJobCommand"), exports);
32
33
  tslib_1.__exportStar(require("./CreateImageCommand"), exports);
33
34
  tslib_1.__exportStar(require("./CreateImageVersionCommand"), exports);
35
+ tslib_1.__exportStar(require("./CreateInferenceComponentCommand"), exports);
34
36
  tslib_1.__exportStar(require("./CreateInferenceExperimentCommand"), exports);
35
37
  tslib_1.__exportStar(require("./CreateInferenceRecommendationsJobCommand"), exports);
36
38
  tslib_1.__exportStar(require("./CreateLabelingJobCommand"), exports);
@@ -65,6 +67,7 @@ tslib_1.__exportStar(require("./DeleteAppCommand"), exports);
65
67
  tslib_1.__exportStar(require("./DeleteAppImageConfigCommand"), exports);
66
68
  tslib_1.__exportStar(require("./DeleteArtifactCommand"), exports);
67
69
  tslib_1.__exportStar(require("./DeleteAssociationCommand"), exports);
70
+ tslib_1.__exportStar(require("./DeleteClusterCommand"), exports);
68
71
  tslib_1.__exportStar(require("./DeleteCodeRepositoryCommand"), exports);
69
72
  tslib_1.__exportStar(require("./DeleteContextCommand"), exports);
70
73
  tslib_1.__exportStar(require("./DeleteDataQualityJobDefinitionCommand"), exports);
@@ -82,6 +85,7 @@ tslib_1.__exportStar(require("./DeleteHubContentCommand"), exports);
82
85
  tslib_1.__exportStar(require("./DeleteHumanTaskUiCommand"), exports);
83
86
  tslib_1.__exportStar(require("./DeleteImageCommand"), exports);
84
87
  tslib_1.__exportStar(require("./DeleteImageVersionCommand"), exports);
88
+ tslib_1.__exportStar(require("./DeleteInferenceComponentCommand"), exports);
85
89
  tslib_1.__exportStar(require("./DeleteInferenceExperimentCommand"), exports);
86
90
  tslib_1.__exportStar(require("./DeleteModelBiasJobDefinitionCommand"), exports);
87
91
  tslib_1.__exportStar(require("./DeleteModelCardCommand"), exports);
@@ -112,6 +116,8 @@ tslib_1.__exportStar(require("./DescribeAppImageConfigCommand"), exports);
112
116
  tslib_1.__exportStar(require("./DescribeArtifactCommand"), exports);
113
117
  tslib_1.__exportStar(require("./DescribeAutoMLJobCommand"), exports);
114
118
  tslib_1.__exportStar(require("./DescribeAutoMLJobV2Command"), exports);
119
+ tslib_1.__exportStar(require("./DescribeClusterCommand"), exports);
120
+ tslib_1.__exportStar(require("./DescribeClusterNodeCommand"), exports);
115
121
  tslib_1.__exportStar(require("./DescribeCodeRepositoryCommand"), exports);
116
122
  tslib_1.__exportStar(require("./DescribeCompilationJobCommand"), exports);
117
123
  tslib_1.__exportStar(require("./DescribeContextCommand"), exports);
@@ -133,6 +139,7 @@ tslib_1.__exportStar(require("./DescribeHumanTaskUiCommand"), exports);
133
139
  tslib_1.__exportStar(require("./DescribeHyperParameterTuningJobCommand"), exports);
134
140
  tslib_1.__exportStar(require("./DescribeImageCommand"), exports);
135
141
  tslib_1.__exportStar(require("./DescribeImageVersionCommand"), exports);
142
+ tslib_1.__exportStar(require("./DescribeInferenceComponentCommand"), exports);
136
143
  tslib_1.__exportStar(require("./DescribeInferenceExperimentCommand"), exports);
137
144
  tslib_1.__exportStar(require("./DescribeInferenceRecommendationsJobCommand"), exports);
138
145
  tslib_1.__exportStar(require("./DescribeLabelingJobCommand"), exports);
@@ -182,6 +189,8 @@ tslib_1.__exportStar(require("./ListArtifactsCommand"), exports);
182
189
  tslib_1.__exportStar(require("./ListAssociationsCommand"), exports);
183
190
  tslib_1.__exportStar(require("./ListAutoMLJobsCommand"), exports);
184
191
  tslib_1.__exportStar(require("./ListCandidatesForAutoMLJobCommand"), exports);
192
+ tslib_1.__exportStar(require("./ListClusterNodesCommand"), exports);
193
+ tslib_1.__exportStar(require("./ListClustersCommand"), exports);
185
194
  tslib_1.__exportStar(require("./ListCodeRepositoriesCommand"), exports);
186
195
  tslib_1.__exportStar(require("./ListCompilationJobsCommand"), exports);
187
196
  tslib_1.__exportStar(require("./ListContextsCommand"), exports);
@@ -203,6 +212,7 @@ tslib_1.__exportStar(require("./ListHumanTaskUisCommand"), exports);
203
212
  tslib_1.__exportStar(require("./ListHyperParameterTuningJobsCommand"), exports);
204
213
  tslib_1.__exportStar(require("./ListImageVersionsCommand"), exports);
205
214
  tslib_1.__exportStar(require("./ListImagesCommand"), exports);
215
+ tslib_1.__exportStar(require("./ListInferenceComponentsCommand"), exports);
206
216
  tslib_1.__exportStar(require("./ListInferenceExperimentsCommand"), exports);
207
217
  tslib_1.__exportStar(require("./ListInferenceRecommendationsJobStepsCommand"), exports);
208
218
  tslib_1.__exportStar(require("./ListInferenceRecommendationsJobsCommand"), exports);
@@ -275,6 +285,7 @@ tslib_1.__exportStar(require("./StopTransformJobCommand"), exports);
275
285
  tslib_1.__exportStar(require("./UpdateActionCommand"), exports);
276
286
  tslib_1.__exportStar(require("./UpdateAppImageConfigCommand"), exports);
277
287
  tslib_1.__exportStar(require("./UpdateArtifactCommand"), exports);
288
+ tslib_1.__exportStar(require("./UpdateClusterCommand"), exports);
278
289
  tslib_1.__exportStar(require("./UpdateCodeRepositoryCommand"), exports);
279
290
  tslib_1.__exportStar(require("./UpdateContextCommand"), exports);
280
291
  tslib_1.__exportStar(require("./UpdateDeviceFleetCommand"), exports);
@@ -288,6 +299,8 @@ tslib_1.__exportStar(require("./UpdateFeatureMetadataCommand"), exports);
288
299
  tslib_1.__exportStar(require("./UpdateHubCommand"), exports);
289
300
  tslib_1.__exportStar(require("./UpdateImageCommand"), exports);
290
301
  tslib_1.__exportStar(require("./UpdateImageVersionCommand"), exports);
302
+ tslib_1.__exportStar(require("./UpdateInferenceComponentCommand"), exports);
303
+ tslib_1.__exportStar(require("./UpdateInferenceComponentRuntimeConfigCommand"), exports);
291
304
  tslib_1.__exportStar(require("./UpdateInferenceExperimentCommand"), exports);
292
305
  tslib_1.__exportStar(require("./UpdateModelCardCommand"), exports);
293
306
  tslib_1.__exportStar(require("./UpdateModelPackageCommand"), exports);
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AutoMLJobStatus = exports.AutoMLJobSecondaryStatus = exports.AutoMLMode = exports.AutoMLS3DataType = exports.AutoMLChannelType = exports.ObjectiveStatus = exports.AutoMLProcessingUnit = exports.AutoMLJobObjectiveType = exports.CandidateStepType = exports.CandidateStatus = exports.AutoMLMetricExtendedEnum = exports.MetricSetSource = exports.AutoMLMetricEnum = exports.AutoMLAlgorithm = exports.AuthMode = exports.AthenaResultFormat = exports.AthenaResultCompressionType = exports.AsyncNotificationTopicTypes = exports.ArtifactSourceIdType = exports.AppSortKey = exports.AppSecurityGroupManagement = exports.AppNetworkAccessType = exports.AppInstanceType = exports.AppImageConfigSortKey = exports.AppStatus = exports.AppType = exports.AssemblyType = exports.SplitType = exports.BatchStrategy = exports.TrainingInstanceType = exports.OutputCompressionType = exports.RecordWrapper = exports.S3DataType = exports.S3DataDistribution = exports.FileSystemType = exports.FileSystemAccessMode = exports.DetailedAlgorithmStatus = exports.AlgorithmStatus = exports.TrainingInputMode = exports.TrainingRepositoryAccessMode = exports.AlgorithmSortBy = exports.AggregationTransformationValue = exports.TransformInstanceType = exports.ProductionVariantInstanceType = exports.AdditionalS3DataSourceDataType = exports.CompressionType = exports.ResourceNotFound = exports.ResourceLimitExceeded = exports.AssociationEdgeType = exports.ActionStatus = void 0;
4
- exports.ProcessingInstanceType = exports.ProcessingS3UploadMode = exports.Framework = exports.ResourceInUse = exports.HyperParameterTuningJobObjectiveType = exports.ParameterType = exports.HyperParameterScalingType = exports.ContentClassifier = exports.ModelCacheSetting = exports.S3ModelDataType = exports.ModelCompressionType = exports.ContainerMode = exports.RepositoryAccessMode = exports.ConflictException = exports.ConditionOutcome = exports.CompleteOnConvergence = exports.TargetPlatformOs = exports.TargetPlatformArch = exports.TargetPlatformAccelerator = exports.TargetDevice = exports.CompilationJobStatus = exports.CollectionType = exports.CollectionConfig = exports.CodeRepositorySortOrder = exports.CodeRepositorySortBy = exports.ClarifyTextLanguage = exports.ClarifyTextGranularity = exports.ClarifyFeatureType = exports.CaptureStatus = exports.CaptureMode = exports.DataSourceName = exports.FeatureStatus = exports.CandidateSortBy = exports.BooleanOperator = exports.TrafficRoutingConfigType = exports.CapacitySizeType = exports.ProcessingS3InputMode = exports.ProcessingS3DataDistributionType = exports.ModelPackageStatus = exports.ModelApprovalStatus = exports.AwsManagedHumanLoopRequestSource = exports.AutotuneMode = exports.AutoMLSortOrder = exports.AutoMLSortBy = exports.AutoMLProblemTypeResolvedAttributes = exports.AutoMLProblemTypeConfigName = exports.AutoMLProblemTypeConfig = exports.FillingType = exports.ProblemType = void 0;
4
+ exports.ResourceInUse = exports.HyperParameterTuningJobObjectiveType = exports.ParameterType = exports.HyperParameterScalingType = exports.ContentClassifier = exports.ModelCacheSetting = exports.S3ModelDataType = exports.ModelCompressionType = exports.ContainerMode = exports.RepositoryAccessMode = exports.ConflictException = exports.ConditionOutcome = exports.CompleteOnConvergence = exports.TargetPlatformOs = exports.TargetPlatformArch = exports.TargetPlatformAccelerator = exports.TargetDevice = exports.CompilationJobStatus = exports.CollectionType = exports.CollectionConfig = exports.CodeRepositorySortOrder = exports.CodeRepositorySortBy = exports.ClusterStatus = exports.ClusterSortBy = exports.ClusterInstanceStatus = exports.ClusterInstanceType = exports.ClarifyTextLanguage = exports.ClarifyTextGranularity = exports.ClarifyFeatureType = exports.CaptureStatus = exports.CaptureMode = exports.DataSourceName = exports.FeatureStatus = exports.CandidateSortBy = exports.BooleanOperator = exports.TrafficRoutingConfigType = exports.CapacitySizeType = exports.ProcessingS3InputMode = exports.ProcessingS3DataDistributionType = exports.ModelPackageStatus = exports.ModelApprovalStatus = exports.AwsManagedHumanLoopRequestSource = exports.AutotuneMode = exports.AutoMLSortOrder = exports.AutoMLSortBy = exports.AutoMLProblemTypeResolvedAttributes = exports.AutoMLProblemTypeConfigName = exports.AutoMLProblemTypeConfig = exports.FillingType = exports.ProblemType = void 0;
5
+ exports.Framework = void 0;
5
6
  const SageMakerServiceException_1 = require("./SageMakerServiceException");
6
7
  exports.ActionStatus = {
7
8
  COMPLETED: "Completed",
@@ -802,6 +803,66 @@ exports.ClarifyTextLanguage = {
802
803
  URDU: "ur",
803
804
  YORUBA: "yo",
804
805
  };
806
+ exports.ClusterInstanceType = {
807
+ ML_C5N_18XLARGE: "ml.c5n.18xlarge",
808
+ ML_C5N_2XLARGE: "ml.c5n.2xlarge",
809
+ ML_C5N_4XLARGE: "ml.c5n.4xlarge",
810
+ ML_C5N_9XLARGE: "ml.c5n.9xlarge",
811
+ ML_C5N_LARGE: "ml.c5n.large",
812
+ ML_C5_12XLARGE: "ml.c5.12xlarge",
813
+ ML_C5_18XLARGE: "ml.c5.18xlarge",
814
+ ML_C5_24XLARGE: "ml.c5.24xlarge",
815
+ ML_C5_2XLARGE: "ml.c5.2xlarge",
816
+ ML_C5_4XLARGE: "ml.c5.4xlarge",
817
+ ML_C5_9XLARGE: "ml.c5.9xlarge",
818
+ ML_C5_LARGE: "ml.c5.large",
819
+ ML_C5_XLARGE: "ml.c5.xlarge",
820
+ ML_G5_12XLARGE: "ml.g5.12xlarge",
821
+ ML_G5_16XLARGE: "ml.g5.16xlarge",
822
+ ML_G5_24XLARGE: "ml.g5.24xlarge",
823
+ ML_G5_2XLARGE: "ml.g5.2xlarge",
824
+ ML_G5_48XLARGE: "ml.g5.48xlarge",
825
+ ML_G5_4XLARGE: "ml.g5.4xlarge",
826
+ ML_G5_8XLARGE: "ml.g5.8xlarge",
827
+ ML_G5_XLARGE: "ml.g5.xlarge",
828
+ ML_M5_12XLARGE: "ml.m5.12xlarge",
829
+ ML_M5_16XLARGE: "ml.m5.16xlarge",
830
+ ML_M5_24XLARGE: "ml.m5.24xlarge",
831
+ ML_M5_2XLARGE: "ml.m5.2xlarge",
832
+ ML_M5_4XLARGE: "ml.m5.4xlarge",
833
+ ML_M5_8XLARGE: "ml.m5.8xlarge",
834
+ ML_M5_LARGE: "ml.m5.large",
835
+ ML_M5_XLARGE: "ml.m5.xlarge",
836
+ ML_P4DE_24XLARGE: "ml.p4de.24xlarge",
837
+ ML_P4D_24XLARGE: "ml.p4d.24xlarge",
838
+ ML_P5_48XLARGE: "ml.p5.48xlarge",
839
+ ML_T3_2XLARGE: "ml.t3.2xlarge",
840
+ ML_T3_LARGE: "ml.t3.large",
841
+ ML_T3_MEDIUM: "ml.t3.medium",
842
+ ML_T3_XLARGE: "ml.t3.xlarge",
843
+ ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge",
844
+ ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
845
+ };
846
+ exports.ClusterInstanceStatus = {
847
+ FAILURE: "Failure",
848
+ PENDING: "Pending",
849
+ RUNNING: "Running",
850
+ SHUTTING_DOWN: "ShuttingDown",
851
+ SYSTEM_UPDATING: "SystemUpdating",
852
+ };
853
+ exports.ClusterSortBy = {
854
+ CREATION_TIME: "CREATION_TIME",
855
+ NAME: "NAME",
856
+ };
857
+ exports.ClusterStatus = {
858
+ CREATING: "Creating",
859
+ DELETING: "Deleting",
860
+ FAILED: "Failed",
861
+ INSERVICE: "InService",
862
+ ROLLINGBACK: "RollingBack",
863
+ SYSTEMUPDATING: "SystemUpdating",
864
+ UPDATING: "Updating",
865
+ };
805
866
  exports.CodeRepositorySortBy = {
806
867
  CREATION_TIME: "CreationTime",
807
868
  LAST_MODIFIED_TIME: "LastModifiedTime",
@@ -972,53 +1033,3 @@ exports.Framework = {
972
1033
  TFLITE: "TFLITE",
973
1034
  XGBOOST: "XGBOOST",
974
1035
  };
975
- exports.ProcessingS3UploadMode = {
976
- CONTINUOUS: "Continuous",
977
- END_OF_JOB: "EndOfJob",
978
- };
979
- exports.ProcessingInstanceType = {
980
- ML_C4_2XLARGE: "ml.c4.2xlarge",
981
- ML_C4_4XLARGE: "ml.c4.4xlarge",
982
- ML_C4_8XLARGE: "ml.c4.8xlarge",
983
- ML_C4_XLARGE: "ml.c4.xlarge",
984
- ML_C5_18XLARGE: "ml.c5.18xlarge",
985
- ML_C5_2XLARGE: "ml.c5.2xlarge",
986
- ML_C5_4XLARGE: "ml.c5.4xlarge",
987
- ML_C5_9XLARGE: "ml.c5.9xlarge",
988
- ML_C5_XLARGE: "ml.c5.xlarge",
989
- ML_G4DN_12XLARGE: "ml.g4dn.12xlarge",
990
- ML_G4DN_16XLARGE: "ml.g4dn.16xlarge",
991
- ML_G4DN_2XLARGE: "ml.g4dn.2xlarge",
992
- ML_G4DN_4XLARGE: "ml.g4dn.4xlarge",
993
- ML_G4DN_8XLARGE: "ml.g4dn.8xlarge",
994
- ML_G4DN_XLARGE: "ml.g4dn.xlarge",
995
- ML_M4_10XLARGE: "ml.m4.10xlarge",
996
- ML_M4_16XLARGE: "ml.m4.16xlarge",
997
- ML_M4_2XLARGE: "ml.m4.2xlarge",
998
- ML_M4_4XLARGE: "ml.m4.4xlarge",
999
- ML_M4_XLARGE: "ml.m4.xlarge",
1000
- ML_M5_12XLARGE: "ml.m5.12xlarge",
1001
- ML_M5_24XLARGE: "ml.m5.24xlarge",
1002
- ML_M5_2XLARGE: "ml.m5.2xlarge",
1003
- ML_M5_4XLARGE: "ml.m5.4xlarge",
1004
- ML_M5_LARGE: "ml.m5.large",
1005
- ML_M5_XLARGE: "ml.m5.xlarge",
1006
- ML_P2_16XLARGE: "ml.p2.16xlarge",
1007
- ML_P2_8XLARGE: "ml.p2.8xlarge",
1008
- ML_P2_XLARGE: "ml.p2.xlarge",
1009
- ML_P3_16XLARGE: "ml.p3.16xlarge",
1010
- ML_P3_2XLARGE: "ml.p3.2xlarge",
1011
- ML_P3_8XLARGE: "ml.p3.8xlarge",
1012
- ML_R5_12XLARGE: "ml.r5.12xlarge",
1013
- ML_R5_16XLARGE: "ml.r5.16xlarge",
1014
- ML_R5_24XLARGE: "ml.r5.24xlarge",
1015
- ML_R5_2XLARGE: "ml.r5.2xlarge",
1016
- ML_R5_4XLARGE: "ml.r5.4xlarge",
1017
- ML_R5_8XLARGE: "ml.r5.8xlarge",
1018
- ML_R5_LARGE: "ml.r5.large",
1019
- ML_R5_XLARGE: "ml.r5.xlarge",
1020
- ML_T3_2XLARGE: "ml.t3.2xlarge",
1021
- ML_T3_LARGE: "ml.t3.large",
1022
- ML_T3_MEDIUM: "ml.t3.medium",
1023
- ML_T3_XLARGE: "ml.t3.xlarge",
1024
- };