@aws-sdk/client-sagemaker 3.161.0 → 3.164.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/CHANGELOG.md +30 -0
- package/dist-cjs/commands/DescribeFlowDefinitionCommand.js +2 -1
- package/dist-cjs/commands/DescribeHumanTaskUiCommand.js +1 -2
- package/dist-cjs/commands/ListNotebookInstancesCommand.js +2 -1
- package/dist-cjs/models/models_0.js +10 -9
- package/dist-cjs/models/models_1.js +19 -22
- package/dist-cjs/models/models_2.js +21 -19
- package/dist-cjs/models/models_3.js +17 -4
- package/dist-cjs/protocols/Aws_json1_1.js +95 -0
- package/dist-es/commands/DescribeFlowDefinitionCommand.js +2 -1
- package/dist-es/commands/DescribeHumanTaskUiCommand.js +1 -2
- package/dist-es/commands/ListNotebookInstancesCommand.js +2 -1
- package/dist-es/models/models_0.js +5 -1
- package/dist-es/models/models_1.js +3 -9
- package/dist-es/models/models_2.js +9 -7
- package/dist-es/models/models_3.js +7 -0
- package/dist-es/protocols/Aws_json1_1.js +84 -3
- package/dist-types/SageMaker.d.ts +3 -3
- package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +1 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFlowDefinitionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeHumanTaskUiCommand.d.ts +1 -2
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +30 -32
- package/dist-types/models/models_1.d.ts +113 -84
- package/dist-types/models/models_2.d.ts +71 -86
- package/dist-types/models/models_3.d.ts +85 -1
- package/dist-types/ts3.4/commands/DescribeFlowDefinitionCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeHumanTaskUiCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListNotebookInstancesCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/models_0.d.ts +6 -7
- package/dist-types/ts3.4/models/models_1.d.ts +38 -37
- package/dist-types/ts3.4/models/models_2.d.ts +39 -38
- package/dist-types/ts3.4/models/models_3.d.ts +38 -1
- package/package.json +27 -27
|
@@ -13227,6 +13227,9 @@ const serializeAws_json1_1DomainSecurityGroupIds = (input, context) => {
|
|
|
13227
13227
|
};
|
|
13228
13228
|
const serializeAws_json1_1DomainSettings = (input, context) => {
|
|
13229
13229
|
return {
|
|
13230
|
+
...(input.ExecutionRoleIdentityConfig != null && {
|
|
13231
|
+
ExecutionRoleIdentityConfig: input.ExecutionRoleIdentityConfig,
|
|
13232
|
+
}),
|
|
13230
13233
|
...(input.RStudioServerProDomainSettings != null && {
|
|
13231
13234
|
RStudioServerProDomainSettings: serializeAws_json1_1RStudioServerProDomainSettings(input.RStudioServerProDomainSettings, context),
|
|
13232
13235
|
}),
|
|
@@ -13237,6 +13240,9 @@ const serializeAws_json1_1DomainSettings = (input, context) => {
|
|
|
13237
13240
|
};
|
|
13238
13241
|
const serializeAws_json1_1DomainSettingsForUpdate = (input, context) => {
|
|
13239
13242
|
return {
|
|
13243
|
+
...(input.ExecutionRoleIdentityConfig != null && {
|
|
13244
|
+
ExecutionRoleIdentityConfig: input.ExecutionRoleIdentityConfig,
|
|
13245
|
+
}),
|
|
13240
13246
|
...(input.RStudioServerProDomainSettingsForUpdate != null && {
|
|
13241
13247
|
RStudioServerProDomainSettingsForUpdate: serializeAws_json1_1RStudioServerProDomainSettingsForUpdate(input.RStudioServerProDomainSettingsForUpdate, context),
|
|
13242
13248
|
}),
|
|
@@ -15817,8 +15823,26 @@ const serializeAws_json1_1RecommendationJobCompiledOutputConfig = (input, contex
|
|
|
15817
15823
|
...(input.S3OutputUri != null && { S3OutputUri: input.S3OutputUri }),
|
|
15818
15824
|
};
|
|
15819
15825
|
};
|
|
15826
|
+
const serializeAws_json1_1RecommendationJobContainerConfig = (input, context) => {
|
|
15827
|
+
return {
|
|
15828
|
+
...(input.Domain != null && { Domain: input.Domain }),
|
|
15829
|
+
...(input.Framework != null && { Framework: input.Framework }),
|
|
15830
|
+
...(input.FrameworkVersion != null && { FrameworkVersion: input.FrameworkVersion }),
|
|
15831
|
+
...(input.NearestModelName != null && { NearestModelName: input.NearestModelName }),
|
|
15832
|
+
...(input.PayloadConfig != null && {
|
|
15833
|
+
PayloadConfig: serializeAws_json1_1RecommendationJobPayloadConfig(input.PayloadConfig, context),
|
|
15834
|
+
}),
|
|
15835
|
+
...(input.SupportedInstanceTypes != null && {
|
|
15836
|
+
SupportedInstanceTypes: serializeAws_json1_1RecommendationJobSupportedInstanceTypes(input.SupportedInstanceTypes, context),
|
|
15837
|
+
}),
|
|
15838
|
+
...(input.Task != null && { Task: input.Task }),
|
|
15839
|
+
};
|
|
15840
|
+
};
|
|
15820
15841
|
const serializeAws_json1_1RecommendationJobInputConfig = (input, context) => {
|
|
15821
15842
|
return {
|
|
15843
|
+
...(input.ContainerConfig != null && {
|
|
15844
|
+
ContainerConfig: serializeAws_json1_1RecommendationJobContainerConfig(input.ContainerConfig, context),
|
|
15845
|
+
}),
|
|
15822
15846
|
...(input.EndpointConfigurations != null && {
|
|
15823
15847
|
EndpointConfigurations: serializeAws_json1_1EndpointInputConfigurations(input.EndpointConfigurations, context),
|
|
15824
15848
|
}),
|
|
@@ -15841,6 +15865,14 @@ const serializeAws_json1_1RecommendationJobOutputConfig = (input, context) => {
|
|
|
15841
15865
|
...(input.KmsKeyId != null && { KmsKeyId: input.KmsKeyId }),
|
|
15842
15866
|
};
|
|
15843
15867
|
};
|
|
15868
|
+
const serializeAws_json1_1RecommendationJobPayloadConfig = (input, context) => {
|
|
15869
|
+
return {
|
|
15870
|
+
...(input.SamplePayloadUrl != null && { SamplePayloadUrl: input.SamplePayloadUrl }),
|
|
15871
|
+
...(input.SupportedContentTypes != null && {
|
|
15872
|
+
SupportedContentTypes: serializeAws_json1_1RecommendationJobSupportedContentTypes(input.SupportedContentTypes, context),
|
|
15873
|
+
}),
|
|
15874
|
+
};
|
|
15875
|
+
};
|
|
15844
15876
|
const serializeAws_json1_1RecommendationJobResourceLimit = (input, context) => {
|
|
15845
15877
|
return {
|
|
15846
15878
|
...(input.MaxNumberOfTests != null && { MaxNumberOfTests: input.MaxNumberOfTests }),
|
|
@@ -15855,6 +15887,20 @@ const serializeAws_json1_1RecommendationJobStoppingConditions = (input, context)
|
|
|
15855
15887
|
}),
|
|
15856
15888
|
};
|
|
15857
15889
|
};
|
|
15890
|
+
const serializeAws_json1_1RecommendationJobSupportedContentTypes = (input, context) => {
|
|
15891
|
+
return input
|
|
15892
|
+
.filter((e) => e != null)
|
|
15893
|
+
.map((entry) => {
|
|
15894
|
+
return entry;
|
|
15895
|
+
});
|
|
15896
|
+
};
|
|
15897
|
+
const serializeAws_json1_1RecommendationJobSupportedInstanceTypes = (input, context) => {
|
|
15898
|
+
return input
|
|
15899
|
+
.filter((e) => e != null)
|
|
15900
|
+
.map((entry) => {
|
|
15901
|
+
return entry;
|
|
15902
|
+
});
|
|
15903
|
+
};
|
|
15858
15904
|
const serializeAws_json1_1RedshiftDatasetDefinition = (input, context) => {
|
|
15859
15905
|
return {
|
|
15860
15906
|
...(input.ClusterId != null && { ClusterId: input.ClusterId }),
|
|
@@ -19971,6 +20017,7 @@ const deserializeAws_json1_1DomainSecurityGroupIds = (output, context) => {
|
|
|
19971
20017
|
};
|
|
19972
20018
|
const deserializeAws_json1_1DomainSettings = (output, context) => {
|
|
19973
20019
|
return {
|
|
20020
|
+
ExecutionRoleIdentityConfig: (0, smithy_client_1.expectString)(output.ExecutionRoleIdentityConfig),
|
|
19974
20021
|
RStudioServerProDomainSettings: output.RStudioServerProDomainSettings != null
|
|
19975
20022
|
? deserializeAws_json1_1RStudioServerProDomainSettings(output.RStudioServerProDomainSettings, context)
|
|
19976
20023
|
: undefined,
|
|
@@ -23704,8 +23751,26 @@ const deserializeAws_json1_1RealtimeInferenceInstanceTypes = (output, context) =
|
|
|
23704
23751
|
});
|
|
23705
23752
|
return retVal;
|
|
23706
23753
|
};
|
|
23754
|
+
const deserializeAws_json1_1RecommendationJobContainerConfig = (output, context) => {
|
|
23755
|
+
return {
|
|
23756
|
+
Domain: (0, smithy_client_1.expectString)(output.Domain),
|
|
23757
|
+
Framework: (0, smithy_client_1.expectString)(output.Framework),
|
|
23758
|
+
FrameworkVersion: (0, smithy_client_1.expectString)(output.FrameworkVersion),
|
|
23759
|
+
NearestModelName: (0, smithy_client_1.expectString)(output.NearestModelName),
|
|
23760
|
+
PayloadConfig: output.PayloadConfig != null
|
|
23761
|
+
? deserializeAws_json1_1RecommendationJobPayloadConfig(output.PayloadConfig, context)
|
|
23762
|
+
: undefined,
|
|
23763
|
+
SupportedInstanceTypes: output.SupportedInstanceTypes != null
|
|
23764
|
+
? deserializeAws_json1_1RecommendationJobSupportedInstanceTypes(output.SupportedInstanceTypes, context)
|
|
23765
|
+
: undefined,
|
|
23766
|
+
Task: (0, smithy_client_1.expectString)(output.Task),
|
|
23767
|
+
};
|
|
23768
|
+
};
|
|
23707
23769
|
const deserializeAws_json1_1RecommendationJobInputConfig = (output, context) => {
|
|
23708
23770
|
return {
|
|
23771
|
+
ContainerConfig: output.ContainerConfig != null
|
|
23772
|
+
? deserializeAws_json1_1RecommendationJobContainerConfig(output.ContainerConfig, context)
|
|
23773
|
+
: undefined,
|
|
23709
23774
|
EndpointConfigurations: output.EndpointConfigurations != null
|
|
23710
23775
|
? deserializeAws_json1_1EndpointInputConfigurations(output.EndpointConfigurations, context)
|
|
23711
23776
|
: undefined,
|
|
@@ -23718,6 +23783,14 @@ const deserializeAws_json1_1RecommendationJobInputConfig = (output, context) =>
|
|
|
23718
23783
|
VolumeKmsKeyId: (0, smithy_client_1.expectString)(output.VolumeKmsKeyId),
|
|
23719
23784
|
};
|
|
23720
23785
|
};
|
|
23786
|
+
const deserializeAws_json1_1RecommendationJobPayloadConfig = (output, context) => {
|
|
23787
|
+
return {
|
|
23788
|
+
SamplePayloadUrl: (0, smithy_client_1.expectString)(output.SamplePayloadUrl),
|
|
23789
|
+
SupportedContentTypes: output.SupportedContentTypes != null
|
|
23790
|
+
? deserializeAws_json1_1RecommendationJobSupportedContentTypes(output.SupportedContentTypes, context)
|
|
23791
|
+
: undefined,
|
|
23792
|
+
};
|
|
23793
|
+
};
|
|
23721
23794
|
const deserializeAws_json1_1RecommendationJobResourceLimit = (output, context) => {
|
|
23722
23795
|
return {
|
|
23723
23796
|
MaxNumberOfTests: (0, smithy_client_1.expectInt32)(output.MaxNumberOfTests),
|
|
@@ -23732,6 +23805,28 @@ const deserializeAws_json1_1RecommendationJobStoppingConditions = (output, conte
|
|
|
23732
23805
|
: undefined,
|
|
23733
23806
|
};
|
|
23734
23807
|
};
|
|
23808
|
+
const deserializeAws_json1_1RecommendationJobSupportedContentTypes = (output, context) => {
|
|
23809
|
+
const retVal = (output || [])
|
|
23810
|
+
.filter((e) => e != null)
|
|
23811
|
+
.map((entry) => {
|
|
23812
|
+
if (entry === null) {
|
|
23813
|
+
return null;
|
|
23814
|
+
}
|
|
23815
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
23816
|
+
});
|
|
23817
|
+
return retVal;
|
|
23818
|
+
};
|
|
23819
|
+
const deserializeAws_json1_1RecommendationJobSupportedInstanceTypes = (output, context) => {
|
|
23820
|
+
const retVal = (output || [])
|
|
23821
|
+
.filter((e) => e != null)
|
|
23822
|
+
.map((entry) => {
|
|
23823
|
+
if (entry === null) {
|
|
23824
|
+
return null;
|
|
23825
|
+
}
|
|
23826
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
23827
|
+
});
|
|
23828
|
+
return retVal;
|
|
23829
|
+
};
|
|
23735
23830
|
const deserializeAws_json1_1RecommendationMetrics = (output, context) => {
|
|
23736
23831
|
return {
|
|
23737
23832
|
CostPerHour: (0, smithy_client_1.limitedParseFloat32)(output.CostPerHour),
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeFlowDefinitionRequestFilterSensitiveLog
|
|
4
|
+
import { DescribeFlowDefinitionRequestFilterSensitiveLog } from "../models/models_1";
|
|
5
|
+
import { DescribeFlowDefinitionResponseFilterSensitiveLog } from "../models/models_2";
|
|
5
6
|
import { deserializeAws_json1_1DescribeFlowDefinitionCommand, serializeAws_json1_1DescribeFlowDefinitionCommand, } from "../protocols/Aws_json1_1";
|
|
6
7
|
var DescribeFlowDefinitionCommand = (function (_super) {
|
|
7
8
|
__extends(DescribeFlowDefinitionCommand, _super);
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeHumanTaskUiRequestFilterSensitiveLog } from "../models/
|
|
5
|
-
import { DescribeHumanTaskUiResponseFilterSensitiveLog } from "../models/models_2";
|
|
4
|
+
import { DescribeHumanTaskUiRequestFilterSensitiveLog, DescribeHumanTaskUiResponseFilterSensitiveLog, } from "../models/models_2";
|
|
6
5
|
import { deserializeAws_json1_1DescribeHumanTaskUiCommand, serializeAws_json1_1DescribeHumanTaskUiCommand, } from "../protocols/Aws_json1_1";
|
|
7
6
|
var DescribeHumanTaskUiCommand = (function (_super) {
|
|
8
7
|
__extends(DescribeHumanTaskUiCommand, _super);
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListNotebookInstancesInputFilterSensitiveLog
|
|
4
|
+
import { ListNotebookInstancesInputFilterSensitiveLog } from "../models/models_2";
|
|
5
|
+
import { ListNotebookInstancesOutputFilterSensitiveLog } from "../models/models_3";
|
|
5
6
|
import { deserializeAws_json1_1ListNotebookInstancesCommand, serializeAws_json1_1ListNotebookInstancesCommand, } from "../protocols/Aws_json1_1";
|
|
6
7
|
var ListNotebookInstancesCommand = (function (_super) {
|
|
7
8
|
__extends(ListNotebookInstancesCommand, _super);
|
|
@@ -810,6 +810,11 @@ export var NotebookOutputOption;
|
|
|
810
810
|
NotebookOutputOption["Allowed"] = "Allowed";
|
|
811
811
|
NotebookOutputOption["Disabled"] = "Disabled";
|
|
812
812
|
})(NotebookOutputOption || (NotebookOutputOption = {}));
|
|
813
|
+
export var ExecutionRoleIdentityConfig;
|
|
814
|
+
(function (ExecutionRoleIdentityConfig) {
|
|
815
|
+
ExecutionRoleIdentityConfig["DISABLED"] = "DISABLED";
|
|
816
|
+
ExecutionRoleIdentityConfig["USER_PROFILE_NAME"] = "USER_PROFILE_NAME";
|
|
817
|
+
})(ExecutionRoleIdentityConfig || (ExecutionRoleIdentityConfig = {}));
|
|
813
818
|
export var FailureHandlingPolicy;
|
|
814
819
|
(function (FailureHandlingPolicy) {
|
|
815
820
|
FailureHandlingPolicy["DoNothing"] = "DO_NOTHING";
|
|
@@ -1059,4 +1064,3 @@ export var CreateHumanTaskUiResponseFilterSensitiveLog = function (obj) { return
|
|
|
1059
1064
|
export var IntegerParameterRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1060
1065
|
export var ParameterRangesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1061
1066
|
export var ResourceLimitsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1062
|
-
export var TuningJobCompletionCriteriaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -276,13 +276,7 @@ export var OfflineStoreStatusValue;
|
|
|
276
276
|
OfflineStoreStatusValue["BLOCKED"] = "Blocked";
|
|
277
277
|
OfflineStoreStatusValue["DISABLED"] = "Disabled";
|
|
278
278
|
})(OfflineStoreStatusValue || (OfflineStoreStatusValue = {}));
|
|
279
|
-
export var
|
|
280
|
-
(function (FlowDefinitionStatus) {
|
|
281
|
-
FlowDefinitionStatus["ACTIVE"] = "Active";
|
|
282
|
-
FlowDefinitionStatus["DELETING"] = "Deleting";
|
|
283
|
-
FlowDefinitionStatus["FAILED"] = "Failed";
|
|
284
|
-
FlowDefinitionStatus["INITIALIZING"] = "Initializing";
|
|
285
|
-
})(FlowDefinitionStatus || (FlowDefinitionStatus = {}));
|
|
279
|
+
export var TuningJobCompletionCriteriaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
280
|
export var HyperParameterTuningJobConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
281
|
export var HyperParameterAlgorithmSpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
282
|
export var HyperParameterTuningInstanceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -297,6 +291,8 @@ export var CreateImageRequestFilterSensitiveLog = function (obj) { return (__ass
|
|
|
297
291
|
export var CreateImageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
292
|
export var CreateImageVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
293
|
export var CreateImageVersionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var RecommendationJobPayloadConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var RecommendationJobContainerConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
296
|
export var EnvironmentParameterRangesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
297
|
export var EndpointInputConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
298
|
export var RecommendationJobResourceLimitFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -563,5 +559,3 @@ export var DescribeFeatureMetadataRequestFilterSensitiveLog = function (obj) { r
|
|
|
563
559
|
export var FeatureParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
564
560
|
export var DescribeFeatureMetadataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
565
561
|
export var DescribeFlowDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
566
|
-
export var DescribeFlowDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
567
|
-
export var DescribeHumanTaskUiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { TrialComponentParameterValueFilterSensitiveLog, } from "./models_1";
|
|
3
|
+
export var FlowDefinitionStatus;
|
|
4
|
+
(function (FlowDefinitionStatus) {
|
|
5
|
+
FlowDefinitionStatus["ACTIVE"] = "Active";
|
|
6
|
+
FlowDefinitionStatus["DELETING"] = "Deleting";
|
|
7
|
+
FlowDefinitionStatus["FAILED"] = "Failed";
|
|
8
|
+
FlowDefinitionStatus["INITIALIZING"] = "Initializing";
|
|
9
|
+
})(FlowDefinitionStatus || (FlowDefinitionStatus = {}));
|
|
3
10
|
export var HumanTaskUiStatus;
|
|
4
11
|
(function (HumanTaskUiStatus) {
|
|
5
12
|
HumanTaskUiStatus["ACTIVE"] = "Active";
|
|
@@ -441,11 +448,8 @@ export var NotebookInstanceSortOrder;
|
|
|
441
448
|
NotebookInstanceSortOrder["ASCENDING"] = "Ascending";
|
|
442
449
|
NotebookInstanceSortOrder["DESCENDING"] = "Descending";
|
|
443
450
|
})(NotebookInstanceSortOrder || (NotebookInstanceSortOrder = {}));
|
|
444
|
-
export var
|
|
445
|
-
|
|
446
|
-
SortPipelineExecutionsBy["CREATION_TIME"] = "CreationTime";
|
|
447
|
-
SortPipelineExecutionsBy["PIPELINE_EXECUTION_ARN"] = "PipelineExecutionArn";
|
|
448
|
-
})(SortPipelineExecutionsBy || (SortPipelineExecutionsBy = {}));
|
|
451
|
+
export var DescribeFlowDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
452
|
+
export var DescribeHumanTaskUiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
449
453
|
export var UiTemplateInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
450
454
|
export var DescribeHumanTaskUiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
451
455
|
export var DescribeHyperParameterTuningJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -686,5 +690,3 @@ export var ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog = functio
|
|
|
686
690
|
export var NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
687
691
|
export var ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
688
692
|
export var ListNotebookInstancesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
689
|
-
export var NotebookInstanceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
690
|
-
export var ListNotebookInstancesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { OidcConfigFilterSensitiveLog, TrialComponentParameterValueFilterSensitiveLog, } from "./models_1";
|
|
3
|
+
export var SortPipelineExecutionsBy;
|
|
4
|
+
(function (SortPipelineExecutionsBy) {
|
|
5
|
+
SortPipelineExecutionsBy["CREATION_TIME"] = "CreationTime";
|
|
6
|
+
SortPipelineExecutionsBy["PIPELINE_EXECUTION_ARN"] = "PipelineExecutionArn";
|
|
7
|
+
})(SortPipelineExecutionsBy || (SortPipelineExecutionsBy = {}));
|
|
3
8
|
export var StepStatus;
|
|
4
9
|
(function (StepStatus) {
|
|
5
10
|
StepStatus["EXECUTING"] = "Executing";
|
|
@@ -73,6 +78,8 @@ export var VariantPropertyType;
|
|
|
73
78
|
VariantPropertyType["DesiredInstanceCount"] = "DesiredInstanceCount";
|
|
74
79
|
VariantPropertyType["DesiredWeight"] = "DesiredWeight";
|
|
75
80
|
})(VariantPropertyType || (VariantPropertyType = {}));
|
|
81
|
+
export var NotebookInstanceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
82
|
+
export var ListNotebookInstancesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
76
83
|
export var ListPipelineExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
77
84
|
export var PipelineExecutionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
78
85
|
export var ListPipelineExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -16922,14 +16922,18 @@ var serializeAws_json1_1DomainSecurityGroupIds = function (input, context) {
|
|
|
16922
16922
|
});
|
|
16923
16923
|
};
|
|
16924
16924
|
var serializeAws_json1_1DomainSettings = function (input, context) {
|
|
16925
|
-
return __assign(__assign({}, (input.
|
|
16925
|
+
return __assign(__assign(__assign({}, (input.ExecutionRoleIdentityConfig != null && {
|
|
16926
|
+
ExecutionRoleIdentityConfig: input.ExecutionRoleIdentityConfig,
|
|
16927
|
+
})), (input.RStudioServerProDomainSettings != null && {
|
|
16926
16928
|
RStudioServerProDomainSettings: serializeAws_json1_1RStudioServerProDomainSettings(input.RStudioServerProDomainSettings, context),
|
|
16927
16929
|
})), (input.SecurityGroupIds != null && {
|
|
16928
16930
|
SecurityGroupIds: serializeAws_json1_1DomainSecurityGroupIds(input.SecurityGroupIds, context),
|
|
16929
16931
|
}));
|
|
16930
16932
|
};
|
|
16931
16933
|
var serializeAws_json1_1DomainSettingsForUpdate = function (input, context) {
|
|
16932
|
-
return __assign({}, (input.
|
|
16934
|
+
return __assign(__assign({}, (input.ExecutionRoleIdentityConfig != null && {
|
|
16935
|
+
ExecutionRoleIdentityConfig: input.ExecutionRoleIdentityConfig,
|
|
16936
|
+
})), (input.RStudioServerProDomainSettingsForUpdate != null && {
|
|
16933
16937
|
RStudioServerProDomainSettingsForUpdate: serializeAws_json1_1RStudioServerProDomainSettingsForUpdate(input.RStudioServerProDomainSettingsForUpdate, context),
|
|
16934
16938
|
}));
|
|
16935
16939
|
};
|
|
@@ -18422,8 +18426,17 @@ var serializeAws_json1_1RealtimeInferenceInstanceTypes = function (input, contex
|
|
|
18422
18426
|
var serializeAws_json1_1RecommendationJobCompiledOutputConfig = function (input, context) {
|
|
18423
18427
|
return __assign({}, (input.S3OutputUri != null && { S3OutputUri: input.S3OutputUri }));
|
|
18424
18428
|
};
|
|
18429
|
+
var serializeAws_json1_1RecommendationJobContainerConfig = function (input, context) {
|
|
18430
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.Domain != null && { Domain: input.Domain })), (input.Framework != null && { Framework: input.Framework })), (input.FrameworkVersion != null && { FrameworkVersion: input.FrameworkVersion })), (input.NearestModelName != null && { NearestModelName: input.NearestModelName })), (input.PayloadConfig != null && {
|
|
18431
|
+
PayloadConfig: serializeAws_json1_1RecommendationJobPayloadConfig(input.PayloadConfig, context),
|
|
18432
|
+
})), (input.SupportedInstanceTypes != null && {
|
|
18433
|
+
SupportedInstanceTypes: serializeAws_json1_1RecommendationJobSupportedInstanceTypes(input.SupportedInstanceTypes, context),
|
|
18434
|
+
})), (input.Task != null && { Task: input.Task }));
|
|
18435
|
+
};
|
|
18425
18436
|
var serializeAws_json1_1RecommendationJobInputConfig = function (input, context) {
|
|
18426
|
-
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.
|
|
18437
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContainerConfig != null && {
|
|
18438
|
+
ContainerConfig: serializeAws_json1_1RecommendationJobContainerConfig(input.ContainerConfig, context),
|
|
18439
|
+
})), (input.EndpointConfigurations != null && {
|
|
18427
18440
|
EndpointConfigurations: serializeAws_json1_1EndpointInputConfigurations(input.EndpointConfigurations, context),
|
|
18428
18441
|
})), (input.JobDurationInSeconds != null && { JobDurationInSeconds: input.JobDurationInSeconds })), (input.ModelPackageVersionArn != null && { ModelPackageVersionArn: input.ModelPackageVersionArn })), (input.ResourceLimit != null && {
|
|
18429
18442
|
ResourceLimit: serializeAws_json1_1RecommendationJobResourceLimit(input.ResourceLimit, context),
|
|
@@ -18436,6 +18449,11 @@ var serializeAws_json1_1RecommendationJobOutputConfig = function (input, context
|
|
|
18436
18449
|
CompiledOutputConfig: serializeAws_json1_1RecommendationJobCompiledOutputConfig(input.CompiledOutputConfig, context),
|
|
18437
18450
|
})), (input.KmsKeyId != null && { KmsKeyId: input.KmsKeyId }));
|
|
18438
18451
|
};
|
|
18452
|
+
var serializeAws_json1_1RecommendationJobPayloadConfig = function (input, context) {
|
|
18453
|
+
return __assign(__assign({}, (input.SamplePayloadUrl != null && { SamplePayloadUrl: input.SamplePayloadUrl })), (input.SupportedContentTypes != null && {
|
|
18454
|
+
SupportedContentTypes: serializeAws_json1_1RecommendationJobSupportedContentTypes(input.SupportedContentTypes, context),
|
|
18455
|
+
}));
|
|
18456
|
+
};
|
|
18439
18457
|
var serializeAws_json1_1RecommendationJobResourceLimit = function (input, context) {
|
|
18440
18458
|
return __assign(__assign({}, (input.MaxNumberOfTests != null && { MaxNumberOfTests: input.MaxNumberOfTests })), (input.MaxParallelOfTests != null && { MaxParallelOfTests: input.MaxParallelOfTests }));
|
|
18441
18459
|
};
|
|
@@ -18444,6 +18462,20 @@ var serializeAws_json1_1RecommendationJobStoppingConditions = function (input, c
|
|
|
18444
18462
|
ModelLatencyThresholds: serializeAws_json1_1ModelLatencyThresholds(input.ModelLatencyThresholds, context),
|
|
18445
18463
|
}));
|
|
18446
18464
|
};
|
|
18465
|
+
var serializeAws_json1_1RecommendationJobSupportedContentTypes = function (input, context) {
|
|
18466
|
+
return input
|
|
18467
|
+
.filter(function (e) { return e != null; })
|
|
18468
|
+
.map(function (entry) {
|
|
18469
|
+
return entry;
|
|
18470
|
+
});
|
|
18471
|
+
};
|
|
18472
|
+
var serializeAws_json1_1RecommendationJobSupportedInstanceTypes = function (input, context) {
|
|
18473
|
+
return input
|
|
18474
|
+
.filter(function (e) { return e != null; })
|
|
18475
|
+
.map(function (entry) {
|
|
18476
|
+
return entry;
|
|
18477
|
+
});
|
|
18478
|
+
};
|
|
18447
18479
|
var serializeAws_json1_1RedshiftDatasetDefinition = function (input, context) {
|
|
18448
18480
|
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ClusterId != null && { ClusterId: input.ClusterId })), (input.ClusterRoleArn != null && { ClusterRoleArn: input.ClusterRoleArn })), (input.Database != null && { Database: input.Database })), (input.DbUser != null && { DbUser: input.DbUser })), (input.KmsKeyId != null && { KmsKeyId: input.KmsKeyId })), (input.OutputCompression != null && { OutputCompression: input.OutputCompression })), (input.OutputFormat != null && { OutputFormat: input.OutputFormat })), (input.OutputS3Uri != null && { OutputS3Uri: input.OutputS3Uri })), (input.QueryString != null && { QueryString: input.QueryString }));
|
|
18449
18481
|
};
|
|
@@ -22151,6 +22183,7 @@ var deserializeAws_json1_1DomainSecurityGroupIds = function (output, context) {
|
|
|
22151
22183
|
};
|
|
22152
22184
|
var deserializeAws_json1_1DomainSettings = function (output, context) {
|
|
22153
22185
|
return {
|
|
22186
|
+
ExecutionRoleIdentityConfig: __expectString(output.ExecutionRoleIdentityConfig),
|
|
22154
22187
|
RStudioServerProDomainSettings: output.RStudioServerProDomainSettings != null
|
|
22155
22188
|
? deserializeAws_json1_1RStudioServerProDomainSettings(output.RStudioServerProDomainSettings, context)
|
|
22156
22189
|
: undefined,
|
|
@@ -25876,8 +25909,26 @@ var deserializeAws_json1_1RealtimeInferenceInstanceTypes = function (output, con
|
|
|
25876
25909
|
});
|
|
25877
25910
|
return retVal;
|
|
25878
25911
|
};
|
|
25912
|
+
var deserializeAws_json1_1RecommendationJobContainerConfig = function (output, context) {
|
|
25913
|
+
return {
|
|
25914
|
+
Domain: __expectString(output.Domain),
|
|
25915
|
+
Framework: __expectString(output.Framework),
|
|
25916
|
+
FrameworkVersion: __expectString(output.FrameworkVersion),
|
|
25917
|
+
NearestModelName: __expectString(output.NearestModelName),
|
|
25918
|
+
PayloadConfig: output.PayloadConfig != null
|
|
25919
|
+
? deserializeAws_json1_1RecommendationJobPayloadConfig(output.PayloadConfig, context)
|
|
25920
|
+
: undefined,
|
|
25921
|
+
SupportedInstanceTypes: output.SupportedInstanceTypes != null
|
|
25922
|
+
? deserializeAws_json1_1RecommendationJobSupportedInstanceTypes(output.SupportedInstanceTypes, context)
|
|
25923
|
+
: undefined,
|
|
25924
|
+
Task: __expectString(output.Task),
|
|
25925
|
+
};
|
|
25926
|
+
};
|
|
25879
25927
|
var deserializeAws_json1_1RecommendationJobInputConfig = function (output, context) {
|
|
25880
25928
|
return {
|
|
25929
|
+
ContainerConfig: output.ContainerConfig != null
|
|
25930
|
+
? deserializeAws_json1_1RecommendationJobContainerConfig(output.ContainerConfig, context)
|
|
25931
|
+
: undefined,
|
|
25881
25932
|
EndpointConfigurations: output.EndpointConfigurations != null
|
|
25882
25933
|
? deserializeAws_json1_1EndpointInputConfigurations(output.EndpointConfigurations, context)
|
|
25883
25934
|
: undefined,
|
|
@@ -25890,6 +25941,14 @@ var deserializeAws_json1_1RecommendationJobInputConfig = function (output, conte
|
|
|
25890
25941
|
VolumeKmsKeyId: __expectString(output.VolumeKmsKeyId),
|
|
25891
25942
|
};
|
|
25892
25943
|
};
|
|
25944
|
+
var deserializeAws_json1_1RecommendationJobPayloadConfig = function (output, context) {
|
|
25945
|
+
return {
|
|
25946
|
+
SamplePayloadUrl: __expectString(output.SamplePayloadUrl),
|
|
25947
|
+
SupportedContentTypes: output.SupportedContentTypes != null
|
|
25948
|
+
? deserializeAws_json1_1RecommendationJobSupportedContentTypes(output.SupportedContentTypes, context)
|
|
25949
|
+
: undefined,
|
|
25950
|
+
};
|
|
25951
|
+
};
|
|
25893
25952
|
var deserializeAws_json1_1RecommendationJobResourceLimit = function (output, context) {
|
|
25894
25953
|
return {
|
|
25895
25954
|
MaxNumberOfTests: __expectInt32(output.MaxNumberOfTests),
|
|
@@ -25904,6 +25963,28 @@ var deserializeAws_json1_1RecommendationJobStoppingConditions = function (output
|
|
|
25904
25963
|
: undefined,
|
|
25905
25964
|
};
|
|
25906
25965
|
};
|
|
25966
|
+
var deserializeAws_json1_1RecommendationJobSupportedContentTypes = function (output, context) {
|
|
25967
|
+
var retVal = (output || [])
|
|
25968
|
+
.filter(function (e) { return e != null; })
|
|
25969
|
+
.map(function (entry) {
|
|
25970
|
+
if (entry === null) {
|
|
25971
|
+
return null;
|
|
25972
|
+
}
|
|
25973
|
+
return __expectString(entry);
|
|
25974
|
+
});
|
|
25975
|
+
return retVal;
|
|
25976
|
+
};
|
|
25977
|
+
var deserializeAws_json1_1RecommendationJobSupportedInstanceTypes = function (output, context) {
|
|
25978
|
+
var retVal = (output || [])
|
|
25979
|
+
.filter(function (e) { return e != null; })
|
|
25980
|
+
.map(function (entry) {
|
|
25981
|
+
if (entry === null) {
|
|
25982
|
+
return null;
|
|
25983
|
+
}
|
|
25984
|
+
return __expectString(entry);
|
|
25985
|
+
});
|
|
25986
|
+
return retVal;
|
|
25987
|
+
};
|
|
25907
25988
|
var deserializeAws_json1_1RecommendationMetrics = function (output, context) {
|
|
25908
25989
|
return {
|
|
25909
25990
|
CostPerHour: __limitedParseFloat32(output.CostPerHour),
|
|
@@ -929,7 +929,7 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
929
929
|
* the Apps and files associated with the Domain's Amazon Elastic File System (EFS) volume.
|
|
930
930
|
* This operation can only be called when the authentication mode equals IAM.
|
|
931
931
|
* </p>
|
|
932
|
-
* <p>The IAM role or user
|
|
932
|
+
* <p>The IAM role or user passed to this API defines the permissions to access the app. Once
|
|
933
933
|
* the presigned URL is created, no additional permission is required to access this URL. IAM
|
|
934
934
|
* authorization policies for this API are also enforced for every HTTP request and WebSocket
|
|
935
935
|
* frame that attempts to connect to the app.</p>
|
|
@@ -1140,7 +1140,7 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
1140
1140
|
* <p>Creates a user profile. A user profile represents a single user within a domain, and is
|
|
1141
1141
|
* the main way to reference a "person" for the purposes of sharing, reporting, and other
|
|
1142
1142
|
* user-oriented features. This entity is created when a user onboards to Amazon SageMaker Studio. If an
|
|
1143
|
-
* administrator invites a person by email or imports them from SSO, a user profile is
|
|
1143
|
+
* administrator invites a person by email or imports them from Amazon Web Services SSO, a user profile is
|
|
1144
1144
|
* automatically created. A user profile is the primary holder of settings for an individual
|
|
1145
1145
|
* user and has a reference to the user's private Amazon Elastic File System (EFS) home directory.
|
|
1146
1146
|
* </p>
|
|
@@ -1246,7 +1246,7 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
1246
1246
|
deleteDeviceFleet(args: DeleteDeviceFleetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeviceFleetCommandOutput) => void): void;
|
|
1247
1247
|
/**
|
|
1248
1248
|
* <p>Used to delete a domain.
|
|
1249
|
-
*
|
|
1249
|
+
* If you onboarded with IAM mode, you will need to delete your domain to onboard again using Amazon Web Services SSO.
|
|
1250
1250
|
* Use with caution. All of the members of the domain will lose access to their EFS volume,
|
|
1251
1251
|
* including data, notebooks, and other artifacts.
|
|
1252
1252
|
* </p>
|
|
@@ -12,7 +12,7 @@ export interface CreatePresignedDomainUrlCommandOutput extends CreatePresignedDo
|
|
|
12
12
|
* the Apps and files associated with the Domain's Amazon Elastic File System (EFS) volume.
|
|
13
13
|
* This operation can only be called when the authentication mode equals IAM.
|
|
14
14
|
* </p>
|
|
15
|
-
* <p>The IAM role or user
|
|
15
|
+
* <p>The IAM role or user passed to this API defines the permissions to access the app. Once
|
|
16
16
|
* the presigned URL is created, no additional permission is required to access this URL. IAM
|
|
17
17
|
* authorization policies for this API are also enforced for every HTTP request and WebSocket
|
|
18
18
|
* frame that attempts to connect to the app.</p>
|
|
@@ -10,7 +10,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons
|
|
|
10
10
|
* <p>Creates a user profile. A user profile represents a single user within a domain, and is
|
|
11
11
|
* the main way to reference a "person" for the purposes of sharing, reporting, and other
|
|
12
12
|
* user-oriented features. This entity is created when a user onboards to Amazon SageMaker Studio. If an
|
|
13
|
-
* administrator invites a person by email or imports them from SSO, a user profile is
|
|
13
|
+
* administrator invites a person by email or imports them from Amazon Web Services SSO, a user profile is
|
|
14
14
|
* automatically created. A user profile is the primary holder of settings for an individual
|
|
15
15
|
* user and has a reference to the user's private Amazon Elastic File System (EFS) home directory.
|
|
16
16
|
* </p>
|
|
@@ -8,7 +8,7 @@ export interface DeleteDomainCommandOutput extends __MetadataBearer {
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Used to delete a domain.
|
|
11
|
-
*
|
|
11
|
+
* If you onboarded with IAM mode, you will need to delete your domain to onboard again using Amazon Web Services SSO.
|
|
12
12
|
* Use with caution. All of the members of the domain will lose access to their EFS volume,
|
|
13
13
|
* including data, notebooks, and other artifacts.
|
|
14
14
|
* </p>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeFlowDefinitionRequest
|
|
3
|
+
import { DescribeFlowDefinitionRequest } from "../models/models_1";
|
|
4
|
+
import { DescribeFlowDefinitionResponse } from "../models/models_2";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
export interface DescribeFlowDefinitionCommandInput extends DescribeFlowDefinitionRequest {
|
|
6
7
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DescribeHumanTaskUiRequest } from "../models/
|
|
4
|
-
import { DescribeHumanTaskUiResponse } from "../models/models_2";
|
|
3
|
+
import { DescribeHumanTaskUiRequest, DescribeHumanTaskUiResponse } from "../models/models_2";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
export interface DescribeHumanTaskUiCommandInput extends DescribeHumanTaskUiRequest {
|
|
7
6
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListNotebookInstancesInput
|
|
3
|
+
import { ListNotebookInstancesInput } from "../models/models_2";
|
|
4
|
+
import { ListNotebookInstancesOutput } from "../models/models_3";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
export interface ListNotebookInstancesCommandInput extends ListNotebookInstancesInput {
|
|
6
7
|
}
|