@aws-sdk/client-sagemaker 3.621.0 → 3.622.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 +42 -29
- package/dist-es/SageMakerClient.js +12 -18
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +4 -5
- package/dist-es/models/models_3.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +23 -0
- package/dist-types/SageMakerClient.d.ts +2 -4
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
- package/dist-types/commands/CreateDomainCommand.d.ts +16 -0
- package/dist-types/commands/CreateUserProfileCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +16 -0
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +8 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +8 -0
- package/dist-types/models/models_1.d.ts +37 -12
- package/dist-types/models/models_2.d.ts +13 -14
- package/dist-types/models/models_3.d.ts +14 -18
- package/dist-types/models/models_4.d.ts +18 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/SageMakerClient.d.ts +6 -8
- package/dist-types/ts3.4/models/models_1.d.ts +5 -6
- package/dist-types/ts3.4/models/models_2.d.ts +6 -8
- package/dist-types/ts3.4/models/models_3.d.ts +7 -5
- package/dist-types/ts3.4/models/models_4.d.ts +5 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
- package/package.json +10 -10
package/dist-cjs/index.js
CHANGED
|
@@ -865,25 +865,27 @@ var _SageMakerClient = class _SageMakerClient extends import_smithy_client.Clien
|
|
|
865
865
|
constructor(...[configuration]) {
|
|
866
866
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
867
867
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
868
|
-
const _config_2 = (0,
|
|
869
|
-
const _config_3 = (0,
|
|
870
|
-
const _config_4 = (0,
|
|
871
|
-
const _config_5 = (0,
|
|
872
|
-
const _config_6 = (0,
|
|
868
|
+
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
869
|
+
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
870
|
+
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
871
|
+
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
872
|
+
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
873
873
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
874
874
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
875
875
|
super(_config_8);
|
|
876
876
|
this.config = _config_8;
|
|
877
|
-
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
878
|
-
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
879
|
-
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
880
877
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
881
878
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
882
879
|
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
880
|
+
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
881
|
+
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
882
|
+
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
883
883
|
this.middlewareStack.use(
|
|
884
884
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
885
|
-
httpAuthSchemeParametersProvider:
|
|
886
|
-
identityProviderConfigProvider:
|
|
885
|
+
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultSageMakerHttpAuthSchemeParametersProvider,
|
|
886
|
+
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
887
|
+
"aws.auth#sigv4": config.credentials
|
|
888
|
+
})
|
|
887
889
|
})
|
|
888
890
|
);
|
|
889
891
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -896,14 +898,6 @@ var _SageMakerClient = class _SageMakerClient extends import_smithy_client.Clien
|
|
|
896
898
|
destroy() {
|
|
897
899
|
super.destroy();
|
|
898
900
|
}
|
|
899
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
900
|
-
return import_httpAuthSchemeProvider.defaultSageMakerHttpAuthSchemeParametersProvider;
|
|
901
|
-
}
|
|
902
|
-
getIdentityProviderConfigProvider() {
|
|
903
|
-
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
904
|
-
"aws.auth#sigv4": config.credentials
|
|
905
|
-
});
|
|
906
|
-
}
|
|
907
901
|
};
|
|
908
902
|
__name(_SageMakerClient, "SageMakerClient");
|
|
909
903
|
var SageMakerClient = _SageMakerClient;
|
|
@@ -2225,6 +2219,10 @@ var ResourceInUse = _ResourceInUse;
|
|
|
2225
2219
|
|
|
2226
2220
|
// src/models/models_2.ts
|
|
2227
2221
|
|
|
2222
|
+
var ProcessingS3DataType = {
|
|
2223
|
+
MANIFEST_FILE: "ManifestFile",
|
|
2224
|
+
S3_PREFIX: "S3Prefix"
|
|
2225
|
+
};
|
|
2228
2226
|
var CustomFileSystem;
|
|
2229
2227
|
((CustomFileSystem3) => {
|
|
2230
2228
|
CustomFileSystem3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -2503,11 +2501,6 @@ var ModelCardProcessingStatus = {
|
|
|
2503
2501
|
DELETE_PENDING: "DeletePending",
|
|
2504
2502
|
EXPORTJOBS_DELETED: "ExportJobsDeleted"
|
|
2505
2503
|
};
|
|
2506
|
-
var ModelCardExportJobStatus = {
|
|
2507
|
-
COMPLETED: "Completed",
|
|
2508
|
-
FAILED: "Failed",
|
|
2509
|
-
IN_PROGRESS: "InProgress"
|
|
2510
|
-
};
|
|
2511
2504
|
var OidcConfigFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2512
2505
|
...obj,
|
|
2513
2506
|
...obj.ClientSecret && { ClientSecret: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -10405,6 +10398,12 @@ var de_AssociationSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
10405
10398
|
SourceType: import_smithy_client.expectString
|
|
10406
10399
|
});
|
|
10407
10400
|
}, "de_AssociationSummary");
|
|
10401
|
+
var de_AssumableRoleArns = /* @__PURE__ */ __name((output, context) => {
|
|
10402
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
10403
|
+
return (0, import_smithy_client.expectString)(entry);
|
|
10404
|
+
});
|
|
10405
|
+
return retVal;
|
|
10406
|
+
}, "de_AssumableRoleArns");
|
|
10408
10407
|
var de_AsyncInferenceClientConfig = /* @__PURE__ */ __name((output, context) => {
|
|
10409
10408
|
return (0, import_smithy_client.take)(output, {
|
|
10410
10409
|
MaxConcurrentInvocationsPerInstance: import_smithy_client.expectInt32
|
|
@@ -13335,6 +13334,12 @@ var de_EFSFileSystemConfig = /* @__PURE__ */ __name((output, context) => {
|
|
|
13335
13334
|
FileSystemPath: import_smithy_client.expectString
|
|
13336
13335
|
});
|
|
13337
13336
|
}, "de_EFSFileSystemConfig");
|
|
13337
|
+
var de_EmrSettings = /* @__PURE__ */ __name((output, context) => {
|
|
13338
|
+
return (0, import_smithy_client.take)(output, {
|
|
13339
|
+
AssumableRoleArns: (_) => de_AssumableRoleArns(_, context),
|
|
13340
|
+
ExecutionRoleArns: (_) => de_ExecutionRoleArns(_, context)
|
|
13341
|
+
});
|
|
13342
|
+
}, "de_EmrSettings");
|
|
13338
13343
|
var de_EMRStepMetadata = /* @__PURE__ */ __name((output, context) => {
|
|
13339
13344
|
return (0, import_smithy_client.take)(output, {
|
|
13340
13345
|
ClusterId: import_smithy_client.expectString,
|
|
@@ -13486,6 +13491,12 @@ var de_EnvironmentParameters = /* @__PURE__ */ __name((output, context) => {
|
|
|
13486
13491
|
});
|
|
13487
13492
|
return retVal;
|
|
13488
13493
|
}, "de_EnvironmentParameters");
|
|
13494
|
+
var de_ExecutionRoleArns = /* @__PURE__ */ __name((output, context) => {
|
|
13495
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
13496
|
+
return (0, import_smithy_client.expectString)(entry);
|
|
13497
|
+
});
|
|
13498
|
+
return retVal;
|
|
13499
|
+
}, "de_ExecutionRoleArns");
|
|
13489
13500
|
var de_Experiment = /* @__PURE__ */ __name((output, context) => {
|
|
13490
13501
|
return (0, import_smithy_client.take)(output, {
|
|
13491
13502
|
CreatedBy: (_) => de_UserContext(_, context),
|
|
@@ -14480,6 +14491,7 @@ var de_JupyterLabAppSettings = /* @__PURE__ */ __name((output, context) => {
|
|
|
14480
14491
|
CodeRepositories: (_) => de_CodeRepositories(_, context),
|
|
14481
14492
|
CustomImages: (_) => de_CustomImages(_, context),
|
|
14482
14493
|
DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
|
|
14494
|
+
EmrSettings: (_) => de_EmrSettings(_, context),
|
|
14483
14495
|
LifecycleConfigArns: (_) => de_LifecycleConfigArns(_, context)
|
|
14484
14496
|
});
|
|
14485
14497
|
}, "de_JupyterLabAppSettings");
|
|
@@ -19603,10 +19615,6 @@ var ProcessingS3CompressionType = {
|
|
|
19603
19615
|
GZIP: "Gzip",
|
|
19604
19616
|
NONE: "None"
|
|
19605
19617
|
};
|
|
19606
|
-
var ProcessingS3DataType = {
|
|
19607
|
-
MANIFEST_FILE: "ManifestFile",
|
|
19608
|
-
S3_PREFIX: "S3Prefix"
|
|
19609
|
-
};
|
|
19610
19618
|
var CreateModelCardRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
19611
19619
|
...obj,
|
|
19612
19620
|
...obj.Content && { Content: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -21543,6 +21551,11 @@ var DescribeModelExplainabilityJobDefinitionCommand = _DescribeModelExplainabili
|
|
|
21543
21551
|
|
|
21544
21552
|
|
|
21545
21553
|
// src/models/models_3.ts
|
|
21554
|
+
var ModelCardExportJobStatus = {
|
|
21555
|
+
COMPLETED: "Completed",
|
|
21556
|
+
FAILED: "Failed",
|
|
21557
|
+
IN_PROGRESS: "InProgress"
|
|
21558
|
+
};
|
|
21546
21559
|
var DetailedModelPackageStatus = {
|
|
21547
21560
|
COMPLETED: "Completed",
|
|
21548
21561
|
FAILED: "Failed",
|
|
@@ -26720,10 +26733,10 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
26720
26733
|
RedshiftResultCompressionType,
|
|
26721
26734
|
RedshiftResultFormat,
|
|
26722
26735
|
ProcessingS3CompressionType,
|
|
26723
|
-
ProcessingS3DataType,
|
|
26724
26736
|
CreateModelCardRequestFilterSensitiveLog,
|
|
26725
26737
|
ModelPackageModelCardFilterSensitiveLog,
|
|
26726
26738
|
CreateModelPackageInputFilterSensitiveLog,
|
|
26739
|
+
ProcessingS3DataType,
|
|
26727
26740
|
CustomFileSystem,
|
|
26728
26741
|
SharingType,
|
|
26729
26742
|
StudioLifecycleConfigAppType,
|
|
@@ -26763,10 +26776,10 @@ var waitUntilTransformJobCompletedOrStopped = /* @__PURE__ */ __name(async (para
|
|
|
26763
26776
|
IsTrackingServerActive,
|
|
26764
26777
|
TrackingServerStatus,
|
|
26765
26778
|
ModelCardProcessingStatus,
|
|
26766
|
-
ModelCardExportJobStatus,
|
|
26767
26779
|
OidcConfigFilterSensitiveLog,
|
|
26768
26780
|
CreateWorkforceRequestFilterSensitiveLog,
|
|
26769
26781
|
DescribeModelCardResponseFilterSensitiveLog,
|
|
26782
|
+
ModelCardExportJobStatus,
|
|
26770
26783
|
DetailedModelPackageStatus,
|
|
26771
26784
|
ModelPackageGroupStatus,
|
|
26772
26785
|
ExecutionStatus,
|
|
@@ -17,36 +17,30 @@ export class SageMakerClient extends __Client {
|
|
|
17
17
|
constructor(...[configuration]) {
|
|
18
18
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
19
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
20
|
-
const _config_2 =
|
|
21
|
-
const _config_3 =
|
|
22
|
-
const _config_4 =
|
|
23
|
-
const _config_5 =
|
|
24
|
-
const _config_6 =
|
|
20
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
21
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
22
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
23
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
24
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
25
25
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
26
26
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
27
27
|
super(_config_8);
|
|
28
28
|
this.config = _config_8;
|
|
29
|
-
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
30
|
-
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
31
|
-
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
32
29
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
30
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
34
31
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
32
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
33
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
34
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
35
35
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
36
|
-
httpAuthSchemeParametersProvider:
|
|
37
|
-
identityProviderConfigProvider:
|
|
36
|
+
httpAuthSchemeParametersProvider: defaultSageMakerHttpAuthSchemeParametersProvider,
|
|
37
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
38
|
+
"aws.auth#sigv4": config.credentials,
|
|
39
|
+
}),
|
|
38
40
|
}));
|
|
39
41
|
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
40
42
|
}
|
|
41
43
|
destroy() {
|
|
42
44
|
super.destroy();
|
|
43
45
|
}
|
|
44
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
45
|
-
return defaultSageMakerHttpAuthSchemeParametersProvider;
|
|
46
|
-
}
|
|
47
|
-
getIdentityProviderConfigProvider() {
|
|
48
|
-
return async (config) => new DefaultIdentityProviderConfig({
|
|
49
|
-
"aws.auth#sigv4": config.credentials,
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
46
|
}
|
|
@@ -503,10 +503,6 @@ export const ProcessingS3CompressionType = {
|
|
|
503
503
|
GZIP: "Gzip",
|
|
504
504
|
NONE: "None",
|
|
505
505
|
};
|
|
506
|
-
export const ProcessingS3DataType = {
|
|
507
|
-
MANIFEST_FILE: "ManifestFile",
|
|
508
|
-
S3_PREFIX: "S3Prefix",
|
|
509
|
-
};
|
|
510
506
|
export const CreateModelCardRequestFilterSensitiveLog = (obj) => ({
|
|
511
507
|
...obj,
|
|
512
508
|
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
+
export const ProcessingS3DataType = {
|
|
3
|
+
MANIFEST_FILE: "ManifestFile",
|
|
4
|
+
S3_PREFIX: "S3Prefix",
|
|
5
|
+
};
|
|
2
6
|
export var CustomFileSystem;
|
|
3
7
|
(function (CustomFileSystem) {
|
|
4
8
|
CustomFileSystem.visit = (value, visitor) => {
|
|
@@ -277,11 +281,6 @@ export const ModelCardProcessingStatus = {
|
|
|
277
281
|
DELETE_PENDING: "DeletePending",
|
|
278
282
|
EXPORTJOBS_DELETED: "ExportJobsDeleted",
|
|
279
283
|
};
|
|
280
|
-
export const ModelCardExportJobStatus = {
|
|
281
|
-
COMPLETED: "Completed",
|
|
282
|
-
FAILED: "Failed",
|
|
283
|
-
IN_PROGRESS: "InProgress",
|
|
284
|
-
};
|
|
285
284
|
export const OidcConfigFilterSensitiveLog = (obj) => ({
|
|
286
285
|
...obj,
|
|
287
286
|
...(obj.ClientSecret && { ClientSecret: SENSITIVE_STRING }),
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { ModelPackageModelCardFilterSensitiveLog, } from "./models_1";
|
|
2
|
+
export const ModelCardExportJobStatus = {
|
|
3
|
+
COMPLETED: "Completed",
|
|
4
|
+
FAILED: "Failed",
|
|
5
|
+
IN_PROGRESS: "InProgress",
|
|
6
|
+
};
|
|
2
7
|
export const DetailedModelPackageStatus = {
|
|
3
8
|
COMPLETED: "Completed",
|
|
4
9
|
FAILED: "Failed",
|
|
@@ -7921,6 +7921,14 @@ const de_AssociationSummary = (output, context) => {
|
|
|
7921
7921
|
SourceType: __expectString,
|
|
7922
7922
|
});
|
|
7923
7923
|
};
|
|
7924
|
+
const de_AssumableRoleArns = (output, context) => {
|
|
7925
|
+
const retVal = (output || [])
|
|
7926
|
+
.filter((e) => e != null)
|
|
7927
|
+
.map((entry) => {
|
|
7928
|
+
return __expectString(entry);
|
|
7929
|
+
});
|
|
7930
|
+
return retVal;
|
|
7931
|
+
};
|
|
7924
7932
|
const de_AsyncInferenceClientConfig = (output, context) => {
|
|
7925
7933
|
return take(output, {
|
|
7926
7934
|
MaxConcurrentInvocationsPerInstance: __expectInt32,
|
|
@@ -10967,6 +10975,12 @@ const de_EFSFileSystemConfig = (output, context) => {
|
|
|
10967
10975
|
FileSystemPath: __expectString,
|
|
10968
10976
|
});
|
|
10969
10977
|
};
|
|
10978
|
+
const de_EmrSettings = (output, context) => {
|
|
10979
|
+
return take(output, {
|
|
10980
|
+
AssumableRoleArns: (_) => de_AssumableRoleArns(_, context),
|
|
10981
|
+
ExecutionRoleArns: (_) => de_ExecutionRoleArns(_, context),
|
|
10982
|
+
});
|
|
10983
|
+
};
|
|
10970
10984
|
const de_EMRStepMetadata = (output, context) => {
|
|
10971
10985
|
return take(output, {
|
|
10972
10986
|
ClusterId: __expectString,
|
|
@@ -11130,6 +11144,14 @@ const de_EnvironmentParameters = (output, context) => {
|
|
|
11130
11144
|
});
|
|
11131
11145
|
return retVal;
|
|
11132
11146
|
};
|
|
11147
|
+
const de_ExecutionRoleArns = (output, context) => {
|
|
11148
|
+
const retVal = (output || [])
|
|
11149
|
+
.filter((e) => e != null)
|
|
11150
|
+
.map((entry) => {
|
|
11151
|
+
return __expectString(entry);
|
|
11152
|
+
});
|
|
11153
|
+
return retVal;
|
|
11154
|
+
};
|
|
11133
11155
|
const de_Experiment = (output, context) => {
|
|
11134
11156
|
return take(output, {
|
|
11135
11157
|
CreatedBy: (_) => de_UserContext(_, context),
|
|
@@ -12199,6 +12221,7 @@ const de_JupyterLabAppSettings = (output, context) => {
|
|
|
12199
12221
|
CodeRepositories: (_) => de_CodeRepositories(_, context),
|
|
12200
12222
|
CustomImages: (_) => de_CustomImages(_, context),
|
|
12201
12223
|
DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
|
|
12224
|
+
EmrSettings: (_) => de_EmrSettings(_, context),
|
|
12202
12225
|
LifecycleConfigArns: (_) => de_LifecycleConfigArns(_, context),
|
|
12203
12226
|
});
|
|
12204
12227
|
};
|
|
@@ -466,7 +466,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
466
466
|
/**
|
|
467
467
|
* @public
|
|
468
468
|
*/
|
|
469
|
-
export type SageMakerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
469
|
+
export type SageMakerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
470
470
|
/**
|
|
471
471
|
* @public
|
|
472
472
|
*
|
|
@@ -477,7 +477,7 @@ export interface SageMakerClientConfig extends SageMakerClientConfigType {
|
|
|
477
477
|
/**
|
|
478
478
|
* @public
|
|
479
479
|
*/
|
|
480
|
-
export type SageMakerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
480
|
+
export type SageMakerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
481
481
|
/**
|
|
482
482
|
* @public
|
|
483
483
|
*
|
|
@@ -516,6 +516,4 @@ export declare class SageMakerClient extends __Client<__HttpHandlerOptions, Serv
|
|
|
516
516
|
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
517
517
|
*/
|
|
518
518
|
destroy(): void;
|
|
519
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
520
|
-
private getIdentityProviderConfigProvider;
|
|
521
519
|
}
|
|
@@ -30,12 +30,12 @@ export declare const defaultSageMakerHttpAuthSchemeProvider: SageMakerHttpAuthSc
|
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
34
34
|
* @internal
|
|
35
35
|
*/
|
|
36
36
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
39
39
|
* @internal
|
|
40
40
|
*/
|
|
41
41
|
httpAuthSchemeProvider?: SageMakerHttpAuthSchemeProvider;
|
|
@@ -45,12 +45,12 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
|
45
45
|
*/
|
|
46
46
|
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
49
49
|
* @internal
|
|
50
50
|
*/
|
|
51
51
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
54
54
|
* @internal
|
|
55
55
|
*/
|
|
56
56
|
readonly httpAuthSchemeProvider: SageMakerHttpAuthSchemeProvider;
|
|
@@ -221,6 +221,14 @@ declare const CreateDomainCommand_base: {
|
|
|
221
221
|
* RepositoryUrl: "STRING_VALUE", // required
|
|
222
222
|
* },
|
|
223
223
|
* ],
|
|
224
|
+
* EmrSettings: { // EmrSettings
|
|
225
|
+
* AssumableRoleArns: [ // AssumableRoleArns
|
|
226
|
+
* "STRING_VALUE",
|
|
227
|
+
* ],
|
|
228
|
+
* ExecutionRoleArns: [ // ExecutionRoleArns
|
|
229
|
+
* "STRING_VALUE",
|
|
230
|
+
* ],
|
|
231
|
+
* },
|
|
224
232
|
* },
|
|
225
233
|
* SpaceStorageSettings: { // DefaultSpaceStorageSettings
|
|
226
234
|
* DefaultEbsStorageSettings: { // DefaultEbsStorageSettings
|
|
@@ -323,6 +331,14 @@ declare const CreateDomainCommand_base: {
|
|
|
323
331
|
* RepositoryUrl: "STRING_VALUE", // required
|
|
324
332
|
* },
|
|
325
333
|
* ],
|
|
334
|
+
* EmrSettings: {
|
|
335
|
+
* AssumableRoleArns: [
|
|
336
|
+
* "STRING_VALUE",
|
|
337
|
+
* ],
|
|
338
|
+
* ExecutionRoleArns: [
|
|
339
|
+
* "STRING_VALUE",
|
|
340
|
+
* ],
|
|
341
|
+
* },
|
|
326
342
|
* },
|
|
327
343
|
* SpaceStorageSettings: {
|
|
328
344
|
* DefaultEbsStorageSettings: {
|
|
@@ -192,6 +192,14 @@ declare const CreateUserProfileCommand_base: {
|
|
|
192
192
|
* RepositoryUrl: "STRING_VALUE", // required
|
|
193
193
|
* },
|
|
194
194
|
* ],
|
|
195
|
+
* EmrSettings: { // EmrSettings
|
|
196
|
+
* AssumableRoleArns: [ // AssumableRoleArns
|
|
197
|
+
* "STRING_VALUE",
|
|
198
|
+
* ],
|
|
199
|
+
* ExecutionRoleArns: [ // ExecutionRoleArns
|
|
200
|
+
* "STRING_VALUE",
|
|
201
|
+
* ],
|
|
202
|
+
* },
|
|
195
203
|
* },
|
|
196
204
|
* SpaceStorageSettings: { // DefaultSpaceStorageSettings
|
|
197
205
|
* DefaultEbsStorageSettings: { // DefaultEbsStorageSettings
|
|
@@ -193,6 +193,14 @@ declare const DescribeDomainCommand_base: {
|
|
|
193
193
|
* // RepositoryUrl: "STRING_VALUE", // required
|
|
194
194
|
* // },
|
|
195
195
|
* // ],
|
|
196
|
+
* // EmrSettings: { // EmrSettings
|
|
197
|
+
* // AssumableRoleArns: [ // AssumableRoleArns
|
|
198
|
+
* // "STRING_VALUE",
|
|
199
|
+
* // ],
|
|
200
|
+
* // ExecutionRoleArns: [ // ExecutionRoleArns
|
|
201
|
+
* // "STRING_VALUE",
|
|
202
|
+
* // ],
|
|
203
|
+
* // },
|
|
196
204
|
* // },
|
|
197
205
|
* // SpaceStorageSettings: { // DefaultSpaceStorageSettings
|
|
198
206
|
* // DefaultEbsStorageSettings: { // DefaultEbsStorageSettings
|
|
@@ -290,6 +298,14 @@ declare const DescribeDomainCommand_base: {
|
|
|
290
298
|
* // RepositoryUrl: "STRING_VALUE", // required
|
|
291
299
|
* // },
|
|
292
300
|
* // ],
|
|
301
|
+
* // EmrSettings: {
|
|
302
|
+
* // AssumableRoleArns: [
|
|
303
|
+
* // "STRING_VALUE",
|
|
304
|
+
* // ],
|
|
305
|
+
* // ExecutionRoleArns: [
|
|
306
|
+
* // "STRING_VALUE",
|
|
307
|
+
* // ],
|
|
308
|
+
* // },
|
|
293
309
|
* // },
|
|
294
310
|
* // SpaceStorageSettings: {
|
|
295
311
|
* // DefaultEbsStorageSettings: {
|
|
@@ -192,6 +192,14 @@ declare const DescribeUserProfileCommand_base: {
|
|
|
192
192
|
* // RepositoryUrl: "STRING_VALUE", // required
|
|
193
193
|
* // },
|
|
194
194
|
* // ],
|
|
195
|
+
* // EmrSettings: { // EmrSettings
|
|
196
|
+
* // AssumableRoleArns: [ // AssumableRoleArns
|
|
197
|
+
* // "STRING_VALUE",
|
|
198
|
+
* // ],
|
|
199
|
+
* // ExecutionRoleArns: [ // ExecutionRoleArns
|
|
200
|
+
* // "STRING_VALUE",
|
|
201
|
+
* // ],
|
|
202
|
+
* // },
|
|
195
203
|
* // },
|
|
196
204
|
* // SpaceStorageSettings: { // DefaultSpaceStorageSettings
|
|
197
205
|
* // DefaultEbsStorageSettings: { // DefaultEbsStorageSettings
|
|
@@ -177,6 +177,14 @@ declare const UpdateDomainCommand_base: {
|
|
|
177
177
|
* RepositoryUrl: "STRING_VALUE", // required
|
|
178
178
|
* },
|
|
179
179
|
* ],
|
|
180
|
+
* EmrSettings: { // EmrSettings
|
|
181
|
+
* AssumableRoleArns: [ // AssumableRoleArns
|
|
182
|
+
* "STRING_VALUE",
|
|
183
|
+
* ],
|
|
184
|
+
* ExecutionRoleArns: [ // ExecutionRoleArns
|
|
185
|
+
* "STRING_VALUE",
|
|
186
|
+
* ],
|
|
187
|
+
* },
|
|
180
188
|
* },
|
|
181
189
|
* SpaceStorageSettings: { // DefaultSpaceStorageSettings
|
|
182
190
|
* DefaultEbsStorageSettings: { // DefaultEbsStorageSettings
|
|
@@ -266,6 +274,14 @@ declare const UpdateDomainCommand_base: {
|
|
|
266
274
|
* RepositoryUrl: "STRING_VALUE", // required
|
|
267
275
|
* },
|
|
268
276
|
* ],
|
|
277
|
+
* EmrSettings: {
|
|
278
|
+
* AssumableRoleArns: [
|
|
279
|
+
* "STRING_VALUE",
|
|
280
|
+
* ],
|
|
281
|
+
* ExecutionRoleArns: [
|
|
282
|
+
* "STRING_VALUE",
|
|
283
|
+
* ],
|
|
284
|
+
* },
|
|
269
285
|
* },
|
|
270
286
|
* SpaceStorageSettings: {
|
|
271
287
|
* DefaultEbsStorageSettings: {
|
|
@@ -178,6 +178,14 @@ declare const UpdateUserProfileCommand_base: {
|
|
|
178
178
|
* RepositoryUrl: "STRING_VALUE", // required
|
|
179
179
|
* },
|
|
180
180
|
* ],
|
|
181
|
+
* EmrSettings: { // EmrSettings
|
|
182
|
+
* AssumableRoleArns: [ // AssumableRoleArns
|
|
183
|
+
* "STRING_VALUE",
|
|
184
|
+
* ],
|
|
185
|
+
* ExecutionRoleArns: [ // ExecutionRoleArns
|
|
186
|
+
* "STRING_VALUE",
|
|
187
|
+
* ],
|
|
188
|
+
* },
|
|
181
189
|
* },
|
|
182
190
|
* SpaceStorageSettings: { // DefaultSpaceStorageSettings
|
|
183
191
|
* DefaultEbsStorageSettings: { // DefaultEbsStorageSettings
|
|
@@ -1595,6 +1595,35 @@ export interface CustomPosixUserConfig {
|
|
|
1595
1595
|
*/
|
|
1596
1596
|
Gid: number | undefined;
|
|
1597
1597
|
}
|
|
1598
|
+
/**
|
|
1599
|
+
* <p>The configuration parameters that specify the IAM roles assumed by the execution role of
|
|
1600
|
+
* SageMaker (assumable roles) and the cluster instances or job execution environments
|
|
1601
|
+
* (execution roles or runtime roles) to manage and access resources required for running Amazon EMR
|
|
1602
|
+
* clusters or Amazon EMR Serverless applications.</p>
|
|
1603
|
+
* @public
|
|
1604
|
+
*/
|
|
1605
|
+
export interface EmrSettings {
|
|
1606
|
+
/**
|
|
1607
|
+
* <p>An array of Amazon Resource Names (ARNs) of the IAM roles that the execution role of
|
|
1608
|
+
* SageMaker can assume for performing operations or tasks related to Amazon EMR clusters or Amazon EMR
|
|
1609
|
+
* Serverless applications. These roles define the permissions and access policies required
|
|
1610
|
+
* when performing Amazon EMR-related operations, such as listing, connecting to, or terminating
|
|
1611
|
+
* Amazon EMR clusters or Amazon EMR Serverless applications. They are typically used in
|
|
1612
|
+
* cross-account access scenarios, where the Amazon EMR resources (clusters or serverless
|
|
1613
|
+
* applications) are located in a different Amazon Web Services account than the SageMaker
|
|
1614
|
+
* domain.</p>
|
|
1615
|
+
* @public
|
|
1616
|
+
*/
|
|
1617
|
+
AssumableRoleArns?: string[];
|
|
1618
|
+
/**
|
|
1619
|
+
* <p>An array of Amazon Resource Names (ARNs) of the IAM roles used by the Amazon EMR cluster instances
|
|
1620
|
+
* or job execution environments to access other Amazon Web Services services and resources needed during the
|
|
1621
|
+
* runtime of your Amazon EMR or Amazon EMR Serverless workloads, such as Amazon S3 for data access, Amazon CloudWatch for logging, or other
|
|
1622
|
+
* Amazon Web Services services based on the particular workload requirements.</p>
|
|
1623
|
+
* @public
|
|
1624
|
+
*/
|
|
1625
|
+
ExecutionRoleArns?: string[];
|
|
1626
|
+
}
|
|
1598
1627
|
/**
|
|
1599
1628
|
* <p>The settings for the JupyterLab application.</p>
|
|
1600
1629
|
* @public
|
|
@@ -1621,6 +1650,14 @@ export interface JupyterLabAppSettings {
|
|
|
1621
1650
|
* @public
|
|
1622
1651
|
*/
|
|
1623
1652
|
CodeRepositories?: CodeRepository[];
|
|
1653
|
+
/**
|
|
1654
|
+
* <p>The configuration parameters that specify the IAM roles assumed by the execution role of
|
|
1655
|
+
* SageMaker (assumable roles) and the cluster instances or job execution environments
|
|
1656
|
+
* (execution roles or runtime roles) to manage and access resources required for running Amazon EMR
|
|
1657
|
+
* clusters or Amazon EMR Serverless applications.</p>
|
|
1658
|
+
* @public
|
|
1659
|
+
*/
|
|
1660
|
+
EmrSettings?: EmrSettings;
|
|
1624
1661
|
}
|
|
1625
1662
|
/**
|
|
1626
1663
|
* <p>The JupyterServer app settings.</p>
|
|
@@ -11647,18 +11684,6 @@ export declare const ProcessingS3CompressionType: {
|
|
|
11647
11684
|
* @public
|
|
11648
11685
|
*/
|
|
11649
11686
|
export type ProcessingS3CompressionType = (typeof ProcessingS3CompressionType)[keyof typeof ProcessingS3CompressionType];
|
|
11650
|
-
/**
|
|
11651
|
-
* @public
|
|
11652
|
-
* @enum
|
|
11653
|
-
*/
|
|
11654
|
-
export declare const ProcessingS3DataType: {
|
|
11655
|
-
readonly MANIFEST_FILE: "ManifestFile";
|
|
11656
|
-
readonly S3_PREFIX: "S3Prefix";
|
|
11657
|
-
};
|
|
11658
|
-
/**
|
|
11659
|
-
* @public
|
|
11660
|
-
*/
|
|
11661
|
-
export type ProcessingS3DataType = (typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
|
|
11662
11687
|
/**
|
|
11663
11688
|
* @internal
|
|
11664
11689
|
*/
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
import { ActionSource, ActionStatus, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CaptureStatus, Channel, CheckpointConfig, ClusterInstanceGroupDetails, ClusterNodeDetails, ClusterStatus, CodeEditorAppImageConfig, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContextSource, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelDeployConfig, ObjectiveStatus, OutputDataConfig, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
|
-
import { DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DatasetDefinition, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, JobType, JupyterServerAppSettings, KernelGatewayAppSettings, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardSecurityConfig, ModelCardStatus, ModelInfrastructureConfig, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, NetworkConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, ProcessingInstanceType, ProcessingS3CompressionType,
|
|
2
|
+
import { DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DatasetDefinition, DefaultSpaceSettings, DeploymentConfig, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExperimentConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, JobType, JupyterServerAppSettings, KernelGatewayAppSettings, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardSecurityConfig, ModelCardStatus, ModelInfrastructureConfig, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, NetworkConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, ProcessingInstanceType, ProcessingS3CompressionType, ProcessingS3UploadMode, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, ShadowModeConfig, ThroughputMode, TrackingServerSize, UserSettings, VendorGuidance } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* @enum
|
|
6
|
+
*/
|
|
7
|
+
export declare const ProcessingS3DataType: {
|
|
8
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
9
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type ProcessingS3DataType = (typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
|
|
3
15
|
/**
|
|
4
16
|
* <p>Configuration for downloading input data from Amazon S3 into the processing container.</p>
|
|
5
17
|
* @public
|
|
@@ -8198,19 +8210,6 @@ export interface ModelCardExportArtifacts {
|
|
|
8198
8210
|
*/
|
|
8199
8211
|
S3ExportArtifacts: string | undefined;
|
|
8200
8212
|
}
|
|
8201
|
-
/**
|
|
8202
|
-
* @public
|
|
8203
|
-
* @enum
|
|
8204
|
-
*/
|
|
8205
|
-
export declare const ModelCardExportJobStatus: {
|
|
8206
|
-
readonly COMPLETED: "Completed";
|
|
8207
|
-
readonly FAILED: "Failed";
|
|
8208
|
-
readonly IN_PROGRESS: "InProgress";
|
|
8209
|
-
};
|
|
8210
|
-
/**
|
|
8211
|
-
* @public
|
|
8212
|
-
*/
|
|
8213
|
-
export type ModelCardExportJobStatus = (typeof ModelCardExportJobStatus)[keyof typeof ModelCardExportJobStatus];
|
|
8214
8213
|
/**
|
|
8215
8214
|
* @internal
|
|
8216
8215
|
*/
|
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AmazonQSettings, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchDataCaptureConfig, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClusterNodeSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContextSummary, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DirectInternetAccess, DockerSettings, DriftCheckBaselines, EdgeOutputConfig, ExecutionRoleIdentityConfig, ExperimentConfig, FeatureDefinition, FeatureType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, LabelingJobInputConfig, ModelCardExportOutputConfig, ModelCardStatus, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringScheduleConfig, MonitoringStoppingCondition, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OfflineStoreConfig, OnlineStoreConfig, OptimizationConfig, OptimizationJobDeploymentInstanceType, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, ParallelismConfiguration, RecommendationJobType, ResourceLimits, RetryStrategy, RootAccess, SkipModelValidation, SourceAlgorithmSpecification, UserSettings } from "./models_1";
|
|
3
|
-
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentSupportStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportArtifacts,
|
|
3
|
+
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DomainStatus, EdgePackagingJobStatus, EndpointOutputConfiguration, EndpointStatus, ExperimentSource, FeatureGroupStatus, FeatureParameter, FlowDefinitionStatus, HubContentStatus, HubContentSupportStatus, HubContentType, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, InfraCheckConfig, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelCardExportArtifacts, ModelClientConfig, ModelConfiguration, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, OwnershipSettings, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationMetrics, RemoteDebugConfig, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* @enum
|
|
7
|
+
*/
|
|
8
|
+
export declare const ModelCardExportJobStatus: {
|
|
9
|
+
readonly COMPLETED: "Completed";
|
|
10
|
+
readonly FAILED: "Failed";
|
|
11
|
+
readonly IN_PROGRESS: "InProgress";
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export type ModelCardExportJobStatus = (typeof ModelCardExportJobStatus)[keyof typeof ModelCardExportJobStatus];
|
|
4
17
|
/**
|
|
5
18
|
* @public
|
|
6
19
|
*/
|
|
@@ -9960,23 +9973,6 @@ export declare const ModelMetadataFilterType: {
|
|
|
9960
9973
|
* @public
|
|
9961
9974
|
*/
|
|
9962
9975
|
export type ModelMetadataFilterType = (typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
9963
|
-
/**
|
|
9964
|
-
* <p>Part of the search expression. You can specify the name and value
|
|
9965
|
-
* (domain, task, framework, framework version, task, and model).</p>
|
|
9966
|
-
* @public
|
|
9967
|
-
*/
|
|
9968
|
-
export interface ModelMetadataFilter {
|
|
9969
|
-
/**
|
|
9970
|
-
* <p>The name of the of the model to filter by.</p>
|
|
9971
|
-
* @public
|
|
9972
|
-
*/
|
|
9973
|
-
Name: ModelMetadataFilterType | undefined;
|
|
9974
|
-
/**
|
|
9975
|
-
* <p>The value to filter the model metadata.</p>
|
|
9976
|
-
* @public
|
|
9977
|
-
*/
|
|
9978
|
-
Value: string | undefined;
|
|
9979
|
-
}
|
|
9980
9976
|
/**
|
|
9981
9977
|
* @internal
|
|
9982
9978
|
*/
|
|
@@ -1,7 +1,24 @@
|
|
|
1
1
|
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppType, AutoMLJobStepMetadata, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ClusterInstanceGroupSpecification, CodeEditorAppImageConfig, ConditionStepMetadata, ContainerDefinition, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, ModelCardSecurityConfig, ModelCardStatus, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, OptimizationJobDeploymentInstanceType, ParallelismConfiguration, PipelineDefinitionS3Location, Processor, RetryStrategy, RootAccess, ShadowModeConfig, SkipModelValidation, SourceAlgorithmSpecification, ThroughputMode, TrackingServerSize, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
|
|
3
3
|
import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, EndpointStatus, FeatureParameter, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, NotificationConfiguration, OidcConfig, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, ServiceCatalogProvisioningDetails, SharingType, SourceIpConfig, SpaceSettings, SpaceStorageSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceVpcConfigRequest } from "./models_2";
|
|
4
|
-
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, ExecutionStatus, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData,
|
|
4
|
+
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, ExecutionStatus, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LambdaStepMetadata, LineageType, MetricData, ModelMetadataFilterType, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, MonitoringJobDefinitionSortKey, MonitoringJobDefinitionSummary, NotebookInstanceStatus, OptimizationJobStatus, OrderKey, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SpaceStatus, SubscribedWorkteam, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* <p>Part of the search expression. You can specify the name and value
|
|
7
|
+
* (domain, task, framework, framework version, task, and model).</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface ModelMetadataFilter {
|
|
11
|
+
/**
|
|
12
|
+
* <p>The name of the of the model to filter by.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
Name: ModelMetadataFilterType | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The value to filter the model metadata.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
Value: string | undefined;
|
|
21
|
+
}
|
|
5
22
|
/**
|
|
6
23
|
* <p>One or more filters that searches for the specified resource or resources in
|
|
7
24
|
* a search. All resource objects that satisfy the expression's condition are
|
|
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
35
|
}) => import("@smithy/types").EndpointV2;
|
|
34
36
|
tls?: boolean | undefined;
|
|
35
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
35
|
}) => import("@smithy/types").EndpointV2;
|
|
34
36
|
tls?: boolean | undefined;
|
|
35
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -26,13 +26,13 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
26
26
|
logger: import("@smithy/types").Logger;
|
|
27
27
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
28
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
30
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
29
31
|
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
30
32
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
32
34
|
}) => import("@smithy/types").EndpointV2;
|
|
33
35
|
tls?: boolean | undefined;
|
|
34
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
36
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
37
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerHttpAuthSchemeProvider;
|
|
38
38
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -2093,11 +2093,11 @@ export type SageMakerClientConfigType = Partial<
|
|
|
2093
2093
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
2094
2094
|
> &
|
|
2095
2095
|
ClientDefaults &
|
|
2096
|
-
RegionInputConfig &
|
|
2097
|
-
EndpointInputConfig<EndpointParameters> &
|
|
2098
|
-
HostHeaderInputConfig &
|
|
2099
2096
|
UserAgentInputConfig &
|
|
2100
2097
|
RetryInputConfig &
|
|
2098
|
+
RegionInputConfig &
|
|
2099
|
+
HostHeaderInputConfig &
|
|
2100
|
+
EndpointInputConfig<EndpointParameters> &
|
|
2101
2101
|
HttpAuthSchemeInputConfig &
|
|
2102
2102
|
ClientInputEndpointParameters;
|
|
2103
2103
|
export interface SageMakerClientConfig extends SageMakerClientConfigType {}
|
|
@@ -2105,11 +2105,11 @@ export type SageMakerClientResolvedConfigType =
|
|
|
2105
2105
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
2106
2106
|
Required<ClientDefaults> &
|
|
2107
2107
|
RuntimeExtensionsConfig &
|
|
2108
|
-
RegionResolvedConfig &
|
|
2109
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
2110
|
-
HostHeaderResolvedConfig &
|
|
2111
2108
|
UserAgentResolvedConfig &
|
|
2112
2109
|
RetryResolvedConfig &
|
|
2110
|
+
RegionResolvedConfig &
|
|
2111
|
+
HostHeaderResolvedConfig &
|
|
2112
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
2113
2113
|
HttpAuthSchemeResolvedConfig &
|
|
2114
2114
|
ClientResolvedEndpointParameters;
|
|
2115
2115
|
export interface SageMakerClientResolvedConfig
|
|
@@ -2125,6 +2125,4 @@ export declare class SageMakerClient extends __Client<
|
|
|
2125
2125
|
...[configuration]: __CheckOptionalClientConfig<SageMakerClientConfig>
|
|
2126
2126
|
);
|
|
2127
2127
|
destroy(): void;
|
|
2128
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
2129
|
-
private getIdentityProviderConfigProvider;
|
|
2130
2128
|
}
|
|
@@ -327,11 +327,16 @@ export interface CustomPosixUserConfig {
|
|
|
327
327
|
Uid: number | undefined;
|
|
328
328
|
Gid: number | undefined;
|
|
329
329
|
}
|
|
330
|
+
export interface EmrSettings {
|
|
331
|
+
AssumableRoleArns?: string[];
|
|
332
|
+
ExecutionRoleArns?: string[];
|
|
333
|
+
}
|
|
330
334
|
export interface JupyterLabAppSettings {
|
|
331
335
|
DefaultResourceSpec?: ResourceSpec;
|
|
332
336
|
CustomImages?: CustomImage[];
|
|
333
337
|
LifecycleConfigArns?: string[];
|
|
334
338
|
CodeRepositories?: CodeRepository[];
|
|
339
|
+
EmrSettings?: EmrSettings;
|
|
335
340
|
}
|
|
336
341
|
export interface JupyterServerAppSettings {
|
|
337
342
|
DefaultResourceSpec?: ResourceSpec;
|
|
@@ -2040,12 +2045,6 @@ export declare const ProcessingS3CompressionType: {
|
|
|
2040
2045
|
};
|
|
2041
2046
|
export type ProcessingS3CompressionType =
|
|
2042
2047
|
(typeof ProcessingS3CompressionType)[keyof typeof ProcessingS3CompressionType];
|
|
2043
|
-
export declare const ProcessingS3DataType: {
|
|
2044
|
-
readonly MANIFEST_FILE: "ManifestFile";
|
|
2045
|
-
readonly S3_PREFIX: "S3Prefix";
|
|
2046
|
-
};
|
|
2047
|
-
export type ProcessingS3DataType =
|
|
2048
|
-
(typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
|
|
2049
2048
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
2050
2049
|
obj: CreateModelCardRequest
|
|
2051
2050
|
) => any;
|
|
@@ -129,7 +129,6 @@ import {
|
|
|
129
129
|
OutputConfig,
|
|
130
130
|
ProcessingInstanceType,
|
|
131
131
|
ProcessingS3CompressionType,
|
|
132
|
-
ProcessingS3DataType,
|
|
133
132
|
ProcessingS3UploadMode,
|
|
134
133
|
Processor,
|
|
135
134
|
ProductionVariant,
|
|
@@ -147,6 +146,12 @@ import {
|
|
|
147
146
|
UserSettings,
|
|
148
147
|
VendorGuidance,
|
|
149
148
|
} from "./models_1";
|
|
149
|
+
export declare const ProcessingS3DataType: {
|
|
150
|
+
readonly MANIFEST_FILE: "ManifestFile";
|
|
151
|
+
readonly S3_PREFIX: "S3Prefix";
|
|
152
|
+
};
|
|
153
|
+
export type ProcessingS3DataType =
|
|
154
|
+
(typeof ProcessingS3DataType)[keyof typeof ProcessingS3DataType];
|
|
150
155
|
export interface ProcessingS3Input {
|
|
151
156
|
S3Uri: string | undefined;
|
|
152
157
|
LocalPath?: string;
|
|
@@ -2046,13 +2051,6 @@ export interface DescribeModelCardExportJobRequest {
|
|
|
2046
2051
|
export interface ModelCardExportArtifacts {
|
|
2047
2052
|
S3ExportArtifacts: string | undefined;
|
|
2048
2053
|
}
|
|
2049
|
-
export declare const ModelCardExportJobStatus: {
|
|
2050
|
-
readonly COMPLETED: "Completed";
|
|
2051
|
-
readonly FAILED: "Failed";
|
|
2052
|
-
readonly IN_PROGRESS: "InProgress";
|
|
2053
|
-
};
|
|
2054
|
-
export type ModelCardExportJobStatus =
|
|
2055
|
-
(typeof ModelCardExportJobStatus)[keyof typeof ModelCardExportJobStatus];
|
|
2056
2054
|
export declare const OidcConfigFilterSensitiveLog: (obj: OidcConfig) => any;
|
|
2057
2055
|
export declare const CreateWorkforceRequestFilterSensitiveLog: (
|
|
2058
2056
|
obj: CreateWorkforceRequest
|
|
@@ -143,7 +143,6 @@ import {
|
|
|
143
143
|
MemberDefinition,
|
|
144
144
|
ModelArtifacts,
|
|
145
145
|
ModelCardExportArtifacts,
|
|
146
|
-
ModelCardExportJobStatus,
|
|
147
146
|
ModelClientConfig,
|
|
148
147
|
ModelConfiguration,
|
|
149
148
|
NotificationConfiguration,
|
|
@@ -176,6 +175,13 @@ import {
|
|
|
176
175
|
TrialComponentStatus,
|
|
177
176
|
WorkerAccessConfiguration,
|
|
178
177
|
} from "./models_2";
|
|
178
|
+
export declare const ModelCardExportJobStatus: {
|
|
179
|
+
readonly COMPLETED: "Completed";
|
|
180
|
+
readonly FAILED: "Failed";
|
|
181
|
+
readonly IN_PROGRESS: "InProgress";
|
|
182
|
+
};
|
|
183
|
+
export type ModelCardExportJobStatus =
|
|
184
|
+
(typeof ModelCardExportJobStatus)[keyof typeof ModelCardExportJobStatus];
|
|
179
185
|
export interface DescribeModelCardExportJobResponse {
|
|
180
186
|
ModelCardExportJobName: string | undefined;
|
|
181
187
|
ModelCardExportJobArn: string | undefined;
|
|
@@ -2452,10 +2458,6 @@ export declare const ModelMetadataFilterType: {
|
|
|
2452
2458
|
};
|
|
2453
2459
|
export type ModelMetadataFilterType =
|
|
2454
2460
|
(typeof ModelMetadataFilterType)[keyof typeof ModelMetadataFilterType];
|
|
2455
|
-
export interface ModelMetadataFilter {
|
|
2456
|
-
Name: ModelMetadataFilterType | undefined;
|
|
2457
|
-
Value: string | undefined;
|
|
2458
|
-
}
|
|
2459
2461
|
export declare const DescribeModelPackageOutputFilterSensitiveLog: (
|
|
2460
2462
|
obj: DescribeModelPackageOutput
|
|
2461
2463
|
) => any;
|
|
@@ -137,7 +137,7 @@ import {
|
|
|
137
137
|
LambdaStepMetadata,
|
|
138
138
|
LineageType,
|
|
139
139
|
MetricData,
|
|
140
|
-
|
|
140
|
+
ModelMetadataFilterType,
|
|
141
141
|
ModelPackageGroupStatus,
|
|
142
142
|
ModelPackageStatusDetails,
|
|
143
143
|
MonitoringExecutionSummary,
|
|
@@ -171,6 +171,10 @@ import {
|
|
|
171
171
|
Workforce,
|
|
172
172
|
Workteam,
|
|
173
173
|
} from "./models_3";
|
|
174
|
+
export interface ModelMetadataFilter {
|
|
175
|
+
Name: ModelMetadataFilterType | undefined;
|
|
176
|
+
Value: string | undefined;
|
|
177
|
+
}
|
|
174
178
|
export interface ModelMetadataSearchExpression {
|
|
175
179
|
Filters?: ModelMetadataFilter[];
|
|
176
180
|
}
|
|
@@ -32,6 +32,11 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
32
32
|
serviceId: string;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
34
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?:
|
|
37
|
+
| import("@smithy/types").RetryStrategy
|
|
38
|
+
| import("@smithy/types").RetryStrategyV2
|
|
39
|
+
| undefined;
|
|
35
40
|
endpoint?:
|
|
36
41
|
| ((
|
|
37
42
|
| string
|
|
@@ -56,11 +61,6 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
56
61
|
}
|
|
57
62
|
) => import("@smithy/types").EndpointV2;
|
|
58
63
|
tls?: boolean | undefined;
|
|
59
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2
|
|
63
|
-
| undefined;
|
|
64
64
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
65
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerHttpAuthSchemeProvider;
|
|
66
66
|
credentials?:
|
|
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
36
36
|
serviceId: string;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
38
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
retryStrategy?:
|
|
41
|
+
| import("@smithy/types").RetryStrategy
|
|
42
|
+
| import("@smithy/types").RetryStrategyV2
|
|
43
|
+
| undefined;
|
|
39
44
|
endpoint?:
|
|
40
45
|
| ((
|
|
41
46
|
| string
|
|
@@ -60,11 +65,6 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
60
65
|
}
|
|
61
66
|
) => import("@smithy/types").EndpointV2;
|
|
62
67
|
tls?: boolean | undefined;
|
|
63
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2
|
|
67
|
-
| undefined;
|
|
68
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerHttpAuthSchemeProvider;
|
|
70
70
|
credentials?:
|
|
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
36
36
|
| import("@smithy/types").Provider<
|
|
37
37
|
import("@smithy/smithy-client").DefaultsMode
|
|
38
38
|
>;
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
retryStrategy?:
|
|
41
|
+
| import("@smithy/types").RetryStrategy
|
|
42
|
+
| import("@smithy/types").RetryStrategyV2
|
|
43
|
+
| undefined;
|
|
39
44
|
endpoint?:
|
|
40
45
|
| string
|
|
41
46
|
| import("@smithy/types").Endpoint
|
|
@@ -50,11 +55,6 @@ export declare const getRuntimeConfig: (config: SageMakerClientConfig) => {
|
|
|
50
55
|
}
|
|
51
56
|
) => import("@smithy/types").EndpointV2;
|
|
52
57
|
tls?: boolean | undefined;
|
|
53
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
54
|
-
retryStrategy?:
|
|
55
|
-
| import("@smithy/types").RetryStrategy
|
|
56
|
-
| import("@smithy/types").RetryStrategyV2
|
|
57
|
-
| undefined;
|
|
58
58
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
59
59
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerHttpAuthSchemeProvider;
|
|
60
60
|
credentials?:
|
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.622.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.622.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.622.0",
|
|
25
|
+
"@aws-sdk/core": "3.622.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.622.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",
|
|
@@ -34,26 +34,26 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|
|
37
|
-
"@smithy/core": "^2.3.
|
|
37
|
+
"@smithy/core": "^2.3.2",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.4",
|
|
39
39
|
"@smithy/hash-node": "^3.0.3",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.14",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.3",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.3",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.4",
|
|
47
47
|
"@smithy/node-http-handler": "^3.1.4",
|
|
48
48
|
"@smithy/protocol-http": "^4.1.0",
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
49
|
+
"@smithy/smithy-client": "^3.1.12",
|
|
50
50
|
"@smithy/types": "^3.3.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.3",
|
|
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.14",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.14",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.5",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.3",
|
|
59
59
|
"@smithy/util-retry": "^3.0.3",
|