@aws-sdk/client-sagemaker 3.820.0 → 3.821.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 +62 -23
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/models/models_2.js +0 -15
- package/dist-es/models/models_3.js +15 -5
- package/dist-es/models/models_4.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +36 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +1 -0
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +1 -0
- package/dist-types/commands/DescribeEndpointCommand.d.ts +30 -0
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +8 -0
- package/dist-types/commands/DescribeFlowDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeHubCommand.d.ts +1 -2
- package/dist-types/commands/ListCodeRepositoriesCommand.d.ts +1 -1
- package/dist-types/commands/ListCompilationJobsCommand.d.ts +1 -2
- package/dist-types/commands/SearchCommand.d.ts +30 -0
- package/dist-types/commands/StopCompilationJobCommand.d.ts +1 -1
- package/dist-types/commands/StopEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/commands/StopEdgePackagingJobCommand.d.ts +1 -1
- package/dist-types/commands/StopHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +11 -11
- package/dist-types/models/models_1.d.ts +38 -53
- package/dist-types/models/models_2.d.ts +121 -98
- package/dist-types/models/models_3.d.ts +99 -136
- package/dist-types/models/models_4.d.ts +134 -46
- package/dist-types/models/models_5.d.ts +45 -0
- package/dist-types/ts3.4/commands/DescribeFlowDefinitionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeHubCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListCodeRepositoriesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListCompilationJobsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StopCompilationJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopEdgePackagingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +5 -3
- package/dist-types/ts3.4/models/models_1.d.ts +13 -13
- package/dist-types/ts3.4/models/models_2.d.ts +32 -39
- package/dist-types/ts3.4/models/models_3.d.ts +37 -40
- package/dist-types/ts3.4/models/models_4.d.ts +38 -13
- package/dist-types/ts3.4/models/models_5.d.ts +13 -0
- package/package.json +34 -34
|
@@ -12,6 +12,10 @@ import {
|
|
|
12
12
|
Channel,
|
|
13
13
|
CheckpointConfig,
|
|
14
14
|
ClarifyCheckStepMetadata,
|
|
15
|
+
CodeRepositorySortBy,
|
|
16
|
+
CodeRepositorySortOrder,
|
|
17
|
+
CodeRepositorySummary,
|
|
18
|
+
CompilationJobStatus,
|
|
15
19
|
CompilationJobSummary,
|
|
16
20
|
ComputeQuotaSummary,
|
|
17
21
|
ConditionStepMetadata,
|
|
@@ -184,6 +188,40 @@ import {
|
|
|
184
188
|
Workforce,
|
|
185
189
|
Workteam,
|
|
186
190
|
} from "./models_3";
|
|
191
|
+
export interface ListCodeRepositoriesInput {
|
|
192
|
+
CreationTimeAfter?: Date | undefined;
|
|
193
|
+
CreationTimeBefore?: Date | undefined;
|
|
194
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
195
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
196
|
+
MaxResults?: number | undefined;
|
|
197
|
+
NameContains?: string | undefined;
|
|
198
|
+
NextToken?: string | undefined;
|
|
199
|
+
SortBy?: CodeRepositorySortBy | undefined;
|
|
200
|
+
SortOrder?: CodeRepositorySortOrder | undefined;
|
|
201
|
+
}
|
|
202
|
+
export interface ListCodeRepositoriesOutput {
|
|
203
|
+
CodeRepositorySummaryList: CodeRepositorySummary[] | undefined;
|
|
204
|
+
NextToken?: string | undefined;
|
|
205
|
+
}
|
|
206
|
+
export declare const ListCompilationJobsSortBy: {
|
|
207
|
+
readonly CREATION_TIME: "CreationTime";
|
|
208
|
+
readonly NAME: "Name";
|
|
209
|
+
readonly STATUS: "Status";
|
|
210
|
+
};
|
|
211
|
+
export type ListCompilationJobsSortBy =
|
|
212
|
+
(typeof ListCompilationJobsSortBy)[keyof typeof ListCompilationJobsSortBy];
|
|
213
|
+
export interface ListCompilationJobsRequest {
|
|
214
|
+
NextToken?: string | undefined;
|
|
215
|
+
MaxResults?: number | undefined;
|
|
216
|
+
CreationTimeAfter?: Date | undefined;
|
|
217
|
+
CreationTimeBefore?: Date | undefined;
|
|
218
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
219
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
220
|
+
NameContains?: string | undefined;
|
|
221
|
+
StatusEquals?: CompilationJobStatus | undefined;
|
|
222
|
+
SortBy?: ListCompilationJobsSortBy | undefined;
|
|
223
|
+
SortOrder?: SortOrder | undefined;
|
|
224
|
+
}
|
|
187
225
|
export interface ListCompilationJobsResponse {
|
|
188
226
|
CompilationJobSummaries: CompilationJobSummary[] | undefined;
|
|
189
227
|
NextToken?: string | undefined;
|
|
@@ -2316,19 +2354,6 @@ export interface StartPipelineExecutionResponse {
|
|
|
2316
2354
|
export interface StopAutoMLJobRequest {
|
|
2317
2355
|
AutoMLJobName: string | undefined;
|
|
2318
2356
|
}
|
|
2319
|
-
export interface StopCompilationJobRequest {
|
|
2320
|
-
CompilationJobName: string | undefined;
|
|
2321
|
-
}
|
|
2322
|
-
export interface StopEdgeDeploymentStageRequest {
|
|
2323
|
-
EdgeDeploymentPlanName: string | undefined;
|
|
2324
|
-
StageName: string | undefined;
|
|
2325
|
-
}
|
|
2326
|
-
export interface StopEdgePackagingJobRequest {
|
|
2327
|
-
EdgePackagingJobName: string | undefined;
|
|
2328
|
-
}
|
|
2329
|
-
export interface StopHyperParameterTuningJobRequest {
|
|
2330
|
-
HyperParameterTuningJobName: string | undefined;
|
|
2331
|
-
}
|
|
2332
2357
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
2333
2358
|
export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
|
|
2334
2359
|
export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
|
|
@@ -90,6 +90,19 @@ import {
|
|
|
90
90
|
SearchSortOrder,
|
|
91
91
|
VisibilityConditions,
|
|
92
92
|
} from "./models_4";
|
|
93
|
+
export interface StopCompilationJobRequest {
|
|
94
|
+
CompilationJobName: string | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface StopEdgeDeploymentStageRequest {
|
|
97
|
+
EdgeDeploymentPlanName: string | undefined;
|
|
98
|
+
StageName: string | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface StopEdgePackagingJobRequest {
|
|
101
|
+
EdgePackagingJobName: string | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface StopHyperParameterTuningJobRequest {
|
|
104
|
+
HyperParameterTuningJobName: string | undefined;
|
|
105
|
+
}
|
|
93
106
|
export interface StopInferenceExperimentRequest {
|
|
94
107
|
Name: string | undefined;
|
|
95
108
|
ModelVariantActions: Record<string, ModelVariantAction> | 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.821.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,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.1.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
43
|
-
"@smithy/middleware-stack": "^4.0.
|
|
44
|
-
"@smithy/node-config-provider": "^4.1.
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
46
|
-
"@smithy/protocol-http": "^5.1.
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.821.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.821.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.821.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.821.0",
|
|
30
|
+
"@aws-sdk/types": "3.821.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.821.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.821.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.821.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.4",
|
|
35
|
+
"@smithy/core": "^3.5.1",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.4",
|
|
37
|
+
"@smithy/hash-node": "^4.0.4",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.4",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.4",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.10",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.8",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.4",
|
|
44
|
+
"@smithy/node-config-provider": "^4.1.3",
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.6",
|
|
46
|
+
"@smithy/protocol-http": "^5.1.2",
|
|
47
|
+
"@smithy/smithy-client": "^4.4.1",
|
|
48
|
+
"@smithy/types": "^4.3.1",
|
|
49
|
+
"@smithy/url-parser": "^4.0.4",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
56
|
-
"@smithy/util-middleware": "^4.0.
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.17",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.17",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.6",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.4",
|
|
57
|
+
"@smithy/util-retry": "^4.0.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
|
-
"@smithy/util-waiter": "^4.0.
|
|
59
|
+
"@smithy/util-waiter": "^4.0.5",
|
|
60
60
|
"@types/uuid": "^9.0.1",
|
|
61
61
|
"tslib": "^2.6.2",
|
|
62
62
|
"uuid": "^9.0.1"
|