@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,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateInferenceComponentInput,
11
+ CreateInferenceComponentOutput,
12
+ } from "../models/models_1";
13
+ import {
14
+ SageMakerClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SageMakerClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateInferenceComponentCommandInput
20
+ extends CreateInferenceComponentInput {}
21
+ export interface CreateInferenceComponentCommandOutput
22
+ extends CreateInferenceComponentOutput,
23
+ __MetadataBearer {}
24
+ export declare class CreateInferenceComponentCommand extends $Command<
25
+ CreateInferenceComponentCommandInput,
26
+ CreateInferenceComponentCommandOutput,
27
+ SageMakerClientResolvedConfig
28
+ > {
29
+ readonly input: CreateInferenceComponentCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateInferenceComponentCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: SageMakerClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateInferenceComponentCommandInput,
38
+ CreateInferenceComponentCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -6,10 +6,8 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import {
10
- CreateUserProfileRequest,
11
- CreateUserProfileResponse,
12
- } from "../models/models_1";
9
+ import { CreateUserProfileRequest } from "../models/models_1";
10
+ import { CreateUserProfileResponse } from "../models/models_2";
13
11
  import {
14
12
  SageMakerClientResolvedConfig,
15
13
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  CreateWorkforceRequest,
11
11
  CreateWorkforceResponse,
12
- } from "../models/models_1";
12
+ } from "../models/models_2";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  CreateWorkteamRequest,
11
11
  CreateWorkteamResponse,
12
- } from "../models/models_1";
12
+ } from "../models/models_2";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DeleteActionRequest, DeleteActionResponse } from "../models/models_1";
9
+ import { DeleteActionRequest, DeleteActionResponse } from "../models/models_2";
10
10
  import {
11
11
  SageMakerClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DeleteAlgorithmInput } from "../models/models_1";
9
+ import { DeleteAlgorithmInput } from "../models/models_2";
10
10
  import {
11
11
  SageMakerClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DeleteAppRequest } from "../models/models_1";
9
+ import { DeleteAppRequest } from "../models/models_2";
10
10
  import {
11
11
  SageMakerClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DeleteAppImageConfigRequest } from "../models/models_1";
9
+ import { DeleteAppImageConfigRequest } from "../models/models_2";
10
10
  import {
11
11
  SageMakerClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DeleteArtifactRequest,
11
11
  DeleteArtifactResponse,
12
- } from "../models/models_1";
12
+ } from "../models/models_2";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DeleteAssociationRequest,
11
11
  DeleteAssociationResponse,
12
- } from "../models/models_1";
12
+ } from "../models/models_2";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DeleteClusterRequest,
11
+ DeleteClusterResponse,
12
+ } from "../models/models_2";
13
+ import {
14
+ SageMakerClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SageMakerClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteClusterCommandInput extends DeleteClusterRequest {}
20
+ export interface DeleteClusterCommandOutput
21
+ extends DeleteClusterResponse,
22
+ __MetadataBearer {}
23
+ export declare class DeleteClusterCommand extends $Command<
24
+ DeleteClusterCommandInput,
25
+ DeleteClusterCommandOutput,
26
+ SageMakerClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteClusterCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteClusterCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SageMakerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { DeleteInferenceComponentInput } from "../models/models_2";
10
+ import {
11
+ SageMakerClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../SageMakerClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteInferenceComponentCommandInput
17
+ extends DeleteInferenceComponentInput {}
18
+ export interface DeleteInferenceComponentCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DeleteInferenceComponentCommand extends $Command<
21
+ DeleteInferenceComponentCommandInput,
22
+ DeleteInferenceComponentCommandOutput,
23
+ SageMakerClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteInferenceComponentCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteInferenceComponentCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SageMakerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DeleteInferenceComponentCommandInput,
34
+ DeleteInferenceComponentCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DescribeClusterRequest,
11
+ DescribeClusterResponse,
12
+ } from "../models/models_2";
13
+ import {
14
+ SageMakerClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SageMakerClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeClusterCommandInput extends DescribeClusterRequest {}
20
+ export interface DescribeClusterCommandOutput
21
+ extends DescribeClusterResponse,
22
+ __MetadataBearer {}
23
+ export declare class DescribeClusterCommand extends $Command<
24
+ DescribeClusterCommandInput,
25
+ DescribeClusterCommandOutput,
26
+ SageMakerClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeClusterCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DescribeClusterCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SageMakerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeClusterCommandInput, DescribeClusterCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DescribeClusterNodeRequest,
11
+ DescribeClusterNodeResponse,
12
+ } from "../models/models_2";
13
+ import {
14
+ SageMakerClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SageMakerClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeClusterNodeCommandInput
20
+ extends DescribeClusterNodeRequest {}
21
+ export interface DescribeClusterNodeCommandOutput
22
+ extends DescribeClusterNodeResponse,
23
+ __MetadataBearer {}
24
+ export declare class DescribeClusterNodeCommand extends $Command<
25
+ DescribeClusterNodeCommandInput,
26
+ DescribeClusterNodeCommandOutput,
27
+ SageMakerClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeClusterNodeCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeClusterNodeCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: SageMakerClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<DescribeClusterNodeCommandInput, DescribeClusterNodeCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DescribeInferenceComponentInput,
11
+ DescribeInferenceComponentOutput,
12
+ } from "../models/models_2";
13
+ import {
14
+ SageMakerClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SageMakerClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeInferenceComponentCommandInput
20
+ extends DescribeInferenceComponentInput {}
21
+ export interface DescribeInferenceComponentCommandOutput
22
+ extends DescribeInferenceComponentOutput,
23
+ __MetadataBearer {}
24
+ export declare class DescribeInferenceComponentCommand extends $Command<
25
+ DescribeInferenceComponentCommandInput,
26
+ DescribeInferenceComponentCommandOutput,
27
+ SageMakerClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeInferenceComponentCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeInferenceComponentCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: SageMakerClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DescribeInferenceComponentCommandInput,
38
+ DescribeInferenceComponentCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -6,10 +6,8 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import {
10
- DescribeUserProfileRequest,
11
- DescribeUserProfileResponse,
12
- } from "../models/models_2";
9
+ import { DescribeUserProfileRequest } from "../models/models_2";
10
+ import { DescribeUserProfileResponse } from "../models/models_3";
13
11
  import {
14
12
  SageMakerClientResolvedConfig,
15
13
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DescribeWorkforceRequest,
11
11
  DescribeWorkforceResponse,
12
- } from "../models/models_2";
12
+ } from "../models/models_3";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DescribeWorkteamRequest,
11
11
  DescribeWorkteamResponse,
12
- } from "../models/models_2";
12
+ } from "../models/models_3";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DisableSagemakerServicecatalogPortfolioInput,
11
11
  DisableSagemakerServicecatalogPortfolioOutput,
