@aws-sdk/client-sagemaker 3.577.0 → 3.582.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 +40 -17
- package/dist-es/models/models_2.js +4 -12
- package/dist-es/models/models_3.js +12 -4
- package/dist-es/models/models_4.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +17 -0
- package/dist-types/commands/CreateSpaceCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkteamCommand.d.ts +8 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +1 -2
- package/dist-types/commands/DescribeWorkteamCommand.d.ts +8 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +8 -0
- package/dist-types/commands/UpdateWorkteamCommand.d.ts +16 -0
- package/dist-types/models/models_2.d.ts +57 -139
- package/dist-types/models/models_3.d.ts +151 -119
- package/dist-types/models/models_4.d.ts +122 -10
- package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeSpaceCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_2.d.ts +17 -37
- package/dist-types/ts3.4/models/models_3.d.ts +39 -28
- package/dist-types/ts3.4/models/models_4.d.ts +31 -2
- package/package.json +11 -11
|
@@ -71,6 +71,7 @@ import {
|
|
|
71
71
|
RecommendationJobType,
|
|
72
72
|
ResourceLimits,
|
|
73
73
|
RetryStrategy,
|
|
74
|
+
ServiceCatalogProvisioningDetails,
|
|
74
75
|
SpaceSettings,
|
|
75
76
|
SpaceSharingSettings,
|
|
76
77
|
StudioLifecycleConfigAppType,
|
|
@@ -121,7 +122,6 @@ import {
|
|
|
121
122
|
ObjectiveStatusCounters,
|
|
122
123
|
OfflineStoreStatus,
|
|
123
124
|
OfflineStoreStatusValue,
|
|
124
|
-
PipelineExecutionStatus,
|
|
125
125
|
ProductionVariantSummary,
|
|
126
126
|
ProfilerConfig,
|
|
127
127
|
ProfilerRuleConfiguration,
|
|
@@ -137,7 +137,44 @@ import {
|
|
|
137
137
|
TrialComponentArtifact,
|
|
138
138
|
TrialComponentParameterValue,
|
|
139
139
|
TrialComponentStatus,
|
|
140
|
+
WorkerAccessConfiguration,
|
|
140
141
|
} from "./models_2";
|
|
142
|
+
export declare const ProjectStatus: {
|
|
143
|
+
readonly CREATE_COMPLETED: "CreateCompleted";
|
|
144
|
+
readonly CREATE_FAILED: "CreateFailed";
|
|
145
|
+
readonly CREATE_IN_PROGRESS: "CreateInProgress";
|
|
146
|
+
readonly DELETE_COMPLETED: "DeleteCompleted";
|
|
147
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
148
|
+
readonly DELETE_IN_PROGRESS: "DeleteInProgress";
|
|
149
|
+
readonly PENDING: "Pending";
|
|
150
|
+
readonly UPDATE_COMPLETED: "UpdateCompleted";
|
|
151
|
+
readonly UPDATE_FAILED: "UpdateFailed";
|
|
152
|
+
readonly UPDATE_IN_PROGRESS: "UpdateInProgress";
|
|
153
|
+
};
|
|
154
|
+
export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
|
|
155
|
+
export interface ServiceCatalogProvisionedProductDetails {
|
|
156
|
+
ProvisionedProductId?: string;
|
|
157
|
+
ProvisionedProductStatusMessage?: string;
|
|
158
|
+
}
|
|
159
|
+
export interface DescribeProjectOutput {
|
|
160
|
+
ProjectArn: string | undefined;
|
|
161
|
+
ProjectName: string | undefined;
|
|
162
|
+
ProjectId: string | undefined;
|
|
163
|
+
ProjectDescription?: string;
|
|
164
|
+
ServiceCatalogProvisioningDetails:
|
|
165
|
+
| ServiceCatalogProvisioningDetails
|
|
166
|
+
| undefined;
|
|
167
|
+
ServiceCatalogProvisionedProductDetails?: ServiceCatalogProvisionedProductDetails;
|
|
168
|
+
ProjectStatus: ProjectStatus | undefined;
|
|
169
|
+
CreatedBy?: UserContext;
|
|
170
|
+
CreationTime: Date | undefined;
|
|
171
|
+
LastModifiedTime?: Date;
|
|
172
|
+
LastModifiedBy?: UserContext;
|
|
173
|
+
}
|
|
174
|
+
export interface DescribeSpaceRequest {
|
|
175
|
+
DomainId: string | undefined;
|
|
176
|
+
SpaceName: string | undefined;
|
|
177
|
+
}
|
|
141
178
|
export declare const SpaceStatus: {
|
|
142
179
|
readonly Delete_Failed: "Delete_Failed";
|
|
143
180
|
readonly Deleting: "Deleting";
|
|
@@ -470,6 +507,7 @@ export interface Workteam {
|
|
|
470
507
|
CreateDate?: Date;
|
|
471
508
|
LastUpdatedDate?: Date;
|
|
472
509
|
NotificationConfiguration?: NotificationConfiguration;
|
|
510
|
+
WorkerAccessConfiguration?: WorkerAccessConfiguration;
|
|
473
511
|
}
|
|
474
512
|
export interface DescribeWorkteamResponse {
|
|
475
513
|
Workteam: Workteam | undefined;
|
|
@@ -2310,30 +2348,3 @@ export interface ListNotebookInstancesOutput {
|
|
|
2310
2348
|
NextToken?: string;
|
|
2311
2349
|
NotebookInstances?: NotebookInstanceSummary[];
|
|
2312
2350
|
}
|
|
2313
|
-
export declare const SortPipelineExecutionsBy: {
|
|
2314
|
-
readonly CREATION_TIME: "CreationTime";
|
|
2315
|
-
readonly PIPELINE_EXECUTION_ARN: "PipelineExecutionArn";
|
|
2316
|
-
};
|
|
2317
|
-
export type SortPipelineExecutionsBy =
|
|
2318
|
-
(typeof SortPipelineExecutionsBy)[keyof typeof SortPipelineExecutionsBy];
|
|
2319
|
-
export interface ListPipelineExecutionsRequest {
|
|
2320
|
-
PipelineName: string | undefined;
|
|
2321
|
-
CreatedAfter?: Date;
|
|
2322
|
-
CreatedBefore?: Date;
|
|
2323
|
-
SortBy?: SortPipelineExecutionsBy;
|
|
2324
|
-
SortOrder?: SortOrder;
|
|
2325
|
-
NextToken?: string;
|
|
2326
|
-
MaxResults?: number;
|
|
2327
|
-
}
|
|
2328
|
-
export interface PipelineExecutionSummary {
|
|
2329
|
-
PipelineExecutionArn?: string;
|
|
2330
|
-
StartTime?: Date;
|
|
2331
|
-
PipelineExecutionStatus?: PipelineExecutionStatus;
|
|
2332
|
-
PipelineExecutionDescription?: string;
|
|
2333
|
-
PipelineExecutionDisplayName?: string;
|
|
2334
|
-
PipelineExecutionFailureReason?: string;
|
|
2335
|
-
}
|
|
2336
|
-
export interface ListPipelineExecutionsResponse {
|
|
2337
|
-
PipelineExecutionSummaries?: PipelineExecutionSummary[];
|
|
2338
|
-
NextToken?: string;
|
|
2339
|
-
}
|
|
@@ -110,16 +110,15 @@ import {
|
|
|
110
110
|
ProcessingJobStatus,
|
|
111
111
|
ProfilerConfig,
|
|
112
112
|
ProfilerRuleConfiguration,
|
|
113
|
-
ProjectStatus,
|
|
114
113
|
ScheduleStatus,
|
|
115
114
|
SelectiveExecutionConfig,
|
|
116
|
-
ServiceCatalogProvisionedProductDetails,
|
|
117
115
|
SourceIpConfig,
|
|
118
116
|
TensorBoardOutputConfig,
|
|
119
117
|
TrainingJobStatus,
|
|
120
118
|
TrialComponentArtifact,
|
|
121
119
|
TrialComponentParameterValue,
|
|
122
120
|
TrialComponentStatus,
|
|
121
|
+
WorkerAccessConfiguration,
|
|
123
122
|
WorkforceVpcConfigRequest,
|
|
124
123
|
} from "./models_2";
|
|
125
124
|
import {
|
|
@@ -143,9 +142,11 @@ import {
|
|
|
143
142
|
LineageType,
|
|
144
143
|
MetricData,
|
|
145
144
|
MonitoringAlertSummary,
|
|
145
|
+
ProjectStatus,
|
|
146
146
|
ResourceType,
|
|
147
147
|
SecondaryStatus,
|
|
148
148
|
SecondaryStatusTransition,
|
|
149
|
+
ServiceCatalogProvisionedProductDetails,
|
|
149
150
|
SortBy,
|
|
150
151
|
SortOrder,
|
|
151
152
|
SpaceStatus,
|
|
@@ -160,6 +161,33 @@ import {
|
|
|
160
161
|
Workforce,
|
|
161
162
|
Workteam,
|
|
162
163
|
} from "./models_3";
|
|
164
|
+
export declare const SortPipelineExecutionsBy: {
|
|
165
|
+
readonly CREATION_TIME: "CreationTime";
|
|
166
|
+
readonly PIPELINE_EXECUTION_ARN: "PipelineExecutionArn";
|
|
167
|
+
};
|
|
168
|
+
export type SortPipelineExecutionsBy =
|
|
169
|
+
(typeof SortPipelineExecutionsBy)[keyof typeof SortPipelineExecutionsBy];
|
|
170
|
+
export interface ListPipelineExecutionsRequest {
|
|
171
|
+
PipelineName: string | undefined;
|
|
172
|
+
CreatedAfter?: Date;
|
|
173
|
+
CreatedBefore?: Date;
|
|
174
|
+
SortBy?: SortPipelineExecutionsBy;
|
|
175
|
+
SortOrder?: SortOrder;
|
|
176
|
+
NextToken?: string;
|
|
177
|
+
MaxResults?: number;
|
|
178
|
+
}
|
|
179
|
+
export interface PipelineExecutionSummary {
|
|
180
|
+
PipelineExecutionArn?: string;
|
|
181
|
+
StartTime?: Date;
|
|
182
|
+
PipelineExecutionStatus?: PipelineExecutionStatus;
|
|
183
|
+
PipelineExecutionDescription?: string;
|
|
184
|
+
PipelineExecutionDisplayName?: string;
|
|
185
|
+
PipelineExecutionFailureReason?: string;
|
|
186
|
+
}
|
|
187
|
+
export interface ListPipelineExecutionsResponse {
|
|
188
|
+
PipelineExecutionSummaries?: PipelineExecutionSummary[];
|
|
189
|
+
NextToken?: string;
|
|
190
|
+
}
|
|
163
191
|
export interface ListPipelineExecutionStepsRequest {
|
|
164
192
|
PipelineExecutionArn?: string;
|
|
165
193
|
NextToken?: string;
|
|
@@ -1534,6 +1562,7 @@ export interface UpdateWorkteamRequest {
|
|
|
1534
1562
|
MemberDefinitions?: MemberDefinition[];
|
|
1535
1563
|
Description?: string;
|
|
1536
1564
|
NotificationConfiguration?: NotificationConfiguration;
|
|
1565
|
+
WorkerAccessConfiguration?: WorkerAccessConfiguration;
|
|
1537
1566
|
}
|
|
1538
1567
|
export interface UpdateWorkteamResponse {
|
|
1539
1568
|
Workteam: Workteam | 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.582.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": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.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.582.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.582.0",
|
|
25
|
+
"@aws-sdk/core": "3.582.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.582.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -34,26 +34,26 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.577.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.0",
|
|
37
|
-
"@smithy/core": "^2.0.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.0.
|
|
37
|
+
"@smithy/core": "^2.0.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.0",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.0.0",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.1",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.0",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.0",
|
|
46
46
|
"@smithy/node-config-provider": "^3.0.0",
|
|
47
47
|
"@smithy/node-http-handler": "^3.0.0",
|
|
48
48
|
"@smithy/protocol-http": "^4.0.0",
|
|
49
|
-
"@smithy/smithy-client": "^3.0.
|
|
49
|
+
"@smithy/smithy-client": "^3.0.1",
|
|
50
50
|
"@smithy/types": "^3.0.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.0",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.1",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.1",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.0",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.0",
|
|
59
59
|
"@smithy/util-retry": "^3.0.0",
|