@aws-sdk/client-sagemaker 3.424.0 → 3.425.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/models/models_0.js +9 -6
- package/dist-cjs/models/models_1.js +1 -5
- package/dist-cjs/models/models_2.js +5 -1
- package/dist-es/models/models_0.js +7 -4
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-types/SageMakerClient.d.ts +2 -0
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +5 -0
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +10 -0
- package/dist-types/commands/CreateDeviceFleetCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelPackageCommand.d.ts +10 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +10 -0
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +10 -0
- package/dist-types/commands/SearchCommand.d.ts +10 -0
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +99 -149
- package/dist-types/models/models_1.d.ts +109 -30
- package/dist-types/models/models_2.d.ts +31 -149
- package/dist-types/models/models_3.d.ts +142 -220
- package/dist-types/models/models_4.d.ts +221 -4
- package/dist-types/ts3.4/commands/CreateDeviceFleetCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +18 -20
- package/dist-types/ts3.4/models/models_1.d.ts +15 -9
- package/dist-types/ts3.4/models/models_2.d.ts +9 -21
- package/dist-types/ts3.4/models/models_3.d.ts +20 -47
- package/dist-types/ts3.4/models/models_4.d.ts +50 -4
- package/package.json +32 -32
|
@@ -1,6 +1,145 @@
|
|
|
1
|
-
import { ActionSummary,
|
|
2
|
-
import { _InstanceType, DataProcessing,
|
|
3
|
-
import { DeploymentRecommendation, DeviceDeploymentSummary, DeviceFleetSummary, DeviceStats, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgeModelStat, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus,
|
|
1
|
+
import { ActionSummary, AgentVersion, AlgorithmSortBy, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, ModelApprovalStatus, ModelPackageStatus, OutputParameter, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataProcessing, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, MonitoringScheduleConfig, MonitoringType, OfflineStoreConfig, OnlineStoreConfig, RecommendationJobType, ResourceLimits, StudioLifecycleConfigAppType, TrialComponentStatus } from "./models_1";
|
|
3
|
+
import { DeploymentRecommendation, DeviceDeploymentSummary, DeviceFleetSummary, DeviceStats, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgeModelStat, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, ExecutionStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExperimentStatus, InferenceMetrics, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, PipelineExecutionStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ScheduleStatus, SpaceStatus, SubscribedWorkteam, TrainingJobStatus, TrainingJobStatusCounters, TransformJobStatus, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* <p>Provides summary information for an endpoint.</p>
|
|
7
|
+
*/
|
|
8
|
+
export interface EndpointSummary {
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
* <p>The name of the endpoint.</p>
|
|
12
|
+
*/
|
|
13
|
+
EndpointName: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* <p>The Amazon Resource Name (ARN) of the endpoint.</p>
|
|
17
|
+
*/
|
|
18
|
+
EndpointArn: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* <p>A timestamp that shows when the endpoint was created.</p>
|
|
22
|
+
*/
|
|
23
|
+
CreationTime: Date | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>A timestamp that shows when the endpoint was last modified.</p>
|
|
27
|
+
*/
|
|
28
|
+
LastModifiedTime: Date | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* <p>The status of the endpoint.</p>
|
|
32
|
+
* <ul>
|
|
33
|
+
* <li>
|
|
34
|
+
* <p>
|
|
35
|
+
* <code>OutOfService</code>: Endpoint is not available to take incoming
|
|
36
|
+
* requests.</p>
|
|
37
|
+
* </li>
|
|
38
|
+
* <li>
|
|
39
|
+
* <p>
|
|
40
|
+
* <code>Creating</code>: <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpoint.html">CreateEndpoint</a> is executing.</p>
|
|
41
|
+
* </li>
|
|
42
|
+
* <li>
|
|
43
|
+
* <p>
|
|
44
|
+
* <code>Updating</code>: <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpoint.html">UpdateEndpoint</a> or <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpointWeightsAndCapacities.html">UpdateEndpointWeightsAndCapacities</a> is executing.</p>
|
|
45
|
+
* </li>
|
|
46
|
+
* <li>
|
|
47
|
+
* <p>
|
|
48
|
+
* <code>SystemUpdating</code>: Endpoint is undergoing maintenance and cannot be
|
|
49
|
+
* updated or deleted or re-scaled until it has completed. This maintenance
|
|
50
|
+
* operation does not change any customer-specified values such as VPC config, KMS
|
|
51
|
+
* encryption, model, instance type, or instance count.</p>
|
|
52
|
+
* </li>
|
|
53
|
+
* <li>
|
|
54
|
+
* <p>
|
|
55
|
+
* <code>RollingBack</code>: Endpoint fails to scale up or down or change its
|
|
56
|
+
* variant weight and is in the process of rolling back to its previous
|
|
57
|
+
* configuration. Once the rollback completes, endpoint returns to an
|
|
58
|
+
* <code>InService</code> status. This transitional status only applies to an
|
|
59
|
+
* endpoint that has autoscaling enabled and is undergoing variant weight or
|
|
60
|
+
* capacity changes as part of an <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpointWeightsAndCapacities.html">UpdateEndpointWeightsAndCapacities</a> call or when the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpointWeightsAndCapacities.html">UpdateEndpointWeightsAndCapacities</a> operation is called
|
|
61
|
+
* explicitly.</p>
|
|
62
|
+
* </li>
|
|
63
|
+
* <li>
|
|
64
|
+
* <p>
|
|
65
|
+
* <code>InService</code>: Endpoint is available to process incoming
|
|
66
|
+
* requests.</p>
|
|
67
|
+
* </li>
|
|
68
|
+
* <li>
|
|
69
|
+
* <p>
|
|
70
|
+
* <code>Deleting</code>: <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteEndpoint.html">DeleteEndpoint</a> is executing.</p>
|
|
71
|
+
* </li>
|
|
72
|
+
* <li>
|
|
73
|
+
* <p>
|
|
74
|
+
* <code>Failed</code>: Endpoint could not be created, updated, or re-scaled. Use
|
|
75
|
+
* <code>DescribeEndpointOutput$FailureReason</code> for information about the
|
|
76
|
+
* failure. <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteEndpoint.html">DeleteEndpoint</a> is the only operation that can be performed on a
|
|
77
|
+
* failed endpoint.</p>
|
|
78
|
+
* </li>
|
|
79
|
+
* </ul>
|
|
80
|
+
* <p>To get a list of endpoints with a specified status, use the <code>StatusEquals</code>
|
|
81
|
+
* filter with a call to <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListEndpoints.html">ListEndpoints</a>.</p>
|
|
82
|
+
*/
|
|
83
|
+
EndpointStatus: EndpointStatus | string | undefined;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
* <p>The properties of an experiment as returned by the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API.</p>
|
|
88
|
+
*/
|
|
89
|
+
export interface Experiment {
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
* <p>The name of the experiment.</p>
|
|
93
|
+
*/
|
|
94
|
+
ExperimentName?: string;
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
98
|
+
*/
|
|
99
|
+
ExperimentArn?: string;
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
* <p>The name of the experiment as displayed. If <code>DisplayName</code> isn't specified,
|
|
103
|
+
* <code>ExperimentName</code> is displayed.</p>
|
|
104
|
+
*/
|
|
105
|
+
DisplayName?: string;
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* <p>The source of the experiment.</p>
|
|
109
|
+
*/
|
|
110
|
+
Source?: ExperimentSource;
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* <p>The description of the experiment.</p>
|
|
114
|
+
*/
|
|
115
|
+
Description?: string;
|
|
116
|
+
/**
|
|
117
|
+
* @public
|
|
118
|
+
* <p>When the experiment was created.</p>
|
|
119
|
+
*/
|
|
120
|
+
CreationTime?: Date;
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
* <p>Who created the experiment.</p>
|
|
124
|
+
*/
|
|
125
|
+
CreatedBy?: UserContext;
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
* <p>When the experiment was last modified.</p>
|
|
129
|
+
*/
|
|
130
|
+
LastModifiedTime?: Date;
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
* <p>Information about the user who created or modified an experiment, trial, trial
|
|
134
|
+
* component, lineage group, project, or model card.</p>
|
|
135
|
+
*/
|
|
136
|
+
LastModifiedBy?: UserContext;
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
* <p>The list of tags that are associated with the experiment. You can use <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_Search.html">Search</a> API to search on the tags.</p>
|
|
140
|
+
*/
|
|
141
|
+
Tags?: Tag[];
|
|
142
|
+
}
|
|
4
143
|
/**
|
|
5
144
|
* @public
|
|
6
145
|
* <p>A summary of the properties of an experiment. To get the complete set of properties, call
|
|
@@ -9071,223 +9210,6 @@ export interface ModelDashboardMonitoringSchedule {
|
|
|
9071
9210
|
*/
|
|
9072
9211
|
LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
|
|
9073
9212
|
}
|
|
9074
|
-
/**
|
|
9075
|
-
* @public
|
|
9076
|
-
* <p>A model displayed in the Amazon SageMaker Model Dashboard.</p>
|
|
9077
|
-
*/
|
|
9078
|
-
export interface ModelDashboardModel {
|
|
9079
|
-
/**
|
|
9080
|
-
* @public
|
|
9081
|
-
* <p>A model displayed in the Model Dashboard.</p>
|
|
9082
|
-
*/
|
|
9083
|
-
Model?: Model;
|
|
9084
|
-
/**
|
|
9085
|
-
* @public
|
|
9086
|
-
* <p>The endpoints that host a model.</p>
|
|
9087
|
-
*/
|
|
9088
|
-
Endpoints?: ModelDashboardEndpoint[];
|
|
9089
|
-
/**
|
|
9090
|
-
* @public
|
|
9091
|
-
* <p>A batch transform job. For information about SageMaker batch transform, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html">Use Batch
|
|
9092
|
-
* Transform</a>.</p>
|
|
9093
|
-
*/
|
|
9094
|
-
LastBatchTransformJob?: TransformJob;
|
|
9095
|
-
/**
|
|
9096
|
-
* @public
|
|
9097
|
-
* <p>The monitoring schedules for a model.</p>
|
|
9098
|
-
*/
|
|
9099
|
-
MonitoringSchedules?: ModelDashboardMonitoringSchedule[];
|
|
9100
|
-
/**
|
|
9101
|
-
* @public
|
|
9102
|
-
* <p>The model card for a model.</p>
|
|
9103
|
-
*/
|
|
9104
|
-
ModelCard?: ModelDashboardModelCard;
|
|
9105
|
-
}
|
|
9106
|
-
/**
|
|
9107
|
-
* @public
|
|
9108
|
-
* <p>A versioned model that can be deployed for SageMaker inference.</p>
|
|
9109
|
-
*/
|
|
9110
|
-
export interface ModelPackage {
|
|
9111
|
-
/**
|
|
9112
|
-
* @public
|
|
9113
|
-
* <p>The name of the model.</p>
|
|
9114
|
-
*/
|
|
9115
|
-
ModelPackageName?: string;
|
|
9116
|
-
/**
|
|
9117
|
-
* @public
|
|
9118
|
-
* <p>The model group to which the model belongs.</p>
|
|
9119
|
-
*/
|
|
9120
|
-
ModelPackageGroupName?: string;
|
|
9121
|
-
/**
|
|
9122
|
-
* @public
|
|
9123
|
-
* <p>The version number of a versioned model.</p>
|
|
9124
|
-
*/
|
|
9125
|
-
ModelPackageVersion?: number;
|
|
9126
|
-
/**
|
|
9127
|
-
* @public
|
|
9128
|
-
* <p>The Amazon Resource Name (ARN) of the model package.</p>
|
|
9129
|
-
*/
|
|
9130
|
-
ModelPackageArn?: string;
|
|
9131
|
-
/**
|
|
9132
|
-
* @public
|
|
9133
|
-
* <p>The description of the model package.</p>
|
|
9134
|
-
*/
|
|
9135
|
-
ModelPackageDescription?: string;
|
|
9136
|
-
/**
|
|
9137
|
-
* @public
|
|
9138
|
-
* <p>The time that the model package was created.</p>
|
|
9139
|
-
*/
|
|
9140
|
-
CreationTime?: Date;
|
|
9141
|
-
/**
|
|
9142
|
-
* @public
|
|
9143
|
-
* <p>Defines how to perform inference generation after a training job is run.</p>
|
|
9144
|
-
*/
|
|
9145
|
-
InferenceSpecification?: InferenceSpecification;
|
|
9146
|
-
/**
|
|
9147
|
-
* @public
|
|
9148
|
-
* <p>A list of algorithms that were used to create a model package.</p>
|
|
9149
|
-
*/
|
|
9150
|
-
SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
|
|
9151
|
-
/**
|
|
9152
|
-
* @public
|
|
9153
|
-
* <p>Specifies batch transform jobs that SageMaker runs to validate your model package.</p>
|
|
9154
|
-
*/
|
|
9155
|
-
ValidationSpecification?: ModelPackageValidationSpecification;
|
|
9156
|
-
/**
|
|
9157
|
-
* @public
|
|
9158
|
-
* <p>The status of the model package. This can be one of the following values.</p>
|
|
9159
|
-
* <ul>
|
|
9160
|
-
* <li>
|
|
9161
|
-
* <p>
|
|
9162
|
-
* <code>PENDING</code> - The model package is pending being created.</p>
|
|
9163
|
-
* </li>
|
|
9164
|
-
* <li>
|
|
9165
|
-
* <p>
|
|
9166
|
-
* <code>IN_PROGRESS</code> - The model package is in the process of being
|
|
9167
|
-
* created.</p>
|
|
9168
|
-
* </li>
|
|
9169
|
-
* <li>
|
|
9170
|
-
* <p>
|
|
9171
|
-
* <code>COMPLETED</code> - The model package was successfully created.</p>
|
|
9172
|
-
* </li>
|
|
9173
|
-
* <li>
|
|
9174
|
-
* <p>
|
|
9175
|
-
* <code>FAILED</code> - The model package failed.</p>
|
|
9176
|
-
* </li>
|
|
9177
|
-
* <li>
|
|
9178
|
-
* <p>
|
|
9179
|
-
* <code>DELETING</code> - The model package is in the process of being deleted.</p>
|
|
9180
|
-
* </li>
|
|
9181
|
-
* </ul>
|
|
9182
|
-
*/
|
|
9183
|
-
ModelPackageStatus?: ModelPackageStatus | string;
|
|
9184
|
-
/**
|
|
9185
|
-
* @public
|
|
9186
|
-
* <p>Specifies the validation and image scan statuses of the model package.</p>
|
|
9187
|
-
*/
|
|
9188
|
-
ModelPackageStatusDetails?: ModelPackageStatusDetails;
|
|
9189
|
-
/**
|
|
9190
|
-
* @public
|
|
9191
|
-
* <p>Whether the model package is to be certified to be listed on Amazon Web Services Marketplace. For
|
|
9192
|
-
* information about listing model packages on Amazon Web Services Marketplace, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-mkt-list.html">List Your
|
|
9193
|
-
* Algorithm or Model Package on Amazon Web Services Marketplace</a>.</p>
|
|
9194
|
-
*/
|
|
9195
|
-
CertifyForMarketplace?: boolean;
|
|
9196
|
-
/**
|
|
9197
|
-
* @public
|
|
9198
|
-
* <p>The approval status of the model. This can be one of the following values.</p>
|
|
9199
|
-
* <ul>
|
|
9200
|
-
* <li>
|
|
9201
|
-
* <p>
|
|
9202
|
-
* <code>APPROVED</code> - The model is approved</p>
|
|
9203
|
-
* </li>
|
|
9204
|
-
* <li>
|
|
9205
|
-
* <p>
|
|
9206
|
-
* <code>REJECTED</code> - The model is rejected.</p>
|
|
9207
|
-
* </li>
|
|
9208
|
-
* <li>
|
|
9209
|
-
* <p>
|
|
9210
|
-
* <code>PENDING_MANUAL_APPROVAL</code> - The model is waiting for manual
|
|
9211
|
-
* approval.</p>
|
|
9212
|
-
* </li>
|
|
9213
|
-
* </ul>
|
|
9214
|
-
*/
|
|
9215
|
-
ModelApprovalStatus?: ModelApprovalStatus | string;
|
|
9216
|
-
/**
|
|
9217
|
-
* @public
|
|
9218
|
-
* <p>Information about the user who created or modified an experiment, trial, trial component, lineage group, or project.</p>
|
|
9219
|
-
*/
|
|
9220
|
-
CreatedBy?: UserContext;
|
|
9221
|
-
/**
|
|
9222
|
-
* @public
|
|
9223
|
-
* <p>Metadata properties of the tracking entity, trial, or trial component.</p>
|
|
9224
|
-
*/
|
|
9225
|
-
MetadataProperties?: MetadataProperties;
|
|
9226
|
-
/**
|
|
9227
|
-
* @public
|
|
9228
|
-
* <p>Metrics for the model.</p>
|
|
9229
|
-
*/
|
|
9230
|
-
ModelMetrics?: ModelMetrics;
|
|
9231
|
-
/**
|
|
9232
|
-
* @public
|
|
9233
|
-
* <p>The last time the model package was modified.</p>
|
|
9234
|
-
*/
|
|
9235
|
-
LastModifiedTime?: Date;
|
|
9236
|
-
/**
|
|
9237
|
-
* @public
|
|
9238
|
-
* <p>Information about the user who created or modified an experiment, trial, trial component, lineage group, or project.</p>
|
|
9239
|
-
*/
|
|
9240
|
-
LastModifiedBy?: UserContext;
|
|
9241
|
-
/**
|
|
9242
|
-
* @public
|
|
9243
|
-
* <p>A description provided when the model approval is set.</p>
|
|
9244
|
-
*/
|
|
9245
|
-
ApprovalDescription?: string;
|
|
9246
|
-
/**
|
|
9247
|
-
* @public
|
|
9248
|
-
* <p>The machine learning domain of your model package and its components. Common
|
|
9249
|
-
* machine learning domains include computer vision and natural language processing.</p>
|
|
9250
|
-
*/
|
|
9251
|
-
Domain?: string;
|
|
9252
|
-
/**
|
|
9253
|
-
* @public
|
|
9254
|
-
* <p>The machine learning task your model package accomplishes. Common machine
|
|
9255
|
-
* learning tasks include object detection and image classification.</p>
|
|
9256
|
-
*/
|
|
9257
|
-
Task?: string;
|
|
9258
|
-
/**
|
|
9259
|
-
* @public
|
|
9260
|
-
* <p>The Amazon Simple Storage Service path where the sample payload are stored. This path must point to
|
|
9261
|
-
* a single gzip compressed tar archive (.tar.gz suffix).</p>
|
|
9262
|
-
*/
|
|
9263
|
-
SamplePayloadUrl?: string;
|
|
9264
|
-
/**
|
|
9265
|
-
* @public
|
|
9266
|
-
* <p>An array of additional Inference Specification objects.</p>
|
|
9267
|
-
*/
|
|
9268
|
-
AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[];
|
|
9269
|
-
/**
|
|
9270
|
-
* @public
|
|
9271
|
-
* <p>A list of the tags associated with the model package. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
|
|
9272
|
-
* resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
|
|
9273
|
-
*/
|
|
9274
|
-
Tags?: Tag[];
|
|
9275
|
-
/**
|
|
9276
|
-
* @public
|
|
9277
|
-
* <p>The metadata properties for the model package. </p>
|
|
9278
|
-
*/
|
|
9279
|
-
CustomerMetadataProperties?: Record<string, string>;
|
|
9280
|
-
/**
|
|
9281
|
-
* @public
|
|
9282
|
-
* <p>Represents the drift check baselines that can be used when the model monitor is set using the model package.</p>
|
|
9283
|
-
*/
|
|
9284
|
-
DriftCheckBaselines?: DriftCheckBaselines;
|
|
9285
|
-
/**
|
|
9286
|
-
* @public
|
|
9287
|
-
* <p>Indicates if you want to skip model validation.</p>
|
|
9288
|
-
*/
|
|
9289
|
-
SkipModelValidation?: SkipModelValidation | string;
|
|
9290
|
-
}
|
|
9291
9213
|
/**
|
|
9292
9214
|
* @internal
|
|
9293
9215
|
*/
|
|
@@ -1,7 +1,224 @@
|
|
|
1
|
-
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSecurityGroupManagement, AppSpecification, BooleanOperator, Channel, CheckpointConfig,
|
|
2
|
-
import { _InstanceType, CrossAccountFilterOption, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DefaultSpaceSettings, DeploymentConfig, ExperimentConfig, FeatureDefinition, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, MemberDefinition, ModelCardStatus, ModelVariantConfig, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SourceIpConfig, SpaceSettings, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, TtlDuration, UiTemplate, UserSettings, VendorGuidance, WorkforceVpcConfigRequest } from "./models_1";
|
|
3
|
-
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint,
|
|
4
|
-
import { FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, ModelCard,
|
|
1
|
+
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSecurityGroupManagement, AppSpecification, BooleanOperator, Channel, CheckpointConfig, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, UserContext, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, CrossAccountFilterOption, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, MemberDefinition, ModelCardStatus, ModelMetrics, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, TtlDuration, UiTemplate, UserSettings, VendorGuidance, WorkforceVpcConfigRequest } from "./models_1";
|
|
3
|
+
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, FeatureParameter, MetricData, ModelArtifacts, ModelPackageGroupStatus, ModelPackageStatusDetails, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, TrainingJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, Workforce, Workteam } from "./models_2";
|
|
4
|
+
import { Experiment, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, Model, ModelCard, ModelDashboardEndpoint, ModelDashboardModelCard, ModelDashboardMonitoringSchedule, Parameter, ResourceType, TransformJob } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* <p>A model displayed in the Amazon SageMaker Model Dashboard.</p>
|
|
8
|
+
*/
|
|
9
|
+
export interface ModelDashboardModel {
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
* <p>A model displayed in the Model Dashboard.</p>
|
|
13
|
+
*/
|
|
14
|
+
Model?: Model;
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* <p>The endpoints that host a model.</p>
|
|
18
|
+
*/
|
|
19
|
+
Endpoints?: ModelDashboardEndpoint[];
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* <p>A batch transform job. For information about SageMaker batch transform, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/batch-transform.html">Use Batch
|
|
23
|
+
* Transform</a>.</p>
|
|
24
|
+
*/
|
|
25
|
+
LastBatchTransformJob?: TransformJob;
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* <p>The monitoring schedules for a model.</p>
|
|
29
|
+
*/
|
|
30
|
+
MonitoringSchedules?: ModelDashboardMonitoringSchedule[];
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
* <p>The model card for a model.</p>
|
|
34
|
+
*/
|
|
35
|
+
ModelCard?: ModelDashboardModelCard;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
* <p>A versioned model that can be deployed for SageMaker inference.</p>
|
|
40
|
+
*/
|
|
41
|
+
export interface ModelPackage {
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
* <p>The name of the model.</p>
|
|
45
|
+
*/
|
|
46
|
+
ModelPackageName?: string;
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
* <p>The model group to which the model belongs.</p>
|
|
50
|
+
*/
|
|
51
|
+
ModelPackageGroupName?: string;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* <p>The version number of a versioned model.</p>
|
|
55
|
+
*/
|
|
56
|
+
ModelPackageVersion?: number;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
* <p>The Amazon Resource Name (ARN) of the model package.</p>
|
|
60
|
+
*/
|
|
61
|
+
ModelPackageArn?: string;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
* <p>The description of the model package.</p>
|
|
65
|
+
*/
|
|
66
|
+
ModelPackageDescription?: string;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
* <p>The time that the model package was created.</p>
|
|
70
|
+
*/
|
|
71
|
+
CreationTime?: Date;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
* <p>Defines how to perform inference generation after a training job is run.</p>
|
|
75
|
+
*/
|
|
76
|
+
InferenceSpecification?: InferenceSpecification;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
* <p>A list of algorithms that were used to create a model package.</p>
|
|
80
|
+
*/
|
|
81
|
+
SourceAlgorithmSpecification?: SourceAlgorithmSpecification;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
* <p>Specifies batch transform jobs that SageMaker runs to validate your model package.</p>
|
|
85
|
+
*/
|
|
86
|
+
ValidationSpecification?: ModelPackageValidationSpecification;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* <p>The status of the model package. This can be one of the following values.</p>
|
|
90
|
+
* <ul>
|
|
91
|
+
* <li>
|
|
92
|
+
* <p>
|
|
93
|
+
* <code>PENDING</code> - The model package is pending being created.</p>
|
|
94
|
+
* </li>
|
|
95
|
+
* <li>
|
|
96
|
+
* <p>
|
|
97
|
+
* <code>IN_PROGRESS</code> - The model package is in the process of being
|
|
98
|
+
* created.</p>
|
|
99
|
+
* </li>
|
|
100
|
+
* <li>
|
|
101
|
+
* <p>
|
|
102
|
+
* <code>COMPLETED</code> - The model package was successfully created.</p>
|
|
103
|
+
* </li>
|
|
104
|
+
* <li>
|
|
105
|
+
* <p>
|
|
106
|
+
* <code>FAILED</code> - The model package failed.</p>
|
|
107
|
+
* </li>
|
|
108
|
+
* <li>
|
|
109
|
+
* <p>
|
|
110
|
+
* <code>DELETING</code> - The model package is in the process of being deleted.</p>
|
|
111
|
+
* </li>
|
|
112
|
+
* </ul>
|
|
113
|
+
*/
|
|
114
|
+
ModelPackageStatus?: ModelPackageStatus | string;
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* <p>Specifies the validation and image scan statuses of the model package.</p>
|
|
118
|
+
*/
|
|
119
|
+
ModelPackageStatusDetails?: ModelPackageStatusDetails;
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
* <p>Whether the model package is to be certified to be listed on Amazon Web Services Marketplace. For
|
|
123
|
+
* information about listing model packages on Amazon Web Services Marketplace, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-mkt-list.html">List Your
|
|
124
|
+
* Algorithm or Model Package on Amazon Web Services Marketplace</a>.</p>
|
|
125
|
+
*/
|
|
126
|
+
CertifyForMarketplace?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
* <p>The approval status of the model. This can be one of the following values.</p>
|
|
130
|
+
* <ul>
|
|
131
|
+
* <li>
|
|
132
|
+
* <p>
|
|
133
|
+
* <code>APPROVED</code> - The model is approved</p>
|
|
134
|
+
* </li>
|
|
135
|
+
* <li>
|
|
136
|
+
* <p>
|
|
137
|
+
* <code>REJECTED</code> - The model is rejected.</p>
|
|
138
|
+
* </li>
|
|
139
|
+
* <li>
|
|
140
|
+
* <p>
|
|
141
|
+
* <code>PENDING_MANUAL_APPROVAL</code> - The model is waiting for manual
|
|
142
|
+
* approval.</p>
|
|
143
|
+
* </li>
|
|
144
|
+
* </ul>
|
|
145
|
+
*/
|
|
146
|
+
ModelApprovalStatus?: ModelApprovalStatus | string;
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
* <p>Information about the user who created or modified an experiment, trial, trial component, lineage group, or project.</p>
|
|
150
|
+
*/
|
|
151
|
+
CreatedBy?: UserContext;
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
* <p>Metadata properties of the tracking entity, trial, or trial component.</p>
|
|
155
|
+
*/
|
|
156
|
+
MetadataProperties?: MetadataProperties;
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* <p>Metrics for the model.</p>
|
|
160
|
+
*/
|
|
161
|
+
ModelMetrics?: ModelMetrics;
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
* <p>The last time the model package was modified.</p>
|
|
165
|
+
*/
|
|
166
|
+
LastModifiedTime?: Date;
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
* <p>Information about the user who created or modified an experiment, trial, trial component, lineage group, or project.</p>
|
|
170
|
+
*/
|
|
171
|
+
LastModifiedBy?: UserContext;
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* <p>A description provided when the model approval is set.</p>
|
|
175
|
+
*/
|
|
176
|
+
ApprovalDescription?: string;
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
* <p>The machine learning domain of your model package and its components. Common
|
|
180
|
+
* machine learning domains include computer vision and natural language processing.</p>
|
|
181
|
+
*/
|
|
182
|
+
Domain?: string;
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
* <p>The machine learning task your model package accomplishes. Common machine
|
|
186
|
+
* learning tasks include object detection and image classification.</p>
|
|
187
|
+
*/
|
|
188
|
+
Task?: string;
|
|
189
|
+
/**
|
|
190
|
+
* @public
|
|
191
|
+
* <p>The Amazon Simple Storage Service path where the sample payload are stored. This path must point to
|
|
192
|
+
* a single gzip compressed tar archive (.tar.gz suffix).</p>
|
|
193
|
+
*/
|
|
194
|
+
SamplePayloadUrl?: string;
|
|
195
|
+
/**
|
|
196
|
+
* @public
|
|
197
|
+
* <p>An array of additional Inference Specification objects.</p>
|
|
198
|
+
*/
|
|
199
|
+
AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[];
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
* <p>A list of the tags associated with the model package. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services
|
|
203
|
+
* resources</a> in the <i>Amazon Web Services General Reference Guide</i>.</p>
|
|
204
|
+
*/
|
|
205
|
+
Tags?: Tag[];
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
* <p>The metadata properties for the model package. </p>
|
|
209
|
+
*/
|
|
210
|
+
CustomerMetadataProperties?: Record<string, string>;
|
|
211
|
+
/**
|
|
212
|
+
* @public
|
|
213
|
+
* <p>Represents the drift check baselines that can be used when the model monitor is set using the model package.</p>
|
|
214
|
+
*/
|
|
215
|
+
DriftCheckBaselines?: DriftCheckBaselines;
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
* <p>Indicates if you want to skip model validation.</p>
|
|
219
|
+
*/
|
|
220
|
+
SkipModelValidation?: SkipModelValidation | string;
|
|
221
|
+
}
|
|
5
222
|
/**
|
|
6
223
|
* @public
|
|
7
224
|
* <p>A group of versioned models in the model registry.</p>
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@smithy/types";
|
|
9
|
-
import { CreateDeviceFleetRequest } from "../models/
|
|
9
|
+
import { CreateDeviceFleetRequest } from "../models/models_1";
|
|
10
10
|
import {
|
|
11
11
|
SageMakerClientResolvedConfig,
|
|
12
12
|
ServiceInputTypes,
|