@aws-sdk/client-sagemaker 3.966.0 → 3.968.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
@@ -10148,8 +10148,8 @@ var UltraServer$ = [3, n0, _USlt,
10148
10148
  ];
10149
10149
  var UltraServerInfo$ = [3, n0, _USI,
10150
10150
  0,
10151
- [_Id],
10152
- [0]
10151
+ [_Id, _T],
10152
+ [0, 0]
10153
10153
  ];
10154
10154
  var UltraServerSummary$ = [3, n0, _USS,
10155
10155
  0,
@@ -9974,8 +9974,8 @@ export var UltraServer$ = [3, n0, _USlt,
9974
9974
  ];
9975
9975
  export var UltraServerInfo$ = [3, n0, _USI,
9976
9976
  0,
9977
- [_Id],
9978
- [0]
9977
+ [_Id, _T],
9978
+ [0, 0]
9979
9979
  ];
9980
9980
  export var UltraServerSummary$ = [3, n0, _USS,
9981
9981
  0,
@@ -2303,6 +2303,7 @@ export interface SageMaker {
2303
2303
  /**
2304
2304
  * @see {@link SearchTrainingPlanOfferingsCommand}
2305
2305
  */
2306
+ searchTrainingPlanOfferings(): Promise<SearchTrainingPlanOfferingsCommandOutput>;
2306
2307
  searchTrainingPlanOfferings(args: SearchTrainingPlanOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<SearchTrainingPlanOfferingsCommandOutput>;
2307
2308
  searchTrainingPlanOfferings(args: SearchTrainingPlanOfferingsCommandInput, cb: (err: any, data?: SearchTrainingPlanOfferingsCommandOutput) => void): void;
2308
2309
  searchTrainingPlanOfferings(args: SearchTrainingPlanOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchTrainingPlanOfferingsCommandOutput) => void): void;
@@ -88,6 +88,7 @@ declare const DescribeClusterNodeCommand_base: {
88
88
  * // DesiredImageId: "STRING_VALUE",
89
89
  * // UltraServerInfo: { // UltraServerInfo
90
90
  * // Id: "STRING_VALUE",
91
+ * // Type: "STRING_VALUE",
91
92
  * // },
92
93
  * // KubernetesConfig: { // ClusterKubernetesConfigNodeDetails
93
94
  * // CurrentLabels: { // ClusterKubernetesLabels
@@ -65,6 +65,7 @@ declare const ListClusterNodesCommand_base: {
65
65
  * // },
66
66
  * // UltraServerInfo: { // UltraServerInfo
67
67
  * // Id: "STRING_VALUE",
68
+ * // Type: "STRING_VALUE",
68
69
  * // },
69
70
  * // PrivateDnsHostname: "STRING_VALUE",
70
71
  * // },
@@ -23,7 +23,7 @@ export interface SearchTrainingPlanOfferingsCommandOutput extends SearchTraining
23
23
  }
24
24
  declare const SearchTrainingPlanOfferingsCommand_base: {
25
25
  new (input: SearchTrainingPlanOfferingsCommandInput): import("@smithy/smithy-client").CommandImpl<SearchTrainingPlanOfferingsCommandInput, SearchTrainingPlanOfferingsCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SearchTrainingPlanOfferingsCommandInput): import("@smithy/smithy-client").CommandImpl<SearchTrainingPlanOfferingsCommandInput, SearchTrainingPlanOfferingsCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [SearchTrainingPlanOfferingsCommandInput]): import("@smithy/smithy-client").CommandImpl<SearchTrainingPlanOfferingsCommandInput, SearchTrainingPlanOfferingsCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
@@ -43,8 +43,8 @@ declare const SearchTrainingPlanOfferingsCommand_base: {
43
43
  * UltraServerCount: Number("int"),
44
44
  * StartTimeAfter: new Date("TIMESTAMP"),
45
45
  * EndTimeBefore: new Date("TIMESTAMP"),
46
- * DurationHours: Number("long"), // required
47
- * TargetResources: [ // SageMakerResourceNames // required
46
+ * DurationHours: Number("long"),
47
+ * TargetResources: [ // SageMakerResourceNames
48
48
  * "training-job" || "hyperpod-cluster" || "endpoint",
49
49
  * ],
50
50
  * };
@@ -347,12 +347,12 @@ export interface ModelPackageContainerDefinition {
347
347
  */
348
348
  ModelDataETag?: string | undefined;
349
349
  /**
350
- * <p> The checkpoint of the model package. </p>
350
+ * <p> Specifies whether the model data is a training checkpoint. </p>
351
351
  * @public
352
352
  */
353
353
  IsCheckpoint?: boolean | undefined;
354
354
  /**
355
- * <p> The base model of the package. </p>
355
+ * <p> Identifies the foundation model that was used as the starting point for model customization. </p>
356
356
  * @public
357
357
  */
358
358
  BaseModel?: BaseModel | undefined;
@@ -3497,7 +3497,7 @@ export interface BatchTransformInput {
3497
3497
  */
3498
3498
  export interface BedrockCustomModelDeploymentMetadata {
3499
3499
  /**
3500
- * <p> The Amazon Resource Name (ARN) of the metadata for the Amazon Bedrock custom model deployment. </p>
3500
+ * <p> The Amazon Resource Name (ARN) for the Amazon Bedrock custom model deployment. </p>
3501
3501
  * @public
3502
3502
  */
3503
3503
  Arn?: string | undefined;
@@ -3508,7 +3508,7 @@ export interface BedrockCustomModelDeploymentMetadata {
3508
3508
  */
3509
3509
  export interface BedrockCustomModelMetadata {
3510
3510
  /**
3511
- * <p> The Amazon Resource Name (ARN) of the Amazon Bedrock custom model metadata. </p>
3511
+ * <p> The Amazon Resource Name (ARN) of the Amazon Bedrock custom model. </p>
3512
3512
  * @public
3513
3513
  */
3514
3514
  Arn?: string | undefined;
@@ -3519,7 +3519,7 @@ export interface BedrockCustomModelMetadata {
3519
3519
  */
3520
3520
  export interface BedrockModelImportMetadata {
3521
3521
  /**
3522
- * <p> The Amazon Resource Name (ARN) of the Amazon Bedrock model import metadata. </p>
3522
+ * <p> The Amazon Resource Name (ARN) of the Amazon Bedrock model import. </p>
3523
3523
  * @public
3524
3524
  */
3525
3525
  Arn?: string | undefined;
@@ -3530,7 +3530,7 @@ export interface BedrockModelImportMetadata {
3530
3530
  */
3531
3531
  export interface BedrockProvisionedModelThroughputMetadata {
3532
3532
  /**
3533
- * <p> The Amazon Resource Name (ARN) of the Amazon Bedrock provisioned model throughput metadata. </p>
3533
+ * <p> The Amazon Resource Name (ARN) of the Amazon Bedrock provisioned model throughput. </p>
3534
3534
  * @public
3535
3535
  */
3536
3536
  Arn?: string | undefined;
@@ -5188,6 +5188,11 @@ export interface UltraServerInfo {
5188
5188
  * @public
5189
5189
  */
5190
5190
  Id?: string | undefined;
5191
+ /**
5192
+ * <p>The type of the UltraServer.</p>
5193
+ * @public
5194
+ */
5195
+ Type?: string | undefined;
5191
5196
  }
5192
5197
  /**
5193
5198
  * <p>Details of an instance (also called a <i>node</i> interchangeably) in a SageMaker HyperPod cluster.</p>
@@ -3685,7 +3685,7 @@ export interface ImportHubContentResponse {
3685
3685
  */
3686
3686
  export interface InferenceComponentMetadata {
3687
3687
  /**
3688
- * <p> The Amazon Resource Name (ARN) of the inference component metadata. </p>
3688
+ * <p> The Amazon Resource Name (ARN) of the inference component. </p>
3689
3689
  * @public
3690
3690
  */
3691
3691
  Arn?: string | undefined;
@@ -4106,22 +4106,22 @@ export interface LineageGroupSummary {
4106
4106
  */
4107
4107
  export interface LineageMetadata {
4108
4108
  /**
4109
- * <p> The Amazon Resource Name (ARN) of the lineage metadata action. </p>
4109
+ * <p> The Amazon Resource Name (ARN) of the lineage action. </p>
4110
4110
  * @public
4111
4111
  */
4112
4112
  ActionArns?: Record<string, string> | undefined;
4113
4113
  /**
4114
- * <p> The Amazon Resource Name (ARN) of the lineage metadata artifact. </p>
4114
+ * <p> The Amazon Resource Name (ARN) of the lineage artifact. </p>
4115
4115
  * @public
4116
4116
  */
4117
4117
  ArtifactArns?: Record<string, string> | undefined;
4118
4118
  /**
4119
- * <p> The Amazon Resource Name (ARN) of the lineage metadata context. </p>
4119
+ * <p> The Amazon Resource Name (ARN) of the lineage context. </p>
4120
4120
  * @public
4121
4121
  */
4122
4122
  ContextArns?: Record<string, string> | undefined;
4123
4123
  /**
4124
- * <p> The lineage metadata associations. </p>
4124
+ * <p> The lineage associations. </p>
4125
4125
  * @public
4126
4126
  */
4127
4127
  Associations?: AssociationInfo[] | undefined;
@@ -3468,12 +3468,12 @@ export interface SearchTrainingPlanOfferingsRequest {
3468
3468
  * <p>The desired duration in hours for the training plan offerings.</p>
3469
3469
  * @public
3470
3470
  */
3471
- DurationHours: number | undefined;
3471
+ DurationHours?: number | undefined;
3472
3472
  /**
3473
3473
  * <p>The target resources (e.g., SageMaker Training Jobs, SageMaker HyperPod, SageMaker Endpoints) to search for in the offerings.</p> <p>Training plans are specific to their target resource.</p> <ul> <li> <p>A training plan designed for SageMaker training jobs can only be used to schedule and run training jobs.</p> </li> <li> <p>A training plan for HyperPod clusters can be used exclusively to provide compute resources to a cluster's instance group.</p> </li> <li> <p>A training plan for SageMaker endpoints can be used exclusively to provide compute resources to SageMaker endpoints for model deployment.</p> </li> </ul>
3474
3474
  * @public
3475
3475
  */
3476
- TargetResources: SageMakerResourceName[] | undefined;
3476
+ TargetResources?: SageMakerResourceName[] | undefined;
3477
3477
  }
3478
3478
  /**
3479
3479
  * <p>Details about a training plan offering.</p> <p>For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see <code> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingPlan.html">CreateTrainingPlan</a> </code>.</p>
@@ -3716,7 +3716,7 @@ export interface StartPipelineExecutionRequest {
3716
3716
  */
3717
3717
  PipelineVersionId?: number | undefined;
3718
3718
  /**
3719
- * <p> The MLflow experiment name of the start execution. </p>
3719
+ * <p> The MLflow experiment name of the pipeline execution. </p>
3720
3720
  * @public
3721
3721
  */
3722
3722
  MlflowExperimentName?: string | undefined;
@@ -5725,6 +5725,7 @@ export interface SageMaker {
5725
5725
  options: __HttpHandlerOptions,
5726
5726
  cb: (err: any, data?: SearchCommandOutput) => void
5727
5727
  ): void;
5728
+ searchTrainingPlanOfferings(): Promise<SearchTrainingPlanOfferingsCommandOutput>;
5728
5729
  searchTrainingPlanOfferings(
5729
5730
  args: SearchTrainingPlanOfferingsCommandInput,
5730
5731
  options?: __HttpHandlerOptions
@@ -27,7 +27,7 @@ declare const SearchTrainingPlanOfferingsCommand_base: {
27
27
  ServiceOutputTypes
28
28
  >;
29
29
  new (
30
- input: SearchTrainingPlanOfferingsCommandInput
30
+ ...[input]: [] | [SearchTrainingPlanOfferingsCommandInput]
31
31
  ): import("@smithy/smithy-client").CommandImpl<
32
32
  SearchTrainingPlanOfferingsCommandInput,
33
33
  SearchTrainingPlanOfferingsCommandOutput,
@@ -1446,6 +1446,7 @@ export interface ClusterKubernetesConfigNodeDetails {
1446
1446
  }
1447
1447
  export interface UltraServerInfo {
1448
1448
  Id?: string | undefined;
1449
+ Type?: string | undefined;
1449
1450
  }
1450
1451
  export interface ClusterNodeDetails {
1451
1452
  InstanceGroupName?: string | undefined;
@@ -986,8 +986,8 @@ export interface SearchTrainingPlanOfferingsRequest {
986
986
  UltraServerCount?: number | undefined;
987
987
  StartTimeAfter?: Date | undefined;
988
988
  EndTimeBefore?: Date | undefined;
989
- DurationHours: number | undefined;
990
- TargetResources: SageMakerResourceName[] | undefined;
989
+ DurationHours?: number | undefined;
990
+ TargetResources?: SageMakerResourceName[] | undefined;
991
991
  }
992
992
  export interface TrainingPlanOffering {
993
993
  TrainingPlanOfferingId: string | undefined;
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.966.0",
4
+ "version": "3.968.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
@@ -23,38 +23,38 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "3.966.0",
27
- "@aws-sdk/credential-provider-node": "3.966.0",
28
- "@aws-sdk/middleware-host-header": "3.965.0",
29
- "@aws-sdk/middleware-logger": "3.965.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.965.0",
31
- "@aws-sdk/middleware-user-agent": "3.966.0",
32
- "@aws-sdk/region-config-resolver": "3.965.0",
33
- "@aws-sdk/types": "3.965.0",
34
- "@aws-sdk/util-endpoints": "3.965.0",
35
- "@aws-sdk/util-user-agent-browser": "3.965.0",
36
- "@aws-sdk/util-user-agent-node": "3.966.0",
26
+ "@aws-sdk/core": "3.968.0",
27
+ "@aws-sdk/credential-provider-node": "3.968.0",
28
+ "@aws-sdk/middleware-host-header": "3.968.0",
29
+ "@aws-sdk/middleware-logger": "3.968.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.968.0",
31
+ "@aws-sdk/middleware-user-agent": "3.968.0",
32
+ "@aws-sdk/region-config-resolver": "3.968.0",
33
+ "@aws-sdk/types": "3.968.0",
34
+ "@aws-sdk/util-endpoints": "3.968.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.968.0",
36
+ "@aws-sdk/util-user-agent-node": "3.968.0",
37
37
  "@smithy/config-resolver": "^4.4.5",
38
- "@smithy/core": "^3.20.1",
38
+ "@smithy/core": "^3.20.3",
39
39
  "@smithy/fetch-http-handler": "^5.3.8",
40
40
  "@smithy/hash-node": "^4.2.7",
41
41
  "@smithy/invalid-dependency": "^4.2.7",
42
42
  "@smithy/middleware-content-length": "^4.2.7",
43
- "@smithy/middleware-endpoint": "^4.4.2",
44
- "@smithy/middleware-retry": "^4.4.18",
43
+ "@smithy/middleware-endpoint": "^4.4.4",
44
+ "@smithy/middleware-retry": "^4.4.20",
45
45
  "@smithy/middleware-serde": "^4.2.8",
46
46
  "@smithy/middleware-stack": "^4.2.7",
47
47
  "@smithy/node-config-provider": "^4.3.7",
48
48
  "@smithy/node-http-handler": "^4.4.7",
49
49
  "@smithy/protocol-http": "^5.3.7",
50
- "@smithy/smithy-client": "^4.10.3",
50
+ "@smithy/smithy-client": "^4.10.5",
51
51
  "@smithy/types": "^4.11.0",
52
52
  "@smithy/url-parser": "^4.2.7",
53
53
  "@smithy/util-base64": "^4.3.0",
54
54
  "@smithy/util-body-length-browser": "^4.2.0",
55
55
  "@smithy/util-body-length-node": "^4.2.1",
56
- "@smithy/util-defaults-mode-browser": "^4.3.17",
57
- "@smithy/util-defaults-mode-node": "^4.2.20",
56
+ "@smithy/util-defaults-mode-browser": "^4.3.19",
57
+ "@smithy/util-defaults-mode-node": "^4.2.22",
58
58
  "@smithy/util-endpoints": "^3.2.7",
59
59
  "@smithy/util-middleware": "^4.2.7",
60
60
  "@smithy/util-retry": "^4.2.7",
@@ -63,15 +63,15 @@
63
63
  "tslib": "^2.6.2"
64
64
  },
65
65
  "devDependencies": {
66
- "@tsconfig/node18": "18.2.4",
67
- "@types/node": "^18.19.69",
66
+ "@tsconfig/node20": "20.1.8",
67
+ "@types/node": "^20.14.8",
68
68
  "concurrently": "7.0.0",
69
69
  "downlevel-dts": "0.10.1",
70
70
  "rimraf": "5.0.10",
71
71
  "typescript": "~5.8.3"
72
72
  },
73
73
  "engines": {
74
- "node": ">=18.0.0"
74
+ "node": ">=20.0.0"
75
75
  },
76
76
  "typesVersions": {
77
77
  "<4.0": {