@aws-sdk/client-sagemaker 3.777.0 → 3.778.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.
package/dist-cjs/index.js CHANGED
@@ -544,6 +544,7 @@ __export(index_exports, {
544
544
  RedshiftResultCompressionType: () => RedshiftResultCompressionType,
545
545
  RedshiftResultFormat: () => RedshiftResultFormat,
546
546
  RegisterDevicesCommand: () => RegisterDevicesCommand,
547
+ Relation: () => Relation,
547
548
  RenderUiTemplateCommand: () => RenderUiTemplateCommand,
548
549
  RepositoryAccessMode: () => RepositoryAccessMode,
549
550
  ReservedCapacityInstanceType: () => ReservedCapacityInstanceType,
@@ -18987,7 +18988,8 @@ var de_SearchRecord = /* @__PURE__ */ __name((output, context) => {
18987
18988
  var de_SearchResponse = /* @__PURE__ */ __name((output, context) => {
18988
18989
  return (0, import_smithy_client.take)(output, {
18989
18990
  NextToken: import_smithy_client.expectString,
18990
- Results: /* @__PURE__ */ __name((_) => de_SearchResultsList(_, context), "Results")
18991
+ Results: /* @__PURE__ */ __name((_) => de_SearchResultsList(_, context), "Results"),
18992
+ TotalHits: /* @__PURE__ */ __name((_) => de_TotalHits(_, context), "TotalHits")
18991
18993
  });
18992
18994
  }, "de_SearchResponse");
18993
18995
  var de_SearchResultsList = /* @__PURE__ */ __name((output, context) => {
@@ -19411,6 +19413,12 @@ var de_TimeSeriesTransformations = /* @__PURE__ */ __name((output, context) => {
19411
19413
  Filling: /* @__PURE__ */ __name((_) => de_FillingTransformations(_, context), "Filling")
19412
19414
  });
19413
19415
  }, "de_TimeSeriesTransformations");
19416
+ var de_TotalHits = /* @__PURE__ */ __name((output, context) => {
19417
+ return (0, import_smithy_client.take)(output, {
19418
+ Relation: import_smithy_client.expectString,
19419
+ Value: import_smithy_client.expectLong
19420
+ });
19421
+ }, "de_TotalHits");
19414
19422
  var de_TrackingServerSummary = /* @__PURE__ */ __name((output, context) => {
19415
19423
  return (0, import_smithy_client.take)(output, {
19416
19424
  CreationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreationTime"),
@@ -19728,6 +19736,7 @@ var de_TransformResources = /* @__PURE__ */ __name((output, context) => {
19728
19736
  return (0, import_smithy_client.take)(output, {
19729
19737
  InstanceCount: import_smithy_client.expectInt32,
19730
19738
  InstanceType: import_smithy_client.expectString,
19739
+ TransformAmiVersion: import_smithy_client.expectString,
19731
19740
  VolumeKmsKeyId: import_smithy_client.expectString
19732
19741
  });
19733
19742
  }, "de_TransformResources");
@@ -25393,6 +25402,10 @@ var ModelVariantAction = {
25393
25402
  REMOVE: "Remove",
25394
25403
  RETAIN: "Retain"
25395
25404
  };
25405
+ var Relation = {
25406
+ EQUAL_TO: "EqualTo",
25407
+ GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo"
25408
+ };
25396
25409
  var SearchSortOrder = {
25397
25410
  ASCENDING: "Ascending",
25398
25411
  DESCENDING: "Descending"
@@ -28499,6 +28512,7 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
28499
28512
  ListWorkforcesSortByOptions,
28500
28513
  ListWorkteamsSortByOptions,
28501
28514
  ModelVariantAction,
28515
+ Relation,
28502
28516
  SearchSortOrder,
28503
28517
  ModelCardFilterSensitiveLog,
28504
28518
  ModelPackageFilterSensitiveLog,
@@ -220,6 +220,10 @@ export const ModelVariantAction = {
220
220
  REMOVE: "Remove",
221
221
  RETAIN: "Retain",
222
222
  };
223
+ export const Relation = {
224
+ EQUAL_TO: "EqualTo",
225
+ GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo",
226
+ };
223
227
  export const SearchSortOrder = {
224
228
  ASCENDING: "Ascending",
225
229
  DESCENDING: "Descending",
@@ -16184,6 +16184,7 @@ const de_SearchResponse = (output, context) => {
16184
16184
  return take(output, {
16185
16185
  NextToken: __expectString,
16186
16186
  Results: (_) => de_SearchResultsList(_, context),
16187
+ TotalHits: (_) => de_TotalHits(_, context),
16187
16188
  });
16188
16189
  };
16189
16190
  const de_SearchResultsList = (output, context) => {
@@ -16631,6 +16632,12 @@ const de_TimeSeriesTransformations = (output, context) => {
16631
16632
  Filling: (_) => de_FillingTransformations(_, context),
16632
16633
  });
16633
16634
  };
16635
+ const de_TotalHits = (output, context) => {
16636
+ return take(output, {
16637
+ Relation: __expectString,
16638
+ Value: __expectLong,
16639
+ });
16640
+ };
16634
16641
  const de_TrackingServerSummary = (output, context) => {
16635
16642
  return take(output, {
16636
16643
  CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -16968,6 +16975,7 @@ const de_TransformResources = (output, context) => {
16968
16975
  return take(output, {
16969
16976
  InstanceCount: __expectInt32,
16970
16977
  InstanceType: __expectString,
16978
+ TransformAmiVersion: __expectString,
16971
16979
  VolumeKmsKeyId: __expectString,
16972
16980
  });
16973
16981
  };
@@ -260,6 +260,7 @@ declare const CreateAlgorithmCommand_base: {
260
260
  * InstanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.inf2.xlarge" || "ml.inf2.8xlarge" || "ml.inf2.24xlarge" || "ml.inf2.48xlarge", // required
261
261
  * InstanceCount: Number("int"), // required
262
262
  * VolumeKmsKeyId: "STRING_VALUE",
263
+ * TransformAmiVersion: "STRING_VALUE",
263
264
  * },
264
265
  * },
265
266
  * },
@@ -145,6 +145,7 @@ declare const CreateModelPackageCommand_base: {
145
145
  * InstanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.inf2.xlarge" || "ml.inf2.8xlarge" || "ml.inf2.24xlarge" || "ml.inf2.48xlarge", // required
146
146
  * InstanceCount: Number("int"), // required
147
147
  * VolumeKmsKeyId: "STRING_VALUE",
148
+ * TransformAmiVersion: "STRING_VALUE",
148
149
  * },
149
150
  * },
150
151
  * },
@@ -56,8 +56,8 @@ declare const CreateTransformJobCommand_base: {
56
56
  * </li>
57
57
  * <li>
58
58
  * <p>
59
- * <code>TransformResources</code> - Identifies the ML compute instances for the
60
- * transform job.</p>
59
+ * <code>TransformResources</code> - Identifies the ML compute instances and AMI
60
+ * image versions for the transform job.</p>
61
61
  * </li>
62
62
  * </ul>
63
63
  * <p>For more information about how batch transformation works, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html">Batch
@@ -107,6 +107,7 @@ declare const CreateTransformJobCommand_base: {
107
107
  * InstanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.inf2.xlarge" || "ml.inf2.8xlarge" || "ml.inf2.24xlarge" || "ml.inf2.48xlarge", // required
108
108
  * InstanceCount: Number("int"), // required
109
109
  * VolumeKmsKeyId: "STRING_VALUE",
110
+ * TransformAmiVersion: "STRING_VALUE",
110
111
  * },
111
112
  * DataProcessing: { // DataProcessing
112
113
  * InputFilter: "STRING_VALUE",
@@ -267,6 +267,7 @@ declare const DescribeAlgorithmCommand_base: {
267
267
  * // InstanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.inf2.xlarge" || "ml.inf2.8xlarge" || "ml.inf2.24xlarge" || "ml.inf2.48xlarge", // required
268
268
  * // InstanceCount: Number("int"), // required
269
269
  * // VolumeKmsKeyId: "STRING_VALUE",
270
+ * // TransformAmiVersion: "STRING_VALUE",
270
271
  * // },
271
272
  * // },
272
273
  * // },
@@ -166,6 +166,7 @@ declare const DescribeModelPackageCommand_base: {
166
166
  * // InstanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.inf2.xlarge" || "ml.inf2.8xlarge" || "ml.inf2.24xlarge" || "ml.inf2.48xlarge", // required
167
167
  * // InstanceCount: Number("int"), // required
168
168
  * // VolumeKmsKeyId: "STRING_VALUE",
169
+ * // TransformAmiVersion: "STRING_VALUE",
169
170
  * // },
170
171
  * // },
171
172
  * // },
@@ -81,6 +81,7 @@ declare const DescribeTransformJobCommand_base: {
81
81
  * // InstanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.inf2.xlarge" || "ml.inf2.8xlarge" || "ml.inf2.24xlarge" || "ml.inf2.48xlarge", // required
82
82
  * // InstanceCount: Number("int"), // required
83
83
  * // VolumeKmsKeyId: "STRING_VALUE",
84
+ * // TransformAmiVersion: "STRING_VALUE",
84
85
  * // },
85
86
  * // CreationTime: new Date("TIMESTAMP"), // required
86
87
  * // TransformStartTime: new Date("TIMESTAMP"),
@@ -28,9 +28,9 @@ declare const GetSearchSuggestionsCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>An auto-complete API for the search functionality in the SageMaker console. It returns
31
- * suggestions of possible matches for the property name to use in <code>Search</code>
32
- * queries. Provides suggestions for <code>HyperParameters</code>, <code>Tags</code>, and
33
- * <code>Metrics</code>.</p>
31
+ * suggestions of possible matches for the property name to use in <code>Search</code> queries.
32
+ * Provides suggestions for <code>HyperParameters</code>, <code>Tags</code>, and
33
+ * <code>Metrics</code>.</p>
34
34
  * @example
35
35
  * Use a bare-bones client and the command you need to make an API call.
36
36
  * ```javascript
@@ -28,14 +28,14 @@ declare const SearchCommand_base: {
28
28
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
29
  };
30
30
  /**
31
- * <p>Finds SageMaker resources that match a search query. Matching resources are returned
32
- * as a list of <code>SearchRecord</code> objects in the response. You can sort the search
33
- * results by any resource property in a ascending or descending order.</p>
31
+ * <p>Finds SageMaker resources that match a search query. Matching resources are returned as a list
32
+ * of <code>SearchRecord</code> objects in the response. You can sort the search results by any
33
+ * resource property in a ascending or descending order.</p>
34
34
  * <p>You can query against the following value types: numeric, text, Boolean, and
35
35
  * timestamp.</p>
36
36
  * <note>
37
- * <p>The Search API may provide access to otherwise restricted data. See <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/api-permissions-reference.html">Amazon SageMaker
38
- * API Permissions: Actions, Permissions, and Resources Reference</a> for more
37
+ * <p>The Search API may provide access to otherwise restricted data. See <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/api-permissions-reference.html">Amazon SageMaker API
38
+ * Permissions: Actions, Permissions, and Resources Reference</a> for more
39
39
  * information.</p>
40
40
  * </note>
41
41
  * @example
@@ -832,6 +832,7 @@ declare const SearchCommand_base: {
832
832
  * // InstanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.inf2.xlarge" || "ml.inf2.8xlarge" || "ml.inf2.24xlarge" || "ml.inf2.48xlarge", // required
833
833
  * // InstanceCount: Number("int"), // required
834
834
  * // VolumeKmsKeyId: "STRING_VALUE",
835
+ * // TransformAmiVersion: "STRING_VALUE",
835
836
  * // },
836
837
  * // CreationTime: new Date("TIMESTAMP"),
837
838
  * // TransformStartTime: new Date("TIMESTAMP"),
@@ -1204,6 +1205,7 @@ declare const SearchCommand_base: {
1204
1205
  * // InstanceType: "ml.m4.xlarge" || "ml.m4.2xlarge" || "ml.m4.4xlarge" || "ml.m4.10xlarge" || "ml.m4.16xlarge" || "ml.c4.xlarge" || "ml.c4.2xlarge" || "ml.c4.4xlarge" || "ml.c4.8xlarge" || "ml.p2.xlarge" || "ml.p2.8xlarge" || "ml.p2.16xlarge" || "ml.p3.2xlarge" || "ml.p3.8xlarge" || "ml.p3.16xlarge" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.12xlarge" || "ml.m5.24xlarge" || "ml.m6i.large" || "ml.m6i.xlarge" || "ml.m6i.2xlarge" || "ml.m6i.4xlarge" || "ml.m6i.8xlarge" || "ml.m6i.12xlarge" || "ml.m6i.16xlarge" || "ml.m6i.24xlarge" || "ml.m6i.32xlarge" || "ml.c6i.large" || "ml.c6i.xlarge" || "ml.c6i.2xlarge" || "ml.c6i.4xlarge" || "ml.c6i.8xlarge" || "ml.c6i.12xlarge" || "ml.c6i.16xlarge" || "ml.c6i.24xlarge" || "ml.c6i.32xlarge" || "ml.r6i.large" || "ml.r6i.xlarge" || "ml.r6i.2xlarge" || "ml.r6i.4xlarge" || "ml.r6i.8xlarge" || "ml.r6i.12xlarge" || "ml.r6i.16xlarge" || "ml.r6i.24xlarge" || "ml.r6i.32xlarge" || "ml.m7i.large" || "ml.m7i.xlarge" || "ml.m7i.2xlarge" || "ml.m7i.4xlarge" || "ml.m7i.8xlarge" || "ml.m7i.12xlarge" || "ml.m7i.16xlarge" || "ml.m7i.24xlarge" || "ml.m7i.48xlarge" || "ml.c7i.large" || "ml.c7i.xlarge" || "ml.c7i.2xlarge" || "ml.c7i.4xlarge" || "ml.c7i.8xlarge" || "ml.c7i.12xlarge" || "ml.c7i.16xlarge" || "ml.c7i.24xlarge" || "ml.c7i.48xlarge" || "ml.r7i.large" || "ml.r7i.xlarge" || "ml.r7i.2xlarge" || "ml.r7i.4xlarge" || "ml.r7i.8xlarge" || "ml.r7i.12xlarge" || "ml.r7i.16xlarge" || "ml.r7i.24xlarge" || "ml.r7i.48xlarge" || "ml.g4dn.xlarge" || "ml.g4dn.2xlarge" || "ml.g4dn.4xlarge" || "ml.g4dn.8xlarge" || "ml.g4dn.12xlarge" || "ml.g4dn.16xlarge" || "ml.g5.xlarge" || "ml.g5.2xlarge" || "ml.g5.4xlarge" || "ml.g5.8xlarge" || "ml.g5.12xlarge" || "ml.g5.16xlarge" || "ml.g5.24xlarge" || "ml.g5.48xlarge" || "ml.trn1.2xlarge" || "ml.trn1.32xlarge" || "ml.inf2.xlarge" || "ml.inf2.8xlarge" || "ml.inf2.24xlarge" || "ml.inf2.48xlarge", // required
1205
1206
  * // InstanceCount: Number("int"), // required
1206
1207
  * // VolumeKmsKeyId: "STRING_VALUE",
1208
+ * // TransformAmiVersion: "STRING_VALUE",
1207
1209
  * // },
1208
1210
  * // },
1209
1211
  * // },
@@ -2167,6 +2169,10 @@ declare const SearchCommand_base: {
2167
2169
  * // },
2168
2170
  * // ],
2169
2171
  * // NextToken: "STRING_VALUE",
2172
+ * // TotalHits: { // TotalHits
2173
+ * // Value: Number("long"),
2174
+ * // Relation: "EqualTo" || "GreaterThanOrEqualTo",
2175
+ * // },
2170
2176
  * // };
2171
2177
  *
2172
2178
  * ```
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { StopOptimizationJobRequest } from "../models/models_4";
3
+ import { StopOptimizationJobRequest } from "../models/models_5";
4
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
5
  /**
6
6
  * @public
@@ -1,7 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { StopPipelineExecutionRequest } from "../models/models_4";
4
- import { StopPipelineExecutionResponse } from "../models/models_5";
3
+ import { StopPipelineExecutionRequest, StopPipelineExecutionResponse } from "../models/models_5";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -2511,6 +2511,37 @@ export interface TransformResources {
2511
2511
  * @public
2512
2512
  */
2513
2513
  VolumeKmsKeyId?: string | undefined;
2514
+ /**
2515
+ * <p>Specifies an option from a collection of preconfigured Amazon Machine Image (AMI)
2516
+ * images. Each image is configured by Amazon Web Services with a set of software and driver
2517
+ * versions.</p>
2518
+ * <dl>
2519
+ * <dt>al2-ami-sagemaker-batch-gpu-470</dt>
2520
+ * <dd>
2521
+ * <ul>
2522
+ * <li>
2523
+ * <p>Accelerator: GPU</p>
2524
+ * </li>
2525
+ * <li>
2526
+ * <p>NVIDIA driver version: 470</p>
2527
+ * </li>
2528
+ * </ul>
2529
+ * </dd>
2530
+ * <dt>al2-ami-sagemaker-batch-gpu-535</dt>
2531
+ * <dd>
2532
+ * <ul>
2533
+ * <li>
2534
+ * <p>Accelerator: GPU</p>
2535
+ * </li>
2536
+ * <li>
2537
+ * <p>NVIDIA driver version: 535</p>
2538
+ * </li>
2539
+ * </ul>
2540
+ * </dd>
2541
+ * </dl>
2542
+ * @public
2543
+ */
2544
+ TransformAmiVersion?: string | undefined;
2514
2545
  }
2515
2546
  /**
2516
2547
  * <p>Defines the input needed to run a transform job using the inference specification
@@ -7439,8 +7439,8 @@ export declare const Operator: {
7439
7439
  export type Operator = (typeof Operator)[keyof typeof Operator];
7440
7440
  /**
7441
7441
  * <p>A conditional statement for a search expression that includes a resource property, a
7442
- * Boolean operator, and a value. Resources that match the statement are returned in the
7443
- * results from the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API.</p>
7442
+ * Boolean operator, and a value. Resources that match the statement are returned in the results
7443
+ * from the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API.</p>
7444
7444
  * <p>If you specify a <code>Value</code>, but not an <code>Operator</code>, SageMaker uses the
7445
7445
  * equals operator.</p>
7446
7446
  * <p>In search, there are several property types:</p>
@@ -7448,10 +7448,9 @@ export type Operator = (typeof Operator)[keyof typeof Operator];
7448
7448
  * <dt>Metrics</dt>
7449
7449
  * <dd>
7450
7450
  * <p>To define a metric filter, enter a value using the form
7451
- * <code>"Metrics.<name>"</code>, where <code><name></code> is
7452
- * a metric name. For example, the following filter searches for training jobs
7453
- * with an <code>"accuracy"</code> metric greater than
7454
- * <code>"0.9"</code>:</p>
7451
+ * <code>"Metrics.<name>"</code>, where <code><name></code> is a metric name.
7452
+ * For example, the following filter searches for training jobs with an
7453
+ * <code>"accuracy"</code> metric greater than <code>"0.9"</code>:</p>
7455
7454
  * <p>
7456
7455
  * <code>\{</code>
7457
7456
  * </p>
@@ -7471,13 +7470,12 @@ export type Operator = (typeof Operator)[keyof typeof Operator];
7471
7470
  * <dt>HyperParameters</dt>
7472
7471
  * <dd>
7473
7472
  * <p>To define a hyperparameter filter, enter a value with the form
7474
- * <code>"HyperParameters.<name>"</code>. Decimal hyperparameter
7475
- * values are treated as a decimal in a comparison if the specified
7476
- * <code>Value</code> is also a decimal value. If the specified
7477
- * <code>Value</code> is an integer, the decimal hyperparameter values are
7478
- * treated as integers. For example, the following filter is satisfied by
7479
- * training jobs with a <code>"learning_rate"</code> hyperparameter that is
7480
- * less than <code>"0.5"</code>:</p>
7473
+ * <code>"HyperParameters.<name>"</code>. Decimal hyperparameter values are treated
7474
+ * as a decimal in a comparison if the specified <code>Value</code> is also a decimal
7475
+ * value. If the specified <code>Value</code> is an integer, the decimal hyperparameter
7476
+ * values are treated as integers. For example, the following filter is satisfied by
7477
+ * training jobs with a <code>"learning_rate"</code> hyperparameter that is less than
7478
+ * <code>"0.5"</code>:</p>
7481
7479
  * <p>
7482
7480
  * <code> \{</code>
7483
7481
  * </p>
@@ -7504,15 +7502,15 @@ export type Operator = (typeof Operator)[keyof typeof Operator];
7504
7502
  */
7505
7503
  export interface Filter {
7506
7504
  /**
7507
- * <p>A resource property name. For example, <code>TrainingJobName</code>. For
7508
- * valid property names, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_SearchRecord.html">SearchRecord</a>.
7509
- * You must specify a valid property for the resource.</p>
7505
+ * <p>A resource property name. For example, <code>TrainingJobName</code>. For valid property
7506
+ * names, see <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_SearchRecord.html">SearchRecord</a>. You must
7507
+ * specify a valid property for the resource.</p>
7510
7508
  * @public
7511
7509
  */
7512
7510
  Name: string | undefined;
7513
7511
  /**
7514
- * <p>A Boolean binary operator that is used to evaluate the filter. The operator field
7515
- * contains one of the following values:</p>
7512
+ * <p>A Boolean binary operator that is used to evaluate the filter. The operator field contains
7513
+ * one of the following values:</p>
7516
7514
  * <dl>
7517
7515
  * <dt>Equals</dt>
7518
7516
  * <dd>
@@ -7532,33 +7530,33 @@ export interface Filter {
7532
7530
  * </dd>
7533
7531
  * <dt>GreaterThan</dt>
7534
7532
  * <dd>
7535
- * <p>The value of <code>Name</code> is greater than <code>Value</code>.
7536
- * Not supported for text properties.</p>
7533
+ * <p>The value of <code>Name</code> is greater than <code>Value</code>. Not supported for
7534
+ * text properties.</p>
7537
7535
  * </dd>
7538
7536
  * <dt>GreaterThanOrEqualTo</dt>
7539
7537
  * <dd>
7540
- * <p>The value of <code>Name</code> is greater than or equal to <code>Value</code>.
7541
- * Not supported for text properties.</p>
7538
+ * <p>The value of <code>Name</code> is greater than or equal to <code>Value</code>. Not
7539
+ * supported for text properties.</p>
7542
7540
  * </dd>
7543
7541
  * <dt>LessThan</dt>
7544
7542
  * <dd>
7545
- * <p>The value of <code>Name</code> is less than <code>Value</code>.
7546
- * Not supported for text properties.</p>
7543
+ * <p>The value of <code>Name</code> is less than <code>Value</code>. Not supported for
7544
+ * text properties.</p>
7547
7545
  * </dd>
7548
7546
  * <dt>LessThanOrEqualTo</dt>
7549
7547
  * <dd>
7550
- * <p>The value of <code>Name</code> is less than or equal to <code>Value</code>.
7551
- * Not supported for text properties.</p>
7548
+ * <p>The value of <code>Name</code> is less than or equal to <code>Value</code>. Not
7549
+ * supported for text properties.</p>
7552
7550
  * </dd>
7553
7551
  * <dt>In</dt>
7554
7552
  * <dd>
7555
7553
  * <p>The value of <code>Name</code> is one of the comma delimited strings in
7556
- * <code>Value</code>. Only supported for text properties.</p>
7554
+ * <code>Value</code>. Only supported for text properties.</p>
7557
7555
  * </dd>
7558
7556
  * <dt>Contains</dt>
7559
7557
  * <dd>
7560
- * <p>The value of <code>Name</code> contains the string <code>Value</code>.
7561
- * Only supported for text properties.</p>
7558
+ * <p>The value of <code>Name</code> contains the string <code>Value</code>. Only
7559
+ * supported for text properties.</p>
7562
7560
  * <p>A <code>SearchExpression</code> can include the <code>Contains</code> operator
7563
7561
  * multiple times when the value of <code>Name</code> is one of the following:</p>
7564
7562
  * <ul>
@@ -7620,20 +7618,19 @@ export interface Filter {
7620
7618
  * </ul>
7621
7619
  * <p>A <code>SearchExpression</code> can include only one <code>Contains</code> operator
7622
7620
  * for all other values of <code>Name</code>. In these cases, if you include multiple
7623
- * <code>Contains</code> operators in the <code>SearchExpression</code>, the result is
7621
+ * <code>Contains</code> operators in the <code>SearchExpression</code>, the result is
7624
7622
  * the following error message: "<code>'CONTAINS' operator usage limit of 1
7625
- * exceeded.</code>"</p>
7623
+ * exceeded.</code>"</p>
7626
7624
  * </dd>
7627
7625
  * </dl>
7628
7626
  * @public
7629
7627
  */
7630
7628
  Operator?: Operator | undefined;
7631
7629
  /**
7632
- * <p>A value used with <code>Name</code> and <code>Operator</code> to determine which
7633
- * resources satisfy the filter's condition. For numerical properties, <code>Value</code>
7634
- * must be an integer or floating-point decimal. For timestamp properties,
7635
- * <code>Value</code> must be an ISO 8601 date-time string of the following format:
7636
- * <code>YYYY-mm-dd'T'HH:MM:SS</code>.</p>
7630
+ * <p>A value used with <code>Name</code> and <code>Operator</code> to determine which resources
7631
+ * satisfy the filter's condition. For numerical properties, <code>Value</code> must be an
7632
+ * integer or floating-point decimal. For timestamp properties, <code>Value</code> must be an ISO
7633
+ * 8601 date-time string of the following format: <code>YYYY-mm-dd'T'HH:MM:SS</code>.</p>
7637
7634
  * @public
7638
7635
  */
7639
7636
  Value?: string | undefined;
@@ -7948,14 +7945,14 @@ export interface PropertyNameQuery {
7948
7945
  PropertyNameHint: string | undefined;
7949
7946
  }
7950
7947
  /**
7951
- * <p>Specified in the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_GetSearchSuggestions.html">GetSearchSuggestions</a> request.
7952
- * Limits the property names that are included in the response.</p>
7948
+ * <p>Specified in the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_GetSearchSuggestions.html">GetSearchSuggestions</a> request. Limits the property names that are included in the
7949
+ * response.</p>
7953
7950
  * @public
7954
7951
  */
7955
7952
  export interface SuggestionQuery {
7956
7953
  /**
7957
- * <p>Defines a property name hint. Only property
7958
- * names that begin with the specified hint are included in the response.</p>
7954
+ * <p>Defines a property name hint. Only property names that begin with the specified hint are
7955
+ * included in the response.</p>
7959
7956
  * @public
7960
7957
  */
7961
7958
  PropertyNameQuery?: PropertyNameQuery | undefined;
@@ -7976,8 +7973,8 @@ export interface GetSearchSuggestionsRequest {
7976
7973
  SuggestionQuery?: SuggestionQuery | undefined;
7977
7974
  }
7978
7975
  /**
7979
- * <p>A property name returned from a <code>GetSearchSuggestions</code> call that specifies
7980
- * a value in the <code>PropertyNameQuery</code> field.</p>
7976
+ * <p>A property name returned from a <code>GetSearchSuggestions</code> call that specifies a
7977
+ * value in the <code>PropertyNameQuery</code> field.</p>
7981
7978
  * @public
7982
7979
  */
7983
7980
  export interface PropertyNameSuggestion {
@@ -7994,7 +7991,7 @@ export interface PropertyNameSuggestion {
7994
7991
  export interface GetSearchSuggestionsResponse {
7995
7992
  /**
7996
7993
  * <p>A list of property names for a <code>Resource</code> that match a
7997
- * <code>SuggestionQuery</code>.</p>
7994
+ * <code>SuggestionQuery</code>.</p>
7998
7995
  * @public
7999
7996
  */
8000
7997
  PropertyNameSuggestions?: PropertyNameSuggestion[] | undefined;
@@ -7460,8 +7460,9 @@ export declare const ModelVariantAction: {
7460
7460
  */
7461
7461
  export type ModelVariantAction = (typeof ModelVariantAction)[keyof typeof ModelVariantAction];
7462
7462
  /**
7463
- * <p>A list of nested <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Filter.html">Filter</a> objects. A resource must satisfy the conditions
7464
- * of all filters to be included in the results returned from the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API.</p>
7463
+ * <p>A list of nested <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Filter.html">Filter</a> objects. A resource must
7464
+ * satisfy the conditions of all filters to be included in the results returned from the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a>
7465
+ * API.</p>
7465
7466
  * <p>For example, to filter on a training job's <code>InputDataConfig</code> property with a
7466
7467
  * specific channel name and <code>S3Uri</code> prefix, define the following filters:</p>
7467
7468
  * <ul>
@@ -7481,17 +7482,16 @@ export type ModelVariantAction = (typeof ModelVariantAction)[keyof typeof ModelV
7481
7482
  */
7482
7483
  export interface NestedFilters {
7483
7484
  /**
7484
- * <p>The name of the property to use in the nested filters. The value must match a listed property name,
7485
- * such as <code>InputDataConfig</code>.</p>
7485
+ * <p>The name of the property to use in the nested filters. The value must match a listed
7486
+ * property name, such as <code>InputDataConfig</code>.</p>
7486
7487
  * @public
7487
7488
  */
7488
7489
  NestedPropertyName: string | undefined;
7489
7490
  /**
7490
7491
  * <p>A list of filters. Each filter acts on a property. Filters must contain at least one
7491
- * <code>Filters</code> value. For example, a <code>NestedFilters</code> call might
7492
- * include a filter on the <code>PropertyName</code> parameter of the
7493
- * <code>InputDataConfig</code> property:
7494
- * <code>InputDataConfig.DataSource.S3DataSource.S3Uri</code>.</p>
7492
+ * <code>Filters</code> value. For example, a <code>NestedFilters</code> call might include a
7493
+ * filter on the <code>PropertyName</code> parameter of the <code>InputDataConfig</code>
7494
+ * property: <code>InputDataConfig.DataSource.S3DataSource.S3Uri</code>.</p>
7495
7495
  * @public
7496
7496
  */
7497
7497
  Filters: Filter[] | undefined;
@@ -8123,6 +8123,18 @@ export interface RegisterDevicesRequest {
8123
8123
  */
8124
8124
  Tags?: Tag[] | undefined;
8125
8125
  }
8126
+ /**
8127
+ * @public
8128
+ * @enum
8129
+ */
8130
+ export declare const Relation: {
8131
+ readonly EQUAL_TO: "EqualTo";
8132
+ readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
8133
+ };
8134
+ /**
8135
+ * @public
8136
+ */
8137
+ export type Relation = (typeof Relation)[keyof typeof Relation];
8126
8138
  /**
8127
8139
  * <p>Configuration for remote debugging for the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateTrainingJob.html">UpdateTrainingJob</a> API. To learn more about the remote debugging
8128
8140
  * functionality of SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/train-remote-debugging.html">Access a training container
@@ -8318,13 +8330,17 @@ export declare const SearchSortOrder: {
8318
8330
  */
8319
8331
  export type SearchSortOrder = (typeof SearchSortOrder)[keyof typeof SearchSortOrder];
8320
8332
  /**
8321
- * <p>The list of key-value pairs used to filter your search results. If a search result contains a key from your list, it is included in the final search response if the value associated with the key in the result matches the value you specified.
8322
- * If the value doesn't match, the result is excluded from the search response. Any resources that don't have a key from the list that you've provided will also be included in the search response.</p>
8333
+ * <p>The list of key-value pairs used to filter your search results. If a search result
8334
+ * contains a key from your list, it is included in the final search response if the value
8335
+ * associated with the key in the result matches the value you specified. If the value doesn't
8336
+ * match, the result is excluded from the search response. Any resources that don't have a key
8337
+ * from the list that you've provided will also be included in the search response.</p>
8323
8338
  * @public
8324
8339
  */
8325
8340
  export interface VisibilityConditions {
8326
8341
  /**
8327
- * <p>The key that specifies the tag that you're using to filter the search results. It must be in the following format: <code>Tags.<key></code>.</p>
8342
+ * <p>The key that specifies the tag that you're using to filter the search results. It must be
8343
+ * in the following format: <code>Tags.<key></code>.</p>
8328
8344
  * @public
8329
8345
  */
8330
8346
  Key?: string | undefined;
@@ -9051,6 +9067,41 @@ export interface SearchRecord {
9051
9067
  */
9052
9068
  Model?: ModelDashboardModel | undefined;
9053
9069
  }
9070
+ /**
9071
+ * <p>Represents the total number of matching results and indicates how accurate that count
9072
+ * is.</p>
9073
+ * <p>The <code>Value</code> field provides the count, which may be exact or estimated. The
9074
+ * <code>Relation</code> field indicates whether it's an exact figure or a lower bound. This
9075
+ * helps understand the full scope of search results, especially when dealing with large result
9076
+ * sets.</p>
9077
+ * @public
9078
+ */
9079
+ export interface TotalHits {
9080
+ /**
9081
+ * <p>The total number of matching results. This value may be exact or an estimate, depending on
9082
+ * the <code>Relation</code> field.</p>
9083
+ * @public
9084
+ */
9085
+ Value?: number | undefined;
9086
+ /**
9087
+ * <p>Indicates the relationship between the returned <code>Value</code> and the actual total
9088
+ * number of matching results. Possible values are:</p>
9089
+ * <ul>
9090
+ * <li>
9091
+ * <p>
9092
+ * <code>EqualTo</code>: The <code>Value</code> is the exact count of matching
9093
+ * results.</p>
9094
+ * </li>
9095
+ * <li>
9096
+ * <p>
9097
+ * <code>GreaterThanOrEqualTo</code>: The <code>Value</code> is a lower bound of the
9098
+ * actual count of matching results.</p>
9099
+ * </li>
9100
+ * </ul>
9101
+ * @public
9102
+ */
9103
+ Relation?: Relation | undefined;
9104
+ }
9054
9105
  /**
9055
9106
  * @public
9056
9107
  */
@@ -9067,6 +9118,11 @@ export interface SearchResponse {
9067
9118
  * @public
9068
9119
  */
9069
9120
  NextToken?: string | undefined;
9121
+ /**
9122
+ * <p>The total number of matching results.</p>
9123
+ * @public
9124
+ */
9125
+ TotalHits?: TotalHits | undefined;
9070
9126
  }
9071
9127
  /**
9072
9128
  * @public
@@ -9581,32 +9637,6 @@ export interface StopNotebookInstanceInput {
9581
9637
  */
9582
9638
  NotebookInstanceName: string | undefined;
9583
9639
  }
9584
- /**
9585
- * @public
9586
- */
9587
- export interface StopOptimizationJobRequest {
9588
- /**
9589
- * <p>The name that you assigned to the optimization job.</p>
9590
- * @public
9591
- */
9592
- OptimizationJobName: string | undefined;
9593
- }
9594
- /**
9595
- * @public
9596
- */
9597
- export interface StopPipelineExecutionRequest {
9598
- /**
9599
- * <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
9600
- * @public
9601
- */
9602
- PipelineExecutionArn: string | undefined;
9603
- /**
9604
- * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
9605
- * operation. An idempotent operation completes no more than once.</p>
9606
- * @public
9607
- */
9608
- ClientRequestToken?: string | undefined;
9609
- }
9610
9640
  /**
9611
9641
  * @internal
9612
9642
  */
@@ -3,6 +3,32 @@ import { _InstanceType, DefaultSpaceSettings, DeploymentConfig, EdgeOutputConfig
3
3
  import { CrossAccountFilterOption, FeatureParameter, HubContentSupportStatus, HubContentType, InstanceMetadataServiceConfiguration, MemberDefinition, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PartnerAppConfig, PartnerAppMaintenanceConfig, PipelineDefinitionS3Location, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, SourceIpConfig, SpaceSettings, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceVpcConfigRequest } from "./models_2";
4
4
  import { DesiredWeightAndCapacity, Device, DomainSettingsForUpdate, Filter, GitConfigForUpdate, InferenceComponentDeploymentConfig, ResourceType, Workforce, Workteam } from "./models_3";
5
5
  import { NestedFilters, OnlineStoreConfigUpdate, ProfilerConfigForUpdate, RemoteDebugConfigForUpdate, ResourceConfigForUpdate, SearchSortOrder, VisibilityConditions } from "./models_4";
6
+ /**
7
+ * @public
8
+ */
9
+ export interface StopOptimizationJobRequest {
10
+ /**
11
+ * <p>The name that you assigned to the optimization job.</p>
12
+ * @public
13
+ */
14
+ OptimizationJobName: string | undefined;
15
+ }
16
+ /**
17
+ * @public
18
+ */
19
+ export interface StopPipelineExecutionRequest {
20
+ /**
21
+ * <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
22
+ * @public
23
+ */
24
+ PipelineExecutionArn: string | undefined;
25
+ /**
26
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
27
+ * operation. An idempotent operation completes no more than once.</p>
28
+ * @public
29
+ */
30
+ ClientRequestToken?: string | undefined;
31
+ }
6
32
  /**
7
33
  * @public
8
34
  */
@@ -2109,26 +2135,24 @@ export interface UpdateWorkteamResponse {
2109
2135
  Workteam: Workteam | undefined;
2110
2136
  }
2111
2137
  /**
2112
- * <p>A multi-expression that searches for the specified resource or resources in a search. All resource
2113
- * objects that satisfy the expression's condition are included in the search results. You must specify at
2114
- * least one subexpression, filter, or nested filter. A <code>SearchExpression</code> can contain up to
2115
- * twenty elements.</p>
2138
+ * <p>A multi-expression that searches for the specified resource or resources in a search. All
2139
+ * resource objects that satisfy the expression's condition are included in the search results.
2140
+ * You must specify at least one subexpression, filter, or nested filter. A
2141
+ * <code>SearchExpression</code> can contain up to twenty elements.</p>
2116
2142
  * <p>A <code>SearchExpression</code> contains the following components:</p>
2117
2143
  * <ul>
2118
2144
  * <li>
2119
- * <p>A list of <code>Filter</code> objects. Each filter defines a simple Boolean
2120
- * expression comprised of a resource property name, Boolean operator, and
2121
- * value.</p>
2145
+ * <p>A list of <code>Filter</code> objects. Each filter defines a simple Boolean expression
2146
+ * comprised of a resource property name, Boolean operator, and value.</p>
2122
2147
  * </li>
2123
2148
  * <li>
2124
- * <p>A list of <code>NestedFilter</code> objects. Each nested filter defines a list
2125
- * of Boolean expressions using a list of resource properties. A nested filter is
2126
- * satisfied if a single object in the list satisfies all Boolean
2127
- * expressions.</p>
2149
+ * <p>A list of <code>NestedFilter</code> objects. Each nested filter defines a list of
2150
+ * Boolean expressions using a list of resource properties. A nested filter is satisfied if a
2151
+ * single object in the list satisfies all Boolean expressions.</p>
2128
2152
  * </li>
2129
2153
  * <li>
2130
- * <p>A list of <code>SearchExpression</code> objects. A search expression object
2131
- * can be nested in a list of search expression objects.</p>
2154
+ * <p>A list of <code>SearchExpression</code> objects. A search expression object can be
2155
+ * nested in a list of search expression objects.</p>
2132
2156
  * </li>
2133
2157
  * <li>
2134
2158
  * <p>A Boolean operator: <code>And</code> or <code>Or</code>.</p>
@@ -2153,11 +2177,11 @@ export interface SearchExpression {
2153
2177
  */
2154
2178
  SubExpressions?: SearchExpression[] | undefined;
2155
2179
  /**
2156
- * <p>A Boolean operator used to evaluate the search expression. If you want every
2157
- * conditional statement in all lists to be satisfied for the entire search expression to
2158
- * be true, specify <code>And</code>. If only a single conditional statement needs to be
2159
- * true for the entire search expression to be true, specify <code>Or</code>. The default
2160
- * value is <code>And</code>.</p>
2180
+ * <p>A Boolean operator used to evaluate the search expression. If you want every conditional
2181
+ * statement in all lists to be satisfied for the entire search expression to be true, specify
2182
+ * <code>And</code>. If only a single conditional statement needs to be true for the entire
2183
+ * search expression to be true, specify <code>Or</code>. The default value is
2184
+ * <code>And</code>.</p>
2161
2185
  * @public
2162
2186
  */
2163
2187
  Operator?: BooleanOperator | undefined;
@@ -2172,31 +2196,31 @@ export interface SearchRequest {
2172
2196
  */
2173
2197
  Resource: ResourceType | undefined;
2174
2198
  /**
2175
- * <p>A Boolean conditional statement. Resources must satisfy this condition to be
2176
- * included in search results. You must provide at least one subexpression, filter, or
2177
- * nested filter. The maximum number of recursive <code>SubExpressions</code>,
2178
- * <code>NestedFilters</code>, and <code>Filters</code> that can be included in a
2179
- * <code>SearchExpression</code> object is 50.</p>
2199
+ * <p>A Boolean conditional statement. Resources must satisfy this condition to be included in
2200
+ * search results. You must provide at least one subexpression, filter, or nested filter. The
2201
+ * maximum number of recursive <code>SubExpressions</code>, <code>NestedFilters</code>, and
2202
+ * <code>Filters</code> that can be included in a <code>SearchExpression</code> object is
2203
+ * 50.</p>
2180
2204
  * @public
2181
2205
  */
2182
2206
  SearchExpression?: SearchExpression | undefined;
2183
2207
  /**
2184
- * <p>The name of the resource property used to sort the <code>SearchResults</code>. The
2185
- * default is <code>LastModifiedTime</code>.</p>
2208
+ * <p>The name of the resource property used to sort the <code>SearchResults</code>. The default
2209
+ * is <code>LastModifiedTime</code>.</p>
2186
2210
  * @public
2187
2211
  */
2188
2212
  SortBy?: string | undefined;
2189
2213
  /**
2190
2214
  * <p>How <code>SearchResults</code> are ordered. Valid values are <code>Ascending</code> or
2191
- * <code>Descending</code>. The default is <code>Descending</code>.</p>
2215
+ * <code>Descending</code>. The default is <code>Descending</code>.</p>
2192
2216
  * @public
2193
2217
  */
2194
2218
  SortOrder?: SearchSortOrder | undefined;
2195
2219
  /**
2196
2220
  * <p>If more than <code>MaxResults</code> resources match the specified
2197
- * <code>SearchExpression</code>, the response includes a
2198
- * <code>NextToken</code>. The <code>NextToken</code> can be passed to the next
2199
- * <code>SearchRequest</code> to continue retrieving results.</p>
2221
+ * <code>SearchExpression</code>, the response includes a <code>NextToken</code>. The
2222
+ * <code>NextToken</code> can be passed to the next <code>SearchRequest</code> to continue
2223
+ * retrieving results.</p>
2200
2224
  * @public
2201
2225
  */
2202
2226
  NextToken?: string | undefined;
@@ -2206,23 +2230,18 @@ export interface SearchRequest {
2206
2230
  */
2207
2231
  MaxResults?: number | undefined;
2208
2232
  /**
2209
- * <p>
2210
- * A cross account filter option. When the value is <code>"CrossAccount"</code> the
2211
- * search results will only include resources made discoverable to you from other
2212
- * accounts. When the value is <code>"SameAccount"</code> or <code>null</code> the
2213
- * search results will only include resources from your account. Default is
2214
- * <code>null</code>. For more information on searching for resources made
2215
- * discoverable to your account, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-cross-account-discoverability-use.html">
2216
- * Search discoverable resources</a> in the SageMaker Developer Guide.
2217
- * The maximum number of <code>ResourceCatalog</code>s viewable is 1000.
2218
- * </p>
2233
+ * <p> A cross account filter option. When the value is <code>"CrossAccount"</code> the search
2234
+ * results will only include resources made discoverable to you from other accounts. When the
2235
+ * value is <code>"SameAccount"</code> or <code>null</code> the search results will only include
2236
+ * resources from your account. Default is <code>null</code>. For more information on searching
2237
+ * for resources made discoverable to your account, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-cross-account-discoverability-use.html"> Search
2238
+ * discoverable resources</a> in the SageMaker Developer Guide. The maximum number of
2239
+ * <code>ResourceCatalog</code>s viewable is 1000. </p>
2219
2240
  * @public
2220
2241
  */
2221
2242
  CrossAccountFilterOption?: CrossAccountFilterOption | undefined;
2222
2243
  /**
2223
- * <p>
2224
- * Limits the results of your search request to the resources that you can access.
2225
- * </p>
2244
+ * <p> Limits the results of your search request to the resources that you can access. </p>
2226
2245
  * @public
2227
2246
  */
2228
2247
  VisibilityConditions?: VisibilityConditions[] | undefined;
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { StopOptimizationJobRequest } from "../models/models_4";
3
+ import { StopOptimizationJobRequest } from "../models/models_5";
4
4
  import {
5
5
  SageMakerClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -1,7 +1,9 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { StopPipelineExecutionRequest } from "../models/models_4";
4
- import { StopPipelineExecutionResponse } from "../models/models_5";
3
+ import {
4
+ StopPipelineExecutionRequest,
5
+ StopPipelineExecutionResponse,
6
+ } from "../models/models_5";
5
7
  import {
6
8
  SageMakerClientResolvedConfig,
7
9
  ServiceInputTypes,
@@ -828,6 +828,7 @@ export interface TransformResources {
828
828
  InstanceType: TransformInstanceType | undefined;
829
829
  InstanceCount: number | undefined;
830
830
  VolumeKmsKeyId?: string | undefined;
831
+ TransformAmiVersion?: string | undefined;
831
832
  }
832
833
  export interface TransformJobDefinition {
833
834
  MaxConcurrentTransforms?: number | undefined;
@@ -2016,6 +2016,11 @@ export interface RegisterDevicesRequest {
2016
2016
  Devices: Device[] | undefined;
2017
2017
  Tags?: Tag[] | undefined;
2018
2018
  }
2019
+ export declare const Relation: {
2020
+ readonly EQUAL_TO: "EqualTo";
2021
+ readonly GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo";
2022
+ };
2023
+ export type Relation = (typeof Relation)[keyof typeof Relation];
2019
2024
  export interface RemoteDebugConfigForUpdate {
2020
2025
  EnableRemoteDebug?: boolean | undefined;
2021
2026
  }
@@ -2173,9 +2178,14 @@ export interface SearchRecord {
2173
2178
  ModelCard?: ModelCard | undefined;
2174
2179
  Model?: ModelDashboardModel | undefined;
2175
2180
  }
2181
+ export interface TotalHits {
2182
+ Value?: number | undefined;
2183
+ Relation?: Relation | undefined;
2184
+ }
2176
2185
  export interface SearchResponse {
2177
2186
  Results?: SearchRecord[] | undefined;
2178
2187
  NextToken?: string | undefined;
2188
+ TotalHits?: TotalHits | undefined;
2179
2189
  }
2180
2190
  export interface SearchTrainingPlanOfferingsRequest {
2181
2191
  InstanceType: ReservedCapacityInstanceType | undefined;
@@ -2293,13 +2303,6 @@ export interface StopMonitoringScheduleRequest {
2293
2303
  export interface StopNotebookInstanceInput {
2294
2304
  NotebookInstanceName: string | undefined;
2295
2305
  }
2296
- export interface StopOptimizationJobRequest {
2297
- OptimizationJobName: string | undefined;
2298
- }
2299
- export interface StopPipelineExecutionRequest {
2300
- PipelineExecutionArn: string | undefined;
2301
- ClientRequestToken?: string | undefined;
2302
- }
2303
2306
  export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
2304
2307
  export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
2305
2308
  export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
@@ -87,6 +87,13 @@ import {
87
87
  SearchSortOrder,
88
88
  VisibilityConditions,
89
89
  } from "./models_4";
90
+ export interface StopOptimizationJobRequest {
91
+ OptimizationJobName: string | undefined;
92
+ }
93
+ export interface StopPipelineExecutionRequest {
94
+ PipelineExecutionArn: string | undefined;
95
+ ClientRequestToken?: string | undefined;
96
+ }
90
97
  export interface StopPipelineExecutionResponse {
91
98
  PipelineExecutionArn?: string | undefined;
92
99
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
4
- "version": "3.777.0",
4
+ "version": "3.778.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sagemaker",