@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
@@ -10,6 +10,7 @@ import { CreateAppImageConfigCommand, } from "./commands/CreateAppImageConfigCom
10
10
  import { CreateArtifactCommand, } from "./commands/CreateArtifactCommand";
11
11
  import { CreateAutoMLJobCommand, } from "./commands/CreateAutoMLJobCommand";
12
12
  import { CreateAutoMLJobV2Command, } from "./commands/CreateAutoMLJobV2Command";
13
+ import { CreateClusterCommand, } from "./commands/CreateClusterCommand";
13
14
  import { CreateCodeRepositoryCommand, } from "./commands/CreateCodeRepositoryCommand";
14
15
  import { CreateCompilationJobCommand, } from "./commands/CreateCompilationJobCommand";
15
16
  import { CreateContextCommand, } from "./commands/CreateContextCommand";
@@ -29,6 +30,7 @@ import { CreateHumanTaskUiCommand, } from "./commands/CreateHumanTaskUiCommand";
29
30
  import { CreateHyperParameterTuningJobCommand, } from "./commands/CreateHyperParameterTuningJobCommand";
30
31
  import { CreateImageCommand } from "./commands/CreateImageCommand";
31
32
  import { CreateImageVersionCommand, } from "./commands/CreateImageVersionCommand";
33
+ import { CreateInferenceComponentCommand, } from "./commands/CreateInferenceComponentCommand";
32
34
  import { CreateInferenceExperimentCommand, } from "./commands/CreateInferenceExperimentCommand";
33
35
  import { CreateInferenceRecommendationsJobCommand, } from "./commands/CreateInferenceRecommendationsJobCommand";
34
36
  import { CreateLabelingJobCommand, } from "./commands/CreateLabelingJobCommand";
@@ -63,6 +65,7 @@ import { DeleteAppCommand } from "./commands/DeleteAppCommand";
63
65
  import { DeleteAppImageConfigCommand, } from "./commands/DeleteAppImageConfigCommand";
64
66
  import { DeleteArtifactCommand, } from "./commands/DeleteArtifactCommand";
65
67
  import { DeleteAssociationCommand, } from "./commands/DeleteAssociationCommand";
68
+ import { DeleteClusterCommand, } from "./commands/DeleteClusterCommand";
66
69
  import { DeleteCodeRepositoryCommand, } from "./commands/DeleteCodeRepositoryCommand";
67
70
  import { DeleteContextCommand, } from "./commands/DeleteContextCommand";
68
71
  import { DeleteDataQualityJobDefinitionCommand, } from "./commands/DeleteDataQualityJobDefinitionCommand";
@@ -80,6 +83,7 @@ import { DeleteHubContentCommand, } from "./commands/DeleteHubContentCommand";
80
83
  import { DeleteHumanTaskUiCommand, } from "./commands/DeleteHumanTaskUiCommand";
81
84
  import { DeleteImageCommand } from "./commands/DeleteImageCommand";
82
85
  import { DeleteImageVersionCommand, } from "./commands/DeleteImageVersionCommand";
86
+ import { DeleteInferenceComponentCommand, } from "./commands/DeleteInferenceComponentCommand";
83
87
  import { DeleteInferenceExperimentCommand, } from "./commands/DeleteInferenceExperimentCommand";
84
88
  import { DeleteModelBiasJobDefinitionCommand, } from "./commands/DeleteModelBiasJobDefinitionCommand";
85
89
  import { DeleteModelCardCommand, } from "./commands/DeleteModelCardCommand";
@@ -110,6 +114,8 @@ import { DescribeAppImageConfigCommand, } from "./commands/DescribeAppImageConfi
110
114
  import { DescribeArtifactCommand, } from "./commands/DescribeArtifactCommand";
111
115
  import { DescribeAutoMLJobCommand, } from "./commands/DescribeAutoMLJobCommand";
112
116
  import { DescribeAutoMLJobV2Command, } from "./commands/DescribeAutoMLJobV2Command";
117
+ import { DescribeClusterCommand, } from "./commands/DescribeClusterCommand";
118
+ import { DescribeClusterNodeCommand, } from "./commands/DescribeClusterNodeCommand";
113
119
  import { DescribeCodeRepositoryCommand, } from "./commands/DescribeCodeRepositoryCommand";
