@aws-sdk/client-sagemaker 3.799.0 → 3.801.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 (48) hide show
  1. package/dist-cjs/index.js +79 -34
  2. package/dist-es/models/models_0.js +4 -10
  3. package/dist-es/models/models_1.js +10 -6
  4. package/dist-es/models/models_2.js +6 -12
  5. package/dist-es/models/models_3.js +12 -8
  6. package/dist-es/models/models_4.js +8 -0
  7. package/dist-es/protocols/Aws_json1_1.js +41 -0
  8. package/dist-types/commands/CreateClusterCommand.d.ts +21 -0
  9. package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +5 -4
  10. package/dist-types/commands/CreateMonitoringScheduleCommand.d.ts +1 -2
  11. package/dist-types/commands/CreateTrainingJobCommand.d.ts +12 -4
  12. package/dist-types/commands/DescribeClusterCommand.d.ts +21 -0
  13. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -0
  14. package/dist-types/commands/DescribeHubContentCommand.d.ts +1 -1
  15. package/dist-types/commands/DescribeHumanTaskUiCommand.d.ts +1 -2
  16. package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -0
  17. package/dist-types/commands/ListComputeQuotasCommand.d.ts +1 -1
  18. package/dist-types/commands/ListContextsCommand.d.ts +1 -1
  19. package/dist-types/commands/StopInferenceRecommendationsJobCommand.d.ts +1 -1
  20. package/dist-types/commands/StopLabelingJobCommand.d.ts +1 -1
  21. package/dist-types/commands/StopMlflowTrackingServerCommand.d.ts +1 -1
  22. package/dist-types/commands/StopMonitoringScheduleCommand.d.ts +1 -1
  23. package/dist-types/commands/StopNotebookInstanceCommand.d.ts +1 -1
  24. package/dist-types/commands/UpdateClusterCommand.d.ts +21 -0
  25. package/dist-types/commands/UpdateClusterSoftwareCommand.d.ts +23 -0
  26. package/dist-types/models/models_0.d.ts +114 -263
  27. package/dist-types/models/models_1.d.ts +264 -249
  28. package/dist-types/models/models_2.d.ts +283 -191
  29. package/dist-types/models/models_3.d.ts +195 -160
  30. package/dist-types/models/models_4.d.ts +161 -64
  31. package/dist-types/models/models_5.d.ts +85 -4
  32. package/dist-types/ts3.4/commands/CreateMonitoringScheduleCommand.d.ts +4 -2
  33. package/dist-types/ts3.4/commands/DescribeHubContentCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/DescribeHumanTaskUiCommand.d.ts +4 -2
  35. package/dist-types/ts3.4/commands/ListComputeQuotasCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/ListContextsCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/StopInferenceRecommendationsJobCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/StopLabelingJobCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/StopMlflowTrackingServerCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/StopMonitoringScheduleCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/StopNotebookInstanceCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/models/models_0.d.ts +30 -46
  43. package/dist-types/ts3.4/models/models_1.d.ts +50 -45
  44. package/dist-types/ts3.4/models/models_2.d.ts +44 -53
  45. package/dist-types/ts3.4/models/models_3.d.ts +55 -49
  46. package/dist-types/ts3.4/models/models_4.d.ts +49 -23
  47. package/dist-types/ts3.4/models/models_5.d.ts +28 -2
  48. package/package.json +1 -1
