@aws-sdk/client-sagemaker-a2i-runtime 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/DeleteHumanLoopCommand.js +2 -2
- package/dist-cjs/commands/DescribeHumanLoopCommand.js +2 -2
- package/dist-cjs/commands/ListHumanLoopsCommand.js +2 -2
- package/dist-cjs/commands/StartHumanLoopCommand.js +2 -2
- package/dist-cjs/commands/StopHumanLoopCommand.js +2 -2
- package/dist-cjs/models/models_0.js +57 -85
- package/dist-cjs/protocols/Aws_restJson1.js +80 -124
- package/dist-es/commands/DeleteHumanLoopCommand.js +3 -3
- package/dist-es/commands/DescribeHumanLoopCommand.js +3 -3
- package/dist-es/commands/ListHumanLoopsCommand.js +3 -3
- package/dist-es/commands/StartHumanLoopCommand.js +3 -3
- package/dist-es/commands/StopHumanLoopCommand.js +3 -3
- package/dist-es/models/models_0.js +14 -56
- package/dist-es/protocols/Aws_restJson1.js +98 -120
- package/dist-types/models/models_0.d.ts +56 -84
- package/dist-types/ts3.4/models/models_0.d.ts +28 -56
- package/package.json +6 -6
|
@@ -4,16 +4,8 @@ export interface DeleteHumanLoopRequest {
|
|
|
4
4
|
|
|
5
5
|
HumanLoopName: string | undefined;
|
|
6
6
|
}
|
|
7
|
-
export declare namespace DeleteHumanLoopRequest {
|
|
8
|
-
|
|
9
|
-
const filterSensitiveLog: (obj: DeleteHumanLoopRequest) => any;
|
|
10
|
-
}
|
|
11
7
|
export interface DeleteHumanLoopResponse {
|
|
12
8
|
}
|
|
13
|
-
export declare namespace DeleteHumanLoopResponse {
|
|
14
|
-
|
|
15
|
-
const filterSensitiveLog: (obj: DeleteHumanLoopResponse) => any;
|
|
16
|
-
}
|
|
17
9
|
|
|
18
10
|
export declare class InternalServerException extends __BaseException {
|
|
19
11
|
readonly name: "InternalServerException";
|
|
@@ -50,19 +42,11 @@ export interface DescribeHumanLoopRequest {
|
|
|
50
42
|
|
|
51
43
|
HumanLoopName: string | undefined;
|
|
52
44
|
}
|
|
53
|
-
export declare namespace DescribeHumanLoopRequest {
|
|
54
|
-
|
|
55
|
-
const filterSensitiveLog: (obj: DescribeHumanLoopRequest) => any;
|
|
56
|
-
}
|
|
57
45
|
|
|
58
46
|
export interface HumanLoopOutput {
|
|
59
47
|
|
|
60
48
|
OutputS3Uri: string | undefined;
|
|
61
49
|
}
|
|
62
|
-
export declare namespace HumanLoopOutput {
|
|
63
|
-
|
|
64
|
-
const filterSensitiveLog: (obj: HumanLoopOutput) => any;
|
|
65
|
-
}
|
|
66
50
|
export declare enum HumanLoopStatus {
|
|
67
51
|
COMPLETED = "Completed",
|
|
68
52
|
FAILED = "Failed",
|
|
@@ -88,10 +72,6 @@ export interface DescribeHumanLoopResponse {
|
|
|
88
72
|
|
|
89
73
|
HumanLoopOutput?: HumanLoopOutput;
|
|
90
74
|
}
|
|
91
|
-
export declare namespace DescribeHumanLoopResponse {
|
|
92
|
-
|
|
93
|
-
const filterSensitiveLog: (obj: DescribeHumanLoopResponse) => any;
|
|
94
|
-
}
|
|
95
75
|
export declare enum SortOrder {
|
|
96
76
|
ASCENDING = "Ascending",
|
|
97
77
|
DESCENDING = "Descending"
|
|
@@ -110,10 +90,6 @@ export interface ListHumanLoopsRequest {
|
|
|
110
90
|
|
|
111
91
|
MaxResults?: number;
|
|
112
92
|
}
|
|
113
|
-
export declare namespace ListHumanLoopsRequest {
|
|
114
|
-
|
|
115
|
-
const filterSensitiveLog: (obj: ListHumanLoopsRequest) => any;
|
|
116
|
-
}
|
|
117
93
|
|
|
118
94
|
export interface HumanLoopSummary {
|
|
119
95
|
|
|
@@ -127,20 +103,12 @@ export interface HumanLoopSummary {
|
|
|
127
103
|
|
|
128
104
|
FlowDefinitionArn?: string;
|
|
129
105
|
}
|
|
130
|
-
export declare namespace HumanLoopSummary {
|
|
131
|
-
|
|
132
|
-
const filterSensitiveLog: (obj: HumanLoopSummary) => any;
|
|
133
|
-
}
|
|
134
106
|
export interface ListHumanLoopsResponse {
|
|
135
107
|
|
|
136
108
|
HumanLoopSummaries: HumanLoopSummary[] | undefined;
|
|
137
109
|
|
|
138
110
|
NextToken?: string;
|
|
139
111
|
}
|
|
140
|
-
export declare namespace ListHumanLoopsResponse {
|
|
141
|
-
|
|
142
|
-
const filterSensitiveLog: (obj: ListHumanLoopsResponse) => any;
|
|
143
|
-
}
|
|
144
112
|
|
|
145
113
|
export declare class ConflictException extends __BaseException {
|
|
146
114
|
readonly name: "ConflictException";
|
|
@@ -166,19 +134,11 @@ export interface HumanLoopDataAttributes {
|
|
|
166
134
|
|
|
167
135
|
ContentClassifiers: (ContentClassifier | string)[] | undefined;
|
|
168
136
|
}
|
|
169
|
-
export declare namespace HumanLoopDataAttributes {
|
|
170
|
-
|
|
171
|
-
const filterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
|
|
172
|
-
}
|
|
173
137
|
|
|
174
138
|
export interface HumanLoopInput {
|
|
175
139
|
|
|
176
140
|
InputContent: string | undefined;
|
|
177
141
|
}
|
|
178
|
-
export declare namespace HumanLoopInput {
|
|
179
|
-
|
|
180
|
-
const filterSensitiveLog: (obj: HumanLoopInput) => any;
|
|
181
|
-
}
|
|
182
142
|
export interface StartHumanLoopRequest {
|
|
183
143
|
|
|
184
144
|
HumanLoopName: string | undefined;
|
|
@@ -189,29 +149,41 @@ export interface StartHumanLoopRequest {
|
|
|
189
149
|
|
|
190
150
|
DataAttributes?: HumanLoopDataAttributes;
|
|
191
151
|
}
|
|
192
|
-
export declare namespace StartHumanLoopRequest {
|
|
193
|
-
|
|
194
|
-
const filterSensitiveLog: (obj: StartHumanLoopRequest) => any;
|
|
195
|
-
}
|
|
196
152
|
export interface StartHumanLoopResponse {
|
|
197
153
|
|
|
198
154
|
HumanLoopArn?: string;
|
|
199
155
|
}
|
|
200
|
-
export declare namespace StartHumanLoopResponse {
|
|
201
|
-
|
|
202
|
-
const filterSensitiveLog: (obj: StartHumanLoopResponse) => any;
|
|
203
|
-
}
|
|
204
156
|
export interface StopHumanLoopRequest {
|
|
205
157
|
|
|
206
158
|
HumanLoopName: string | undefined;
|
|
207
159
|
}
|
|
208
|
-
export declare namespace StopHumanLoopRequest {
|
|
209
|
-
|
|
210
|
-
const filterSensitiveLog: (obj: StopHumanLoopRequest) => any;
|
|
211
|
-
}
|
|
212
160
|
export interface StopHumanLoopResponse {
|
|
213
161
|
}
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
162
|
+
|
|
163
|
+
export declare const DeleteHumanLoopRequestFilterSensitiveLog: (obj: DeleteHumanLoopRequest) => any;
|
|
164
|
+
|
|
165
|
+
export declare const DeleteHumanLoopResponseFilterSensitiveLog: (obj: DeleteHumanLoopResponse) => any;
|
|
166
|
+
|
|
167
|
+
export declare const DescribeHumanLoopRequestFilterSensitiveLog: (obj: DescribeHumanLoopRequest) => any;
|
|
168
|
+
|
|
169
|
+
export declare const HumanLoopOutputFilterSensitiveLog: (obj: HumanLoopOutput) => any;
|
|
170
|
+
|
|
171
|
+
export declare const DescribeHumanLoopResponseFilterSensitiveLog: (obj: DescribeHumanLoopResponse) => any;
|
|
172
|
+
|
|
173
|
+
export declare const ListHumanLoopsRequestFilterSensitiveLog: (obj: ListHumanLoopsRequest) => any;
|
|
174
|
+
|
|
175
|
+
export declare const HumanLoopSummaryFilterSensitiveLog: (obj: HumanLoopSummary) => any;
|
|
176
|
+
|
|
177
|
+
export declare const ListHumanLoopsResponseFilterSensitiveLog: (obj: ListHumanLoopsResponse) => any;
|
|
178
|
+
|
|
179
|
+
export declare const HumanLoopDataAttributesFilterSensitiveLog: (obj: HumanLoopDataAttributes) => any;
|
|
180
|
+
|
|
181
|
+
export declare const HumanLoopInputFilterSensitiveLog: (obj: HumanLoopInput) => any;
|
|
182
|
+
|
|
183
|
+
export declare const StartHumanLoopRequestFilterSensitiveLog: (obj: StartHumanLoopRequest) => any;
|
|
184
|
+
|
|
185
|
+
export declare const StartHumanLoopResponseFilterSensitiveLog: (obj: StartHumanLoopResponse) => any;
|
|
186
|
+
|
|
187
|
+
export declare const StopHumanLoopRequestFilterSensitiveLog: (obj: StopHumanLoopRequest) => any;
|
|
188
|
+
|
|
189
|
+
export declare const StopHumanLoopResponseFilterSensitiveLog: (obj: StopHumanLoopResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-a2i-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker A2i Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.142.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|