@aws-sdk/client-sagemaker 3.687.0 → 3.692.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 +12 -1
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/models/models_1.js +7 -0
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +1 -1
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +2 -2
- package/dist-types/commands/CreateInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelPackageCommand.d.ts +3 -3
- package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +2 -2
- package/dist-types/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +3 -3
- package/dist-types/commands/DescribeNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +4 -4
- package/dist-types/commands/StopInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +432 -428
- package/dist-types/models/models_1.d.ts +586 -579
- package/dist-types/models/models_2.d.ts +583 -583
- package/dist-types/models/models_3.d.ts +944 -944
- package/dist-types/models/models_4.d.ts +950 -950
- package/dist-types/models/models_5.d.ts +20 -20
- package/dist-types/ts3.4/models/models_0.d.ts +452 -433
- package/dist-types/ts3.4/models/models_1.d.ts +596 -579
- package/dist-types/ts3.4/models/models_2.d.ts +591 -583
- package/dist-types/ts3.4/models/models_3.d.ts +956 -944
- package/dist-types/ts3.4/models/models_4.d.ts +964 -950
- package/dist-types/ts3.4/models/models_5.d.ts +20 -20
- package/package.json +36 -36
|
@@ -18,45 +18,45 @@ import {
|
|
|
18
18
|
export interface UpdateUserProfileRequest {
|
|
19
19
|
DomainId: string | undefined;
|
|
20
20
|
UserProfileName: string | undefined;
|
|
21
|
-
UserSettings?: UserSettings;
|
|
21
|
+
UserSettings?: UserSettings | undefined;
|
|
22
22
|
}
|
|
23
23
|
export interface UpdateUserProfileResponse {
|
|
24
|
-
UserProfileArn?: string;
|
|
24
|
+
UserProfileArn?: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface UpdateWorkforceRequest {
|
|
27
27
|
WorkforceName: string | undefined;
|
|
28
|
-
SourceIpConfig?: SourceIpConfig;
|
|
29
|
-
OidcConfig?: OidcConfig;
|
|
30
|
-
WorkforceVpcConfig?: WorkforceVpcConfigRequest;
|
|
28
|
+
SourceIpConfig?: SourceIpConfig | undefined;
|
|
29
|
+
OidcConfig?: OidcConfig | undefined;
|
|
30
|
+
WorkforceVpcConfig?: WorkforceVpcConfigRequest | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface UpdateWorkforceResponse {
|
|
33
33
|
Workforce: Workforce | undefined;
|
|
34
34
|
}
|
|
35
35
|
export interface UpdateWorkteamRequest {
|
|
36
36
|
WorkteamName: string | undefined;
|
|
37
|
-
MemberDefinitions?: MemberDefinition[];
|
|
38
|
-
Description?: string;
|
|
39
|
-
NotificationConfiguration?: NotificationConfiguration;
|
|
40
|
-
WorkerAccessConfiguration?: WorkerAccessConfiguration;
|
|
37
|
+
MemberDefinitions?: MemberDefinition[] | undefined;
|
|
38
|
+
Description?: string | undefined;
|
|
39
|
+
NotificationConfiguration?: NotificationConfiguration | undefined;
|
|
40
|
+
WorkerAccessConfiguration?: WorkerAccessConfiguration | undefined;
|
|
41
41
|
}
|
|
42
42
|
export interface UpdateWorkteamResponse {
|
|
43
43
|
Workteam: Workteam | undefined;
|
|
44
44
|
}
|
|
45
45
|
export interface SearchExpression {
|
|
46
|
-
Filters?: Filter[];
|
|
47
|
-
NestedFilters?: NestedFilters[];
|
|
48
|
-
SubExpressions?: SearchExpression[];
|
|
49
|
-
Operator?: BooleanOperator;
|
|
46
|
+
Filters?: Filter[] | undefined;
|
|
47
|
+
NestedFilters?: NestedFilters[] | undefined;
|
|
48
|
+
SubExpressions?: SearchExpression[] | undefined;
|
|
49
|
+
Operator?: BooleanOperator | undefined;
|
|
50
50
|
}
|
|
51
51
|
export interface SearchRequest {
|
|
52
52
|
Resource: ResourceType | undefined;
|
|
53
|
-
SearchExpression?: SearchExpression;
|
|
54
|
-
SortBy?: string;
|
|
55
|
-
SortOrder?: SearchSortOrder;
|
|
56
|
-
NextToken?: string;
|
|
57
|
-
MaxResults?: number;
|
|
58
|
-
CrossAccountFilterOption?: CrossAccountFilterOption;
|
|
59
|
-
VisibilityConditions?: VisibilityConditions[];
|
|
53
|
+
SearchExpression?: SearchExpression | undefined;
|
|
54
|
+
SortBy?: string | undefined;
|
|
55
|
+
SortOrder?: SearchSortOrder | undefined;
|
|
56
|
+
NextToken?: string | undefined;
|
|
57
|
+
MaxResults?: number | undefined;
|
|
58
|
+
CrossAccountFilterOption?: CrossAccountFilterOption | undefined;
|
|
59
|
+
VisibilityConditions?: VisibilityConditions[] | undefined;
|
|
60
60
|
}
|
|
61
61
|
export declare const UpdateWorkforceRequestFilterSensitiveLog: (
|
|
62
62
|
obj: UpdateWorkforceRequest
|
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.692.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,45 +20,45 @@
|
|
|
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.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
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.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
|
-
"@smithy/util-waiter": "^3.1.
|
|
61
|
+
"@smithy/util-waiter": "^3.1.8",
|
|
62
62
|
"@types/uuid": "^9.0.1",
|
|
63
63
|
"tslib": "^2.6.2",
|
|
64
64
|
"uuid": "^9.0.1"
|