@aws-sdk/client-finspace-data 3.52.0 → 3.54.1
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/FinspaceData.js +165 -0
- package/dist-cjs/commands/CreatePermissionGroupCommand.js +36 -0
- package/dist-cjs/commands/CreateUserCommand.js +36 -0
- package/dist-cjs/commands/DeletePermissionGroupCommand.js +36 -0
- package/dist-cjs/commands/DisableUserCommand.js +36 -0
- package/dist-cjs/commands/EnableUserCommand.js +36 -0
- package/dist-cjs/commands/GetUserCommand.js +36 -0
- package/dist-cjs/commands/ListPermissionGroupsCommand.js +36 -0
- package/dist-cjs/commands/ListUsersCommand.js +36 -0
- package/dist-cjs/commands/ResetUserPasswordCommand.js +36 -0
- package/dist-cjs/commands/UpdatePermissionGroupCommand.js +36 -0
- package/dist-cjs/commands/UpdateUserCommand.js +36 -0
- package/dist-cjs/commands/index.js +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/FinspaceDataServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +294 -1
- package/dist-cjs/pagination/ListPermissionGroupsPaginator.js +35 -0
- package/dist-cjs/pagination/ListUsersPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1302 -752
- package/dist-es/FinspaceData.js +165 -0
- package/dist-es/commands/CreatePermissionGroupCommand.js +39 -0
- package/dist-es/commands/CreateUserCommand.js +39 -0
- package/dist-es/commands/DeletePermissionGroupCommand.js +39 -0
- package/dist-es/commands/DisableUserCommand.js +39 -0
- package/dist-es/commands/EnableUserCommand.js +39 -0
- package/dist-es/commands/GetUserCommand.js +39 -0
- package/dist-es/commands/ListPermissionGroupsCommand.js +39 -0
- package/dist-es/commands/ListUsersCommand.js +39 -0
- package/dist-es/commands/ResetUserPasswordCommand.js +39 -0
- package/dist-es/commands/UpdatePermissionGroupCommand.js +39 -0
- package/dist-es/commands/UpdateUserCommand.js +39 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/FinspaceDataServiceException.js +12 -0
- package/dist-es/models/models_0.js +218 -5
- package/dist-es/pagination/ListPermissionGroupsPaginator.js +74 -0
- package/dist-es/pagination/ListUsersPaginator.js +74 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1953 -1005
- package/dist-types/FinspaceData.d.ts +77 -0
- package/dist-types/FinspaceDataClient.d.ts +15 -4
- package/dist-types/commands/CreatePermissionGroupCommand.d.ts +35 -0
- package/dist-types/commands/CreateUserCommand.d.ts +35 -0
- package/dist-types/commands/DeletePermissionGroupCommand.d.ts +35 -0
- package/dist-types/commands/DisableUserCommand.d.ts +35 -0
- package/dist-types/commands/EnableUserCommand.d.ts +35 -0
- package/dist-types/commands/GetUserCommand.d.ts +35 -0
- package/dist-types/commands/ListPermissionGroupsCommand.d.ts +35 -0
- package/dist-types/commands/ListUsersCommand.d.ts +35 -0
- package/dist-types/commands/ResetUserPasswordCommand.d.ts +35 -0
- package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +35 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/FinspaceDataServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +916 -141
- package/dist-types/pagination/ListPermissionGroupsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListUsersPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +33 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/FinspaceData.d.ts +55 -0
- package/dist-types/ts3.4/FinspaceDataClient.d.ts +15 -4
- package/dist-types/ts3.4/commands/CreatePermissionGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePermissionGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPermissionGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ResetUserPasswordCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdatePermissionGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/FinspaceDataServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +370 -28
- package/dist-types/ts3.4/pagination/ListPermissionGroupsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +33 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
package/dist-es/FinspaceData.js
CHANGED
|
@@ -2,17 +2,28 @@ import { __extends } from "tslib";
|
|
|
2
2
|
import { CreateChangesetCommand, } from "./commands/CreateChangesetCommand";
|
|
3
3
|
import { CreateDatasetCommand, } from "./commands/CreateDatasetCommand";
|
|
4
4
|
import { CreateDataViewCommand, } from "./commands/CreateDataViewCommand";
|
|
5
|
+
import { CreatePermissionGroupCommand, } from "./commands/CreatePermissionGroupCommand";
|
|
6
|
+
import { CreateUserCommand } from "./commands/CreateUserCommand";
|
|
5
7
|
import { DeleteDatasetCommand, } from "./commands/DeleteDatasetCommand";
|
|
8
|
+
import { DeletePermissionGroupCommand, } from "./commands/DeletePermissionGroupCommand";
|
|
9
|
+
import { DisableUserCommand } from "./commands/DisableUserCommand";
|
|
10
|
+
import { EnableUserCommand } from "./commands/EnableUserCommand";
|
|
6
11
|
import { GetChangesetCommand, } from "./commands/GetChangesetCommand";
|
|
7
12
|
import { GetDatasetCommand } from "./commands/GetDatasetCommand";
|
|
8
13
|
import { GetDataViewCommand } from "./commands/GetDataViewCommand";
|
|
9
14
|
import { GetProgrammaticAccessCredentialsCommand, } from "./commands/GetProgrammaticAccessCredentialsCommand";
|
|
15
|
+
import { GetUserCommand } from "./commands/GetUserCommand";
|
|
10
16
|
import { GetWorkingLocationCommand, } from "./commands/GetWorkingLocationCommand";
|
|
11
17
|
import { ListChangesetsCommand, } from "./commands/ListChangesetsCommand";
|
|
12
18
|
import { ListDatasetsCommand, } from "./commands/ListDatasetsCommand";
|
|
13
19
|
import { ListDataViewsCommand, } from "./commands/ListDataViewsCommand";
|
|
20
|
+
import { ListPermissionGroupsCommand, } from "./commands/ListPermissionGroupsCommand";
|
|
21
|
+
import { ListUsersCommand } from "./commands/ListUsersCommand";
|
|
22
|
+
import { ResetUserPasswordCommand, } from "./commands/ResetUserPasswordCommand";
|
|
14
23
|
import { UpdateChangesetCommand, } from "./commands/UpdateChangesetCommand";
|
|
15
24
|
import { UpdateDatasetCommand, } from "./commands/UpdateDatasetCommand";
|
|
25
|
+
import { UpdatePermissionGroupCommand, } from "./commands/UpdatePermissionGroupCommand";
|
|
26
|
+
import { UpdateUserCommand } from "./commands/UpdateUserCommand";
|
|
16
27
|
import { FinspaceDataClient } from "./FinspaceDataClient";
|
|
17
28
|
var FinspaceData = (function (_super) {
|
|
18
29
|
__extends(FinspaceData, _super);
|
|
@@ -61,6 +72,34 @@ var FinspaceData = (function (_super) {
|
|
|
61
72
|
return this.send(command, optionsOrCb);
|
|
62
73
|
}
|
|
63
74
|
};
|
|
75
|
+
FinspaceData.prototype.createPermissionGroup = function (args, optionsOrCb, cb) {
|
|
76
|
+
var command = new CreatePermissionGroupCommand(args);
|
|
77
|
+
if (typeof optionsOrCb === "function") {
|
|
78
|
+
this.send(command, optionsOrCb);
|
|
79
|
+
}
|
|
80
|
+
else if (typeof cb === "function") {
|
|
81
|
+
if (typeof optionsOrCb !== "object")
|
|
82
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
83
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
84
|
+
}
|
|
85
|
+
else {
|
|
86
|
+
return this.send(command, optionsOrCb);
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
FinspaceData.prototype.createUser = function (args, optionsOrCb, cb) {
|
|
90
|
+
var command = new CreateUserCommand(args);
|
|
91
|
+
if (typeof optionsOrCb === "function") {
|
|
92
|
+
this.send(command, optionsOrCb);
|
|
93
|
+
}
|
|
94
|
+
else if (typeof cb === "function") {
|
|
95
|
+
if (typeof optionsOrCb !== "object")
|
|
96
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
97
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
return this.send(command, optionsOrCb);
|
|
101
|
+
}
|
|
102
|
+
};
|
|
64
103
|
FinspaceData.prototype.deleteDataset = function (args, optionsOrCb, cb) {
|
|
65
104
|
var command = new DeleteDatasetCommand(args);
|
|
66
105
|
if (typeof optionsOrCb === "function") {
|
|
@@ -75,6 +114,48 @@ var FinspaceData = (function (_super) {
|
|
|
75
114
|
return this.send(command, optionsOrCb);
|
|
76
115
|
}
|
|
77
116
|
};
|
|
117
|
+
FinspaceData.prototype.deletePermissionGroup = function (args, optionsOrCb, cb) {
|
|
118
|
+
var command = new DeletePermissionGroupCommand(args);
|
|
119
|
+
if (typeof optionsOrCb === "function") {
|
|
120
|
+
this.send(command, optionsOrCb);
|
|
121
|
+
}
|
|
122
|
+
else if (typeof cb === "function") {
|
|
123
|
+
if (typeof optionsOrCb !== "object")
|
|
124
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
125
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
126
|
+
}
|
|
127
|
+
else {
|
|
128
|
+
return this.send(command, optionsOrCb);
|
|
129
|
+
}
|
|
130
|
+
};
|
|
131
|
+
FinspaceData.prototype.disableUser = function (args, optionsOrCb, cb) {
|
|
132
|
+
var command = new DisableUserCommand(args);
|
|
133
|
+
if (typeof optionsOrCb === "function") {
|
|
134
|
+
this.send(command, optionsOrCb);
|
|
135
|
+
}
|
|
136
|
+
else if (typeof cb === "function") {
|
|
137
|
+
if (typeof optionsOrCb !== "object")
|
|
138
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
139
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
return this.send(command, optionsOrCb);
|
|
143
|
+
}
|
|
144
|
+
};
|
|
145
|
+
FinspaceData.prototype.enableUser = function (args, optionsOrCb, cb) {
|
|
146
|
+
var command = new EnableUserCommand(args);
|
|
147
|
+
if (typeof optionsOrCb === "function") {
|
|
148
|
+
this.send(command, optionsOrCb);
|
|
149
|
+
}
|
|
150
|
+
else if (typeof cb === "function") {
|
|
151
|
+
if (typeof optionsOrCb !== "object")
|
|
152
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
153
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
154
|
+
}
|
|
155
|
+
else {
|
|
156
|
+
return this.send(command, optionsOrCb);
|
|
157
|
+
}
|
|
158
|
+
};
|
|
78
159
|
FinspaceData.prototype.getChangeset = function (args, optionsOrCb, cb) {
|
|
79
160
|
var command = new GetChangesetCommand(args);
|
|
80
161
|
if (typeof optionsOrCb === "function") {
|
|
@@ -131,6 +212,20 @@ var FinspaceData = (function (_super) {
|
|
|
131
212
|
return this.send(command, optionsOrCb);
|
|
132
213
|
}
|
|
133
214
|
};
|
|
215
|
+
FinspaceData.prototype.getUser = function (args, optionsOrCb, cb) {
|
|
216
|
+
var command = new GetUserCommand(args);
|
|
217
|
+
if (typeof optionsOrCb === "function") {
|
|
218
|
+
this.send(command, optionsOrCb);
|
|
219
|
+
}
|
|
220
|
+
else if (typeof cb === "function") {
|
|
221
|
+
if (typeof optionsOrCb !== "object")
|
|
222
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
223
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
224
|
+
}
|
|
225
|
+
else {
|
|
226
|
+
return this.send(command, optionsOrCb);
|
|
227
|
+
}
|
|
228
|
+
};
|
|
134
229
|
FinspaceData.prototype.getWorkingLocation = function (args, optionsOrCb, cb) {
|
|
135
230
|
var command = new GetWorkingLocationCommand(args);
|
|
136
231
|
if (typeof optionsOrCb === "function") {
|
|
@@ -187,6 +282,48 @@ var FinspaceData = (function (_super) {
|
|
|
187
282
|
return this.send(command, optionsOrCb);
|
|
188
283
|
}
|
|
189
284
|
};
|
|
285
|
+
FinspaceData.prototype.listPermissionGroups = function (args, optionsOrCb, cb) {
|
|
286
|
+
var command = new ListPermissionGroupsCommand(args);
|
|
287
|
+
if (typeof optionsOrCb === "function") {
|
|
288
|
+
this.send(command, optionsOrCb);
|
|
289
|
+
}
|
|
290
|
+
else if (typeof cb === "function") {
|
|
291
|
+
if (typeof optionsOrCb !== "object")
|
|
292
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
293
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
294
|
+
}
|
|
295
|
+
else {
|
|
296
|
+
return this.send(command, optionsOrCb);
|
|
297
|
+
}
|
|
298
|
+
};
|
|
299
|
+
FinspaceData.prototype.listUsers = function (args, optionsOrCb, cb) {
|
|
300
|
+
var command = new ListUsersCommand(args);
|
|
301
|
+
if (typeof optionsOrCb === "function") {
|
|
302
|
+
this.send(command, optionsOrCb);
|
|
303
|
+
}
|
|
304
|
+
else if (typeof cb === "function") {
|
|
305
|
+
if (typeof optionsOrCb !== "object")
|
|
306
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
307
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
308
|
+
}
|
|
309
|
+
else {
|
|
310
|
+
return this.send(command, optionsOrCb);
|
|
311
|
+
}
|
|
312
|
+
};
|
|
313
|
+
FinspaceData.prototype.resetUserPassword = function (args, optionsOrCb, cb) {
|
|
314
|
+
var command = new ResetUserPasswordCommand(args);
|
|
315
|
+
if (typeof optionsOrCb === "function") {
|
|
316
|
+
this.send(command, optionsOrCb);
|
|
317
|
+
}
|
|
318
|
+
else if (typeof cb === "function") {
|
|
319
|
+
if (typeof optionsOrCb !== "object")
|
|
320
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
321
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
322
|
+
}
|
|
323
|
+
else {
|
|
324
|
+
return this.send(command, optionsOrCb);
|
|
325
|
+
}
|
|
326
|
+
};
|
|
190
327
|
FinspaceData.prototype.updateChangeset = function (args, optionsOrCb, cb) {
|
|
191
328
|
var command = new UpdateChangesetCommand(args);
|
|
192
329
|
if (typeof optionsOrCb === "function") {
|
|
@@ -215,6 +352,34 @@ var FinspaceData = (function (_super) {
|
|
|
215
352
|
return this.send(command, optionsOrCb);
|
|
216
353
|
}
|
|
217
354
|
};
|
|
355
|
+
FinspaceData.prototype.updatePermissionGroup = function (args, optionsOrCb, cb) {
|
|
356
|
+
var command = new UpdatePermissionGroupCommand(args);
|
|
357
|
+
if (typeof optionsOrCb === "function") {
|
|
358
|
+
this.send(command, optionsOrCb);
|
|
359
|
+
}
|
|
360
|
+
else if (typeof cb === "function") {
|
|
361
|
+
if (typeof optionsOrCb !== "object")
|
|
362
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
363
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
364
|
+
}
|
|
365
|
+
else {
|
|
366
|
+
return this.send(command, optionsOrCb);
|
|
367
|
+
}
|
|
368
|
+
};
|
|
369
|
+
FinspaceData.prototype.updateUser = function (args, optionsOrCb, cb) {
|
|
370
|
+
var command = new UpdateUserCommand(args);
|
|
371
|
+
if (typeof optionsOrCb === "function") {
|
|
372
|
+
this.send(command, optionsOrCb);
|
|
373
|
+
}
|
|
374
|
+
else if (typeof cb === "function") {
|
|
375
|
+
if (typeof optionsOrCb !== "object")
|
|
376
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
377
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
378
|
+
}
|
|
379
|
+
else {
|
|
380
|
+
return this.send(command, optionsOrCb);
|
|
381
|
+
}
|
|
382
|
+
};
|
|
218
383
|
return FinspaceData;
|
|
219
384
|
}(FinspaceDataClient));
|
|
220
385
|
export { FinspaceData };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { CreatePermissionGroupRequest, CreatePermissionGroupResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1CreatePermissionGroupCommand, serializeAws_restJson1CreatePermissionGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var CreatePermissionGroupCommand = (function (_super) {
|
|
7
|
+
__extends(CreatePermissionGroupCommand, _super);
|
|
8
|
+
function CreatePermissionGroupCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
CreatePermissionGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "CreatePermissionGroupCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: CreatePermissionGroupRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreatePermissionGroupResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
CreatePermissionGroupCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1CreatePermissionGroupCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
CreatePermissionGroupCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1CreatePermissionGroupCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return CreatePermissionGroupCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreatePermissionGroupCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { CreateUserRequest, CreateUserResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1CreateUserCommand, serializeAws_restJson1CreateUserCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var CreateUserCommand = (function (_super) {
|
|
7
|
+
__extends(CreateUserCommand, _super);
|
|
8
|
+
function CreateUserCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
CreateUserCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "CreateUserCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: CreateUserRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateUserResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
CreateUserCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1CreateUserCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
CreateUserCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1CreateUserCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return CreateUserCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { CreateUserCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DeletePermissionGroupRequest, DeletePermissionGroupResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1DeletePermissionGroupCommand, serializeAws_restJson1DeletePermissionGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var DeletePermissionGroupCommand = (function (_super) {
|
|
7
|
+
__extends(DeletePermissionGroupCommand, _super);
|
|
8
|
+
function DeletePermissionGroupCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DeletePermissionGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "DeletePermissionGroupCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DeletePermissionGroupRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeletePermissionGroupResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeletePermissionGroupCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1DeletePermissionGroupCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DeletePermissionGroupCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1DeletePermissionGroupCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DeletePermissionGroupCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeletePermissionGroupCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DisableUserRequest, DisableUserResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1DisableUserCommand, serializeAws_restJson1DisableUserCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var DisableUserCommand = (function (_super) {
|
|
7
|
+
__extends(DisableUserCommand, _super);
|
|
8
|
+
function DisableUserCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DisableUserCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "DisableUserCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DisableUserRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DisableUserResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DisableUserCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1DisableUserCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DisableUserCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1DisableUserCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DisableUserCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DisableUserCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { EnableUserRequest, EnableUserResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1EnableUserCommand, serializeAws_restJson1EnableUserCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var EnableUserCommand = (function (_super) {
|
|
7
|
+
__extends(EnableUserCommand, _super);
|
|
8
|
+
function EnableUserCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
EnableUserCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "EnableUserCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: EnableUserRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: EnableUserResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
EnableUserCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1EnableUserCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
EnableUserCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1EnableUserCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return EnableUserCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { EnableUserCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { GetUserRequest, GetUserResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1GetUserCommand, serializeAws_restJson1GetUserCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var GetUserCommand = (function (_super) {
|
|
7
|
+
__extends(GetUserCommand, _super);
|
|
8
|
+
function GetUserCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
GetUserCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "GetUserCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: GetUserRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetUserResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetUserCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1GetUserCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
GetUserCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1GetUserCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return GetUserCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetUserCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListPermissionGroupsRequest, ListPermissionGroupsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListPermissionGroupsCommand, serializeAws_restJson1ListPermissionGroupsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListPermissionGroupsCommand = (function (_super) {
|
|
7
|
+
__extends(ListPermissionGroupsCommand, _super);
|
|
8
|
+
function ListPermissionGroupsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListPermissionGroupsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "ListPermissionGroupsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListPermissionGroupsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListPermissionGroupsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListPermissionGroupsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListPermissionGroupsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListPermissionGroupsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListPermissionGroupsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListPermissionGroupsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListPermissionGroupsCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListUsersRequest, ListUsersResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListUsersCommand, serializeAws_restJson1ListUsersCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListUsersCommand = (function (_super) {
|
|
7
|
+
__extends(ListUsersCommand, _super);
|
|
8
|
+
function ListUsersCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListUsersCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "ListUsersCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListUsersRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListUsersResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListUsersCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListUsersCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListUsersCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListUsersCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListUsersCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListUsersCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ResetUserPasswordRequest, ResetUserPasswordResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ResetUserPasswordCommand, serializeAws_restJson1ResetUserPasswordCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ResetUserPasswordCommand = (function (_super) {
|
|
7
|
+
__extends(ResetUserPasswordCommand, _super);
|
|
8
|
+
function ResetUserPasswordCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ResetUserPasswordCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "ResetUserPasswordCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ResetUserPasswordRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ResetUserPasswordResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ResetUserPasswordCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ResetUserPasswordCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ResetUserPasswordCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ResetUserPasswordCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ResetUserPasswordCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ResetUserPasswordCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdatePermissionGroupRequest, UpdatePermissionGroupResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdatePermissionGroupCommand, serializeAws_restJson1UpdatePermissionGroupCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UpdatePermissionGroupCommand = (function (_super) {
|
|
7
|
+
__extends(UpdatePermissionGroupCommand, _super);
|
|
8
|
+
function UpdatePermissionGroupCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UpdatePermissionGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "UpdatePermissionGroupCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UpdatePermissionGroupRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdatePermissionGroupResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdatePermissionGroupCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UpdatePermissionGroupCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UpdatePermissionGroupCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UpdatePermissionGroupCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UpdatePermissionGroupCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdatePermissionGroupCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UpdateUserCommand, serializeAws_restJson1UpdateUserCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UpdateUserCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateUserCommand, _super);
|
|
8
|
+
function UpdateUserCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UpdateUserCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "FinspaceDataClient";
|
|
18
|
+
var commandName = "UpdateUserCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UpdateUserRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateUserResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateUserCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UpdateUserCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UpdateUserCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UpdateUserCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UpdateUserCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateUserCommand };
|