@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
@@ -2,6 +2,7 @@ import {
2
2
  ActionStatus,
3
3
  AdditionalInferenceSpecificationDefinition,
4
4
  AlgorithmSpecification,
5
+ AppNetworkAccessType,
5
6
  AppSecurityGroupManagement,
6
7
  AppSpecification,
7
8
  BatchDataCaptureConfig,
@@ -10,6 +11,8 @@ import {
10
11
  BooleanOperator,
11
12
  Channel,
12
13
  CheckpointConfig,
14
+ ClusterInstanceGroupSpecification,
15
+ ContainerDefinition,
13
16
  InferenceSpecification,
14
17
  KernelGatewayImageConfig,
15
18
  MetadataProperties,
@@ -28,22 +31,22 @@ import {
28
31
  } from "./models_0";
29
32
  import {
30
33
  _InstanceType,
31
- CrossAccountFilterOption,
32
34
  DataProcessing,
33
35
  DebugHookConfig,
34
36
  DebugRuleConfiguration,
35
- DebugRuleEvaluationStatus,
36
37
  DefaultSpaceSettings,
37
38
  DeploymentConfig,
38
39
  DriftCheckBaselines,
39
40
  EdgeOutputConfig,
40
41
  ExperimentConfig,
41
42
  FeatureDefinition,
43
+ InferenceComponentRuntimeConfig,
44
+ InferenceComponentSpecification,
45
+ InferenceExecutionConfig,
42
46
  InferenceExperimentDataStorageConfig,
43
47
  InferenceExperimentSchedule,
44
48
  InstanceMetadataServiceConfiguration,
45
49
  JobType,
46
- MemberDefinition,
47
50
  ModelCardSecurityConfig,
48
51
  ModelCardStatus,
49
52
  ModelClientConfig,
@@ -55,8 +58,6 @@ import {
55
58
  NetworkConfig,
56
59
  NotebookInstanceAcceleratorType,
57
60
  NotebookInstanceLifecycleHook,
58
- NotificationConfiguration,
59
- OidcConfig,
60
61
  ParallelismConfiguration,
61
62
  PipelineDefinitionS3Location,
62
63
  ProcessingInput,
@@ -73,8 +74,8 @@ import {
73
74
  ShadowModeConfig,
74
75
  SkipModelValidation,
75
76
  SourceAlgorithmSpecification,
76
- SourceIpConfig,
77
77
  SpaceSettings,
78
+ StudioLifecycleConfigAppType,
78
79
  TensorBoardOutputConfig,
79
80
  TrialComponentArtifact,
80
81
  TrialComponentParameterValue,
@@ -83,21 +84,22 @@ import {
83
84
  UiTemplate,
84
85
  UserSettings,
85
86
  VendorGuidance,
86
- WorkforceVpcConfigRequest,
87
87
  } from "./models_1";
88
88
  import {
89
- DesiredWeightAndCapacity,
90
- Device,
91
- Direction,
92
- DomainSettingsForUpdate,
93
- Edge,
89
+ CrossAccountFilterOption,
90
+ DebugRuleEvaluationStatus,
91
+ DeploymentRecommendation,
94
92
  EndpointStatus,
95
93
  FeatureParameter,
94
+ HyperParameterTrainingJobSummary,
95
+ MemberDefinition,
96
96
  MetricData,
97
97
  ModelArtifacts,
98
98
  ModelPackageGroupStatus,
99
99
  ModelPackageStatusDetails,
100
100
  MonitoringExecutionSummary,
101
+ NotificationConfiguration,
102
+ OidcConfig,
101
103
  PipelineExecutionStatus,
102
104
  PipelineExperimentConfig,
103
105
  PipelineStatus,
@@ -108,15 +110,26 @@ import {
108
110
  SecondaryStatusTransition,
109
111
  SelectiveExecutionConfig,
110
112
  ServiceCatalogProvisionedProductDetails,
113
+ SourceIpConfig,
114
+ SpaceStatus,
115
+ SubscribedWorkteam,
111
116
  TrainingJobStatus,
112
117
  TransformJobStatus,
113
118
  TrialComponentMetricSummary,
114
119
  TrialComponentSource,
115
120
  TrialSource,
116
- Workforce,
117
- Workteam,
121
+ UserProfileStatus,
122
+ WarmPoolResourceStatus,
123
+ WarmPoolStatus,
124
+ WorkforceVpcConfigRequest,
118
125
  } from "./models_2";
119
126
  import {
127
+ DesiredWeightAndCapacity,
128
+ Device,
129
+ DeviceDeploymentSummary,
130
+ Direction,
131
+ DomainSettingsForUpdate,
132
+ Edge,
120
133
  Endpoint,
121
134
  Experiment,
122
135
  FeatureGroup,
@@ -126,11 +139,331 @@ import {
126
139
  HyperParameterTuningJobSearchEntity,
127
140
  InferenceExperimentStopDesiredState,
128
141
  LineageType,
129
- Model,
130
142
  MonitoringAlertSummary,
131
143
  Parameter,
132
144
  ResourceType,
145
+ SortBy,
146
+ SortOrder,
147
+ Workforce,
148
+ Workteam,
133
149
  } from "./models_3";
150
+ export declare const ResourceCatalogSortBy: {
151
+ readonly CREATION_TIME: "CreationTime";
152
+ };
153
+ export type ResourceCatalogSortBy =
154
+ (typeof ResourceCatalogSortBy)[keyof typeof ResourceCatalogSortBy];
155
+ export declare const ResourceCatalogSortOrder: {
156
+ readonly ASCENDING: "Ascending";
157
+ readonly DESCENDING: "Descending";
158
+ };
159
+ export type ResourceCatalogSortOrder =
160
+ (typeof ResourceCatalogSortOrder)[keyof typeof ResourceCatalogSortOrder];
161
+ export interface ListResourceCatalogsRequest {
162
+ NameContains?: string;
163
+ CreationTimeAfter?: Date;
164
+ CreationTimeBefore?: Date;
165
+ SortOrder?: ResourceCatalogSortOrder;
166
+ SortBy?: ResourceCatalogSortBy;
167
+ MaxResults?: number;
168
+ NextToken?: string;
169
+ }
170
+ export interface ResourceCatalog {
171
+ ResourceCatalogArn: string | undefined;
172
+ ResourceCatalogName: string | undefined;
173
+ Description: string | undefined;
174
+ CreationTime: Date | undefined;
175
+ }
176
+ export interface ListResourceCatalogsResponse {
177
+ ResourceCatalogs?: ResourceCatalog[];
178
+ NextToken?: string;
179
+ }
180
+ export declare const SpaceSortKey: {
181
+ readonly CreationTime: "CreationTime";
182
+ readonly LastModifiedTime: "LastModifiedTime";
183
+ };
184
+ export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
185
+ export interface ListSpacesRequest {
186
+ NextToken?: string;
187
+ MaxResults?: number;
188
+ SortOrder?: SortOrder;
189
+ SortBy?: SpaceSortKey;
190
+ DomainIdEquals?: string;
191
+ SpaceNameContains?: string;
192
+ }
193
+ export interface SpaceDetails {
194
+ DomainId?: string;
195
+ SpaceName?: string;
196
+ Status?: SpaceStatus;
197
+ CreationTime?: Date;
198
+ LastModifiedTime?: Date;
199
+ }
200
+ export interface ListSpacesResponse {
201
+ Spaces?: SpaceDetails[];
202
+ NextToken?: string;
203
+ }
204
+ export interface ListStageDevicesRequest {
205
+ NextToken?: string;
206
+ MaxResults?: number;
207
+ EdgeDeploymentPlanName: string | undefined;
208
+ ExcludeDevicesDeployedInOtherStage?: boolean;
209
+ StageName: string | undefined;
210
+ }
211
+ export interface ListStageDevicesResponse {
212
+ DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
213
+ NextToken?: string;
214
+ }
215
+ export declare const StudioLifecycleConfigSortKey: {
216
+ readonly CreationTime: "CreationTime";
217
+ readonly LastModifiedTime: "LastModifiedTime";
218
+ readonly Name: "Name";
219
+ };
220
+ export type StudioLifecycleConfigSortKey =
221
+ (typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
222
+ export interface ListStudioLifecycleConfigsRequest {
223
+ MaxResults?: number;
224
+ NextToken?: string;
225
+ NameContains?: string;
226
+ AppTypeEquals?: StudioLifecycleConfigAppType;
227
+ CreationTimeBefore?: Date;
228
+ CreationTimeAfter?: Date;
229
+ ModifiedTimeBefore?: Date;
230
+ ModifiedTimeAfter?: Date;
231
+ SortBy?: StudioLifecycleConfigSortKey;
232
+ SortOrder?: SortOrder;
233
+ }
234
+ export interface StudioLifecycleConfigDetails {
235
+ StudioLifecycleConfigArn?: string;
236
+ StudioLifecycleConfigName?: string;
237
+ CreationTime?: Date;
238
+ LastModifiedTime?: Date;
239
+ StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
240
+ }
241
+ export interface ListStudioLifecycleConfigsResponse {
242
+ NextToken?: string;
243
+ StudioLifecycleConfigs?: StudioLifecycleConfigDetails[];
244
+ }
245
+ export interface ListSubscribedWorkteamsRequest {
246
+ NameContains?: string;
247
+ NextToken?: string;
248
+ MaxResults?: number;
249
+ }
250
+ export interface ListSubscribedWorkteamsResponse {
251
+ SubscribedWorkteams: SubscribedWorkteam[] | undefined;
252
+ NextToken?: string;
253
+ }
254
+ export interface ListTagsInput {
255
+ ResourceArn: string | undefined;
256
+ NextToken?: string;
257
+ MaxResults?: number;
258
+ }
259
+ export interface ListTagsOutput {
260
+ Tags?: Tag[];
261
+ NextToken?: string;
262
+ }
263
+ export interface ListTrainingJobsRequest {
264
+ NextToken?: string;
265
+ MaxResults?: number;
266
+ CreationTimeAfter?: Date;
267
+ CreationTimeBefore?: Date;
268
+ LastModifiedTimeAfter?: Date;
269
+ LastModifiedTimeBefore?: Date;
270
+ NameContains?: string;
271
+ StatusEquals?: TrainingJobStatus;
272
+ SortBy?: SortBy;
273
+ SortOrder?: SortOrder;
274
+ WarmPoolStatusEquals?: WarmPoolResourceStatus;
275
+ }
276
+ export interface TrainingJobSummary {
277
+ TrainingJobName: string | undefined;
278
+ TrainingJobArn: string | undefined;
279
+ CreationTime: Date | undefined;
280
+ TrainingEndTime?: Date;
281
+ LastModifiedTime?: Date;
282
+ TrainingJobStatus: TrainingJobStatus | undefined;
283
+ WarmPoolStatus?: WarmPoolStatus;
284
+ }
285
+ export interface ListTrainingJobsResponse {
286
+ TrainingJobSummaries: TrainingJobSummary[] | undefined;
287
+ NextToken?: string;
288
+ }
289
+ export declare const TrainingJobSortByOptions: {
290
+ readonly CreationTime: "CreationTime";
291
+ readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
292
+ readonly Name: "Name";
293
+ readonly Status: "Status";
294
+ };
295
+ export type TrainingJobSortByOptions =
296
+ (typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
297
+ export interface ListTrainingJobsForHyperParameterTuningJobRequest {
298
+ HyperParameterTuningJobName: string | undefined;
299
+ NextToken?: string;
300
+ MaxResults?: number;
301
+ StatusEquals?: TrainingJobStatus;
302
+ SortBy?: TrainingJobSortByOptions;
303
+ SortOrder?: SortOrder;
304
+ }
305
+ export interface ListTrainingJobsForHyperParameterTuningJobResponse {
306
+ TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
307
+ NextToken?: string;
308
+ }
309
+ export interface ListTransformJobsRequest {
310
+ CreationTimeAfter?: Date;
311
+ CreationTimeBefore?: Date;
312
+ LastModifiedTimeAfter?: Date;
313
+ LastModifiedTimeBefore?: Date;
314
+ NameContains?: string;
315
+ StatusEquals?: TransformJobStatus;
316
+ SortBy?: SortBy;
317
+ SortOrder?: SortOrder;
318
+ NextToken?: string;
319
+ MaxResults?: number;
320
+ }
321
+ export interface TransformJobSummary {
322
+ TransformJobName: string | undefined;
323
+ TransformJobArn: string | undefined;
324
+ CreationTime: Date | undefined;
325
+ TransformEndTime?: Date;
326
+ LastModifiedTime?: Date;
327
+ TransformJobStatus: TransformJobStatus | undefined;
328
+ FailureReason?: string;
329
+ }
330
+ export interface ListTransformJobsResponse {
331
+ TransformJobSummaries: TransformJobSummary[] | undefined;
332
+ NextToken?: string;
333
+ }
334
+ export declare const SortTrialComponentsBy: {
335
+ readonly CREATION_TIME: "CreationTime";
336
+ readonly NAME: "Name";
337
+ };
338
+ export type SortTrialComponentsBy =
339
+ (typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
340
+ export interface ListTrialComponentsRequest {
341
+ ExperimentName?: string;
342
+ TrialName?: string;
343
+ SourceArn?: string;
344
+ CreatedAfter?: Date;
345
+ CreatedBefore?: Date;
346
+ SortBy?: SortTrialComponentsBy;
347
+ SortOrder?: SortOrder;
348
+ MaxResults?: number;
349
+ NextToken?: string;
350
+ }
351
+ export interface TrialComponentSummary {
352
+ TrialComponentName?: string;
353
+ TrialComponentArn?: string;
354
+ DisplayName?: string;
355
+ TrialComponentSource?: TrialComponentSource;
356
+ Status?: TrialComponentStatus;
357
+ StartTime?: Date;
358
+ EndTime?: Date;
359
+ CreationTime?: Date;
360
+ CreatedBy?: UserContext;
361
+ LastModifiedTime?: Date;
362
+ LastModifiedBy?: UserContext;
363
+ }
364
+ export interface ListTrialComponentsResponse {
365
+ TrialComponentSummaries?: TrialComponentSummary[];
366
+ NextToken?: string;
367
+ }
368
+ export declare const SortTrialsBy: {
369
+ readonly CREATION_TIME: "CreationTime";
370
+ readonly NAME: "Name";
371
+ };
372
+ export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
373
+ export interface ListTrialsRequest {
374
+ ExperimentName?: string;
375
+ TrialComponentName?: string;
376
+ CreatedAfter?: Date;
377
+ CreatedBefore?: Date;
378
+ SortBy?: SortTrialsBy;
379
+ SortOrder?: SortOrder;
380
+ MaxResults?: number;
381
+ NextToken?: string;
382
+ }
383
+ export interface TrialSummary {
384
+ TrialArn?: string;
385
+ TrialName?: string;
386
+ DisplayName?: string;
387
+ TrialSource?: TrialSource;
388
+ CreationTime?: Date;
389
+ LastModifiedTime?: Date;
390
+ }
391
+ export interface ListTrialsResponse {
392
+ TrialSummaries?: TrialSummary[];
393
+ NextToken?: string;
394
+ }
395
+ export declare const UserProfileSortKey: {
396
+ readonly CreationTime: "CreationTime";
397
+ readonly LastModifiedTime: "LastModifiedTime";
398
+ };
399
+ export type UserProfileSortKey =
400
+ (typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
401
+ export interface ListUserProfilesRequest {
402
+ NextToken?: string;
403
+ MaxResults?: number;
404
+ SortOrder?: SortOrder;
405
+ SortBy?: UserProfileSortKey;
406
+ DomainIdEquals?: string;
407
+ UserProfileNameContains?: string;
408
+ }
409
+ export interface UserProfileDetails {
410
+ DomainId?: string;
411
+ UserProfileName?: string;
412
+ Status?: UserProfileStatus;
413
+ CreationTime?: Date;
414
+ LastModifiedTime?: Date;
415
+ }
416
+ export interface ListUserProfilesResponse {
417
+ UserProfiles?: UserProfileDetails[];
418
+ NextToken?: string;
419
+ }
420
+ export declare const ListWorkforcesSortByOptions: {
421
+ readonly CreateDate: "CreateDate";
422
+ readonly Name: "Name";
423
+ };
424
+ export type ListWorkforcesSortByOptions =
425
+ (typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
426
+ export interface ListWorkforcesRequest {
427
+ SortBy?: ListWorkforcesSortByOptions;
428
+ SortOrder?: SortOrder;
429
+ NameContains?: string;
430
+ NextToken?: string;
431
+ MaxResults?: number;
432
+ }
433
+ export interface ListWorkforcesResponse {
434
+ Workforces: Workforce[] | undefined;
435
+ NextToken?: string;
436
+ }
437
+ export declare const ListWorkteamsSortByOptions: {
438
+ readonly CreateDate: "CreateDate";
439
+ readonly Name: "Name";
440
+ };
441
+ export type ListWorkteamsSortByOptions =
442
+ (typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
443
+ export interface ListWorkteamsRequest {
444
+ SortBy?: ListWorkteamsSortByOptions;
445
+ SortOrder?: SortOrder;
446
+ NameContains?: string;
447
+ NextToken?: string;
448
+ MaxResults?: number;
449
+ }
450
+ export interface ListWorkteamsResponse {
451
+ Workteams: Workteam[] | undefined;
452
+ NextToken?: string;
453
+ }
454
+ export interface Model {
455
+ ModelName?: string;
456
+ PrimaryContainer?: ContainerDefinition;
457
+ Containers?: ContainerDefinition[];
458
+ InferenceExecutionConfig?: InferenceExecutionConfig;
459
+ ExecutionRoleArn?: string;
460
+ VpcConfig?: VpcConfig;
461
+ CreationTime?: Date;
462
+ ModelArn?: string;
463
+ EnableNetworkIsolation?: boolean;
464
+ Tags?: Tag[];
465
+ DeploymentRecommendation?: DeploymentRecommendation;
466
+ }
134
467
  export interface ModelCard {
135
468
  ModelCardArn?: string;
136
469
  ModelCardName?: string;
@@ -653,6 +986,13 @@ export interface UpdateArtifactRequest {
653
986
  export interface UpdateArtifactResponse {
654
987
  ArtifactArn?: string;
655
988
  }
989
+ export interface UpdateClusterRequest {
990
+ ClusterName: string | undefined;
991
+ InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
992
+ }
993
+ export interface UpdateClusterResponse {
994
+ ClusterArn: string | undefined;
995
+ }
656
996
  export interface UpdateCodeRepositoryInput {
657
997
  CodeRepositoryName: string | undefined;
658
998
  GitConfig?: GitConfigForUpdate;
@@ -686,6 +1026,8 @@ export interface UpdateDomainRequest {
686
1026
  DomainSettingsForUpdate?: DomainSettingsForUpdate;
687
1027
  DefaultSpaceSettings?: DefaultSpaceSettings;
688
1028
  AppSecurityGroupManagement?: AppSecurityGroupManagement;
1029
+ SubnetIds?: string[];
1030
+ AppNetworkAccessType?: AppNetworkAccessType;
689
1031
  }
690
1032
  export interface UpdateDomainResponse {
691
1033
  DomainArn?: string;
@@ -777,6 +1119,21 @@ export interface UpdateImageVersionRequest {
777
1119
  export interface UpdateImageVersionResponse {
778
1120
  ImageVersionArn?: string;
779
1121
  }
1122
+ export interface UpdateInferenceComponentInput {
1123
+ InferenceComponentName: string | undefined;
1124
+ Specification?: InferenceComponentSpecification;
1125
+ RuntimeConfig?: InferenceComponentRuntimeConfig;
1126
+ }
1127
+ export interface UpdateInferenceComponentOutput {
1128
+ InferenceComponentArn: string | undefined;
1129
+ }
1130
+ export interface UpdateInferenceComponentRuntimeConfigInput {
1131
+ InferenceComponentName: string | undefined;
1132
+ DesiredRuntimeConfig: InferenceComponentRuntimeConfig | undefined;
1133
+ }
1134
+ export interface UpdateInferenceComponentRuntimeConfigOutput {
1135
+ InferenceComponentArn: string | undefined;
1136
+ }
780
1137
  export interface UpdateInferenceExperimentRequest {
781
1138
  Name: string | undefined;
782
1139
  Schedule?: InferenceExperimentSchedule;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListInferenceComponentsCommandInput,
4
+ ListInferenceComponentsCommandOutput,
5
+ } from "../commands/ListInferenceComponentsCommand";
6
+ import { SageMakerPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListInferenceComponents(
8
+ config: SageMakerPaginationConfiguration,
9
+ input: ListInferenceComponentsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListInferenceComponentsCommandOutput>;
@@ -25,6 +25,7 @@ export * from "./ListHumanTaskUisPaginator";
25
25
  export * from "./ListHyperParameterTuningJobsPaginator";
26
26
  export * from "./ListImageVersionsPaginator";
27
27
  export * from "./ListImagesPaginator";
28
+ export * from "./ListInferenceComponentsPaginator";
28
29
  export * from "./ListInferenceExperimentsPaginator";
29
30
  export * from "./ListInferenceRecommendationsJobStepsPaginator";
30
31
  export * from "./ListInferenceRecommendationsJobsPaginator";