@aws-sdk/client-wisdom 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/Wisdom.js +137 -130
- package/dist-es/WisdomClient.js +28 -22
- package/dist-es/commands/CreateAssistantAssociationCommand.js +28 -21
- package/dist-es/commands/CreateAssistantCommand.js +28 -21
- package/dist-es/commands/CreateContentCommand.js +28 -21
- package/dist-es/commands/CreateKnowledgeBaseCommand.js +28 -21
- package/dist-es/commands/CreateSessionCommand.js +28 -21
- package/dist-es/commands/DeleteAssistantAssociationCommand.js +28 -21
- package/dist-es/commands/DeleteAssistantCommand.js +28 -21
- package/dist-es/commands/DeleteContentCommand.js +28 -21
- package/dist-es/commands/DeleteKnowledgeBaseCommand.js +28 -21
- package/dist-es/commands/GetAssistantAssociationCommand.js +28 -21
- package/dist-es/commands/GetAssistantCommand.js +28 -21
- package/dist-es/commands/GetContentCommand.js +28 -21
- package/dist-es/commands/GetContentSummaryCommand.js +28 -21
- package/dist-es/commands/GetKnowledgeBaseCommand.js +28 -21
- package/dist-es/commands/GetRecommendationsCommand.js +28 -21
- package/dist-es/commands/GetSessionCommand.js +28 -21
- package/dist-es/commands/ListAssistantAssociationsCommand.js +28 -21
- package/dist-es/commands/ListAssistantsCommand.js +28 -21
- package/dist-es/commands/ListContentsCommand.js +28 -21
- package/dist-es/commands/ListKnowledgeBasesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +28 -21
- package/dist-es/commands/PutFeedbackCommand.js +28 -21
- package/dist-es/commands/QueryAssistantCommand.js +28 -21
- package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +28 -21
- package/dist-es/commands/SearchContentCommand.js +28 -21
- package/dist-es/commands/SearchSessionsCommand.js +28 -21
- package/dist-es/commands/StartContentUploadCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateContentCommand.js +28 -21
- package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/WisdomServiceException.js +10 -5
- package/dist-es/models/models_0.js +207 -409
- package/dist-es/pagination/ListAssistantAssociationsPaginator.js +68 -25
- package/dist-es/pagination/ListAssistantsPaginator.js +68 -25
- package/dist-es/pagination/ListContentsPaginator.js +68 -25
- package/dist-es/pagination/ListKnowledgeBasesPaginator.js +68 -25
- package/dist-es/pagination/QueryAssistantPaginator.js +68 -25
- package/dist-es/pagination/SearchContentPaginator.js +68 -25
- package/dist-es/pagination/SearchSessionsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3086 -2164
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,32 +1,33 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { WisdomServiceException as __BaseException } from "./WisdomServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
this.$fault = "client";
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
16
|
+
var ConflictException = (function (_super) {
|
|
17
|
+
__extends(ConflictException, _super);
|
|
18
|
+
function ConflictException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "ConflictException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
23
|
+
return _this;
|
|
25
24
|
}
|
|
26
|
-
|
|
25
|
+
return ConflictException;
|
|
26
|
+
}(__BaseException));
|
|
27
|
+
export { ConflictException };
|
|
27
28
|
export var AssistantAssociationInputData;
|
|
28
29
|
(function (AssistantAssociationInputData) {
|
|
29
|
-
AssistantAssociationInputData.visit = (value, visitor)
|
|
30
|
+
AssistantAssociationInputData.visit = function (value, visitor) {
|
|
30
31
|
if (value.knowledgeBaseId !== undefined)
|
|
31
32
|
return visitor.knowledgeBaseId(value.knowledgeBaseId);
|
|
32
33
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -38,49 +39,49 @@ export var AssociationType;
|
|
|
38
39
|
})(AssociationType || (AssociationType = {}));
|
|
39
40
|
export var AssistantAssociationOutputData;
|
|
40
41
|
(function (AssistantAssociationOutputData) {
|
|
41
|
-
AssistantAssociationOutputData.visit = (value, visitor)
|
|
42
|
+
AssistantAssociationOutputData.visit = function (value, visitor) {
|
|
42
43
|
if (value.knowledgeBaseAssociation !== undefined)
|
|
43
44
|
return visitor.knowledgeBaseAssociation(value.knowledgeBaseAssociation);
|
|
44
45
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
45
46
|
};
|
|
46
47
|
})(AssistantAssociationOutputData || (AssistantAssociationOutputData = {}));
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
57
|
-
this.resourceName = opts.resourceName;
|
|
48
|
+
var ResourceNotFoundException = (function (_super) {
|
|
49
|
+
__extends(ResourceNotFoundException, _super);
|
|
50
|
+
function ResourceNotFoundException(opts) {
|
|
51
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
52
|
+
_this.name = "ResourceNotFoundException";
|
|
53
|
+
_this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
55
|
+
_this.resourceName = opts.resourceName;
|
|
56
|
+
return _this;
|
|
58
57
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
58
|
+
return ResourceNotFoundException;
|
|
59
|
+
}(__BaseException));
|
|
60
|
+
export { ResourceNotFoundException };
|
|
61
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
62
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
63
|
+
function ServiceQuotaExceededException(opts) {
|
|
64
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
65
|
+
_this.name = "ServiceQuotaExceededException";
|
|
66
|
+
_this.$fault = "client";
|
|
67
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
68
|
+
return _this;
|
|
70
69
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
70
|
+
return ServiceQuotaExceededException;
|
|
71
|
+
}(__BaseException));
|
|
72
|
+
export { ServiceQuotaExceededException };
|
|
73
|
+
var ValidationException = (function (_super) {
|
|
74
|
+
__extends(ValidationException, _super);
|
|
75
|
+
function ValidationException(opts) {
|
|
76
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
77
|
+
_this.name = "ValidationException";
|
|
78
|
+
_this.$fault = "client";
|
|
79
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
80
|
+
return _this;
|
|
82
81
|
}
|
|
83
|
-
|
|
82
|
+
return ValidationException;
|
|
83
|
+
}(__BaseException));
|
|
84
|
+
export { ValidationException };
|
|
84
85
|
export var AssistantType;
|
|
85
86
|
(function (AssistantType) {
|
|
86
87
|
AssistantType["AGENT"] = "AGENT";
|
|
@@ -106,7 +107,7 @@ export var RecommendationType;
|
|
|
106
107
|
})(RecommendationType || (RecommendationType = {}));
|
|
107
108
|
export var RecommendationTriggerData;
|
|
108
109
|
(function (RecommendationTriggerData) {
|
|
109
|
-
RecommendationTriggerData.visit = (value, visitor)
|
|
110
|
+
RecommendationTriggerData.visit = function (value, visitor) {
|
|
110
111
|
if (value.query !== undefined)
|
|
111
112
|
return visitor.query(value.query);
|
|
112
113
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -150,18 +151,18 @@ export var ContentStatus;
|
|
|
150
151
|
ContentStatus["DELETE_IN_PROGRESS"] = "DELETE_IN_PROGRESS";
|
|
151
152
|
ContentStatus["UPDATE_FAILED"] = "UPDATE_FAILED";
|
|
152
153
|
})(ContentStatus || (ContentStatus = {}));
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
this.$fault = "client";
|
|
162
|
-
Object.setPrototypeOf(this, PreconditionFailedException.prototype);
|
|
154
|
+
var PreconditionFailedException = (function (_super) {
|
|
155
|
+
__extends(PreconditionFailedException, _super);
|
|
156
|
+
function PreconditionFailedException(opts) {
|
|
157
|
+
var _this = _super.call(this, __assign({ name: "PreconditionFailedException", $fault: "client" }, opts)) || this;
|
|
158
|
+
_this.name = "PreconditionFailedException";
|
|
159
|
+
_this.$fault = "client";
|
|
160
|
+
Object.setPrototypeOf(_this, PreconditionFailedException.prototype);
|
|
161
|
+
return _this;
|
|
163
162
|
}
|
|
164
|
-
|
|
163
|
+
return PreconditionFailedException;
|
|
164
|
+
}(__BaseException));
|
|
165
|
+
export { PreconditionFailedException };
|
|
165
166
|
export var KnowledgeBaseType;
|
|
166
167
|
(function (KnowledgeBaseType) {
|
|
167
168
|
KnowledgeBaseType["CUSTOM"] = "CUSTOM";
|
|
@@ -169,7 +170,7 @@ export var KnowledgeBaseType;
|
|
|
169
170
|
})(KnowledgeBaseType || (KnowledgeBaseType = {}));
|
|
170
171
|
export var SourceConfiguration;
|
|
171
172
|
(function (SourceConfiguration) {
|
|
172
|
-
SourceConfiguration.visit = (value, visitor)
|
|
173
|
+
SourceConfiguration.visit = function (value, visitor) {
|
|
173
174
|
if (value.appIntegrations !== undefined)
|
|
174
175
|
return visitor.appIntegrations(value.appIntegrations);
|
|
175
176
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -184,359 +185,156 @@ export var KnowledgeBaseStatus;
|
|
|
184
185
|
KnowledgeBaseStatus["DELETE_FAILED"] = "DELETE_FAILED";
|
|
185
186
|
KnowledgeBaseStatus["DELETE_IN_PROGRESS"] = "DELETE_IN_PROGRESS";
|
|
186
187
|
})(KnowledgeBaseStatus || (KnowledgeBaseStatus = {}));
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
197
|
-
this.resourceName = opts.resourceName;
|
|
188
|
+
var TooManyTagsException = (function (_super) {
|
|
189
|
+
__extends(TooManyTagsException, _super);
|
|
190
|
+
function TooManyTagsException(opts) {
|
|
191
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
192
|
+
_this.name = "TooManyTagsException";
|
|
193
|
+
_this.$fault = "client";
|
|
194
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
195
|
+
_this.resourceName = opts.resourceName;
|
|
196
|
+
return _this;
|
|
198
197
|
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
});
|
|
203
|
-
export
|
|
198
|
+
return TooManyTagsException;
|
|
199
|
+
}(__BaseException));
|
|
200
|
+
export { TooManyTagsException };
|
|
201
|
+
export var AppIntegrationsConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
export var AssistantAssociationInputDataFilterSensitiveLog = function (obj) {
|
|
203
|
+
var _a;
|
|
204
204
|
if (obj.knowledgeBaseId !== undefined)
|
|
205
205
|
return { knowledgeBaseId: obj.knowledgeBaseId };
|
|
206
206
|
if (obj.$unknown !== undefined)
|
|
207
|
-
return { [obj.$unknown[0]]
|
|
207
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
208
208
|
};
|
|
209
|
-
export
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
export const KnowledgeBaseAssociationDataFilterSensitiveLog = (obj) => ({
|
|
214
|
-
...obj,
|
|
215
|
-
});
|
|
216
|
-
export const AssistantAssociationOutputDataFilterSensitiveLog = (obj) => {
|
|
209
|
+
export var CreateAssistantAssociationRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.association && { association: AssistantAssociationInputDataFilterSensitiveLog(obj.association) }))); };
|
|
210
|
+
export var KnowledgeBaseAssociationDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
|
+
export var AssistantAssociationOutputDataFilterSensitiveLog = function (obj) {
|
|
212
|
+
var _a;
|
|
217
213
|
if (obj.knowledgeBaseAssociation !== undefined)
|
|
218
214
|
return { knowledgeBaseAssociation: KnowledgeBaseAssociationDataFilterSensitiveLog(obj.knowledgeBaseAssociation) };
|
|
219
215
|
if (obj.$unknown !== undefined)
|
|
220
|
-
return { [obj.$unknown[0]]
|
|
216
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
221
217
|
};
|
|
222
|
-
export
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
218
|
+
export var AssistantAssociationDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.associationData && {
|
|
219
|
+
associationData: AssistantAssociationOutputDataFilterSensitiveLog(obj.associationData),
|
|
220
|
+
}))); };
|
|
221
|
+
export var CreateAssistantAssociationResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.assistantAssociation && {
|
|
222
|
+
assistantAssociation: AssistantAssociationDataFilterSensitiveLog(obj.assistantAssociation),
|
|
223
|
+
}))); };
|
|
224
|
+
export var DeleteAssistantAssociationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
|
+
export var DeleteAssistantAssociationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var GetAssistantAssociationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var GetAssistantAssociationResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.assistantAssociation && {
|
|
228
|
+
assistantAssociation: AssistantAssociationDataFilterSensitiveLog(obj.assistantAssociation),
|
|
229
|
+
}))); };
|
|
230
|
+
export var ListAssistantAssociationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var AssistantAssociationSummaryFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.associationData && {
|
|
232
|
+
associationData: AssistantAssociationOutputDataFilterSensitiveLog(obj.associationData),
|
|
233
|
+
}))); };
|
|
234
|
+
export var ListAssistantAssociationsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.assistantAssociationSummaries && {
|
|
235
|
+
assistantAssociationSummaries: obj.assistantAssociationSummaries.map(function (item) {
|
|
236
|
+
return AssistantAssociationSummaryFilterSensitiveLog(item);
|
|
226
237
|
}),
|
|
227
|
-
});
|
|
228
|
-
export
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
});
|
|
234
|
-
export
|
|
235
|
-
|
|
236
|
-
});
|
|
237
|
-
export
|
|
238
|
-
|
|
239
|
-
});
|
|
240
|
-
export
|
|
241
|
-
|
|
242
|
-
});
|
|
243
|
-
export
|
|
244
|
-
|
|
245
|
-
...(obj.assistantAssociation && {
|
|
246
|
-
assistantAssociation: AssistantAssociationDataFilterSensitiveLog(obj.assistantAssociation),
|
|
247
|
-
}),
|
|
248
|
-
});
|
|
249
|
-
export const ListAssistantAssociationsRequestFilterSensitiveLog = (obj) => ({
|
|
250
|
-
...obj,
|
|
251
|
-
});
|
|
252
|
-
export const AssistantAssociationSummaryFilterSensitiveLog = (obj) => ({
|
|
253
|
-
...obj,
|
|
254
|
-
...(obj.associationData && {
|
|
255
|
-
associationData: AssistantAssociationOutputDataFilterSensitiveLog(obj.associationData),
|
|
256
|
-
}),
|
|
257
|
-
});
|
|
258
|
-
export const ListAssistantAssociationsResponseFilterSensitiveLog = (obj) => ({
|
|
259
|
-
...obj,
|
|
260
|
-
...(obj.assistantAssociationSummaries && {
|
|
261
|
-
assistantAssociationSummaries: obj.assistantAssociationSummaries.map((item) => AssistantAssociationSummaryFilterSensitiveLog(item)),
|
|
262
|
-
}),
|
|
263
|
-
});
|
|
264
|
-
export const ServerSideEncryptionConfigurationFilterSensitiveLog = (obj) => ({
|
|
265
|
-
...obj,
|
|
266
|
-
});
|
|
267
|
-
export const CreateAssistantRequestFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
});
|
|
270
|
-
export const AssistantDataFilterSensitiveLog = (obj) => ({
|
|
271
|
-
...obj,
|
|
272
|
-
});
|
|
273
|
-
export const CreateAssistantResponseFilterSensitiveLog = (obj) => ({
|
|
274
|
-
...obj,
|
|
275
|
-
});
|
|
276
|
-
export const DeleteAssistantRequestFilterSensitiveLog = (obj) => ({
|
|
277
|
-
...obj,
|
|
278
|
-
});
|
|
279
|
-
export const DeleteAssistantResponseFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
});
|
|
282
|
-
export const GetAssistantRequestFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
285
|
-
export const GetAssistantResponseFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
});
|
|
288
|
-
export const GetRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
export const ContentReferenceFilterSensitiveLog = (obj) => ({
|
|
292
|
-
...obj,
|
|
293
|
-
});
|
|
294
|
-
export const HighlightFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
});
|
|
297
|
-
export const DocumentTextFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
...(obj.text && { text: SENSITIVE_STRING }),
|
|
300
|
-
});
|
|
301
|
-
export const DocumentFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
...(obj.title && { title: DocumentTextFilterSensitiveLog(obj.title) }),
|
|
304
|
-
...(obj.excerpt && { excerpt: DocumentTextFilterSensitiveLog(obj.excerpt) }),
|
|
305
|
-
});
|
|
306
|
-
export const RecommendationDataFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
...(obj.document && { document: DocumentFilterSensitiveLog(obj.document) }),
|
|
309
|
-
});
|
|
310
|
-
export const QueryRecommendationTriggerDataFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
...(obj.text && { text: SENSITIVE_STRING }),
|
|
313
|
-
});
|
|
314
|
-
export const RecommendationTriggerDataFilterSensitiveLog = (obj) => {
|
|
238
|
+
}))); };
|
|
239
|
+
export var ServerSideEncryptionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var CreateAssistantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var AssistantDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var CreateAssistantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var DeleteAssistantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var DeleteAssistantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
245
|
+
export var GetAssistantRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var GetAssistantResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var GetRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var ContentReferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var HighlightFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var DocumentTextFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.text && { text: SENSITIVE_STRING }))); };
|
|
251
|
+
export var DocumentFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.title && { title: DocumentTextFilterSensitiveLog(obj.title) })), (obj.excerpt && { excerpt: DocumentTextFilterSensitiveLog(obj.excerpt) }))); };
|
|
252
|
+
export var RecommendationDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.document && { document: DocumentFilterSensitiveLog(obj.document) }))); };
|
|
253
|
+
export var QueryRecommendationTriggerDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.text && { text: SENSITIVE_STRING }))); };
|
|
254
|
+
export var RecommendationTriggerDataFilterSensitiveLog = function (obj) {
|
|
255
|
+
var _a;
|
|
315
256
|
if (obj.query !== undefined)
|
|
316
257
|
return { query: QueryRecommendationTriggerDataFilterSensitiveLog(obj.query) };
|
|
317
258
|
if (obj.$unknown !== undefined)
|
|
318
|
-
return { [obj.$unknown[0]]
|
|
259
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
319
260
|
};
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
});
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
});
|
|
331
|
-
export
|
|
332
|
-
|
|
333
|
-
});
|
|
334
|
-
export
|
|
335
|
-
|
|
336
|
-
});
|
|
337
|
-
export
|
|
338
|
-
|
|
339
|
-
});
|
|
340
|
-
export
|
|
341
|
-
|
|
342
|
-
});
|
|
343
|
-
export
|
|
344
|
-
|
|
345
|
-
});
|
|
346
|
-
export
|
|
347
|
-
|
|
348
|
-
});
|
|
349
|
-
export
|
|
350
|
-
|
|
351
|
-
});
|
|
352
|
-
export
|
|
353
|
-
|
|
354
|
-
});
|
|
355
|
-
export
|
|
356
|
-
|
|
357
|
-
});
|
|
358
|
-
export
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
...obj,
|
|
364
|
-
...(obj.document && { document: DocumentFilterSensitiveLog(obj.document) }),
|
|
365
|
-
});
|
|
366
|
-
export const QueryAssistantResponseFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
...(obj.results && { results: obj.results.map((item) => ResultDataFilterSensitiveLog(item)) }),
|
|
369
|
-
});
|
|
370
|
-
export const FilterFilterSensitiveLog = (obj) => ({
|
|
371
|
-
...obj,
|
|
372
|
-
});
|
|
373
|
-
export const SearchExpressionFilterSensitiveLog = (obj) => ({
|
|
374
|
-
...obj,
|
|
375
|
-
});
|
|
376
|
-
export const SearchSessionsRequestFilterSensitiveLog = (obj) => ({
|
|
377
|
-
...obj,
|
|
378
|
-
});
|
|
379
|
-
export const SessionSummaryFilterSensitiveLog = (obj) => ({
|
|
380
|
-
...obj,
|
|
381
|
-
});
|
|
382
|
-
export const SearchSessionsResponseFilterSensitiveLog = (obj) => ({
|
|
383
|
-
...obj,
|
|
384
|
-
});
|
|
385
|
-
export const CreateSessionRequestFilterSensitiveLog = (obj) => ({
|
|
386
|
-
...obj,
|
|
387
|
-
});
|
|
388
|
-
export const SessionDataFilterSensitiveLog = (obj) => ({
|
|
389
|
-
...obj,
|
|
390
|
-
});
|
|
391
|
-
export const CreateSessionResponseFilterSensitiveLog = (obj) => ({
|
|
392
|
-
...obj,
|
|
393
|
-
});
|
|
394
|
-
export const GetSessionRequestFilterSensitiveLog = (obj) => ({
|
|
395
|
-
...obj,
|
|
396
|
-
});
|
|
397
|
-
export const GetSessionResponseFilterSensitiveLog = (obj) => ({
|
|
398
|
-
...obj,
|
|
399
|
-
});
|
|
400
|
-
export const CreateContentRequestFilterSensitiveLog = (obj) => ({
|
|
401
|
-
...obj,
|
|
402
|
-
});
|
|
403
|
-
export const ContentDataFilterSensitiveLog = (obj) => ({
|
|
404
|
-
...obj,
|
|
405
|
-
...(obj.url && { url: SENSITIVE_STRING }),
|
|
406
|
-
});
|
|
407
|
-
export const CreateContentResponseFilterSensitiveLog = (obj) => ({
|
|
408
|
-
...obj,
|
|
409
|
-
...(obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }),
|
|
410
|
-
});
|
|
411
|
-
export const DeleteContentRequestFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const DeleteContentResponseFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const GetContentRequestFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const GetContentResponseFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
...(obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }),
|
|
423
|
-
});
|
|
424
|
-
export const GetContentSummaryRequestFilterSensitiveLog = (obj) => ({
|
|
425
|
-
...obj,
|
|
426
|
-
});
|
|
427
|
-
export const ContentSummaryFilterSensitiveLog = (obj) => ({
|
|
428
|
-
...obj,
|
|
429
|
-
});
|
|
430
|
-
export const GetContentSummaryResponseFilterSensitiveLog = (obj) => ({
|
|
431
|
-
...obj,
|
|
432
|
-
});
|
|
433
|
-
export const ListContentsRequestFilterSensitiveLog = (obj) => ({
|
|
434
|
-
...obj,
|
|
435
|
-
});
|
|
436
|
-
export const ListContentsResponseFilterSensitiveLog = (obj) => ({
|
|
437
|
-
...obj,
|
|
438
|
-
});
|
|
439
|
-
export const UpdateContentRequestFilterSensitiveLog = (obj) => ({
|
|
440
|
-
...obj,
|
|
441
|
-
});
|
|
442
|
-
export const UpdateContentResponseFilterSensitiveLog = (obj) => ({
|
|
443
|
-
...obj,
|
|
444
|
-
...(obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }),
|
|
445
|
-
});
|
|
446
|
-
export const RenderingConfigurationFilterSensitiveLog = (obj) => ({
|
|
447
|
-
...obj,
|
|
448
|
-
});
|
|
449
|
-
export const SourceConfigurationFilterSensitiveLog = (obj) => {
|
|
261
|
+
export var RecommendationTriggerFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.data && { data: RecommendationTriggerDataFilterSensitiveLog(obj.data) }))); };
|
|
262
|
+
export var GetRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.recommendations && {
|
|
263
|
+
recommendations: obj.recommendations.map(function (item) { return RecommendationDataFilterSensitiveLog(item); }),
|
|
264
|
+
})), (obj.triggers && { triggers: obj.triggers.map(function (item) { return RecommendationTriggerFilterSensitiveLog(item); }) }))); };
|
|
265
|
+
export var ListAssistantsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var AssistantSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var ListAssistantsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var NotifyRecommendationsReceivedRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var NotifyRecommendationsReceivedErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var NotifyRecommendationsReceivedResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var FeedbackDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var PutFeedbackRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var PutFeedbackResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var QueryAssistantRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.queryText && { queryText: SENSITIVE_STRING }))); };
|
|
275
|
+
export var ResultDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.document && { document: DocumentFilterSensitiveLog(obj.document) }))); };
|
|
276
|
+
export var QueryAssistantResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.results && { results: obj.results.map(function (item) { return ResultDataFilterSensitiveLog(item); }) }))); };
|
|
277
|
+
export var FilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var SearchExpressionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var SearchSessionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var SessionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var SearchSessionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var CreateSessionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var SessionDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var CreateSessionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var GetSessionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var GetSessionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var CreateContentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var ContentDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.url && { url: SENSITIVE_STRING }))); };
|
|
289
|
+
export var CreateContentResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }))); };
|
|
290
|
+
export var DeleteContentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var DeleteContentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var GetContentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var GetContentResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }))); };
|
|
294
|
+
export var GetContentSummaryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var ContentSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var GetContentSummaryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var ListContentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var ListContentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var UpdateContentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var UpdateContentResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.content && { content: ContentDataFilterSensitiveLog(obj.content) }))); };
|
|
301
|
+
export var RenderingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var SourceConfigurationFilterSensitiveLog = function (obj) {
|
|
303
|
+
var _a;
|
|
450
304
|
if (obj.appIntegrations !== undefined)
|
|
451
305
|
return { appIntegrations: AppIntegrationsConfigurationFilterSensitiveLog(obj.appIntegrations) };
|
|
452
306
|
if (obj.$unknown !== undefined)
|
|
453
|
-
return { [obj.$unknown[0]]
|
|
307
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
454
308
|
};
|
|
455
|
-
export
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
});
|
|
461
|
-
export
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
});
|
|
467
|
-
export
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
})
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
});
|
|
474
|
-
export
|
|
475
|
-
|
|
476
|
-
});
|
|
477
|
-
export
|
|
478
|
-
|
|
479
|
-
});
|
|
480
|
-
export
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
});
|
|
484
|
-
export
|
|
485
|
-
|
|
486
|
-
});
|
|
487
|
-
export const KnowledgeBaseSummaryFilterSensitiveLog = (obj) => ({
|
|
488
|
-
...obj,
|
|
489
|
-
...(obj.sourceConfiguration && {
|
|
490
|
-
sourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.sourceConfiguration),
|
|
491
|
-
}),
|
|
492
|
-
});
|
|
493
|
-
export const ListKnowledgeBasesResponseFilterSensitiveLog = (obj) => ({
|
|
494
|
-
...obj,
|
|
495
|
-
...(obj.knowledgeBaseSummaries && {
|
|
496
|
-
knowledgeBaseSummaries: obj.knowledgeBaseSummaries.map((item) => KnowledgeBaseSummaryFilterSensitiveLog(item)),
|
|
497
|
-
}),
|
|
498
|
-
});
|
|
499
|
-
export const RemoveKnowledgeBaseTemplateUriRequestFilterSensitiveLog = (obj) => ({
|
|
500
|
-
...obj,
|
|
501
|
-
});
|
|
502
|
-
export const RemoveKnowledgeBaseTemplateUriResponseFilterSensitiveLog = (obj) => ({
|
|
503
|
-
...obj,
|
|
504
|
-
});
|
|
505
|
-
export const SearchContentRequestFilterSensitiveLog = (obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
});
|
|
508
|
-
export const SearchContentResponseFilterSensitiveLog = (obj) => ({
|
|
509
|
-
...obj,
|
|
510
|
-
});
|
|
511
|
-
export const StartContentUploadRequestFilterSensitiveLog = (obj) => ({
|
|
512
|
-
...obj,
|
|
513
|
-
});
|
|
514
|
-
export const StartContentUploadResponseFilterSensitiveLog = (obj) => ({
|
|
515
|
-
...obj,
|
|
516
|
-
...(obj.url && { url: SENSITIVE_STRING }),
|
|
517
|
-
});
|
|
518
|
-
export const UpdateKnowledgeBaseTemplateUriRequestFilterSensitiveLog = (obj) => ({
|
|
519
|
-
...obj,
|
|
520
|
-
});
|
|
521
|
-
export const UpdateKnowledgeBaseTemplateUriResponseFilterSensitiveLog = (obj) => ({
|
|
522
|
-
...obj,
|
|
523
|
-
...(obj.knowledgeBase && { knowledgeBase: KnowledgeBaseDataFilterSensitiveLog(obj.knowledgeBase) }),
|
|
524
|
-
});
|
|
525
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
526
|
-
...obj,
|
|
527
|
-
});
|
|
528
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
529
|
-
...obj,
|
|
530
|
-
});
|
|
531
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
532
|
-
...obj,
|
|
533
|
-
});
|
|
534
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
535
|
-
...obj,
|
|
536
|
-
});
|
|
537
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
538
|
-
...obj,
|
|
539
|
-
});
|
|
540
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
541
|
-
...obj,
|
|
542
|
-
});
|
|
309
|
+
export var CreateKnowledgeBaseRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.sourceConfiguration && {
|
|
310
|
+
sourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.sourceConfiguration),
|
|
311
|
+
}))); };
|
|
312
|
+
export var KnowledgeBaseDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.sourceConfiguration && {
|
|
313
|
+
sourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.sourceConfiguration),
|
|
314
|
+
}))); };
|
|
315
|
+
export var CreateKnowledgeBaseResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.knowledgeBase && { knowledgeBase: KnowledgeBaseDataFilterSensitiveLog(obj.knowledgeBase) }))); };
|
|
316
|
+
export var DeleteKnowledgeBaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var DeleteKnowledgeBaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var GetKnowledgeBaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var GetKnowledgeBaseResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.knowledgeBase && { knowledgeBase: KnowledgeBaseDataFilterSensitiveLog(obj.knowledgeBase) }))); };
|
|
320
|
+
export var ListKnowledgeBasesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var KnowledgeBaseSummaryFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.sourceConfiguration && {
|
|
322
|
+
sourceConfiguration: SourceConfigurationFilterSensitiveLog(obj.sourceConfiguration),
|
|
323
|
+
}))); };
|
|
324
|
+
export var ListKnowledgeBasesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.knowledgeBaseSummaries && {
|
|
325
|
+
knowledgeBaseSummaries: obj.knowledgeBaseSummaries.map(function (item) { return KnowledgeBaseSummaryFilterSensitiveLog(item); }),
|
|
326
|
+
}))); };
|
|
327
|
+
export var RemoveKnowledgeBaseTemplateUriRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var RemoveKnowledgeBaseTemplateUriResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var SearchContentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var SearchContentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var StartContentUploadRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var StartContentUploadResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.url && { url: SENSITIVE_STRING }))); };
|
|
333
|
+
export var UpdateKnowledgeBaseTemplateUriRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var UpdateKnowledgeBaseTemplateUriResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.knowledgeBase && { knowledgeBase: KnowledgeBaseDataFilterSensitiveLog(obj.knowledgeBase) }))); };
|
|
335
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|