@aws-sdk/client-sagemaker 3.413.0 → 3.416.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_1.js +5 -1
- package/dist-cjs/models/models_2.js +1 -5
- package/dist-cjs/models/models_3.js +6 -2
- package/dist-cjs/protocols/Aws_json1_1.js +7 -0
- package/dist-cjs/runtimeExtensions.js +3 -0
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/models/models_2.js +0 -4
- package/dist-es/models/models_3.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +7 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +2 -2
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -2
- package/dist-types/commands/CreateDataQualityJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/CreateModelBiasJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/CreateModelExplainabilityJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/CreateModelPackageCommand.d.ts +1 -0
- package/dist-types/commands/CreateModelQualityJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/CreateMonitoringScheduleCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEndpointConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDataQualityJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/DescribeModelBiasJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/DescribeModelExplainabilityJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +1 -0
- package/dist-types/commands/DescribeModelQualityJobDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/DescribeMonitoringScheduleCommand.d.ts +4 -0
- package/dist-types/commands/SearchCommand.d.ts +9 -0
- package/dist-types/commands/UpdateMonitoringScheduleCommand.d.ts +4 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +29 -17
- package/dist-types/models/models_1.d.ts +74 -40
- package/dist-types/models/models_2.d.ts +29 -30
- package/dist-types/models/models_3.d.ts +19 -20
- package/dist-types/models/models_4.d.ts +20 -3
- package/dist-types/ts3.4/commands/DeleteEndpointConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/dist-types/ts3.4/models/models_1.d.ts +9 -3
- package/dist-types/ts3.4/models/models_2.d.ts +5 -6
- package/dist-types/ts3.4/models/models_3.d.ts +8 -5
- package/dist-types/ts3.4/models/models_4.d.ts +4 -1
- package/package.json +4 -3
|
@@ -1090,6 +1090,12 @@ export interface ModelMetrics {
|
|
|
1090
1090
|
Bias?: Bias;
|
|
1091
1091
|
Explainability?: Explainability;
|
|
1092
1092
|
}
|
|
1093
|
+
export declare const SkipModelValidation: {
|
|
1094
|
+
readonly ALL: "All";
|
|
1095
|
+
readonly NONE: "None";
|
|
1096
|
+
};
|
|
1097
|
+
export type SkipModelValidation =
|
|
1098
|
+
(typeof SkipModelValidation)[keyof typeof SkipModelValidation];
|
|
1093
1099
|
export interface SourceAlgorithm {
|
|
1094
1100
|
ModelDataUrl?: string;
|
|
1095
1101
|
AlgorithmName: string | undefined;
|
|
@@ -1124,6 +1130,7 @@ export interface CreateModelPackageInput {
|
|
|
1124
1130
|
Task?: string;
|
|
1125
1131
|
SamplePayloadUrl?: string;
|
|
1126
1132
|
AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[];
|
|
1133
|
+
SkipModelValidation?: SkipModelValidation | string;
|
|
1127
1134
|
}
|
|
1128
1135
|
export interface CreateModelPackageOutput {
|
|
1129
1136
|
ModelPackageArn: string | undefined;
|
|
@@ -1218,6 +1225,8 @@ export type MonitoringType =
|
|
|
1218
1225
|
(typeof MonitoringType)[keyof typeof MonitoringType];
|
|
1219
1226
|
export interface ScheduleConfig {
|
|
1220
1227
|
ScheduleExpression: string | undefined;
|
|
1228
|
+
DataAnalysisStartTime?: string;
|
|
1229
|
+
DataAnalysisEndTime?: string;
|
|
1221
1230
|
}
|
|
1222
1231
|
export interface MonitoringScheduleConfig {
|
|
1223
1232
|
ScheduleConfig?: ScheduleConfig;
|
|
@@ -1844,9 +1853,6 @@ export interface DeleteEdgeDeploymentStageRequest {
|
|
|
1844
1853
|
export interface DeleteEndpointInput {
|
|
1845
1854
|
EndpointName: string | undefined;
|
|
1846
1855
|
}
|
|
1847
|
-
export interface DeleteEndpointConfigInput {
|
|
1848
|
-
EndpointConfigName: string | undefined;
|
|
1849
|
-
}
|
|
1850
1856
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
1851
1857
|
obj: CreateModelCardRequest
|
|
1852
1858
|
) => any;
|
|
@@ -161,6 +161,7 @@ import {
|
|
|
161
161
|
RuleEvaluationStatus,
|
|
162
162
|
ServiceCatalogProvisioningDetails,
|
|
163
163
|
ShadowModeConfig,
|
|
164
|
+
SkipModelValidation,
|
|
164
165
|
SourceAlgorithmSpecification,
|
|
165
166
|
SourceIpConfig,
|
|
166
167
|
SpaceSettings,
|
|
@@ -172,6 +173,9 @@ import {
|
|
|
172
173
|
UserSettings,
|
|
173
174
|
VendorGuidance,
|
|
174
175
|
} from "./models_1";
|
|
176
|
+
export interface DeleteEndpointConfigInput {
|
|
177
|
+
EndpointConfigName: string | undefined;
|
|
178
|
+
}
|
|
175
179
|
export interface DeleteExperimentRequest {
|
|
176
180
|
ExperimentName: string | undefined;
|
|
177
181
|
}
|
|
@@ -1452,6 +1456,7 @@ export interface DescribeModelPackageOutput {
|
|
|
1452
1456
|
Task?: string;
|
|
1453
1457
|
SamplePayloadUrl?: string;
|
|
1454
1458
|
AdditionalInferenceSpecifications?: AdditionalInferenceSpecificationDefinition[];
|
|
1459
|
+
SkipModelValidation?: SkipModelValidation | string;
|
|
1455
1460
|
}
|
|
1456
1461
|
export interface DescribeModelPackageGroupInput {
|
|
1457
1462
|
ModelPackageGroupName: string | undefined;
|
|
@@ -2356,12 +2361,6 @@ export declare const FeatureGroupSortBy: {
|
|
|
2356
2361
|
};
|
|
2357
2362
|
export type FeatureGroupSortBy =
|
|
2358
2363
|
(typeof FeatureGroupSortBy)[keyof typeof FeatureGroupSortBy];
|
|
2359
|
-
export declare const FeatureGroupSortOrder: {
|
|
2360
|
-
readonly ASCENDING: "Ascending";
|
|
2361
|
-
readonly DESCENDING: "Descending";
|
|
2362
|
-
};
|
|
2363
|
-
export type FeatureGroupSortOrder =
|
|
2364
|
-
(typeof FeatureGroupSortOrder)[keyof typeof FeatureGroupSortOrder];
|
|
2365
2364
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2366
2365
|
obj: DescribeModelCardResponse
|
|
2367
2366
|
) => any;
|
|
@@ -68,6 +68,7 @@ import {
|
|
|
68
68
|
MonitoringType,
|
|
69
69
|
RecommendationJobType,
|
|
70
70
|
ResourceLimits,
|
|
71
|
+
SkipModelValidation,
|
|
71
72
|
SourceAlgorithmSpecification,
|
|
72
73
|
StudioLifecycleConfigAppType,
|
|
73
74
|
TrialComponentStatus,
|
|
@@ -96,7 +97,6 @@ import {
|
|
|
96
97
|
ExperimentSummary,
|
|
97
98
|
FailStepMetadata,
|
|
98
99
|
FeatureGroupSortBy,
|
|
99
|
-
FeatureGroupSortOrder,
|
|
100
100
|
FeatureGroupStatus,
|
|
101
101
|
FeatureParameter,
|
|
102
102
|
FlowDefinitionStatus,
|
|
@@ -142,6 +142,12 @@ import {
|
|
|
142
142
|
Workforce,
|
|
143
143
|
Workteam,
|
|
144
144
|
} from "./models_2";
|
|
145
|
+
export declare const FeatureGroupSortOrder: {
|
|
146
|
+
readonly ASCENDING: "Ascending";
|
|
147
|
+
readonly DESCENDING: "Descending";
|
|
148
|
+
};
|
|
149
|
+
export type FeatureGroupSortOrder =
|
|
150
|
+
(typeof FeatureGroupSortOrder)[keyof typeof FeatureGroupSortOrder];
|
|
145
151
|
export interface FeatureGroupSummary {
|
|
146
152
|
FeatureGroupName: string | undefined;
|
|
147
153
|
FeatureGroupArn: string | undefined;
|
|
@@ -2243,6 +2249,7 @@ export interface ModelPackage {
|
|
|
2243
2249
|
Tags?: Tag[];
|
|
2244
2250
|
CustomerMetadataProperties?: Record<string, string>;
|
|
2245
2251
|
DriftCheckBaselines?: DriftCheckBaselines;
|
|
2252
|
+
SkipModelValidation?: SkipModelValidation | string;
|
|
2246
2253
|
}
|
|
2247
2254
|
export interface ModelPackageGroup {
|
|
2248
2255
|
ModelPackageGroupName?: string;
|
|
@@ -2267,8 +2274,4 @@ export interface NestedFilters {
|
|
|
2267
2274
|
export interface OnlineStoreConfigUpdate {
|
|
2268
2275
|
TtlDuration?: TtlDuration;
|
|
2269
2276
|
}
|
|
2270
|
-
export interface Parent {
|
|
2271
|
-
TrialName?: string;
|
|
2272
|
-
ExperimentName?: string;
|
|
2273
|
-
}
|
|
2274
2277
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
@@ -110,10 +110,13 @@ import {
|
|
|
110
110
|
NestedFilters,
|
|
111
111
|
OnlineStoreConfigUpdate,
|
|
112
112
|
Parameter,
|
|
113
|
-
Parent,
|
|
114
113
|
ResourceType,
|
|
115
114
|
TransformJob,
|
|
116
115
|
} from "./models_3";
|
|
116
|
+
export interface Parent {
|
|
117
|
+
TrialName?: string;
|
|
118
|
+
ExperimentName?: string;
|
|
119
|
+
}
|
|
117
120
|
export interface Pipeline {
|
|
118
121
|
PipelineArn?: string;
|
|
119
122
|
PipelineName?: string;
|
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.416.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,13 +21,14 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.414.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.414.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.413.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.413.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.413.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.413.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.413.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.413.0",
|
|
31
32
|
"@aws-sdk/types": "3.413.0",
|
|
32
33
|
"@aws-sdk/util-endpoints": "3.413.0",
|
|
33
34
|
"@aws-sdk/util-user-agent-browser": "3.413.0",
|