114
120
  import { DescribeCompilationJobCommand, } from "./commands/DescribeCompilationJobCommand";
115
121
  import { DescribeContextCommand, } from "./commands/DescribeContextCommand";
@@ -131,6 +137,7 @@ import { DescribeHumanTaskUiCommand, } from "./commands/DescribeHumanTaskUiComma
131
137
  import { DescribeHyperParameterTuningJobCommand, } from "./commands/DescribeHyperParameterTuningJobCommand";
132
138
  import { DescribeImageCommand, } from "./commands/DescribeImageCommand";
133
139
  import { DescribeImageVersionCommand, } from "./commands/DescribeImageVersionCommand";
140
+ import { DescribeInferenceComponentCommand, } from "./commands/DescribeInferenceComponentCommand";
134
141
  import { DescribeInferenceExperimentCommand, } from "./commands/DescribeInferenceExperimentCommand";
135
142
  import { DescribeInferenceRecommendationsJobCommand, } from "./commands/DescribeInferenceRecommendationsJobCommand";
136
143
  import { DescribeLabelingJobCommand, } from "./commands/DescribeLabelingJobCommand";
@@ -180,6 +187,8 @@ import { ListArtifactsCommand, } from "./commands/ListArtifactsCommand";
180
187
  import { ListAssociationsCommand, } from "./commands/ListAssociationsCommand";
181
188
  import { ListAutoMLJobsCommand, } from "./commands/ListAutoMLJobsCommand";
182
189
  import { ListCandidatesForAutoMLJobCommand, } from "./commands/ListCandidatesForAutoMLJobCommand";
190
+ import { ListClusterNodesCommand, } from "./commands/ListClusterNodesCommand";
191
+ import { ListClustersCommand, } from "./commands/ListClustersCommand";
183
192
  import { ListCodeRepositoriesCommand, } from "./commands/ListCodeRepositoriesCommand";
184
193
  import { ListCompilationJobsCommand, } from "./commands/ListCompilationJobsCommand";
185
194
  import { ListContextsCommand, } from "./commands/ListContextsCommand";
@@ -201,6 +210,7 @@ import { ListHumanTaskUisCommand, } from "./commands/ListHumanTaskUisCommand";
201
210
  import { ListHyperParameterTuningJobsCommand, } from "./commands/ListHyperParameterTuningJobsCommand";
202
211
  import { ListImagesCommand } from "./commands/ListImagesCommand";
203
212
  import { ListImageVersionsCommand, } from "./commands/ListImageVersionsCommand";
213
+ import { ListInferenceComponentsCommand, } from "./commands/ListInferenceComponentsCommand";
204
214
  import { ListInferenceExperimentsCommand, } from "./commands/ListInferenceExperimentsCommand";
205
215
  import { ListInferenceRecommendationsJobsCommand, } from "./commands/ListInferenceRecommendationsJobsCommand";
206
216
  import { ListInferenceRecommendationsJobStepsCommand, } from "./commands/ListInferenceRecommendationsJobStepsCommand";
@@ -273,6 +283,7 @@ import { StopTransformJobCommand, } from "./commands/StopTransformJobCommand";
273
283
  import { UpdateActionCommand, } from "./commands/UpdateActionCommand";
274
284
  import { UpdateAppImageConfigCommand, } from "./commands/UpdateAppImageConfigCommand";
275
285
  import { UpdateArtifactCommand, } from "./commands/UpdateArtifactCommand";
286
+ import { UpdateClusterCommand, } from "./commands/UpdateClusterCommand";
276
287
  import { UpdateCodeRepositoryCommand, } from "./commands/UpdateCodeRepositoryCommand";
277
288
  import { UpdateContextCommand, } from "./commands/UpdateContextCommand";
278
289
  import { UpdateDeviceFleetCommand, } from "./commands/UpdateDeviceFleetCommand";
@@ -286,6 +297,8 @@ import { UpdateFeatureMetadataCommand, } from "./commands/UpdateFeatureMetadataC
286
297
  import { UpdateHubCommand } from "./commands/UpdateHubCommand";
287
298
  import { UpdateImageCommand } from "./commands/UpdateImageCommand";
288
299
  import { UpdateImageVersionCommand, } from "./commands/UpdateImageVersionCommand";
