@aws-sdk/client-sagemaker 3.588.0 → 3.590.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 +17 -8
- package/dist-es/models/models_2.js +0 -7
- package/dist-es/models/models_3.js +7 -0
- package/dist-es/protocols/Aws_json1_1.js +9 -0
- package/dist-types/SageMakerClient.d.ts +4 -4
- package/dist-types/commands/CreateSpaceCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +7 -1
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +33 -75
- package/dist-types/models/models_1.d.ts +76 -11
- package/dist-types/models/models_2.d.ts +13 -18
- package/dist-types/models/models_3.d.ts +16 -89
- package/dist-types/models/models_4.d.ts +90 -2
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SageMakerClient.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSpaceCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListNotebookInstancesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +7 -5
- package/dist-types/ts3.4/models/models_1.d.ts +8 -4
- package/dist-types/ts3.4/models/models_2.d.ts +3 -9
- package/dist-types/ts3.4/models/models_3.d.ts +9 -17
- package/dist-types/ts3.4/models/models_4.d.ts +18 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +4 -4
package/dist-cjs/index.js
CHANGED
|
@@ -2921,13 +2921,6 @@ var PipelineExecutionStatus = {
|
|
|
2921
2921
|
STOPPING: "Stopping",
|
|
2922
2922
|
SUCCEEDED: "Succeeded"
|
|
2923
2923
|
};
|
|
2924
|
-
var ProcessingJobStatus = {
|
|
2925
|
-
COMPLETED: "Completed",
|
|
2926
|
-
FAILED: "Failed",
|
|
2927
|
-
IN_PROGRESS: "InProgress",
|
|
2928
|
-
STOPPED: "Stopped",
|
|
2929
|
-
STOPPING: "Stopping"
|
|
2930
|
-
};
|
|
2931
2924
|
var OidcConfigFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2932
2925
|
...obj,
|
|
2933
2926
|
...obj.ClientSecret && { ClientSecret: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -11140,6 +11133,12 @@ var de_ClusterInstanceGroupDetailsList = /* @__PURE__ */ __name((output, context
|
|
|
11140
11133
|
});
|
|
11141
11134
|
return retVal;
|
|
11142
11135
|
}, "de_ClusterInstanceGroupDetailsList");
|
|
11136
|
+
var de_ClusterInstancePlacement = /* @__PURE__ */ __name((output, context) => {
|
|
11137
|
+
return (0, import_smithy_client.take)(output, {
|
|
11138
|
+
AvailabilityZone: import_smithy_client.expectString,
|
|
11139
|
+
AvailabilityZoneId: import_smithy_client.expectString
|
|
11140
|
+
});
|
|
11141
|
+
}, "de_ClusterInstancePlacement");
|
|
11143
11142
|
var de_ClusterInstanceStatusDetails = /* @__PURE__ */ __name((output, context) => {
|
|
11144
11143
|
return (0, import_smithy_client.take)(output, {
|
|
11145
11144
|
Message: import_smithy_client.expectString,
|
|
@@ -11160,6 +11159,9 @@ var de_ClusterNodeDetails = /* @__PURE__ */ __name((output, context) => {
|
|
|
11160
11159
|
InstanceType: import_smithy_client.expectString,
|
|
11161
11160
|
LaunchTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
11162
11161
|
LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
|
|
11162
|
+
Placement: (_) => de_ClusterInstancePlacement(_, context),
|
|
11163
|
+
PrivateDnsHostname: import_smithy_client.expectString,
|
|
11164
|
+
PrivatePrimaryIp: import_smithy_client.expectString,
|
|
11163
11165
|
ThreadsPerCore: import_smithy_client.expectInt32
|
|
11164
11166
|
});
|
|
11165
11167
|
}, "de_ClusterNodeDetails");
|
|
@@ -25013,6 +25015,13 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
25013
25015
|
}, "waitUntilTransformJobCompletedOrStopped");
|
|
25014
25016
|
|
|
25015
25017
|
// src/models/models_3.ts
|
|
25018
|
+
var ProcessingJobStatus = {
|
|
25019
|
+
COMPLETED: "Completed",
|
|
25020
|
+
FAILED: "Failed",
|
|
25021
|
+
IN_PROGRESS: "InProgress",
|
|
25022
|
+
STOPPED: "Stopped",
|
|
25023
|
+
STOPPING: "Stopping"
|
|
25024
|
+
};
|
|
25016
25025
|
var ProjectStatus = {
|
|
25017
25026
|
CREATE_COMPLETED: "CreateCompleted",
|
|
25018
25027
|
CREATE_FAILED: "CreateFailed",
|
|
@@ -26002,11 +26011,11 @@ var NotebookInstanceSortOrder = {
|
|
|
26002
26011
|
NotebookInstanceStatus,
|
|
26003
26012
|
PipelineStatus,
|
|
26004
26013
|
PipelineExecutionStatus,
|
|
26005
|
-
ProcessingJobStatus,
|
|
26006
26014
|
OidcConfigFilterSensitiveLog,
|
|
26007
26015
|
CreateWorkforceRequestFilterSensitiveLog,
|
|
26008
26016
|
DescribeModelCardResponseFilterSensitiveLog,
|
|
26009
26017
|
DescribeModelPackageOutputFilterSensitiveLog,
|
|
26018
|
+
ProcessingJobStatus,
|
|
26010
26019
|
ProjectStatus,
|
|
26011
26020
|
SpaceStatus,
|
|
26012
26021
|
ProfilingStatus,
|
|
@@ -292,13 +292,6 @@ export const PipelineExecutionStatus = {
|
|
|
292
292
|
STOPPING: "Stopping",
|
|
293
293
|
SUCCEEDED: "Succeeded",
|
|
294
294
|
};
|
|
295
|
-
export const ProcessingJobStatus = {
|
|
296
|
-
COMPLETED: "Completed",
|
|
297
|
-
FAILED: "Failed",
|
|
298
|
-
IN_PROGRESS: "InProgress",
|
|
299
|
-
STOPPED: "Stopped",
|
|
300
|
-
STOPPING: "Stopping",
|
|
301
|
-
};
|
|
302
295
|
export const OidcConfigFilterSensitiveLog = (obj) => ({
|
|
303
296
|
...obj,
|
|
304
297
|
...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
export const ProcessingJobStatus = {
|
|
2
|
+
COMPLETED: "Completed",
|
|
3
|
+
FAILED: "Failed",
|
|
4
|
+
IN_PROGRESS: "InProgress",
|
|
5
|
+
STOPPED: "Stopped",
|
|
6
|
+
STOPPING: "Stopping",
|
|
7
|
+
};
|
|
1
8
|
export const ProjectStatus = {
|
|
2
9
|
CREATE_COMPLETED: "CreateCompleted",
|
|
3
10
|
CREATE_FAILED: "CreateFailed",
|
|
@@ -8265,6 +8265,12 @@ const de_ClusterInstanceGroupDetailsList = (output, context) => {
|
|
|
8265
8265
|
});
|
|
8266
8266
|
return retVal;
|
|
8267
8267
|
};
|
|
8268
|
+
const de_ClusterInstancePlacement = (output, context) => {
|
|
8269
|
+
return take(output, {
|
|
8270
|
+
AvailabilityZone: __expectString,
|
|
8271
|
+
AvailabilityZoneId: __expectString,
|
|
8272
|
+
});
|
|
8273
|
+
};
|
|
8268
8274
|
const de_ClusterInstanceStatusDetails = (output, context) => {
|
|
8269
8275
|
return take(output, {
|
|
8270
8276
|
Message: __expectString,
|
|
@@ -8285,6 +8291,9 @@ const de_ClusterNodeDetails = (output, context) => {
|
|
|
8285
8291
|
InstanceType: __expectString,
|
|
8286
8292
|
LaunchTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
8287
8293
|
LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
|
|
8294
|
+
Placement: (_) => de_ClusterInstancePlacement(_, context),
|
|
8295
|
+
PrivateDnsHostname: __expectString,
|
|
8296
|
+
PrivatePrimaryIp: __expectString,
|
|
8288
8297
|
ThreadsPerCore: __expectInt32,
|
|
8289
8298
|
});
|
|
8290
8299
|
};
|
|
@@ -410,15 +410,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
410
410
|
* Enables FIPS compatible endpoints.
|
|
411
411
|
*/
|
|
412
412
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
413
|
+
/**
|
|
414
|
+
* The AWS region to which this client will send requests
|
|
415
|
+
*/
|
|
416
|
+
region?: string | __Provider<string>;
|
|
413
417
|
/**
|
|
414
418
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
415
419
|
* @internal
|
|
416
420
|
*/
|
|
417
421
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
418
|
-
/**
|
|
419
|
-
* The AWS region to which this client will send requests
|
|
420
|
-
*/
|
|
421
|
-
region?: string | __Provider<string>;
|
|
422
422
|
/**
|
|
423
423
|
* Default credentials provider; Not available in browser runtime.
|
|
424
424
|
* @deprecated
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { CreateSpaceRequest
|
|
3
|
+
import { CreateSpaceRequest } from "../models/models_1";
|
|
4
|
+
import { CreateSpaceResponse } from "../models/models_2";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -26,7 +26,7 @@ declare const DescribeClusterNodeCommand_base: {
|
|
|
26
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
|
-
* <p>Retrieves information of
|
|
29
|
+
* <p>Retrieves information of a node (also called a <i>instance</i>
|
|
30
30
|
* interchangeably) of a SageMaker HyperPod cluster.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -55,6 +55,12 @@ declare const DescribeClusterNodeCommand_base: {
|
|
|
55
55
|
* // OnCreate: "STRING_VALUE", // required
|
|
56
56
|
* // },
|
|
57
57
|
* // ThreadsPerCore: Number("int"),
|
|
58
|
+
* // PrivatePrimaryIp: "STRING_VALUE",
|
|
59
|
+
* // PrivateDnsHostname: "STRING_VALUE",
|
|
60
|
+
* // Placement: { // ClusterInstancePlacement
|
|
61
|
+
* // AvailabilityZone: "STRING_VALUE",
|
|
62
|
+
* // AvailabilityZoneId: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
58
64
|
* // },
|
|
59
65
|
* // };
|
|
60
66
|
*
|
|
@@ -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 { ListNotebookInstancesInput } from "../models/
|
|
4
|
-
import { ListNotebookInstancesOutput } from "../models/models_4";
|
|
3
|
+
import { ListNotebookInstancesInput, ListNotebookInstancesOutput } from "../models/models_4";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -8389,6 +8389,24 @@ export interface ClusterInstanceGroupSpecification {
|
|
|
8389
8389
|
*/
|
|
8390
8390
|
ThreadsPerCore?: number;
|
|
8391
8391
|
}
|
|
8392
|
+
/**
|
|
8393
|
+
* <p>Specifies the placement details for the node in the SageMaker HyperPod cluster, including the
|
|
8394
|
+
* Availability Zone and the unique identifier (ID) of the Availability Zone.</p>
|
|
8395
|
+
* @public
|
|
8396
|
+
*/
|
|
8397
|
+
export interface ClusterInstancePlacement {
|
|
8398
|
+
/**
|
|
8399
|
+
* <p>The Availability Zone where the node in the SageMaker HyperPod cluster is launched.</p>
|
|
8400
|
+
* @public
|
|
8401
|
+
*/
|
|
8402
|
+
AvailabilityZone?: string;
|
|
8403
|
+
/**
|
|
8404
|
+
* <p>The unique identifier (ID) of the Availability Zone where the node in the SageMaker HyperPod cluster
|
|
8405
|
+
* is launched.</p>
|
|
8406
|
+
* @public
|
|
8407
|
+
*/
|
|
8408
|
+
AvailabilityZoneId?: string;
|
|
8409
|
+
}
|
|
8392
8410
|
/**
|
|
8393
8411
|
* @public
|
|
8394
8412
|
* @enum
|
|
@@ -8462,6 +8480,21 @@ export interface ClusterNodeDetails {
|
|
|
8462
8480
|
* @public
|
|
8463
8481
|
*/
|
|
8464
8482
|
ThreadsPerCore?: number;
|
|
8483
|
+
/**
|
|
8484
|
+
* <p>The private primary IP address of the SageMaker HyperPod cluster node.</p>
|
|
8485
|
+
* @public
|
|
8486
|
+
*/
|
|
8487
|
+
PrivatePrimaryIp?: string;
|
|
8488
|
+
/**
|
|
8489
|
+
* <p>The private DNS hostname of the SageMaker HyperPod cluster node.</p>
|
|
8490
|
+
* @public
|
|
8491
|
+
*/
|
|
8492
|
+
PrivateDnsHostname?: string;
|
|
8493
|
+
/**
|
|
8494
|
+
* <p>The placement details of the SageMaker HyperPod cluster node.</p>
|
|
8495
|
+
* @public
|
|
8496
|
+
*/
|
|
8497
|
+
Placement?: ClusterInstancePlacement;
|
|
8465
8498
|
}
|
|
8466
8499
|
/**
|
|
8467
8500
|
* <p>Lists a summary of the properties of an instance (also called a
|
|
@@ -10656,78 +10689,3 @@ export interface InputConfig {
|
|
|
10656
10689
|
*/
|
|
10657
10690
|
FrameworkVersion?: string;
|
|
10658
10691
|
}
|
|
10659
|
-
/**
|
|
10660
|
-
* <p>Contains information about a target platform that you want your model to run on, such
|
|
10661
|
-
* as OS, architecture, and accelerators. It is an alternative of
|
|
10662
|
-
* <code>TargetDevice</code>.</p>
|
|
10663
|
-
* @public
|
|
10664
|
-
*/
|
|
10665
|
-
export interface TargetPlatform {
|
|
10666
|
-
/**
|
|
10667
|
-
* <p>Specifies a target platform OS.</p>
|
|
10668
|
-
* <ul>
|
|
10669
|
-
* <li>
|
|
10670
|
-
* <p>
|
|
10671
|
-
* <code>LINUX</code>: Linux-based operating systems.</p>
|
|
10672
|
-
* </li>
|
|
10673
|
-
* <li>
|
|
10674
|
-
* <p>
|
|
10675
|
-
* <code>ANDROID</code>: Android operating systems. Android API level can be
|
|
10676
|
-
* specified using the <code>ANDROID_PLATFORM</code> compiler option. For example,
|
|
10677
|
-
* <code>"CompilerOptions": \{'ANDROID_PLATFORM': 28\}</code>
|
|
10678
|
-
* </p>
|
|
10679
|
-
* </li>
|
|
10680
|
-
* </ul>
|
|
10681
|
-
* @public
|
|
10682
|
-
*/
|
|
10683
|
-
Os: TargetPlatformOs | undefined;
|
|
10684
|
-
/**
|
|
10685
|
-
* <p>Specifies a target platform architecture.</p>
|
|
10686
|
-
* <ul>
|
|
10687
|
-
* <li>
|
|
10688
|
-
* <p>
|
|
10689
|
-
* <code>X86_64</code>: 64-bit version of the x86 instruction set.</p>
|
|
10690
|
-
* </li>
|
|
10691
|
-
* <li>
|
|
10692
|
-
* <p>
|
|
10693
|
-
* <code>X86</code>: 32-bit version of the x86 instruction set.</p>
|
|
10694
|
-
* </li>
|
|
10695
|
-
* <li>
|
|
10696
|
-
* <p>
|
|
10697
|
-
* <code>ARM64</code>: ARMv8 64-bit CPU.</p>
|
|
10698
|
-
* </li>
|
|
10699
|
-
* <li>
|
|
10700
|
-
* <p>
|
|
10701
|
-
* <code>ARM_EABIHF</code>: ARMv7 32-bit, Hard Float.</p>
|
|
10702
|
-
* </li>
|
|
10703
|
-
* <li>
|
|
10704
|
-
* <p>
|
|
10705
|
-
* <code>ARM_EABI</code>: ARMv7 32-bit, Soft Float. Used by Android 32-bit ARM
|
|
10706
|
-
* platform.</p>
|
|
10707
|
-
* </li>
|
|
10708
|
-
* </ul>
|
|
10709
|
-
* @public
|
|
10710
|
-
*/
|
|
10711
|
-
Arch: TargetPlatformArch | undefined;
|
|
10712
|
-
/**
|
|
10713
|
-
* <p>Specifies a target platform accelerator (optional).</p>
|
|
10714
|
-
* <ul>
|
|
10715
|
-
* <li>
|
|
10716
|
-
* <p>
|
|
10717
|
-
* <code>NVIDIA</code>: Nvidia graphics processing unit. It also requires
|
|
10718
|
-
* <code>gpu-code</code>, <code>trt-ver</code>, <code>cuda-ver</code> compiler
|
|
10719
|
-
* options</p>
|
|
10720
|
-
* </li>
|
|
10721
|
-
* <li>
|
|
10722
|
-
* <p>
|
|
10723
|
-
* <code>MALI</code>: ARM Mali graphics processor</p>
|
|
10724
|
-
* </li>
|
|
10725
|
-
* <li>
|
|
10726
|
-
* <p>
|
|
10727
|
-
* <code>INTEL_GRAPHICS</code>: Integrated Intel graphics</p>
|
|
10728
|
-
* </li>
|
|
10729
|
-
* </ul>
|
|
10730
|
-
* @public
|
|
10731
|
-
*/
|
|
10732
|
-
Accelerator?: TargetPlatformAccelerator;
|
|
10733
|
-
}
|
|
@@ -1,5 +1,80 @@
|
|
|
1
1
|
import { LazyJsonString as __LazyJsonString } from "@smithy/smithy-client";
|
|
2
|
-
import { AdditionalInferenceSpecificationDefinition, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeEditorAppSettings, CodeRepository, CollectionConfig, CollectionType, ContainerDefinition, ContentClassifier, ContextSource, ContinuousParameterRange, ConvergenceDetected, CustomImage, FeatureStatus, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, InputConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TargetDevice,
|
|
2
|
+
import { AdditionalInferenceSpecificationDefinition, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoParameter, AutoRollbackConfig, Autotune, AwsManagedHumanLoopRequestSource, BatchTransformInput, BestObjectiveNotImproving, Bias, BlueGreenUpdatePolicy, CanvasAppSettings, CapacitySize, CaptureContentTypeHeader, CaptureOption, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, ClarifyExplainerConfig, CodeEditorAppSettings, CodeRepository, CollectionConfig, CollectionType, ContainerDefinition, ContentClassifier, ContextSource, ContinuousParameterRange, ConvergenceDetected, CustomImage, FeatureStatus, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, InputConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TargetDevice, TargetPlatformAccelerator, TargetPlatformArch, TargetPlatformOs, TrainingInputMode, TrainingInstanceType, TransformJobDefinition, VpcConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Contains information about a target platform that you want your model to run on, such
|
|
5
|
+
* as OS, architecture, and accelerators. It is an alternative of
|
|
6
|
+
* <code>TargetDevice</code>.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface TargetPlatform {
|
|
10
|
+
/**
|
|
11
|
+
* <p>Specifies a target platform OS.</p>
|
|
12
|
+
* <ul>
|
|
13
|
+
* <li>
|
|
14
|
+
* <p>
|
|
15
|
+
* <code>LINUX</code>: Linux-based operating systems.</p>
|
|
16
|
+
* </li>
|
|
17
|
+
* <li>
|
|
18
|
+
* <p>
|
|
19
|
+
* <code>ANDROID</code>: Android operating systems. Android API level can be
|
|
20
|
+
* specified using the <code>ANDROID_PLATFORM</code> compiler option. For example,
|
|
21
|
+
* <code>"CompilerOptions": \{'ANDROID_PLATFORM': 28\}</code>
|
|
22
|
+
* </p>
|
|
23
|
+
* </li>
|
|
24
|
+
* </ul>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
Os: TargetPlatformOs | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>Specifies a target platform architecture.</p>
|
|
30
|
+
* <ul>
|
|
31
|
+
* <li>
|
|
32
|
+
* <p>
|
|
33
|
+
* <code>X86_64</code>: 64-bit version of the x86 instruction set.</p>
|
|
34
|
+
* </li>
|
|
35
|
+
* <li>
|
|
36
|
+
* <p>
|
|
37
|
+
* <code>X86</code>: 32-bit version of the x86 instruction set.</p>
|
|
38
|
+
* </li>
|
|
39
|
+
* <li>
|
|
40
|
+
* <p>
|
|
41
|
+
* <code>ARM64</code>: ARMv8 64-bit CPU.</p>
|
|
42
|
+
* </li>
|
|
43
|
+
* <li>
|
|
44
|
+
* <p>
|
|
45
|
+
* <code>ARM_EABIHF</code>: ARMv7 32-bit, Hard Float.</p>
|
|
46
|
+
* </li>
|
|
47
|
+
* <li>
|
|
48
|
+
* <p>
|
|
49
|
+
* <code>ARM_EABI</code>: ARMv7 32-bit, Soft Float. Used by Android 32-bit ARM
|
|
50
|
+
* platform.</p>
|
|
51
|
+
* </li>
|
|
52
|
+
* </ul>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
Arch: TargetPlatformArch | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>Specifies a target platform accelerator (optional).</p>
|
|
58
|
+
* <ul>
|
|
59
|
+
* <li>
|
|
60
|
+
* <p>
|
|
61
|
+
* <code>NVIDIA</code>: Nvidia graphics processing unit. It also requires
|
|
62
|
+
* <code>gpu-code</code>, <code>trt-ver</code>, <code>cuda-ver</code> compiler
|
|
63
|
+
* options</p>
|
|
64
|
+
* </li>
|
|
65
|
+
* <li>
|
|
66
|
+
* <p>
|
|
67
|
+
* <code>MALI</code>: ARM Mali graphics processor</p>
|
|
68
|
+
* </li>
|
|
69
|
+
* <li>
|
|
70
|
+
* <p>
|
|
71
|
+
* <code>INTEL_GRAPHICS</code>: Integrated Intel graphics</p>
|
|
72
|
+
* </li>
|
|
73
|
+
* </ul>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
Accelerator?: TargetPlatformAccelerator;
|
|
77
|
+
}
|
|
3
78
|
/**
|
|
4
79
|
* <p>Contains information about the output location for the compiled model and the target
|
|
5
80
|
* device that the model runs on. <code>TargetDevice</code> and <code>TargetPlatform</code>
|
|
@@ -11214,16 +11289,6 @@ export interface CreateSpaceRequest {
|
|
|
11214
11289
|
*/
|
|
11215
11290
|
SpaceDisplayName?: string;
|
|
11216
11291
|
}
|
|
11217
|
-
/**
|
|
11218
|
-
* @public
|
|
11219
|
-
*/
|
|
11220
|
-
export interface CreateSpaceResponse {
|
|
11221
|
-
/**
|
|
11222
|
-
* <p>The space's Amazon Resource Name (ARN).</p>
|
|
11223
|
-
* @public
|
|
11224
|
-
*/
|
|
11225
|
-
SpaceArn?: string;
|
|
11226
|
-
}
|
|
11227
11292
|
/**
|
|
11228
11293
|
* @internal
|
|
11229
11294
|
*/
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CaptureStatus, Channel, CheckpointConfig, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterStatus, CodeEditorAppImageConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProblemType, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DirectInternetAccess, DomainSettings, DriftCheckBaselines, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NeoVpcConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, ParallelismConfiguration, ProcessingInstanceType, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, ThroughputMode, UserSettings, VendorGuidance } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CreateSpaceResponse {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The space's Amazon Resource Name (ARN).</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
SpaceArn?: string;
|
|
12
|
+
}
|
|
3
13
|
/**
|
|
4
14
|
* @public
|
|
5
15
|
* @enum
|
|
@@ -3143,12 +3153,12 @@ export interface DescribeClusterResponse {
|
|
|
3143
3153
|
*/
|
|
3144
3154
|
export interface DescribeClusterNodeRequest {
|
|
3145
3155
|
/**
|
|
3146
|
-
* <p>The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the
|
|
3156
|
+
* <p>The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the node is.</p>
|
|
3147
3157
|
* @public
|
|
3148
3158
|
*/
|
|
3149
3159
|
ClusterName: string | undefined;
|
|
3150
3160
|
/**
|
|
3151
|
-
* <p>The ID of the
|
|
3161
|
+
* <p>The ID of the SageMaker HyperPod cluster node.</p>
|
|
3152
3162
|
* @public
|
|
3153
3163
|
*/
|
|
3154
3164
|
NodeId: string | undefined;
|
|
@@ -3158,7 +3168,7 @@ export interface DescribeClusterNodeRequest {
|
|
|
3158
3168
|
*/
|
|
3159
3169
|
export interface DescribeClusterNodeResponse {
|
|
3160
3170
|
/**
|
|
3161
|
-
* <p>The details of the
|
|
3171
|
+
* <p>The details of the SageMaker HyperPod cluster node.</p>
|
|
3162
3172
|
* @public
|
|
3163
3173
|
*/
|
|
3164
3174
|
NodeDetails: ClusterNodeDetails | undefined;
|
|
@@ -8510,21 +8520,6 @@ export interface DescribeProcessingJobRequest {
|
|
|
8510
8520
|
*/
|
|
8511
8521
|
ProcessingJobName: string | undefined;
|
|
8512
8522
|
}
|
|
8513
|
-
/**
|
|
8514
|
-
* @public
|
|
8515
|
-
* @enum
|
|
8516
|
-
*/
|
|
8517
|
-
export declare const ProcessingJobStatus: {
|
|
8518
|
-
readonly COMPLETED: "Completed";
|
|
8519
|
-
readonly FAILED: "Failed";
|
|
8520
|
-
readonly IN_PROGRESS: "InProgress";
|
|
8521
|
-
readonly STOPPED: "Stopped";
|
|
8522
|
-
readonly STOPPING: "Stopping";
|
|
8523
|
-
};
|
|
8524
|
-
/**
|
|
8525
|
-
* @public
|
|
8526
|
-
*/
|
|
8527
|
-
export type ProcessingJobStatus = (typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
|
|
8528
8523
|
/**
|
|
8529
8524
|
* @internal
|
|
8530
8525
|
*/
|
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClusterNodeSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContextSummary, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
2
|
import { DockerSettings, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardStatus, MonitoringScheduleConfig, MonitoringType, NetworkConfig, OfflineStoreConfig, OnlineStoreConfig, OwnershipSettings, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, RecommendationJobType, ResourceLimits, RetryStrategy, ServiceCatalogProvisioningDetails, SpaceSettings, SpaceSharingSettings, UserSettings } from "./models_1";
|
|
3
|
-
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary,
|
|
3
|
+
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportJobStatus, ModelClientConfig, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ScheduleStatus, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* @enum
|
|
7
|
+
*/
|
|
8
|
+
export declare const ProcessingJobStatus: {
|
|
9
|
+
readonly COMPLETED: "Completed";
|
|
10
|
+
readonly FAILED: "Failed";
|
|
11
|
+
readonly IN_PROGRESS: "InProgress";
|
|
12
|
+
readonly STOPPED: "Stopped";
|
|
13
|
+
readonly STOPPING: "Stopping";
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export type ProcessingJobStatus = (typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
|
|
4
19
|
/**
|
|
5
20
|
* @public
|
|
6
21
|
*/
|
|
@@ -9642,91 +9657,3 @@ export declare const NotebookInstanceSortOrder: {
|
|
|
9642
9657
|
* @public
|
|
9643
9658
|
*/
|
|
9644
9659
|
export type NotebookInstanceSortOrder = (typeof NotebookInstanceSortOrder)[keyof typeof NotebookInstanceSortOrder];
|
|
9645
|
-
/**
|
|
9646
|
-
* @public
|
|
9647
|
-
*/
|
|
9648
|
-
export interface ListNotebookInstancesInput {
|
|
9649
|
-
/**
|
|
9650
|
-
* <p> If the previous call to the <code>ListNotebookInstances</code> is truncated, the
|
|
9651
|
-
* response includes a <code>NextToken</code>. You can use this token in your subsequent
|
|
9652
|
-
* <code>ListNotebookInstances</code> request to fetch the next set of notebook
|
|
9653
|
-
* instances. </p>
|
|
9654
|
-
* <note>
|
|
9655
|
-
* <p>You might specify a filter or a sort order in your request. When response is
|
|
9656
|
-
* truncated, you must use the same values for the filer and sort order in the next
|
|
9657
|
-
* request. </p>
|
|
9658
|
-
* </note>
|
|
9659
|
-
* @public
|
|
9660
|
-
*/
|
|
9661
|
-
NextToken?: string;
|
|
9662
|
-
/**
|
|
9663
|
-
* <p>The maximum number of notebook instances to return.</p>
|
|
9664
|
-
* @public
|
|
9665
|
-
*/
|
|
9666
|
-
MaxResults?: number;
|
|
9667
|
-
/**
|
|
9668
|
-
* <p>The field to sort results by. The default is <code>Name</code>.</p>
|
|
9669
|
-
* @public
|
|
9670
|
-
*/
|
|
9671
|
-
SortBy?: NotebookInstanceSortKey;
|
|
9672
|
-
/**
|
|
9673
|
-
* <p>The sort order for results. </p>
|
|
9674
|
-
* @public
|
|
9675
|
-
*/
|
|
9676
|
-
SortOrder?: NotebookInstanceSortOrder;
|
|
9677
|
-
/**
|
|
9678
|
-
* <p>A string in the notebook instances' name. This filter returns only notebook
|
|
9679
|
-
* instances whose name contains the specified string.</p>
|
|
9680
|
-
* @public
|
|
9681
|
-
*/
|
|
9682
|
-
NameContains?: string;
|
|
9683
|
-
/**
|
|
9684
|
-
* <p>A filter that returns only notebook instances that were created before the
|
|
9685
|
-
* specified time (timestamp). </p>
|
|
9686
|
-
* @public
|
|
9687
|
-
*/
|
|
9688
|
-
CreationTimeBefore?: Date;
|
|
9689
|
-
/**
|
|
9690
|
-
* <p>A filter that returns only notebook instances that were created after the specified
|
|
9691
|
-
* time (timestamp).</p>
|
|
9692
|
-
* @public
|
|
9693
|
-
*/
|
|
9694
|
-
CreationTimeAfter?: Date;
|
|
9695
|
-
/**
|
|
9696
|
-
* <p>A filter that returns only notebook instances that were modified before the
|
|
9697
|
-
* specified time (timestamp).</p>
|
|
9698
|
-
* @public
|
|
9699
|
-
*/
|
|
9700
|
-
LastModifiedTimeBefore?: Date;
|
|
9701
|
-
/**
|
|
9702
|
-
* <p>A filter that returns only notebook instances that were modified after the
|
|
9703
|
-
* specified time (timestamp).</p>
|
|
9704
|
-
* @public
|
|
9705
|
-
*/
|
|
9706
|
-
LastModifiedTimeAfter?: Date;
|
|
9707
|
-
/**
|
|
9708
|
-
* <p>A filter that returns only notebook instances with the specified status.</p>
|
|
9709
|
-
* @public
|
|
9710
|
-
*/
|
|
9711
|
-
StatusEquals?: NotebookInstanceStatus;
|
|
9712
|
-
/**
|
|
9713
|
-
* <p>A string in the name of a notebook instances lifecycle configuration associated with
|
|
9714
|
-
* this notebook instance. This filter returns only notebook instances associated with a
|
|
9715
|
-
* lifecycle configuration with a name that contains the specified string.</p>
|
|
9716
|
-
* @public
|
|
9717
|
-
*/
|
|
9718
|
-
NotebookInstanceLifecycleConfigNameContains?: string;
|
|
9719
|
-
/**
|
|
9720
|
-
* <p>A string in the name or URL of a Git repository associated with this notebook
|
|
9721
|
-
* instance. This filter returns only notebook instances associated with a git repository
|
|
9722
|
-
* with a name that contains the specified string.</p>
|
|
9723
|
-
* @public
|
|
9724
|
-
*/
|
|
9725
|
-
DefaultCodeRepositoryContains?: string;
|
|
9726
|
-
/**
|
|
9727
|
-
* <p>A filter that returns only notebook instances with associated with the specified git
|
|
9728
|
-
* repository.</p>
|
|
9729
|
-
* @public
|
|
9730
|
-
*/
|
|
9731
|
-
AdditionalCodeRepositoryEquals?: string;
|
|
9732
|
-
}
|
|
@@ -1,7 +1,95 @@
|
|
|
1
1
|
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AutoMLJobStepMetadata, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ClusterInstanceGroupSpecification, CodeEditorAppImageConfig, ConditionStepMetadata, ContainerDefinition, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, ModelCardSecurityConfig, ModelCardStatus, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SharingType, SkipModelValidation, SourceAlgorithmSpecification, SpaceSettings, SpaceStorageSettings, ThroughputMode, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
|
|
3
|
-
import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotebookInstanceStatus, NotificationConfiguration, OidcConfig, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus,
|
|
4
|
-
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData, MonitoringAlertSummary, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SpaceStatus, SubscribedWorkteam, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
|
|
3
|
+
import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotebookInstanceStatus, NotificationConfiguration, OidcConfig, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProfilerConfig, ProfilerRuleConfiguration, ScheduleStatus, SelectiveExecutionConfig, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceVpcConfigRequest } from "./models_2";
|
|
4
|
+
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData, MonitoringAlertSummary, NotebookInstanceSortKey, NotebookInstanceSortOrder, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SpaceStatus, SubscribedWorkteam, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface ListNotebookInstancesInput {
|
|
9
|
+
/**
|
|
10
|
+
* <p> If the previous call to the <code>ListNotebookInstances</code> is truncated, the
|
|
11
|
+
* response includes a <code>NextToken</code>. You can use this token in your subsequent
|
|
12
|
+
* <code>ListNotebookInstances</code> request to fetch the next set of notebook
|
|
13
|
+
* instances. </p>
|
|
14
|
+
* <note>
|
|
15
|
+
* <p>You might specify a filter or a sort order in your request. When response is
|
|
16
|
+
* truncated, you must use the same values for the filer and sort order in the next
|
|
17
|
+
* request. </p>
|
|
18
|
+
* </note>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
NextToken?: string;
|
|
22
|
+
/**
|
|
23
|
+
* <p>The maximum number of notebook instances to return.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
MaxResults?: number;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The field to sort results by. The default is <code>Name</code>.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
SortBy?: NotebookInstanceSortKey;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The sort order for results. </p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
SortOrder?: NotebookInstanceSortOrder;
|
|
37
|
+
/**
|
|
38
|
+
* <p>A string in the notebook instances' name. This filter returns only notebook
|
|
39
|
+
* instances whose name contains the specified string.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
NameContains?: string;
|
|
43
|
+
/**
|
|
44
|
+
* <p>A filter that returns only notebook instances that were created before the
|
|
45
|
+
* specified time (timestamp). </p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
CreationTimeBefore?: Date;
|
|
49
|
+
/**
|
|
50
|
+
* <p>A filter that returns only notebook instances that were created after the specified
|
|
51
|
+
* time (timestamp).</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
CreationTimeAfter?: Date;
|
|
55
|
+
/**
|
|
56
|
+
* <p>A filter that returns only notebook instances that were modified before the
|
|
57
|
+
* specified time (timestamp).</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
LastModifiedTimeBefore?: Date;
|
|
61
|
+
/**
|
|
62
|
+
* <p>A filter that returns only notebook instances that were modified after the
|
|
63
|
+
* specified time (timestamp).</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
LastModifiedTimeAfter?: Date;
|
|
67
|
+
/**
|
|
68
|
+
* <p>A filter that returns only notebook instances with the specified status.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
StatusEquals?: NotebookInstanceStatus;
|
|
72
|
+
/**
|
|
73
|
+
* <p>A string in the name of a notebook instances lifecycle configuration associated with
|
|
74
|
+
* this notebook instance. This filter returns only notebook instances associated with a
|
|
75
|
+
* lifecycle configuration with a name that contains the specified string.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
NotebookInstanceLifecycleConfigNameContains?: string;
|
|
79
|
+
/**
|
|
80
|
+
* <p>A string in the name or URL of a Git repository associated with this notebook
|
|
81
|
+
* instance. This filter returns only notebook instances associated with a git repository
|
|
82
|
+
* with a name that contains the specified string.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
DefaultCodeRepositoryContains?: string;
|
|
86
|
+
/**
|
|
87
|
+
* <p>A filter that returns only notebook instances with associated with the specified git
|
|
88
|
+
* repository.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
AdditionalCodeRepositoryEquals?: string;
|
|
92
|
+
}
|
|
5
93
|
/**
|
|
6
94
|
* <p>Provides summary information for an SageMaker notebook instance.</p>
|
|
7
95
|
* @public
|
|
@@ -18,8 +18,8 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
-
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
22
21
|
region: string | import("@smithy/types").Provider<any>;
|
|
22
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
24
24
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
25
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -1990,8 +1990,8 @@ export interface ClientDefaults
|
|
|
1990
1990
|
serviceId?: string;
|
|
1991
1991
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
1992
1992
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
1993
|
-
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
1994
1993
|
region?: string | __Provider<string>;
|
|
1994
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
1995
1995
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
1996
1996
|
maxAttempts?: number | __Provider<number>;
|
|
1997
1997
|
retryMode?: string | __Provider<string>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { CreateSpaceRequest
|
|
3
|
+
import { CreateSpaceRequest } from "../models/models_1";
|
|
4
|
+
import { CreateSpaceResponse } from "../models/models_2";
|
|
4
5
|
import {
|
|
5
6
|
SageMakerClientResolvedConfig,
|
|
6
7
|
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 {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
ListNotebookInstancesInput,
|
|
5
|
+
ListNotebookInstancesOutput,
|
|
6
|
+
} from "../models/models_4";
|
|
5
7
|
import {
|
|
6
8
|
SageMakerClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -2043,6 +2043,10 @@ export interface ClusterInstanceGroupSpecification {
|
|
|
2043
2043
|
ExecutionRole: string | undefined;
|
|
2044
2044
|
ThreadsPerCore?: number;
|
|
2045
2045
|
}
|
|
2046
|
+
export interface ClusterInstancePlacement {
|
|
2047
|
+
AvailabilityZone?: string;
|
|
2048
|
+
AvailabilityZoneId?: string;
|
|
2049
|
+
}
|
|
2046
2050
|
export declare const ClusterInstanceStatus: {
|
|
2047
2051
|
readonly FAILURE: "Failure";
|
|
2048
2052
|
readonly PENDING: "Pending";
|
|
@@ -2064,6 +2068,9 @@ export interface ClusterNodeDetails {
|
|
|
2064
2068
|
LaunchTime?: Date;
|
|
2065
2069
|
LifeCycleConfig?: ClusterLifeCycleConfig;
|
|
2066
2070
|
ThreadsPerCore?: number;
|
|
2071
|
+
PrivatePrimaryIp?: string;
|
|
2072
|
+
PrivateDnsHostname?: string;
|
|
2073
|
+
Placement?: ClusterInstancePlacement;
|
|
2067
2074
|
}
|
|
2068
2075
|
export interface ClusterNodeSummary {
|
|
2069
2076
|
InstanceGroupName: string | undefined;
|
|
@@ -2543,8 +2550,3 @@ export interface InputConfig {
|
|
|
2543
2550
|
Framework: Framework | undefined;
|
|
2544
2551
|
FrameworkVersion?: string;
|
|
2545
2552
|
}
|
|
2546
|
-
export interface TargetPlatform {
|
|
2547
|
-
Os: TargetPlatformOs | undefined;
|
|
2548
|
-
Arch: TargetPlatformArch | undefined;
|
|
2549
|
-
Accelerator?: TargetPlatformAccelerator;
|
|
2550
|
-
}
|
|
@@ -55,12 +55,19 @@ import {
|
|
|
55
55
|
StoppingCondition,
|
|
56
56
|
Tag,
|
|
57
57
|
TargetDevice,
|
|
58
|
-
|
|
58
|
+
TargetPlatformAccelerator,
|
|
59
|
+
TargetPlatformArch,
|
|
60
|
+
TargetPlatformOs,
|
|
59
61
|
TrainingInputMode,
|
|
60
62
|
TrainingInstanceType,
|
|
61
63
|
TransformJobDefinition,
|
|
62
64
|
VpcConfig,
|
|
63
65
|
} from "./models_0";
|
|
66
|
+
export interface TargetPlatform {
|
|
67
|
+
Os: TargetPlatformOs | undefined;
|
|
68
|
+
Arch: TargetPlatformArch | undefined;
|
|
69
|
+
Accelerator?: TargetPlatformAccelerator;
|
|
70
|
+
}
|
|
64
71
|
export interface OutputConfig {
|
|
65
72
|
S3OutputLocation: string | undefined;
|
|
66
73
|
TargetDevice?: TargetDevice;
|
|
@@ -1974,9 +1981,6 @@ export interface CreateSpaceRequest {
|
|
|
1974
1981
|
SpaceSharingSettings?: SpaceSharingSettings;
|
|
1975
1982
|
SpaceDisplayName?: string;
|
|
1976
1983
|
}
|
|
1977
|
-
export interface CreateSpaceResponse {
|
|
1978
|
-
SpaceArn?: string;
|
|
1979
|
-
}
|
|
1980
1984
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
1981
1985
|
obj: CreateModelCardRequest
|
|
1982
1986
|
) => any;
|
|
@@ -161,6 +161,9 @@ import {
|
|
|
161
161
|
UserSettings,
|
|
162
162
|
VendorGuidance,
|
|
163
163
|
} from "./models_1";
|
|
164
|
+
export interface CreateSpaceResponse {
|
|
165
|
+
SpaceArn?: string;
|
|
166
|
+
}
|
|
164
167
|
export declare const StudioLifecycleConfigAppType: {
|
|
165
168
|
readonly CodeEditor: "CodeEditor";
|
|
166
169
|
readonly JupyterLab: "JupyterLab";
|
|
@@ -2131,15 +2134,6 @@ export interface DescribePipelineExecutionResponse {
|
|
|
2131
2134
|
export interface DescribeProcessingJobRequest {
|
|
2132
2135
|
ProcessingJobName: string | undefined;
|
|
2133
2136
|
}
|
|
2134
|
-
export declare const ProcessingJobStatus: {
|
|
2135
|
-
readonly COMPLETED: "Completed";
|
|
2136
|
-
readonly FAILED: "Failed";
|
|
2137
|
-
readonly IN_PROGRESS: "InProgress";
|
|
2138
|
-
readonly STOPPED: "Stopped";
|
|
2139
|
-
readonly STOPPING: "Stopping";
|
|
2140
|
-
};
|
|
2141
|
-
export type ProcessingJobStatus =
|
|
2142
|
-
(typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
|
|
2143
2137
|
export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
|
|
2144
2138
|
export declare const CreateWorkforceRequestFilterSensitiveLog: (
|
|
2145
2139
|
obj: CreateWorkforceRequest
|
|
@@ -121,12 +121,10 @@ import {
|
|
|
121
121
|
ModelConfiguration,
|
|
122
122
|
ModelPackageGroupStatus,
|
|
123
123
|
MonitoringExecutionSummary,
|
|
124
|
-
NotebookInstanceStatus,
|
|
125
124
|
NotificationConfiguration,
|
|
126
125
|
ObjectiveStatusCounters,
|
|
127
126
|
OfflineStoreStatus,
|
|
128
127
|
OfflineStoreStatusValue,
|
|
129
|
-
ProcessingJobStatus,
|
|
130
128
|
ProductionVariantSummary,
|
|
131
129
|
ProfilerConfig,
|
|
132
130
|
ProfilerRuleConfiguration,
|
|
@@ -145,6 +143,15 @@ import {
|
|
|
145
143
|
TrialComponentStatus,
|
|
146
144
|
WorkerAccessConfiguration,
|
|
147
145
|
} from "./models_2";
|
|
146
|
+
export declare const ProcessingJobStatus: {
|
|
147
|
+
readonly COMPLETED: "Completed";
|
|
148
|
+
readonly FAILED: "Failed";
|
|
149
|
+
readonly IN_PROGRESS: "InProgress";
|
|
150
|
+
readonly STOPPED: "Stopped";
|
|
151
|
+
readonly STOPPING: "Stopping";
|
|
152
|
+
};
|
|
153
|
+
export type ProcessingJobStatus =
|
|
154
|
+
(typeof ProcessingJobStatus)[keyof typeof ProcessingJobStatus];
|
|
148
155
|
export interface DescribeProcessingJobResponse {
|
|
149
156
|
ProcessingInputs?: ProcessingInput[];
|
|
150
157
|
ProcessingOutputConfig?: ProcessingOutputConfig;
|
|
@@ -2349,18 +2356,3 @@ export declare const NotebookInstanceSortOrder: {
|
|
|
2349
2356
|
};
|
|
2350
2357
|
export type NotebookInstanceSortOrder =
|
|
2351
2358
|
(typeof NotebookInstanceSortOrder)[keyof typeof NotebookInstanceSortOrder];
|
|
2352
|
-
export interface ListNotebookInstancesInput {
|
|
2353
|
-
NextToken?: string;
|
|
2354
|
-
MaxResults?: number;
|
|
2355
|
-
SortBy?: NotebookInstanceSortKey;
|
|
2356
|
-
SortOrder?: NotebookInstanceSortOrder;
|
|
2357
|
-
NameContains?: string;
|
|
2358
|
-
CreationTimeBefore?: Date;
|
|
2359
|
-
CreationTimeAfter?: Date;
|
|
2360
|
-
LastModifiedTimeBefore?: Date;
|
|
2361
|
-
LastModifiedTimeAfter?: Date;
|
|
2362
|
-
StatusEquals?: NotebookInstanceStatus;
|
|
2363
|
-
NotebookInstanceLifecycleConfigNameContains?: string;
|
|
2364
|
-
DefaultCodeRepositoryContains?: string;
|
|
2365
|
-
AdditionalCodeRepositoryEquals?: string;
|
|
2366
|
-
}
|
|
@@ -109,7 +109,6 @@ import {
|
|
|
109
109
|
PipelineExecutionStatus,
|
|
110
110
|
PipelineExperimentConfig,
|
|
111
111
|
PipelineStatus,
|
|
112
|
-
ProcessingJobStatus,
|
|
113
112
|
ProfilerConfig,
|
|
114
113
|
ProfilerRuleConfiguration,
|
|
115
114
|
ScheduleStatus,
|
|
@@ -145,6 +144,9 @@ import {
|
|
|
145
144
|
LineageType,
|
|
146
145
|
MetricData,
|
|
147
146
|
MonitoringAlertSummary,
|
|
147
|
+
NotebookInstanceSortKey,
|
|
148
|
+
NotebookInstanceSortOrder,
|
|
149
|
+
ProcessingJobStatus,
|
|
148
150
|
ProjectStatus,
|
|
149
151
|
ResourceType,
|
|
150
152
|
SecondaryStatus,
|
|
@@ -164,6 +166,21 @@ import {
|
|
|
164
166
|
Workforce,
|
|
165
167
|
Workteam,
|
|
166
168
|
} from "./models_3";
|
|
169
|
+
export interface ListNotebookInstancesInput {
|
|
170
|
+
NextToken?: string;
|
|
171
|
+
MaxResults?: number;
|
|
172
|
+
SortBy?: NotebookInstanceSortKey;
|
|
173
|
+
SortOrder?: NotebookInstanceSortOrder;
|
|
174
|
+
NameContains?: string;
|
|
175
|
+
CreationTimeBefore?: Date;
|
|
176
|
+
CreationTimeAfter?: Date;
|
|
177
|
+
LastModifiedTimeBefore?: Date;
|
|
178
|
+
LastModifiedTimeAfter?: Date;
|
|
179
|
+
StatusEquals?: NotebookInstanceStatus;
|
|
180
|
+
NotebookInstanceLifecycleConfigNameContains?: string;
|
|
181
|
+
DefaultCodeRepositoryContains?: string;
|
|
182
|
+
AdditionalCodeRepositoryEquals?: string;
|
|
183
|
+
}
|
|
167
184
|
export interface NotebookInstanceSummary {
|
|
168
185
|
NotebookInstanceName: string | undefined;
|
|
169
186
|
NotebookInstanceArn: string | undefined;
|
|
@@ -20,10 +20,10 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
24
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
24
25
|
import("@smithy/types").UserAgent
|
|
25
26
|
>;
|
|
26
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
27
27
|
credentialDefaultProvider: (
|
|
28
28
|
input: any
|
|
29
29
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
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.
|
|
4
|
+
"version": "3.590.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",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.590.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.590.0",
|
|
25
25
|
"@aws-sdk/core": "3.588.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.590.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|