@aws-sdk/client-sagemaker 3.679.0 → 3.683.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/README.md +1 -1
- package/dist-cjs/index.js +20 -9
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_2.js +0 -8
- package/dist-es/models/models_3.js +8 -0
- package/dist-es/protocols/Aws_json1_1.js +10 -0
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +3 -3
- package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +6 -6
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +8 -8
- package/dist-types/commands/CreateModelPackageCommand.d.ts +5 -0
- package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +24 -23
- package/dist-types/commands/CreateNotebookInstanceLifecycleConfigCommand.d.ts +9 -9
- package/dist-types/commands/CreatePipelineCommand.d.ts +2 -1
- package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +12 -3
- package/dist-types/commands/CreatePresignedNotebookInstanceUrlCommand.d.ts +9 -8
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +2 -2
- package/dist-types/commands/DeleteNotebookInstanceCommand.d.ts +4 -5
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +3 -3
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +8 -8
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +5 -0
- package/dist-types/commands/DescribeNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +2 -2
- package/dist-types/commands/ListModelBiasJobDefinitionsCommand.d.ts +1 -2
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +2 -2
- package/dist-types/commands/SearchCommand.d.ts +13 -8
- package/dist-types/commands/StartNotebookInstanceCommand.d.ts +3 -3
- package/dist-types/commands/StopNotebookInstanceCommand.d.ts +3 -4
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +6 -0
- package/dist-types/commands/UpdateWorkteamCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +10 -11
- package/dist-types/models/models_1.d.ts +138 -126
- package/dist-types/models/models_2.d.ts +31 -34
- package/dist-types/models/models_3.d.ts +50 -75
- package/dist-types/models/models_4.d.ts +126 -103
- package/dist-types/models/models_5.d.ts +50 -1
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListModelBiasJobDefinitionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateWorkteamCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +6 -3
- package/dist-types/ts3.4/models/models_2.d.ts +3 -10
- package/dist-types/ts3.4/models/models_3.d.ts +12 -11
- package/dist-types/ts3.4/models/models_4.d.ts +14 -10
- package/dist-types/ts3.4/models/models_5.d.ts +13 -1
- package/package.json +6 -6
|
@@ -53,6 +53,7 @@ import {
|
|
|
53
53
|
JobType,
|
|
54
54
|
ModelCardSecurityConfig,
|
|
55
55
|
ModelCardStatus,
|
|
56
|
+
ModelLifeCycle,
|
|
56
57
|
ModelMetrics,
|
|
57
58
|
ModelPackageModelCard,
|
|
58
59
|
ModelPackageSecurityConfig,
|
|
@@ -91,10 +92,8 @@ import {
|
|
|
91
92
|
ExperimentConfig,
|
|
92
93
|
FeatureParameter,
|
|
93
94
|
HyperParameterTrainingJobSummary,
|
|
94
|
-
MemberDefinition,
|
|
95
95
|
ModelArtifacts,
|
|
96
96
|
ModelClientConfig,
|
|
97
|
-
NotificationConfiguration,
|
|
98
97
|
OidcConfig,
|
|
99
98
|
ProcessingInput,
|
|
100
99
|
ProcessingOutputConfig,
|
|
@@ -114,7 +113,6 @@ import {
|
|
|
114
113
|
TrialComponentArtifact,
|
|
115
114
|
TrialComponentParameterValue,
|
|
116
115
|
TrialComponentStatus,
|
|
117
|
-
WorkerAccessConfiguration,
|
|
118
116
|
WorkforceVpcConfigRequest,
|
|
119
117
|
} from "./models_2";
|
|
120
118
|
import {
|
|
@@ -173,6 +171,16 @@ import {
|
|
|
173
171
|
Workforce,
|
|
174
172
|
Workteam,
|
|
175
173
|
} from "./models_3";
|
|
174
|
+
export interface ListModelBiasJobDefinitionsRequest {
|
|
175
|
+
EndpointName?: string;
|
|
176
|
+
SortBy?: MonitoringJobDefinitionSortKey;
|
|
177
|
+
SortOrder?: SortOrder;
|
|
178
|
+
NextToken?: string;
|
|
179
|
+
MaxResults?: number;
|
|
180
|
+
NameContains?: string;
|
|
181
|
+
CreationTimeBefore?: Date;
|
|
182
|
+
CreationTimeAfter?: Date;
|
|
183
|
+
}
|
|
176
184
|
export interface ListModelBiasJobDefinitionsResponse {
|
|
177
185
|
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
178
186
|
NextToken?: string;
|
|
@@ -1307,6 +1315,7 @@ export interface ModelPackage {
|
|
|
1307
1315
|
SourceUri?: string;
|
|
1308
1316
|
SecurityConfig?: ModelPackageSecurityConfig;
|
|
1309
1317
|
ModelCard?: ModelPackageModelCard;
|
|
1318
|
+
ModelLifeCycle?: ModelLifeCycle;
|
|
1310
1319
|
Tags?: Tag[];
|
|
1311
1320
|
CustomerMetadataProperties?: Record<string, string>;
|
|
1312
1321
|
DriftCheckBaselines?: DriftCheckBaselines;
|
|
@@ -1948,6 +1957,8 @@ export interface UpdateModelPackageInput {
|
|
|
1948
1957
|
InferenceSpecification?: InferenceSpecification;
|
|
1949
1958
|
SourceUri?: string;
|
|
1950
1959
|
ModelCard?: ModelPackageModelCard;
|
|
1960
|
+
ModelLifeCycle?: ModelLifeCycle;
|
|
1961
|
+
ClientToken?: string;
|
|
1951
1962
|
}
|
|
1952
1963
|
export interface UpdateModelPackageOutput {
|
|
1953
1964
|
ModelPackageArn: string | undefined;
|
|
@@ -2085,13 +2096,6 @@ export interface UpdateWorkforceRequest {
|
|
|
2085
2096
|
export interface UpdateWorkforceResponse {
|
|
2086
2097
|
Workforce: Workforce | undefined;
|
|
2087
2098
|
}
|
|
2088
|
-
export interface UpdateWorkteamRequest {
|
|
2089
|
-
WorkteamName: string | undefined;
|
|
2090
|
-
MemberDefinitions?: MemberDefinition[];
|
|
2091
|
-
Description?: string;
|
|
2092
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
2093
|
-
WorkerAccessConfiguration?: WorkerAccessConfiguration;
|
|
2094
|
-
}
|
|
2095
2099
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
2096
2100
|
export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
|
|
2097
2101
|
export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
|
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
import { BooleanOperator } from "./models_0";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
CrossAccountFilterOption,
|
|
4
|
+
MemberDefinition,
|
|
5
|
+
NotificationConfiguration,
|
|
6
|
+
WorkerAccessConfiguration,
|
|
7
|
+
} from "./models_2";
|
|
3
8
|
import { Filter, ResourceType, Workteam } from "./models_3";
|
|
4
9
|
import {
|
|
5
10
|
NestedFilters,
|
|
6
11
|
SearchSortOrder,
|
|
7
12
|
VisibilityConditions,
|
|
8
13
|
} from "./models_4";
|
|
14
|
+
export interface UpdateWorkteamRequest {
|
|
15
|
+
WorkteamName: string | undefined;
|
|
16
|
+
MemberDefinitions?: MemberDefinition[];
|
|
17
|
+
Description?: string;
|
|
18
|
+
NotificationConfiguration?: NotificationConfiguration;
|
|
19
|
+
WorkerAccessConfiguration?: WorkerAccessConfiguration;
|
|
20
|
+
}
|
|
9
21
|
export interface UpdateWorkteamResponse {
|
|
10
22
|
Workteam: Workteam | undefined;
|
|
11
23
|
}
|
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.683.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,19 +20,19 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.682.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.682.0",
|
|
25
25
|
"@aws-sdk/core": "3.679.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.682.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.679.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.679.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.679.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.682.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.679.0",
|
|
32
32
|
"@aws-sdk/types": "3.679.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.679.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.679.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.682.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.8",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.9",
|