12
- } from "../models/models_2";
12
+ } from "../models/models_3";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DisassociateTrialComponentRequest,
11
11
  DisassociateTrialComponentResponse,
12
- } from "../models/models_2";
12
+ } from "../models/models_3";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  EnableSagemakerServicecatalogPortfolioInput,
11
11
  EnableSagemakerServicecatalogPortfolioOutput,
12
- } from "../models/models_2";
12
+ } from "../models/models_3";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListClusterNodesRequest,
11
+ ListClusterNodesResponse,
12
+ } from "../models/models_3";
13
+ import {
14
+ SageMakerClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SageMakerClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListClusterNodesCommandInput extends ListClusterNodesRequest {}
20
+ export interface ListClusterNodesCommandOutput
21
+ extends ListClusterNodesResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListClusterNodesCommand extends $Command<
24
+ ListClusterNodesCommandInput,
25
+ ListClusterNodesCommandOutput,
26
+ SageMakerClientResolvedConfig
27
+ > {
28
+ readonly input: ListClusterNodesCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListClusterNodesCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SageMakerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListClusterNodesCommandInput, ListClusterNodesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { ListClustersRequest, ListClustersResponse } from "../models/models_3";
10
+ import {
11
+ SageMakerClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../SageMakerClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface ListClustersCommandInput extends ListClustersRequest {}
17
+ export interface ListClustersCommandOutput
18
+ extends ListClustersResponse,
19
+ __MetadataBearer {}
20
+ export declare class ListClustersCommand extends $Command<
21
+ ListClustersCommandInput,
22
+ ListClustersCommandOutput,
23
+ SageMakerClientResolvedConfig
24
+ > {
25
+ readonly input: ListClustersCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: ListClustersCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: SageMakerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListClustersCommandInput, ListClustersCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListInferenceComponentsInput,
11
+ ListInferenceComponentsOutput,
12
+ } from "../models/models_3";
13
+ import {
14
+ SageMakerClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../SageMakerClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListInferenceComponentsCommandInput
20
+ extends ListInferenceComponentsInput {}
21
+ export interface ListInferenceComponentsCommandOutput
22
+ extends ListInferenceComponentsOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListInferenceComponentsCommand extends $Command<
25
+ ListInferenceComponentsCommandInput,
26
+ ListInferenceComponentsCommandOutput,
27
+ SageMakerClientResolvedConfig
28
+ > {
29
+ readonly input: ListInferenceComponentsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListInferenceComponentsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: SageMakerClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListInferenceComponentsCommandInput,
38
+ ListInferenceComponentsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListResourceCatalogsRequest,
11
11
  ListResourceCatalogsResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { ListSpacesRequest, ListSpacesResponse } from "../models/models_3";
9
+ import { ListSpacesRequest, ListSpacesResponse } from "../models/models_4";
10
10
  import {
11
11
  SageMakerClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListStageDevicesRequest,
11
11
  ListStageDevicesResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListStudioLifecycleConfigsRequest,
11
11
  ListStudioLifecycleConfigsResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListSubscribedWorkteamsRequest,
11
11
  ListSubscribedWorkteamsResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { ListTagsInput, ListTagsOutput } from "../models/models_3";
9
+ import { ListTagsInput, ListTagsOutput } from "../models/models_4";
10
10
  import {
11
11
  SageMakerClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListTrainingJobsRequest,
11
11
  ListTrainingJobsResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListTrainingJobsForHyperParameterTuningJobRequest,
11
11
  ListTrainingJobsForHyperParameterTuningJobResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListTransformJobsRequest,
11
11
  ListTransformJobsResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListTrialComponentsRequest,
11
11
  ListTrialComponentsResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,7 +6,7 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { ListTrialsRequest, ListTrialsResponse } from "../models/models_3";
9
+ import { ListTrialsRequest, ListTrialsResponse } from "../models/models_4";
10
10
  import {
11
11
  SageMakerClientResolvedConfig,
12
12
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListUserProfilesRequest,
11
11
  ListUserProfilesResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  ListWorkforcesRequest,
11
11
  ListWorkforcesResponse,
12
- } from "../models/models_3";
12
+ } from "../models/models_4";
13
13
  import {
14
14
  SageMakerClientResolvedConfig,
15
15
  ServiceInputTypes,