package/dist-cjs/index.js CHANGED
@@ -492,6 +492,7 @@ __export(index_exports, {
492
492
  MonitoringProblemType: () => MonitoringProblemType,
493
493
  MonitoringScheduleSortKey: () => MonitoringScheduleSortKey,
494
494
  MonitoringType: () => MonitoringType,
495
+ NodeUnavailabilityType: () => NodeUnavailabilityType,
495
496
  NotebookInstanceAcceleratorType: () => NotebookInstanceAcceleratorType,
496
497
  NotebookInstanceLifecycleConfigSortKey: () => NotebookInstanceLifecycleConfigSortKey,
497
498
  NotebookInstanceLifecycleConfigSortOrder: () => NotebookInstanceLifecycleConfigSortOrder,
@@ -2060,6 +2061,10 @@ var DataSourceName = {
2060
2061
  SalesforceGenie: "SalesforceGenie",
2061
2062
  Snowflake: "Snowflake"
2062
2063
  };
2064
+ var NodeUnavailabilityType = {
2065
+ CAPACITY_PERCENTAGE: "CAPACITY_PERCENTAGE",
2066
+ INSTANCE_COUNT: "INSTANCE_COUNT"
2067
+ };
2063
2068
  var CaptureMode = {
2064
2069
  INPUT: "Input",
2065
2070
  INPUT_AND_OUTPUT: "InputAndOutput",
@@ -2447,6 +2452,9 @@ var ModelCacheSetting = {
2447
2452
  DISABLED: "Disabled",
2448
2453
  ENABLED: "Enabled"
2449
2454
  };
2455
+
2456
+ // src/models/models_1.ts
2457
+
2450
2458
  var ContentClassifier = {
2451
2459
  FREE_OF_ADULT_CONTENT: "FreeOfAdultContent",
2452
2460
  FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation"
@@ -2457,9 +2465,6 @@ var HyperParameterScalingType = {
2457
2465
  LOGARITHMIC: "Logarithmic",
2458
2466
  REVERSE_LOGARITHMIC: "ReverseLogarithmic"
2459
2467
  };
2460
-
2461
- // src/models/models_1.ts
2462
-
2463
2468
  var ParameterType = {
2464
2469
  CATEGORICAL: "Categorical",
2465
2470
  CONTINUOUS: "Continuous",
@@ -2973,12 +2978,6 @@ var MonitoringProblemType = {
2973
2978
  MULTICLASS_CLASSIFICATION: "MulticlassClassification",
2974
2979
  REGRESSION: "Regression"
2975
2980
  };
2976
- var MonitoringType = {
2977
- DATA_QUALITY: "DataQuality",
2978
- MODEL_BIAS: "ModelBias",
2979
- MODEL_EXPLAINABILITY: "ModelExplainability",
2980
- MODEL_QUALITY: "ModelQuality"
2981
- };
2982
2981
  var CreateModelCardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
2983
2982
  ...obj,
2984
2983
  ...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
@@ -2994,6 +2993,12 @@ var CreateModelPackageInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
2994
2993
 
2995
2994
  // src/models/models_2.ts
2996
2995
 
2996
+ var MonitoringType = {
2997
+ DATA_QUALITY: "DataQuality",
2998
+ MODEL_BIAS: "ModelBias",
2999
+ MODEL_EXPLAINABILITY: "ModelExplainability",
3000
+ MODEL_QUALITY: "ModelQuality"
3001
+ };
2997
3002
  var NotebookInstanceAcceleratorType = {
2998
3003
  ML_EIA1_LARGE: "ml.eia1.large",
2999
3004
  ML_EIA1_MEDIUM: "ml.eia1.medium",
@@ -3248,18 +3253,6 @@ var HubStatus = {
3248
3253
  UPDATE_FAILED: "UpdateFailed",
3249
3254
  UPDATING: "Updating"
3250
3255
  };
3251
- var HubContentStatus = {
3252
- AVAILABLE: "Available",
3253
- DELETE_FAILED: "DeleteFailed",
3254
- DELETING: "Deleting",
3255
- IMPORTING: "Importing",
3256
- IMPORT_FAILED: "ImportFailed"
3257
- };
3258
- var HubContentSupportStatus = {
3259
- DEPRECATED: "Deprecated",
3260
- RESTRICTED: "Restricted",
3261
- SUPPORTED: "Supported"
3262
- };
3263
3256
  var OidcConfigFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3264
3257
  ...obj,
3265
3258
  ...obj.ClientSecret && { ClientSecret: import_smithy_client.SENSITIVE_STRING }
@@ -11487,6 +11480,11 @@ var de_Alarm = /* @__PURE__ */ __name((output, context) => {
11487
11480
  AlarmName: import_smithy_client.expectString
11488
11481
  });
11489
11482
  }, "de_Alarm");
11483
+ var de_AlarmDetails = /* @__PURE__ */ __name((output, context) => {
11484
+ return (0, import_smithy_client.take)(output, {
11485
+ AlarmName: import_smithy_client.expectString
11486
+ });
11487
+ }, "de_AlarmDetails");
11490
11488
  var de_AlarmList = /* @__PURE__ */ __name((output, context) => {
11491
11489
  const retVal = (output || []).filter((e) => e != null).map((entry) => {
11492
11490
  return de_Alarm(entry, context);
@@ -12006,6 +12004,12 @@ var de_AutoParameters = /* @__PURE__ */ __name((output, context) => {
12006
12004
  });
12007
12005
  return retVal;
12008
12006
  }, "de_AutoParameters");
12007
+ var de_AutoRollbackAlarms = /* @__PURE__ */ __name((output, context) => {
12008
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
12009
+ return de_AlarmDetails(entry, context);
12010
+ });
12011
+ return retVal;
12012
+ }, "de_AutoRollbackAlarms");
12009
12013
  var de_AutoRollbackConfig = /* @__PURE__ */ __name((output, context) => {
12010
12014
  return (0, import_smithy_client.take)(output, {
12011
12015
  Alarms: /* @__PURE__ */ __name((_) => de_AlarmList(_, context), "Alarms")
@@ -12167,6 +12171,12 @@ var de_CapacitySize = /* @__PURE__ */ __name((output, context) => {
12167
12171
  Value: import_smithy_client.expectInt32
12168
12172
  });
12169
12173
  }, "de_CapacitySize");
12174
+ var de_CapacitySizeConfig = /* @__PURE__ */ __name((output, context) => {
12175
+ return (0, import_smithy_client.take)(output, {
12176
+ Type: import_smithy_client.expectString,
12177
+ Value: import_smithy_client.expectInt32
12178
+ });
12179
+ }, "de_CapacitySizeConfig");
12170
12180
  var de_CaptureContentTypeHeader = /* @__PURE__ */ __name((output, context) => {
12171
12181
  return (0, import_smithy_client.take)(output, {
12172
12182
  CsvContentTypes: /* @__PURE__ */ __name((_) => de_CsvContentTypes(_, context), "CsvContentTypes"),
@@ -12347,6 +12357,7 @@ var de_ClusterInstanceGroupDetails = /* @__PURE__ */ __name((output, context) =>
12347
12357
  LifeCycleConfig: /* @__PURE__ */ __name((_) => de_ClusterLifeCycleConfig(_, context), "LifeCycleConfig"),
12348
12358
  OnStartDeepHealthChecks: /* @__PURE__ */ __name((_) => de_OnStartDeepHealthChecks(_, context), "OnStartDeepHealthChecks"),
12349
12359
  OverrideVpcConfig: /* @__PURE__ */ __name((_) => de_VpcConfig(_, context), "OverrideVpcConfig"),
12360
+ ScheduledUpdateConfig: /* @__PURE__ */ __name((_) => de_ScheduledUpdateConfig(_, context), "ScheduledUpdateConfig"),
12350
12361
  Status: import_smithy_client.expectString,
12351
12362
  TargetCount: import_smithy_client.expectInt32,
12352
12363
  ThreadsPerCore: import_smithy_client.expectInt32,
@@ -12399,6 +12410,7 @@ var de_ClusterNodeDetails = /* @__PURE__ */ __name((output, context) => {
12399
12410
  InstanceStatus: /* @__PURE__ */ __name((_) => de_ClusterInstanceStatusDetails(_, context), "InstanceStatus"),
12400
12411
  InstanceStorageConfigs: /* @__PURE__ */ __name((_) => de_ClusterInstanceStorageConfigs(_, context), "InstanceStorageConfigs"),
12401
12412
  InstanceType: import_smithy_client.expectString,
12413
+ LastSoftwareUpdateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastSoftwareUpdateTime"),
12402
12414
  LaunchTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LaunchTime"),
12403
12415
  LifeCycleConfig: /* @__PURE__ */ __name((_) => de_ClusterLifeCycleConfig(_, context), "LifeCycleConfig"),
12404
12416
  OverrideVpcConfig: /* @__PURE__ */ __name((_) => de_VpcConfig(_, context), "OverrideVpcConfig"),
@@ -12427,6 +12439,7 @@ var de_ClusterNodeSummary = /* @__PURE__ */ __name((output, context) => {
12427
12439
  InstanceId: import_smithy_client.expectString,
12428
12440
  InstanceStatus: /* @__PURE__ */ __name((_) => de_ClusterInstanceStatusDetails(_, context), "InstanceStatus"),
12429
12441
  InstanceType: import_smithy_client.expectString,
12442
+ LastSoftwareUpdateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastSoftwareUpdateTime"),
12430
12443
  LaunchTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LaunchTime")
12431
12444
  });
12432
12445
  }, "de_ClusterNodeSummary");
@@ -13388,6 +13401,13 @@ var de_DeploymentConfig = /* @__PURE__ */ __name((output, context) => {
13388
13401
  RollingUpdatePolicy: /* @__PURE__ */ __name((_) => de_RollingUpdatePolicy(_, context), "RollingUpdatePolicy")
13389
13402
  });
13390
13403
  }, "de_DeploymentConfig");
13404
+ var de_DeploymentConfiguration = /* @__PURE__ */ __name((output, context) => {
13405
+ return (0, import_smithy_client.take)(output, {
13406
+ AutoRollbackConfiguration: /* @__PURE__ */ __name((_) => de_AutoRollbackAlarms(_, context), "AutoRollbackConfiguration"),
13407
+ RollingUpdatePolicy: /* @__PURE__ */ __name((_) => de_RollingDeploymentPolicy(_, context), "RollingUpdatePolicy"),
13408
+ WaitIntervalInSeconds: import_smithy_client.expectInt32
13409
+ });
13410
+ }, "de_DeploymentConfiguration");
13391
13411
  var de_DeploymentRecommendation = /* @__PURE__ */ __name((output, context) => {
13392
13412
  return (0, import_smithy_client.take)(output, {
13393
13413
  RealTimeInferenceRecommendations: /* @__PURE__ */ __name((_) => de_RealTimeInferenceRecommendations(_, context), "RealTimeInferenceRecommendations"),
@@ -18871,6 +18891,12 @@ var de_RetryStrategy = /* @__PURE__ */ __name((output, context) => {
18871
18891
  MaximumRetryAttempts: import_smithy_client.expectInt32
18872
18892
  });
18873
18893
  }, "de_RetryStrategy");
18894
+ var de_RollingDeploymentPolicy = /* @__PURE__ */ __name((output, context) => {
18895
+ return (0, import_smithy_client.take)(output, {
18896
+ MaximumBatchSize: /* @__PURE__ */ __name((_) => de_CapacitySizeConfig(_, context), "MaximumBatchSize"),
18897
+ RollbackMaximumBatchSize: /* @__PURE__ */ __name((_) => de_CapacitySizeConfig(_, context), "RollbackMaximumBatchSize")
18898
+ });
18899
+ }, "de_RollingDeploymentPolicy");
18874
18900
  var de_RollingUpdatePolicy = /* @__PURE__ */ __name((output, context) => {
18875
18901
  return (0, import_smithy_client.take)(output, {
18876
18902
  MaximumBatchSize: /* @__PURE__ */ __name((_) => de_CapacitySize(_, context), "MaximumBatchSize"),
@@ -18988,6 +19014,12 @@ var de_ScheduleConfig = /* @__PURE__ */ __name((output, context) => {
18988
19014
  ScheduleExpression: import_smithy_client.expectString
18989
19015
  });
18990
19016
  }, "de_ScheduleConfig");
19017
+ var de_ScheduledUpdateConfig = /* @__PURE__ */ __name((output, context) => {
19018
+ return (0, import_smithy_client.take)(output, {
19019
+ DeploymentConfig: /* @__PURE__ */ __name((_) => de_DeploymentConfiguration(_, context), "DeploymentConfig"),
19020
+ ScheduleExpression: import_smithy_client.expectString
19021
+ });
19022
+ }, "de_ScheduledUpdateConfig");
18991
19023
  var de_SchedulerConfig = /* @__PURE__ */ __name((output, context) => {
18992
19024
  return (0, import_smithy_client.take)(output, {
18993
19025
  FairShare: import_smithy_client.expectString,
@@ -22871,6 +22903,18 @@ var DescribeModelBiasJobDefinitionCommand = class extends import_smithy_client.C
22871
22903
 
22872
22904
  // src/models/models_3.ts
22873
22905
 
22906
+ var HubContentStatus = {
22907
+ AVAILABLE: "Available",
22908
+ DELETE_FAILED: "DeleteFailed",
22909
+ DELETING: "Deleting",
22910
+ IMPORTING: "Importing",
22911
+ IMPORT_FAILED: "ImportFailed"
22912
+ };
22913
+ var HubContentSupportStatus = {
22914
+ DEPRECATED: "Deprecated",
22915
+ RESTRICTED: "Restricted",
22916
+ SUPPORTED: "Supported"
22917
+ };
22874
22918
  var HumanTaskUiStatus = {
22875
22919
  ACTIVE: "Active",
22876
22920
  DELETING: "Deleting"
@@ -23329,14 +23373,6 @@ var SortQuotaBy = {
23329
23373
  NAME: "Name",
23330
23374
  STATUS: "Status"
23331
23375
  };
23332
- var SortContextsBy = {
23333
- CREATION_TIME: "CreationTime",
23334
- NAME: "Name"
23335
- };
23336
- var MonitoringJobDefinitionSortKey = {
23337
- CREATION_TIME: "CreationTime",
23338
- NAME: "Name"
23339
- };
23340
23376
  var DescribeModelCardResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
23341
23377
  ...obj,
23342
23378
  ...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
@@ -25210,6 +25246,14 @@ var RetryPipelineExecutionCommand = class extends import_smithy_client.Command.c
25210
25246
 
25211
25247
  // src/models/models_4.ts
25212
25248
 
25249
+ var SortContextsBy = {
25250
+ CREATION_TIME: "CreationTime",
25251
+ NAME: "Name"
25252
+ };
25253
+ var MonitoringJobDefinitionSortKey = {
25254
+ CREATION_TIME: "CreationTime",
25255
+ NAME: "Name"
25256
+ };
25213
25257
  var ListDeviceFleetsSortBy = {
25214
25258
  CreationTime: "CREATION_TIME",
25215
25259
  LastModifiedTime: "LAST_MODIFIED_TIME",
@@ -28296,6 +28340,7 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
28296
28340
  BooleanOperator,
28297
28341
  CandidateSortBy,
28298
28342
  DataSourceName,
28343
+ NodeUnavailabilityType,
28299
28344
  CaptureMode,
28300
28345
  CaptureStatus,
28301
28346
  ClarifyFeatureType,
@@ -28376,10 +28421,10 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
28376
28421
  ModelCardStatus,
28377
28422
  SkipModelValidation,
28378
28423
  MonitoringProblemType,
28379
- MonitoringType,
28380
28424
  CreateModelCardRequestFilterSensitiveLog,
28381
28425
  ModelPackageModelCardFilterSensitiveLog,
28382
28426
  CreateModelPackageInputFilterSensitiveLog,
28427
+ MonitoringType,
28383
28428
  NotebookInstanceAcceleratorType,
28384
28429
  DirectInternetAccess,
28385
28430
  RootAccess,
@@ -28417,10 +28462,10 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
28417
28462
  OfflineStoreStatusValue,
28418
28463
  FlowDefinitionStatus,
28419
28464
  HubStatus,
28420
- HubContentStatus,
28421
- HubContentSupportStatus,
28422
28465
  OidcConfigFilterSensitiveLog,
28423
28466
  CreateWorkforceRequestFilterSensitiveLog,
28467
+ HubContentStatus,
28468
+ HubContentSupportStatus,
28424
28469
  HumanTaskUiStatus,
28425
28470
  TrainingJobStatus,
28426
28471
  HyperParameterTuningJobStatus,
@@ -28487,10 +28532,10 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
28487
28532
  SortClusterSchedulerConfigBy,
28488
28533
  ListCompilationJobsSortBy,
28489
28534
  SortQuotaBy,
28490
- SortContextsBy,
28491
- MonitoringJobDefinitionSortKey,
28492
28535
  DescribeModelCardResponseFilterSensitiveLog,
28493
28536
  DescribeModelPackageOutputFilterSensitiveLog,
28537
+ SortContextsBy,
28538
+ MonitoringJobDefinitionSortKey,
28494
28539
  ListDeviceFleetsSortBy,
28495
28540
  ListEdgeDeploymentPlansSortBy,
28496
28541
  ListEdgePackagingJobsSortBy,
@@ -1056,6 +1056,10 @@ export const DataSourceName = {
1056
1056
  SalesforceGenie: "SalesforceGenie",
1057
1057
  Snowflake: "Snowflake",
1058
1058
  };
1059
+ export const NodeUnavailabilityType = {
1060
+ CAPACITY_PERCENTAGE: "CAPACITY_PERCENTAGE",
1061
+ INSTANCE_COUNT: "INSTANCE_COUNT",
1062
+ };
1059
1063
  export const CaptureMode = {
1060
1064
  INPUT: "Input",
1061
1065
  INPUT_AND_OUTPUT: "InputAndOutput",
@@ -1439,13 +1443,3 @@ export const ModelCacheSetting = {
1439
1443
  DISABLED: "Disabled",
1440
1444
  ENABLED: "Enabled",
1441
1445
  };
1442
- export const ContentClassifier = {
1443
- FREE_OF_ADULT_CONTENT: "FreeOfAdultContent",
1444
- FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation",
1445
- };
1446
- export const HyperParameterScalingType = {
1447
- AUTO: "Auto",
1448
- LINEAR: "Linear",
1449
- LOGARITHMIC: "Logarithmic",
1450
- REVERSE_LOGARITHMIC: "ReverseLogarithmic",
1451
- };
@@ -1,5 +1,15 @@
1
1
  import { SENSITIVE_STRING, } from "@smithy/smithy-client";
2
2
  import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
3
+ export const ContentClassifier = {
4
+ FREE_OF_ADULT_CONTENT: "FreeOfAdultContent",
5
+ FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation",
6
+ };
7
+ export const HyperParameterScalingType = {
8
+ AUTO: "Auto",
9
+ LINEAR: "Linear",
10
+ LOGARITHMIC: "Logarithmic",
11
+ REVERSE_LOGARITHMIC: "ReverseLogarithmic",
12
+ };
3
13
  export const ParameterType = {
4
14
  CATEGORICAL: "Categorical",
5
15
  CONTINUOUS: "Continuous",
@@ -508,12 +518,6 @@ export const MonitoringProblemType = {
508
518
  MULTICLASS_CLASSIFICATION: "MulticlassClassification",
509
519
  REGRESSION: "Regression",
510
520
  };
511
- export const MonitoringType = {
512
- DATA_QUALITY: "DataQuality",
513
- MODEL_BIAS: "ModelBias",
514
- MODEL_EXPLAINABILITY: "ModelExplainability",
515
- MODEL_QUALITY: "ModelQuality",
516
- };
517
521
  export const CreateModelCardRequestFilterSensitiveLog = (obj) => ({
518
522
  ...obj,
519
523
  ...(obj.Content && { Content: SENSITIVE_STRING }),
@@ -1,4 +1,10 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ export const MonitoringType = {
3
+ DATA_QUALITY: "DataQuality",
4
+ MODEL_BIAS: "ModelBias",
5
+ MODEL_EXPLAINABILITY: "ModelExplainability",
6
+ MODEL_QUALITY: "ModelQuality",
7
+ };
2
8
  export const NotebookInstanceAcceleratorType = {
3
9
  ML_EIA1_LARGE: "ml.eia1.large",
4
10
  ML_EIA1_MEDIUM: "ml.eia1.medium",
@@ -259,18 +265,6 @@ export const HubStatus = {
259
265
  UPDATE_FAILED: "UpdateFailed",
260
266
  UPDATING: "Updating",
261
267
  };
262
- export const HubContentStatus = {
263
- AVAILABLE: "Available",
264
- DELETE_FAILED: "DeleteFailed",
265
- DELETING: "Deleting",
266
- IMPORTING: "Importing",
267
- IMPORT_FAILED: "ImportFailed",
268
- };
269
- export const HubContentSupportStatus = {
270
- DEPRECATED: "Deprecated",
271
- RESTRICTED: "Restricted",
272
- SUPPORTED: "Supported",
273
- };
274
268
  export const OidcConfigFilterSensitiveLog = (obj) => ({
275
269
  ...obj,
276
270
  ...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
@@ -1,5 +1,17 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { ModelPackageModelCardFilterSensitiveLog, } from "./models_1";
3
+ export const HubContentStatus = {
4
+ AVAILABLE: "Available",
5
+ DELETE_FAILED: "DeleteFailed",
6
+ DELETING: "Deleting",
7
+ IMPORTING: "Importing",
8
+ IMPORT_FAILED: "ImportFailed",
9
+ };
10
+ export const HubContentSupportStatus = {
11
+ DEPRECATED: "Deprecated",
12
+ RESTRICTED: "Restricted",
13
+ SUPPORTED: "Supported",
14
+ };
3
15
  export const HumanTaskUiStatus = {
4
16
  ACTIVE: "Active",
5
17
  DELETING: "Deleting",
@@ -461,14 +473,6 @@ export const SortQuotaBy = {
461
473
  NAME: "Name",
462
474
  STATUS: "Status",
463
475
  };
464
- export const SortContextsBy = {
465
- CREATION_TIME: "CreationTime",
466
- NAME: "Name",
467
- };
468
- export const MonitoringJobDefinitionSortKey = {
469
- CREATION_TIME: "CreationTime",
470
- NAME: "Name",
471
- };
472
476
  export const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
473
477
  ...obj,
474
478
  ...(obj.Content && { Content: SENSITIVE_STRING }),
@@ -1,5 +1,13 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { ModelPackageModelCardFilterSensitiveLog, } from "./models_1";
3
+ export const SortContextsBy = {
4
+ CREATION_TIME: "CreationTime",
5
+ NAME: "Name",
6
+ };
7
+ export const MonitoringJobDefinitionSortKey = {
8
+ CREATION_TIME: "CreationTime",
9
+ NAME: "Name",
10
+ };
3
11
  export const ListDeviceFleetsSortBy = {
4
12
  CreationTime: "CREATION_TIME",
5
13
  LastModifiedTime: "LAST_MODIFIED_TIME",
@@ -8238,6 +8238,11 @@ const de_Alarm = (output, context) => {
8238
8238
  AlarmName: __expectString,
8239
8239
  });
8240
8240
  };
8241
+ const de_AlarmDetails = (output, context) => {
8242
+ return take(output, {
8243
+ AlarmName: __expectString,
8244
+ });
8245
+ };
8241
8246
  const de_AlarmList = (output, context) => {
8242
8247
  const retVal = (output || [])
8243
8248
  .filter((e) => e != null)
@@ -8793,6 +8798,14 @@ const de_AutoParameters = (output, context) => {
8793
8798
  });
8794
8799
  return retVal;
8795
8800
  };
8801
+ const de_AutoRollbackAlarms = (output, context) => {
8802
+ const retVal = (output || [])
8803
+ .filter((e) => e != null)
8804
+ .map((entry) => {
8805
+ return de_AlarmDetails(entry, context);
8806
+ });
8807
+ return retVal;
8808
+ };
8796
8809
  const de_AutoRollbackConfig = (output, context) => {
8797
8810
  return take(output, {
8798
8811
  Alarms: (_) => de_AlarmList(_, context),
@@ -8955,6 +8968,12 @@ const de_CapacitySize = (output, context) => {
8955
8968
  Value: __expectInt32,
8956
8969
  });
8957
8970
  };
8971
+ const de_CapacitySizeConfig = (output, context) => {
8972
+ return take(output, {
8973
+ Type: __expectString,
8974
+ Value: __expectInt32,
8975
+ });
8976
+ };
8958
8977
  const de_CaptureContentTypeHeader = (output, context) => {
8959
8978
  return take(output, {
8960
8979
  CsvContentTypes: (_) => de_CsvContentTypes(_, context),
@@ -9153,6 +9172,7 @@ const de_ClusterInstanceGroupDetails = (output, context) => {
9153
9172
  LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
9154
9173
  OnStartDeepHealthChecks: (_) => de_OnStartDeepHealthChecks(_, context),
9155
9174
  OverrideVpcConfig: (_) => de_VpcConfig(_, context),
9175
+ ScheduledUpdateConfig: (_) => de_ScheduledUpdateConfig(_, context),
9156
9176
  Status: __expectString,
9157
9177
  TargetCount: __expectInt32,
9158
9178
  ThreadsPerCore: __expectInt32,
@@ -9209,6 +9229,7 @@ const de_ClusterNodeDetails = (output, context) => {
9209
9229
  InstanceStatus: (_) => de_ClusterInstanceStatusDetails(_, context),
9210
9230
  InstanceStorageConfigs: (_) => de_ClusterInstanceStorageConfigs(_, context),
9211
9231
  InstanceType: __expectString,
9232
+ LastSoftwareUpdateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9212
9233
  LaunchTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9213
9234
  LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
9214
9235
  OverrideVpcConfig: (_) => de_VpcConfig(_, context),
@@ -9241,6 +9262,7 @@ const de_ClusterNodeSummary = (output, context) => {
9241
9262
  InstanceId: __expectString,
9242
9263
  InstanceStatus: (_) => de_ClusterInstanceStatusDetails(_, context),
9243
9264
  InstanceType: __expectString,
9265
+ LastSoftwareUpdateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9244
9266
  LaunchTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9245
9267
  });
9246
9268
  };
@@ -10257,6 +10279,13 @@ const de_DeploymentConfig = (output, context) => {
10257
10279
  RollingUpdatePolicy: (_) => de_RollingUpdatePolicy(_, context),
10258
10280
  });
10259
10281
  };
10282
+ const de_DeploymentConfiguration = (output, context) => {
10283
+ return take(output, {
10284
+ AutoRollbackConfiguration: (_) => de_AutoRollbackAlarms(_, context),
10285
+ RollingUpdatePolicy: (_) => de_RollingDeploymentPolicy(_, context),
10286
+ WaitIntervalInSeconds: __expectInt32,
10287
+ });
10288
+ };
10260
10289
  const de_DeploymentRecommendation = (output, context) => {
10261
10290
  return take(output, {
10262
10291
  RealTimeInferenceRecommendations: (_) => de_RealTimeInferenceRecommendations(_, context),
@@ -16033,6 +16062,12 @@ const de_RetryStrategy = (output, context) => {
16033
16062
  MaximumRetryAttempts: __expectInt32,
16034
16063
  });
16035
16064
  };
16065
+ const de_RollingDeploymentPolicy = (output, context) => {
16066
+ return take(output, {
16067
+ MaximumBatchSize: (_) => de_CapacitySizeConfig(_, context),
16068
+ RollbackMaximumBatchSize: (_) => de_CapacitySizeConfig(_, context),
16069
+ });
16070
+ };
16036
16071
  const de_RollingUpdatePolicy = (output, context) => {
16037
16072
  return take(output, {
16038
16073
  MaximumBatchSize: (_) => de_CapacitySize(_, context),
@@ -16156,6 +16191,12 @@ const de_ScheduleConfig = (output, context) => {
16156
16191
  ScheduleExpression: __expectString,
16157
16192
  });
16158
16193
  };
16194
+ const de_ScheduledUpdateConfig = (output, context) => {
16195
+ return take(output, {
16196
+ DeploymentConfig: (_) => de_DeploymentConfiguration(_, context),
16197
+ ScheduleExpression: __expectString,
16198
+ });
16199
+ };
16159
16200
  const de_SchedulerConfig = (output, context) => {
16160
16201
  return take(output, {
16161
16202
  FairShare: __expectString,
@@ -69,6 +69,27 @@ declare const CreateClusterCommand_base: {
69
69
  * "STRING_VALUE",
70
70
  * ],
71
71
  * },
72
+ * ScheduledUpdateConfig: { // ScheduledUpdateConfig
73
+ * ScheduleExpression: "STRING_VALUE", // required
74
+ * DeploymentConfig: { // DeploymentConfiguration
75
+ * RollingUpdatePolicy: { // RollingDeploymentPolicy
76
+ * MaximumBatchSize: { // CapacitySizeConfig
77
+ * Type: "INSTANCE_COUNT" || "CAPACITY_PERCENTAGE", // required
78
+ * Value: Number("int"), // required
79
+ * },
80
+ * RollbackMaximumBatchSize: {
81
+ * Type: "INSTANCE_COUNT" || "CAPACITY_PERCENTAGE", // required
82
+ * Value: Number("int"), // required
83
+ * },
84
+ * },
85
+ * WaitIntervalInSeconds: Number("int"),
86
+ * AutoRollbackConfiguration: [ // AutoRollbackAlarms
87
+ * { // AlarmDetails
88
+ * AlarmName: "STRING_VALUE", // required
89
+ * },
90
+ * ],
91
+ * },
92
+ * },
72
93
  * },
73
94
  * ],
74
95
  * VpcConfig: {
@@ -37,10 +37,11 @@ declare const CreateHyperParameterTuningJobCommand_base: {
37
37
  * Amazon SageMaker Studio. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/experiments-view-compare.html#experiments-view">View
38
38
  * Experiments, Trials, and Trial Components</a>.</p>
39
39
  * <important>
40
- * <p>Do not include any security-sensitive information including account access IDs,
41
- * secrets or tokens in any hyperparameter field. If the use of security-sensitive
42
- * credentials are detected, SageMaker will reject your training job request and return an
43
- * exception error.</p>
40
+ * <p>Do not include any security-sensitive information including account access IDs, secrets,
41
+ * or tokens in any hyperparameter fields. As part of the shared responsibility model,
42
+ * you are responsible for any potential exposure, unauthorized access, or
43
+ * compromise of your sensitive data if caused by any security-sensitive information included
44
+ * in the request hyperparameter variable or plain text fields..</p>
44
45
  * </important>
45
46
  * @example
46
47
  * Use a bare-bones client and the command you need to make an API call.
@@ -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 { CreateMonitoringScheduleRequest } from "../models/models_1";
4
- import { CreateMonitoringScheduleResponse } from "../models/models_2";
3
+ import { CreateMonitoringScheduleRequest, CreateMonitoringScheduleResponse } from "../models/models_2";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public
@@ -49,10 +49,11 @@ declare const CreateTrainingJobCommand_base: {
49
49
  * be tuned to optimize this learning process. For a list of hyperparameters for
50
50
  * each training algorithm provided by SageMaker, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/algos.html">Algorithms</a>. </p>
51
51
  * <important>
52
- * <p>Do not include any security-sensitive information including account access
53
- * IDs, secrets or tokens in any hyperparameter field. If the use of
54
- * security-sensitive credentials are detected, SageMaker will reject your training
55
- * job request and return an exception error.</p>
52
+ * <p>Do not include any security-sensitive information including account access IDs, secrets,
53
+ * or tokens in any hyperparameter fields. As part of the shared responsibility
54
+ * model, you are responsible for any potential exposure, unauthorized access, or compromise of
55
+ * your sensitive data if caused by security-sensitive information included in the
56
+ * request hyperparameter variable or plain text fields.</p>
56
57
  * </important>
57
58
  * </li>
58
59
  * <li>
@@ -97,6 +98,13 @@ declare const CreateTrainingJobCommand_base: {
97
98
  * <p>
98
99
  * <code>Environment</code> - The environment variables to set in the Docker
99
100
  * container.</p>
101
+ * <important>
102
+ * <p>Do not include any security-sensitive information including account access IDs, secrets,
103
+ * or tokens in any environment fields. As part of the shared responsibility model, you are
104
+ * responsible for any potential exposure, unauthorized access, or compromise of your sensitive
105
+ * data if caused by security-sensitive information included in the request environment variable
106
+ * or plain text fields.</p>
107
+ * </important>
100
108
  * </li>
101
109
  * <li>
102
110
  * <p>
@@ -78,6 +78,27 @@ declare const DescribeClusterCommand_base: {
78
78
  * // "STRING_VALUE",
79
79
  * // ],
80
80
  * // },
81
+ * // ScheduledUpdateConfig: { // ScheduledUpdateConfig
82
+ * // ScheduleExpression: "STRING_VALUE", // required
83
+ * // DeploymentConfig: { // DeploymentConfiguration
84
+ * // RollingUpdatePolicy: { // RollingDeploymentPolicy
85
+ * // MaximumBatchSize: { // CapacitySizeConfig
86
+ * // Type: "INSTANCE_COUNT" || "CAPACITY_PERCENTAGE", // required
87
+ * // Value: Number("int"), // required
88
+ * // },
89
+ * // RollbackMaximumBatchSize: {
90
+ * // Type: "INSTANCE_COUNT" || "CAPACITY_PERCENTAGE", // required
91
+ * // Value: Number("int"), // required
92
+ * // },
93
+ * // },
94
+ * // WaitIntervalInSeconds: Number("int"),
95
+ * // AutoRollbackConfiguration: [ // AutoRollbackAlarms
96
+ * // { // AlarmDetails
97
+ * // AlarmName: "STRING_VALUE", // required
98
+ * // },
99
+ * // ],
100
+ * // },
101
+ * // },
81
102
  * // },
82
103
  * // ],
83
104
  * // VpcConfig: {
@@ -51,6 +51,7 @@ declare const DescribeClusterNodeCommand_base: {
51
51
  * // },
52
52
  * // InstanceType: "ml.p4d.24xlarge" || "ml.p4de.24xlarge" || "ml.p5.48xlarge" || "ml.trn1.32xlarge" || "ml.trn1n.32xlarge" || "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.c5.large" || "ml.c5.xlarge" || "ml.c5.2xlarge" || "ml.c5.4xlarge" || "ml.c5.9xlarge" || "ml.c5.12xlarge" || "ml.c5.18xlarge" || "ml.c5.24xlarge" || "ml.c5n.large" || "ml.c5n.2xlarge" || "ml.c5n.4xlarge" || "ml.c5n.9xlarge" || "ml.c5n.18xlarge" || "ml.m5.large" || "ml.m5.xlarge" || "ml.m5.2xlarge" || "ml.m5.4xlarge" || "ml.m5.8xlarge" || "ml.m5.12xlarge" || "ml.m5.16xlarge" || "ml.m5.24xlarge" || "ml.t3.medium" || "ml.t3.large" || "ml.t3.xlarge" || "ml.t3.2xlarge" || "ml.g6.xlarge" || "ml.g6.2xlarge" || "ml.g6.4xlarge" || "ml.g6.8xlarge" || "ml.g6.16xlarge" || "ml.g6.12xlarge" || "ml.g6.24xlarge" || "ml.g6.48xlarge" || "ml.gr6.4xlarge" || "ml.gr6.8xlarge" || "ml.g6e.xlarge" || "ml.g6e.2xlarge" || "ml.g6e.4xlarge" || "ml.g6e.8xlarge" || "ml.g6e.16xlarge" || "ml.g6e.12xlarge" || "ml.g6e.24xlarge" || "ml.g6e.48xlarge" || "ml.p5e.48xlarge" || "ml.p5en.48xlarge" || "ml.trn2.48xlarge" || "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.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.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.i3en.large" || "ml.i3en.xlarge" || "ml.i3en.2xlarge" || "ml.i3en.3xlarge" || "ml.i3en.6xlarge" || "ml.i3en.12xlarge" || "ml.i3en.24xlarge" || "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.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",
53
53
  * // LaunchTime: new Date("TIMESTAMP"),
54
+ * // LastSoftwareUpdateTime: new Date("TIMESTAMP"),
54
55
  * // LifeCycleConfig: { // ClusterLifeCycleConfig
55
56
  * // SourceS3Uri: "STRING_VALUE", // required
56
57
  * // OnCreate: "STRING_VALUE", // required
@@ -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 { DescribeHubContentRequest, DescribeHubContentResponse } from "../models/models_2";
3
+ import { DescribeHubContentRequest, DescribeHubContentResponse } from "../models/models_3";
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 { DescribeHumanTaskUiRequest } from "../models/models_2";
4
- import { DescribeHumanTaskUiResponse } from "../models/models_3";
3
+ import { DescribeHumanTaskUiRequest, DescribeHumanTaskUiResponse } from "../models/models_3";
5
4
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
6
5
  /**
7
6
  * @public