@aws-sdk/client-sagemaker 3.624.0 → 3.629.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 +102 -81
- package/dist-es/commands/DescribeModelCardCommand.js +1 -1
- package/dist-es/models/models_1.js +1 -4
- package/dist-es/models/models_2.js +4 -4
- package/dist-es/models/models_3.js +5 -6
- package/dist-es/models/models_4.js +6 -0
- package/dist-es/protocols/Aws_json1_1.js +19 -0
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +12 -0
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +21 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +1 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +5 -1
- package/dist-types/commands/CreateProcessingJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +5 -1
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +5 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +5 -1
- package/dist-types/commands/DescribeModelCardCommand.d.ts +2 -1
- package/dist-types/commands/DescribeModelCardExportJobCommand.d.ts +1 -2
- package/dist-types/commands/DescribeProcessingJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +5 -1
- package/dist-types/commands/ListModelExplainabilityJobDefinitionsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +5 -1
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +5 -1
- package/dist-types/models/models_0.d.ts +92 -169
- package/dist-types/models/models_1.d.ts +182 -105
- package/dist-types/models/models_2.d.ts +112 -135
- package/dist-types/models/models_3.d.ts +132 -80
- package/dist-types/models/models_4.d.ts +81 -1
- package/dist-types/ts3.4/commands/CreateAutoMLJobV2Command.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeModelCardCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeModelCardExportJobCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListModelExplainabilityJobDefinitionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -21
- package/dist-types/ts3.4/models/models_1.d.ts +32 -25
- package/dist-types/ts3.4/models/models_2.d.ts +32 -27
- package/dist-types/ts3.4/models/models_3.d.ts +24 -23
- package/dist-types/ts3.4/models/models_4.d.ts +22 -1
- package/package.json +5 -5
|
@@ -70,6 +70,7 @@ import {
|
|
|
70
70
|
InstanceMetadataServiceConfiguration,
|
|
71
71
|
LabelingJobInputConfig,
|
|
72
72
|
ModelCardExportOutputConfig,
|
|
73
|
+
ModelCardSecurityConfig,
|
|
73
74
|
ModelCardStatus,
|
|
74
75
|
ModelExplainabilityAppSpecification,
|
|
75
76
|
ModelExplainabilityBaselineConfig,
|
|
@@ -142,7 +143,7 @@ import {
|
|
|
142
143
|
LastUpdateStatus,
|
|
143
144
|
MemberDefinition,
|
|
144
145
|
ModelArtifacts,
|
|
145
|
-
|
|
146
|
+
ModelCardProcessingStatus,
|
|
146
147
|
ModelClientConfig,
|
|
147
148
|
ModelConfiguration,
|
|
148
149
|
NotificationConfiguration,
|
|
@@ -175,6 +176,25 @@ import {
|
|
|
175
176
|
TrialComponentStatus,
|
|
176
177
|
WorkerAccessConfiguration,
|
|
177
178
|
} from "./models_2";
|
|
179
|
+
export interface DescribeModelCardResponse {
|
|
180
|
+
ModelCardArn: string | undefined;
|
|
181
|
+
ModelCardName: string | undefined;
|
|
182
|
+
ModelCardVersion: number | undefined;
|
|
183
|
+
Content: string | undefined;
|
|
184
|
+
ModelCardStatus: ModelCardStatus | undefined;
|
|
185
|
+
SecurityConfig?: ModelCardSecurityConfig;
|
|
186
|
+
CreationTime: Date | undefined;
|
|
187
|
+
CreatedBy: UserContext | undefined;
|
|
188
|
+
LastModifiedTime?: Date;
|
|
189
|
+
LastModifiedBy?: UserContext;
|
|
190
|
+
ModelCardProcessingStatus?: ModelCardProcessingStatus;
|
|
191
|
+
}
|
|
192
|
+
export interface DescribeModelCardExportJobRequest {
|
|
193
|
+
ModelCardExportJobArn: string | undefined;
|
|
194
|
+
}
|
|
195
|
+
export interface ModelCardExportArtifacts {
|
|
196
|
+
S3ExportArtifacts: string | undefined;
|
|
197
|
+
}
|
|
178
198
|
export declare const ModelCardExportJobStatus: {
|
|
179
199
|
readonly COMPLETED: "Completed";
|
|
180
200
|
readonly FAILED: "Failed";
|
|
@@ -2436,28 +2456,9 @@ export interface ListModelCardVersionsResponse {
|
|
|
2436
2456
|
ModelCardVersionSummaryList: ModelCardVersionSummary[] | undefined;
|
|
2437
2457
|
NextToken?: string;
|
|
2438
2458
|
}
|
|
2439
|
-
export
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
SortOrder?: SortOrder;
|
|
2443
|
-
NextToken?: string;
|
|
2444
|
-
MaxResults?: number;
|
|
2445
|
-
NameContains?: string;
|
|
2446
|
-
CreationTimeBefore?: Date;
|
|
2447
|
-
CreationTimeAfter?: Date;
|
|
2448
|
-
}
|
|
2449
|
-
export interface ListModelExplainabilityJobDefinitionsResponse {
|
|
2450
|
-
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
2451
|
-
NextToken?: string;
|
|
2452
|
-
}
|
|
2453
|
-
export declare const ModelMetadataFilterType: {
|
|
2454
|
-
readonly DOMAIN: "Domain";
|
|
2455
|
-
readonly FRAMEWORK: "Framework";
|
|
2456
|
-
readonly FRAMEWORKVERSION: "FrameworkVersion";
|
|
2457
|
-
readonly TASK: "Task";
|
|
2458
|
-
};
|
|
2459
|
-
export type ModelMetadataFilterType =
|
|
2460
|
-
(typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
2459
|
+
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2460
|
+
obj: DescribeModelCardResponse
|
|
2461
|
+
) => any;
|
|
2461
2462
|
export declare const DescribeModelPackageOutputFilterSensitiveLog: (
|
|
2462
2463
|
obj: DescribeModelPackageOutput
|
|
2463
2464
|
) => any;
|
|
@@ -137,7 +137,6 @@ import {
|
|
|
137
137
|
LambdaStepMetadata,
|
|
138
138
|
LineageType,
|
|
139
139
|
MetricData,
|
|
140
|
-
ModelMetadataFilterType,
|
|
141
140
|
ModelPackageGroupStatus,
|
|
142
141
|
ModelPackageStatusDetails,
|
|
143
142
|
MonitoringExecutionSummary,
|
|
@@ -171,6 +170,28 @@ import {
|
|
|
171
170
|
Workforce,
|
|
172
171
|
Workteam,
|
|
173
172
|
} from "./models_3";
|
|
173
|
+
export interface ListModelExplainabilityJobDefinitionsRequest {
|
|
174
|
+
EndpointName?: string;
|
|
175
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
176
|
+
SortOrder?: SortOrder;
|
|
177
|
+
NextToken?: string;
|
|
178
|
+
MaxResults?: number;
|
|
179
|
+
NameContains?: string;
|
|
180
|
+
CreationTimeBefore?: Date;
|
|
181
|
+
CreationTimeAfter?: Date;
|
|
182
|
+
}
|
|
183
|
+
export interface ListModelExplainabilityJobDefinitionsResponse {
|
|
184
|
+
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
185
|
+
NextToken?: string;
|
|
186
|
+
}
|
|
187
|
+
export declare const ModelMetadataFilterType: {
|
|
188
|
+
readonly DOMAIN: "Domain";
|
|
189
|
+
readonly FRAMEWORK: "Framework";
|
|
190
|
+
readonly FRAMEWORKVERSION: "FrameworkVersion";
|
|
191
|
+
readonly TASK: "Task";
|
|
192
|
+
};
|
|
193
|
+
export type ModelMetadataFilterType =
|
|
194
|
+
(typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
174
195
|
export interface ModelMetadataFilter {
|
|
175
196
|
Name: ModelMetadataFilterType | undefined;
|
|
176
197
|
Value: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.629.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": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.629.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.629.0",
|
|
25
|
+
"@aws-sdk/core": "3.629.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.629.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|