300
+ import { UpdateInferenceComponentCommand, } from "./commands/UpdateInferenceComponentCommand";
301
+ import { UpdateInferenceComponentRuntimeConfigCommand, } from "./commands/UpdateInferenceComponentRuntimeConfigCommand";
289
302
  import { UpdateInferenceExperimentCommand, } from "./commands/UpdateInferenceExperimentCommand";
290
303
  import { UpdateModelCardCommand, } from "./commands/UpdateModelCardCommand";
291
304
  import { UpdateModelPackageCommand, } from "./commands/UpdateModelPackageCommand";
@@ -316,6 +329,7 @@ const commands = {
316
329
  CreateArtifactCommand,
317
330
  CreateAutoMLJobCommand,
318
331
  CreateAutoMLJobV2Command,
332
+ CreateClusterCommand,
319
333
  CreateCodeRepositoryCommand,
320
334
  CreateCompilationJobCommand,
321
335
  CreateContextCommand,
@@ -335,6 +349,7 @@ const commands = {
335
349
  CreateHyperParameterTuningJobCommand,
336
350
  CreateImageCommand,
337
351
  CreateImageVersionCommand,
352
+ CreateInferenceComponentCommand,
338
353
  CreateInferenceExperimentCommand,
339
354
  CreateInferenceRecommendationsJobCommand,
340
355
  CreateLabelingJobCommand,
@@ -369,6 +384,7 @@ const commands = {
369
384
  DeleteAppImageConfigCommand,
370
385
  DeleteArtifactCommand,
371
386
  DeleteAssociationCommand,
387
+ DeleteClusterCommand,
372
388
  DeleteCodeRepositoryCommand,
373
389
  DeleteContextCommand,
374
390
  DeleteDataQualityJobDefinitionCommand,
@@ -386,6 +402,7 @@ const commands = {
386
402
  DeleteHumanTaskUiCommand,
387
403
  DeleteImageCommand,
388
404
  DeleteImageVersionCommand,
405
+ DeleteInferenceComponentCommand,
389
406
  DeleteInferenceExperimentCommand,
390
407
  DeleteModelCommand,
391
408
  DeleteModelBiasJobDefinitionCommand,
@@ -416,6 +433,8 @@ const commands = {
416
433
  DescribeArtifactCommand,
417
434
  DescribeAutoMLJobCommand,
418
435
  DescribeAutoMLJobV2Command,
436
+ DescribeClusterCommand,
437
+ DescribeClusterNodeCommand,
419
438
  DescribeCodeRepositoryCommand,
420
439
  DescribeCompilationJobCommand,
421
440
  DescribeContextCommand,
@@ -437,6 +456,7 @@ const commands = {
437
456
  DescribeHyperParameterTuningJobCommand,
438
457
  DescribeImageCommand,
439
458
  DescribeImageVersionCommand,
459
+ DescribeInferenceComponentCommand,
440
460
  DescribeInferenceExperimentCommand,
441
461
  DescribeInferenceRecommendationsJobCommand,
442
462
  DescribeLabelingJobCommand,
@@ -486,6 +506,8 @@ const commands = {
486
506
  ListAssociationsCommand,
487
507
  ListAutoMLJobsCommand,
488
508
  ListCandidatesForAutoMLJobCommand,
509
+ ListClusterNodesCommand,
510
+ ListClustersCommand,
489
511
  ListCodeRepositoriesCommand,
490
512
  ListCompilationJobsCommand,
491
513
  ListContextsCommand,
@@ -507,6 +529,7 @@ const commands = {
507
529
  ListHyperParameterTuningJobsCommand,
508
530
  ListImagesCommand,
509
531
  ListImageVersionsCommand,
532
+ ListInferenceComponentsCommand,
510
533
  ListInferenceExperimentsCommand,
511
534
  ListInferenceRecommendationsJobsCommand,
512
535
  ListInferenceRecommendationsJobStepsCommand,
@@ -579,6 +602,7 @@ const commands = {
579
602
  UpdateActionCommand,
580
603
  UpdateAppImageConfigCommand,
581
604
  UpdateArtifactCommand,
605
+ UpdateClusterCommand,
582
606
  UpdateCodeRepositoryCommand,
583
607
  UpdateContextCommand,
584
608
  UpdateDeviceFleetCommand,
@@ -592,6 +616,8 @@ const commands = {
592
616
  UpdateHubCommand,
593
617
  UpdateImageCommand,
594
618
  UpdateImageVersionCommand,
619
+ UpdateInferenceComponentCommand,
620
+ UpdateInferenceComponentRuntimeConfigCommand,
595
621
  UpdateInferenceExperimentCommand,
596
622
  UpdateModelCardCommand,
597
623
  UpdateModelPackageCommand,
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_CreateClusterCommand, se_CreateClusterCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class CreateClusterCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, CreateClusterCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "CreateClusterCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "CreateCluster",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_CreateClusterCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_CreateClusterCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_CreateInferenceComponentCommand, se_CreateInferenceComponentCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class CreateInferenceComponentCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, CreateInferenceComponentCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "CreateInferenceComponentCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "CreateInferenceComponent",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_CreateInferenceComponentCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_CreateInferenceComponentCommand(output, context);
46
+ }
47
+ }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
- import { CreateWorkforceRequestFilterSensitiveLog, } from "../models/models_1";
5
+ import { CreateWorkforceRequestFilterSensitiveLog, } from "../models/models_2";
6
6
  import { de_CreateWorkforceCommand, se_CreateWorkforceCommand } from "../protocols/Aws_json1_1";
7
7
  export { $Command };
8
8
  export class CreateWorkforceCommand extends $Command {
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_DeleteClusterCommand, se_DeleteClusterCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class DeleteClusterCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, DeleteClusterCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "DeleteClusterCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "DeleteCluster",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_DeleteClusterCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_DeleteClusterCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_DeleteInferenceComponentCommand, se_DeleteInferenceComponentCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class DeleteInferenceComponentCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, DeleteInferenceComponentCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "DeleteInferenceComponentCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "DeleteInferenceComponent",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_DeleteInferenceComponentCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_DeleteInferenceComponentCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_DescribeClusterCommand, se_DescribeClusterCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class DescribeClusterCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, DescribeClusterCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "DescribeClusterCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "DescribeCluster",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_DescribeClusterCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_DescribeClusterCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_DescribeClusterNodeCommand, se_DescribeClusterNodeCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class DescribeClusterNodeCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, DescribeClusterNodeCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "DescribeClusterNodeCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "DescribeClusterNode",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_DescribeClusterNodeCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_DescribeClusterNodeCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_DescribeInferenceComponentCommand, se_DescribeInferenceComponentCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class DescribeInferenceComponentCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, DescribeInferenceComponentCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "DescribeInferenceComponentCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "DescribeInferenceComponent",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_DescribeInferenceComponentCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_DescribeInferenceComponentCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_ListClusterNodesCommand, se_ListClusterNodesCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class ListClusterNodesCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, ListClusterNodesCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "ListClusterNodesCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "ListClusterNodes",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_ListClusterNodesCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_ListClusterNodesCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_ListClustersCommand, se_ListClustersCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class ListClustersCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, ListClustersCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "ListClustersCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "ListClusters",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_ListClustersCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_ListClustersCommand(output, context);
46
+ }
47
+ }
@@ -0,0 +1,47 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
5
+ import { de_ListInferenceComponentsCommand, se_ListInferenceComponentsCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class ListInferenceComponentsCommand extends $Command {
8
+ static getEndpointParameterInstructions() {
9
+ return {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
15
+ }
16
+ constructor(input) {
17
+ super();
18
+ this.input = input;
19
+ }
20
+ resolveMiddleware(clientStack, configuration, options) {
21
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
+ this.middlewareStack.use(getEndpointPlugin(configuration, ListInferenceComponentsCommand.getEndpointParameterInstructions()));
23
+ const stack = clientStack.concat(this.middlewareStack);
24
+ const { logger } = configuration;
25
+ const clientName = "SageMakerClient";
26
+ const commandName = "ListInferenceComponentsCommand";
27
+ const handlerExecutionContext = {
28
+ logger,
29
+ clientName,
30
+ commandName,
31
+ inputFilterSensitiveLog: (_) => _,
32
+ outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SageMaker",
35
+ operation: "ListInferenceComponents",
36
+ },
37
+ };
38
+ const { requestHandler } = configuration;
39
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
+ }
41
+ serialize(input, context) {
42
+ return se_ListInferenceComponentsCommand(input, context);
43
+ }
44
+ deserialize(output, context) {
45
+ return de_ListInferenceComponentsCommand(output, context);
46
+ }
47
+ }