@aws-sdk/client-sagemaker 3.454.0 → 3.457.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_3.js +1 -7
- package/dist-cjs/models/models_4.js +7 -3
- package/dist-cjs/protocols/Aws_json1_1.js +6657 -2332
- package/dist-es/models/models_3.js +0 -5
- package/dist-es/models/models_4.js +4 -1
- package/dist-es/protocols/Aws_json1_1.js +6657 -2332
- package/dist-types/commands/CreateModelCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCodeRepositoryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelCommand.d.ts +6 -0
- package/dist-types/commands/SearchCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +27 -28
- package/dist-types/models/models_1.d.ts +28 -11
- package/dist-types/models/models_2.d.ts +13 -86
- package/dist-types/models/models_3.d.ts +84 -104
- package/dist-types/models/models_4.d.ts +103 -1
- package/dist-types/ts3.4/commands/DeleteCodeRepositoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -5
- package/dist-types/ts3.4/models/models_1.d.ts +5 -4
- package/dist-types/ts3.4/models/models_2.d.ts +4 -14
- package/dist-types/ts3.4/models/models_3.d.ts +14 -19
- package/dist-types/ts3.4/models/models_4.d.ts +17 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@smithy/types";
|
|
9
|
-
import { DeleteCodeRepositoryInput } from "../models/
|
|
9
|
+
import { DeleteCodeRepositoryInput } from "../models/models_2";
|
|
10
10
|
import {
|
|
11
11
|
SageMakerClientResolvedConfig,
|
|
12
12
|
ServiceInputTypes,
|
|
@@ -1902,6 +1902,9 @@ export declare const ModelCompressionType: {
|
|
|
1902
1902
|
};
|
|
1903
1903
|
export type ModelCompressionType =
|
|
1904
1904
|
(typeof ModelCompressionType)[keyof typeof ModelCompressionType];
|
|
1905
|
+
export interface ModelAccessConfig {
|
|
1906
|
+
AcceptEula: boolean | undefined;
|
|
1907
|
+
}
|
|
1905
1908
|
export declare const S3ModelDataType: {
|
|
1906
1909
|
readonly S3Object: "S3Object";
|
|
1907
1910
|
readonly S3Prefix: "S3Prefix";
|
|
@@ -1912,6 +1915,7 @@ export interface S3ModelDataSource {
|
|
|
1912
1915
|
S3Uri: string | undefined;
|
|
1913
1916
|
S3DataType: S3ModelDataType | undefined;
|
|
1914
1917
|
CompressionType: ModelCompressionType | undefined;
|
|
1918
|
+
ModelAccessConfig?: ModelAccessConfig;
|
|
1915
1919
|
}
|
|
1916
1920
|
export interface ModelDataSource {
|
|
1917
1921
|
S3DataSource: S3ModelDataSource | undefined;
|
|
@@ -2308,8 +2312,3 @@ export interface MonitoringClusterConfig {
|
|
|
2308
2312
|
export interface MonitoringResources {
|
|
2309
2313
|
ClusterConfig: MonitoringClusterConfig | undefined;
|
|
2310
2314
|
}
|
|
2311
|
-
export interface MonitoringNetworkConfig {
|
|
2312
|
-
EnableInterContainerTrafficEncryption?: boolean;
|
|
2313
|
-
EnableNetworkIsolation?: boolean;
|
|
2314
|
-
VpcConfig?: VpcConfig;
|
|
2315
|
-
}
|
|
@@ -53,7 +53,6 @@ import {
|
|
|
53
53
|
MetricsSource,
|
|
54
54
|
ModelApprovalStatus,
|
|
55
55
|
MonitoringConstraintsResource,
|
|
56
|
-
MonitoringNetworkConfig,
|
|
57
56
|
MonitoringOutputConfig,
|
|
58
57
|
MonitoringResources,
|
|
59
58
|
MonitoringStatisticsResource,
|
|
@@ -75,6 +74,11 @@ import {
|
|
|
75
74
|
TransformResources,
|
|
76
75
|
VpcConfig,
|
|
77
76
|
} from "./models_0";
|
|
77
|
+
export interface MonitoringNetworkConfig {
|
|
78
|
+
EnableInterContainerTrafficEncryption?: boolean;
|
|
79
|
+
EnableNetworkIsolation?: boolean;
|
|
80
|
+
VpcConfig?: VpcConfig;
|
|
81
|
+
}
|
|
78
82
|
export interface MonitoringStoppingCondition {
|
|
79
83
|
MaxRuntimeInSeconds: number | undefined;
|
|
80
84
|
}
|
|
@@ -1873,9 +1877,6 @@ export interface DeleteAssociationResponse {
|
|
|
1873
1877
|
SourceArn?: string;
|
|
1874
1878
|
DestinationArn?: string;
|
|
1875
1879
|
}
|
|
1876
|
-
export interface DeleteCodeRepositoryInput {
|
|
1877
|
-
CodeRepositoryName: string | undefined;
|
|
1878
|
-
}
|
|
1879
1880
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
1880
1881
|
obj: CreateModelCardRequest
|
|
1881
1882
|
) => any;
|
|
@@ -52,7 +52,6 @@ import {
|
|
|
52
52
|
ModelApprovalStatus,
|
|
53
53
|
ModelDeployConfig,
|
|
54
54
|
ModelPackageStatus,
|
|
55
|
-
MonitoringNetworkConfig,
|
|
56
55
|
MonitoringOutputConfig,
|
|
57
56
|
MonitoringResources,
|
|
58
57
|
NeoVpcConfig,
|
|
@@ -133,6 +132,7 @@ import {
|
|
|
133
132
|
ModelQualityAppSpecification,
|
|
134
133
|
ModelQualityBaselineConfig,
|
|
135
134
|
ModelQualityJobInput,
|
|
135
|
+
MonitoringNetworkConfig,
|
|
136
136
|
MonitoringScheduleConfig,
|
|
137
137
|
MonitoringStoppingCondition,
|
|
138
138
|
MonitoringType,
|
|
@@ -173,6 +173,9 @@ import {
|
|
|
173
173
|
UserSettings,
|
|
174
174
|
VendorGuidance,
|
|
175
175
|
} from "./models_1";
|
|
176
|
+
export interface DeleteCodeRepositoryInput {
|
|
177
|
+
CodeRepositoryName: string | undefined;
|
|
178
|
+
}
|
|
176
179
|
export interface DeleteContextRequest {
|
|
177
180
|
ContextName: string | undefined;
|
|
178
181
|
}
|
|
@@ -2292,19 +2295,6 @@ export interface EMRStepMetadata {
|
|
|
2292
2295
|
}
|
|
2293
2296
|
export interface EnableSagemakerServicecatalogPortfolioInput {}
|
|
2294
2297
|
export interface EnableSagemakerServicecatalogPortfolioOutput {}
|
|
2295
|
-
export interface MonitoringSchedule {
|
|
2296
|
-
MonitoringScheduleArn?: string;
|
|
2297
|
-
MonitoringScheduleName?: string;
|
|
2298
|
-
MonitoringScheduleStatus?: ScheduleStatus;
|
|
2299
|
-
MonitoringType?: MonitoringType;
|
|
2300
|
-
FailureReason?: string;
|
|
2301
|
-
CreationTime?: Date;
|
|
2302
|
-
LastModifiedTime?: Date;
|
|
2303
|
-
MonitoringScheduleConfig?: MonitoringScheduleConfig;
|
|
2304
|
-
EndpointName?: string;
|
|
2305
|
-
LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
|
|
2306
|
-
Tags?: Tag[];
|
|
2307
|
-
}
|
|
2308
2298
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2309
2299
|
obj: DescribeModelCardResponse
|
|
2310
2300
|
) => any;
|
|
@@ -50,8 +50,8 @@ import {
|
|
|
50
50
|
InferenceExperimentSchedule,
|
|
51
51
|
InferenceExperimentType,
|
|
52
52
|
LabelingJobInputConfig,
|
|
53
|
-
ModelCardSecurityConfig,
|
|
54
53
|
ModelCardStatus,
|
|
54
|
+
MonitoringScheduleConfig,
|
|
55
55
|
MonitoringType,
|
|
56
56
|
OfflineStoreConfig,
|
|
57
57
|
OnlineStoreConfig,
|
|
@@ -99,7 +99,6 @@ import {
|
|
|
99
99
|
ModelConfiguration,
|
|
100
100
|
ModelPackageGroupStatus,
|
|
101
101
|
MonitoringExecutionSummary,
|
|
102
|
-
MonitoringSchedule,
|
|
103
102
|
NotebookInstanceStatus,
|
|
104
103
|
ObjectiveStatusCounters,
|
|
105
104
|
OfflineStoreStatus,
|
|
@@ -124,6 +123,19 @@ import {
|
|
|
124
123
|
Workforce,
|
|
125
124
|
Workteam,
|
|
126
125
|
} from "./models_2";
|
|
126
|
+
export interface MonitoringSchedule {
|
|
127
|
+
MonitoringScheduleArn?: string;
|
|
128
|
+
MonitoringScheduleName?: string;
|
|
129
|
+
MonitoringScheduleStatus?: ScheduleStatus;
|
|
130
|
+
MonitoringType?: MonitoringType;
|
|
131
|
+
FailureReason?: string;
|
|
132
|
+
CreationTime?: Date;
|
|
133
|
+
LastModifiedTime?: Date;
|
|
134
|
+
MonitoringScheduleConfig?: MonitoringScheduleConfig;
|
|
135
|
+
EndpointName?: string;
|
|
136
|
+
LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
|
|
137
|
+
Tags?: Tag[];
|
|
138
|
+
}
|
|
127
139
|
export interface Endpoint {
|
|
128
140
|
EndpointName: string | undefined;
|
|
129
141
|
EndpointArn: string | undefined;
|
|
@@ -2208,20 +2220,3 @@ export interface Model {
|
|
|
2208
2220
|
Tags?: Tag[];
|
|
2209
2221
|
DeploymentRecommendation?: DeploymentRecommendation;
|
|
2210
2222
|
}
|
|
2211
|
-
export interface ModelCard {
|
|
2212
|
-
ModelCardArn?: string;
|
|
2213
|
-
ModelCardName?: string;
|
|
2214
|
-
ModelCardVersion?: number;
|
|
2215
|
-
Content?: string;
|
|
2216
|
-
ModelCardStatus?: ModelCardStatus;
|
|
2217
|
-
SecurityConfig?: ModelCardSecurityConfig;
|
|
2218
|
-
CreationTime?: Date;
|
|
2219
|
-
CreatedBy?: UserContext;
|
|
2220
|
-
LastModifiedTime?: Date;
|
|
2221
|
-
LastModifiedBy?: UserContext;
|
|
2222
|
-
Tags?: Tag[];
|
|
2223
|
-
ModelId?: string;
|
|
2224
|
-
RiskRating?: string;
|
|
2225
|
-
ModelPackageGroupName?: string;
|
|
2226
|
-
}
|
|
2227
|
-
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
@@ -127,11 +127,26 @@ import {
|
|
|
127
127
|
InferenceExperimentStopDesiredState,
|
|
128
128
|
LineageType,
|
|
129
129
|
Model,
|
|
130
|
-
ModelCard,
|
|
131
130
|
MonitoringAlertSummary,
|
|
132
131
|
Parameter,
|
|
133
132
|
ResourceType,
|
|
134
133
|
} from "./models_3";
|
|
134
|
+
export interface ModelCard {
|
|
135
|
+
ModelCardArn?: string;
|
|
136
|
+
ModelCardName?: string;
|
|
137
|
+
ModelCardVersion?: number;
|
|
138
|
+
Content?: string;
|
|
139
|
+
ModelCardStatus?: ModelCardStatus;
|
|
140
|
+
SecurityConfig?: ModelCardSecurityConfig;
|
|
141
|
+
CreationTime?: Date;
|
|
142
|
+
CreatedBy?: UserContext;
|
|
143
|
+
LastModifiedTime?: Date;
|
|
144
|
+
LastModifiedBy?: UserContext;
|
|
145
|
+
Tags?: Tag[];
|
|
146
|
+
ModelId?: string;
|
|
147
|
+
RiskRating?: string;
|
|
148
|
+
ModelPackageGroupName?: string;
|
|
149
|
+
}
|
|
135
150
|
export interface ModelDashboardEndpoint {
|
|
136
151
|
EndpointName: string | undefined;
|
|
137
152
|
EndpointArn: string | undefined;
|
|
@@ -947,6 +962,7 @@ export interface SearchRequest {
|
|
|
947
962
|
MaxResults?: number;
|
|
948
963
|
CrossAccountFilterOption?: CrossAccountFilterOption;
|
|
949
964
|
}
|
|
965
|
+
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
950
966
|
export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
|
|
951
967
|
export declare const SearchResponseFilterSensitiveLog: (
|
|
952
968
|
obj: SearchResponse
|
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.457.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",
|