@aws-sdk/client-sagemaker 3.454.0 → 3.457.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/models/models_3.js +1 -7
- package/dist-cjs/models/models_4.js +7 -3
- package/dist-cjs/protocols/Aws_json1_1.js +6657 -2332
- package/dist-es/models/models_3.js +0 -5
- package/dist-es/models/models_4.js +4 -1
- package/dist-es/protocols/Aws_json1_1.js +6657 -2332
- package/dist-types/commands/CreateModelCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCodeRepositoryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelCommand.d.ts +6 -0
- package/dist-types/commands/SearchCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +27 -28
- package/dist-types/models/models_1.d.ts +28 -11
- package/dist-types/models/models_2.d.ts +13 -86
- package/dist-types/models/models_3.d.ts +84 -104
- package/dist-types/models/models_4.d.ts +103 -1
- package/dist-types/ts3.4/commands/DeleteCodeRepositoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -5
- package/dist-types/ts3.4/models/models_1.d.ts +5 -4
- package/dist-types/ts3.4/models/models_2.d.ts +4 -14
- package/dist-types/ts3.4/models/models_3.d.ts +14 -19
- package/dist-types/ts3.4/models/models_4.d.ts +17 -1
- package/package.json +1 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
export const EndpointConfigSortKey = {
|
|
3
2
|
CreationTime: "CreationTime",
|
|
4
3
|
Name: "Name",
|
|
@@ -322,7 +321,3 @@ export const ListWorkteamsSortByOptions = {
|
|
|
322
321
|
CreateDate: "CreateDate",
|
|
323
322
|
Name: "Name",
|
|
324
323
|
};
|
|
325
|
-
export const ModelCardFilterSensitiveLog = (obj) => ({
|
|
326
|
-
...obj,
|
|
327
|
-
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
328
|
-
});
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { OidcConfigFilterSensitiveLog, } from "./models_1";
|
|
3
|
-
import { ModelCardFilterSensitiveLog, } from "./models_3";
|
|
4
3
|
export const ModelVariantAction = {
|
|
5
4
|
PROMOTE: "Promote",
|
|
6
5
|
REMOVE: "Remove",
|
|
@@ -15,6 +14,10 @@ export const VariantPropertyType = {
|
|
|
15
14
|
DesiredInstanceCount: "DesiredInstanceCount",
|
|
16
15
|
DesiredWeight: "DesiredWeight",
|
|
17
16
|
};
|
|
17
|
+
export const ModelCardFilterSensitiveLog = (obj) => ({
|
|
18
|
+
...obj,
|
|
19
|
+
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
20
|
+
});
|
|
18
21
|
export const SearchRecordFilterSensitiveLog = (obj) => ({
|
|
19
22
|
...obj,
|
|
20
23
|
...(obj.TrialComponent && { TrialComponent: obj.TrialComponent }),
|