@aws-sdk/client-finspace-data 3.53.0 → 3.55.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.
Files changed (104) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/FinspaceData.js +165 -0
  3. package/dist-cjs/FinspaceDataClient.js +13 -13
  4. package/dist-cjs/commands/CreateChangesetCommand.js +3 -3
  5. package/dist-cjs/commands/CreateDataViewCommand.js +3 -3
  6. package/dist-cjs/commands/CreateDatasetCommand.js +3 -3
  7. package/dist-cjs/commands/CreatePermissionGroupCommand.js +36 -0
  8. package/dist-cjs/commands/CreateUserCommand.js +36 -0
  9. package/dist-cjs/commands/DeleteDatasetCommand.js +3 -3
  10. package/dist-cjs/commands/DeletePermissionGroupCommand.js +36 -0
  11. package/dist-cjs/commands/DisableUserCommand.js +36 -0
  12. package/dist-cjs/commands/EnableUserCommand.js +36 -0
  13. package/dist-cjs/commands/GetChangesetCommand.js +3 -3
  14. package/dist-cjs/commands/GetDataViewCommand.js +3 -3
  15. package/dist-cjs/commands/GetDatasetCommand.js +3 -3
  16. package/dist-cjs/commands/GetProgrammaticAccessCredentialsCommand.js +3 -3
  17. package/dist-cjs/commands/GetUserCommand.js +36 -0
  18. package/dist-cjs/commands/GetWorkingLocationCommand.js +3 -3
  19. package/dist-cjs/commands/ListChangesetsCommand.js +3 -3
  20. package/dist-cjs/commands/ListDataViewsCommand.js +3 -3
  21. package/dist-cjs/commands/ListDatasetsCommand.js +3 -3
  22. package/dist-cjs/commands/ListPermissionGroupsCommand.js +36 -0
  23. package/dist-cjs/commands/ListUsersCommand.js +36 -0
  24. package/dist-cjs/commands/ResetUserPasswordCommand.js +36 -0
  25. package/dist-cjs/commands/UpdateChangesetCommand.js +3 -3
  26. package/dist-cjs/commands/UpdateDatasetCommand.js +3 -3
  27. package/dist-cjs/commands/UpdatePermissionGroupCommand.js +36 -0
  28. package/dist-cjs/commands/UpdateUserCommand.js +36 -0
  29. package/dist-cjs/commands/index.js +11 -0
  30. package/dist-cjs/endpoints.js +1 -1
  31. package/dist-cjs/models/models_0.js +202 -2
  32. package/dist-cjs/pagination/ListPermissionGroupsPaginator.js +35 -0
  33. package/dist-cjs/pagination/ListUsersPaginator.js +35 -0
  34. package/dist-cjs/pagination/index.js +2 -0
  35. package/dist-cjs/protocols/Aws_restJson1.js +1352 -321
  36. package/dist-cjs/runtimeConfig.browser.js +4 -4
  37. package/dist-cjs/runtimeConfig.js +9 -9
  38. package/dist-cjs/runtimeConfig.native.js +1 -1
  39. package/dist-es/FinspaceData.js +179 -14
  40. package/dist-es/commands/CreatePermissionGroupCommand.js +39 -0
  41. package/dist-es/commands/CreateUserCommand.js +39 -0
  42. package/dist-es/commands/DeletePermissionGroupCommand.js +39 -0
  43. package/dist-es/commands/DisableUserCommand.js +39 -0
  44. package/dist-es/commands/EnableUserCommand.js +39 -0
  45. package/dist-es/commands/GetUserCommand.js +39 -0
  46. package/dist-es/commands/ListPermissionGroupsCommand.js +39 -0
  47. package/dist-es/commands/ListUsersCommand.js +39 -0
  48. package/dist-es/commands/ResetUserPasswordCommand.js +39 -0
  49. package/dist-es/commands/UpdatePermissionGroupCommand.js +39 -0
  50. package/dist-es/commands/UpdateUserCommand.js +39 -0
  51. package/dist-es/commands/index.js +11 -0
  52. package/dist-es/models/models_0.js +132 -4
  53. package/dist-es/pagination/ListChangesetsPaginator.js +4 -4
  54. package/dist-es/pagination/ListDataViewsPaginator.js +4 -4
  55. package/dist-es/pagination/ListDatasetsPaginator.js +4 -4
  56. package/dist-es/pagination/ListPermissionGroupsPaginator.js +74 -0
  57. package/dist-es/pagination/ListUsersPaginator.js +74 -0
  58. package/dist-es/pagination/index.js +2 -0
  59. package/dist-es/protocols/Aws_restJson1.js +1636 -322
  60. package/dist-types/FinspaceData.d.ts +77 -0
  61. package/dist-types/FinspaceDataClient.d.ts +15 -4
  62. package/dist-types/commands/CreatePermissionGroupCommand.d.ts +35 -0
  63. package/dist-types/commands/CreateUserCommand.d.ts +35 -0
  64. package/dist-types/commands/DeletePermissionGroupCommand.d.ts +35 -0
  65. package/dist-types/commands/DisableUserCommand.d.ts +35 -0
  66. package/dist-types/commands/EnableUserCommand.d.ts +35 -0
  67. package/dist-types/commands/GetUserCommand.d.ts +35 -0
  68. package/dist-types/commands/ListPermissionGroupsCommand.d.ts +35 -0
  69. package/dist-types/commands/ListUsersCommand.d.ts +35 -0
  70. package/dist-types/commands/ResetUserPasswordCommand.d.ts +35 -0
  71. package/dist-types/commands/UpdatePermissionGroupCommand.d.ts +35 -0
  72. package/dist-types/commands/UpdateUserCommand.d.ts +35 -0
  73. package/dist-types/commands/index.d.ts +11 -0
  74. package/dist-types/models/models_0.d.ts +865 -113
  75. package/dist-types/pagination/ListPermissionGroupsPaginator.d.ts +4 -0
  76. package/dist-types/pagination/ListUsersPaginator.d.ts +4 -0
  77. package/dist-types/pagination/index.d.ts +2 -0
  78. package/dist-types/protocols/Aws_restJson1.d.ts +33 -0
  79. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  80. package/dist-types/runtimeConfig.d.ts +1 -1
  81. package/dist-types/runtimeConfig.native.d.ts +3 -3
  82. package/dist-types/ts3.4/FinspaceData.d.ts +55 -0
  83. package/dist-types/ts3.4/FinspaceDataClient.d.ts +15 -4
  84. package/dist-types/ts3.4/commands/CreatePermissionGroupCommand.d.ts +17 -0
  85. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/DeletePermissionGroupCommand.d.ts +17 -0
  87. package/dist-types/ts3.4/commands/DisableUserCommand.d.ts +17 -0
  88. package/dist-types/ts3.4/commands/EnableUserCommand.d.ts +17 -0
  89. package/dist-types/ts3.4/commands/GetUserCommand.d.ts +17 -0
  90. package/dist-types/ts3.4/commands/ListPermissionGroupsCommand.d.ts +17 -0
  91. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +17 -0
  92. package/dist-types/ts3.4/commands/ResetUserPasswordCommand.d.ts +17 -0
  93. package/dist-types/ts3.4/commands/UpdatePermissionGroupCommand.d.ts +17 -0
  94. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +17 -0
  95. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  96. package/dist-types/ts3.4/models/models_0.d.ts +333 -0
  97. package/dist-types/ts3.4/pagination/ListPermissionGroupsPaginator.d.ts +4 -0
  98. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +4 -0
  99. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  100. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +33 -0
  101. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  102. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  103. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
  104. package/package.json +34 -34
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetUserCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class GetUserCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "FinspaceDataClient";
18
+ const commandName = "GetUserCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.GetUserRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.GetUserResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetUserCommand)(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetUserCommand)(output, context);
34
+ }
35
+ }
36
+ exports.GetUserCommand = GetUserCommand;
@@ -11,7 +11,7 @@ class GetWorkingLocationCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "FinspaceDataClient";
@@ -27,10 +27,10 @@ class GetWorkingLocationCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetWorkingLocationCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetWorkingLocationCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetWorkingLocationCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetWorkingLocationCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetWorkingLocationCommand = GetWorkingLocationCommand;
@@ -11,7 +11,7 @@ class ListChangesetsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "FinspaceDataClient";
@@ -27,10 +27,10 @@ class ListChangesetsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListChangesetsCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListChangesetsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListChangesetsCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListChangesetsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListChangesetsCommand = ListChangesetsCommand;
@@ -11,7 +11,7 @@ class ListDataViewsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "FinspaceDataClient";
@@ -27,10 +27,10 @@ class ListDataViewsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListDataViewsCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListDataViewsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListDataViewsCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListDataViewsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDataViewsCommand = ListDataViewsCommand;
@@ -11,7 +11,7 @@ class ListDatasetsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "FinspaceDataClient";
@@ -27,10 +27,10 @@ class ListDatasetsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1ListDatasetsCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListDatasetsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1ListDatasetsCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListDatasetsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDatasetsCommand = ListDatasetsCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListPermissionGroupsCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class ListPermissionGroupsCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "FinspaceDataClient";
18
+ const commandName = "ListPermissionGroupsCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.ListPermissionGroupsRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.ListPermissionGroupsResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListPermissionGroupsCommand)(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListPermissionGroupsCommand)(output, context);
34
+ }
35
+ }
36
+ exports.ListPermissionGroupsCommand = ListPermissionGroupsCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListUsersCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class ListUsersCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "FinspaceDataClient";
18
+ const commandName = "ListUsersCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.ListUsersRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.ListUsersResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ListUsersCommand)(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ListUsersCommand)(output, context);
34
+ }
35
+ }
36
+ exports.ListUsersCommand = ListUsersCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ResetUserPasswordCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class ResetUserPasswordCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "FinspaceDataClient";
18
+ const commandName = "ResetUserPasswordCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.ResetUserPasswordRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.ResetUserPasswordResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1ResetUserPasswordCommand)(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1ResetUserPasswordCommand)(output, context);
34
+ }
35
+ }
36
+ exports.ResetUserPasswordCommand = ResetUserPasswordCommand;
@@ -11,7 +11,7 @@ class UpdateChangesetCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "FinspaceDataClient";
@@ -27,10 +27,10 @@ class UpdateChangesetCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateChangesetCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateChangesetCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateChangesetCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateChangesetCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateChangesetCommand = UpdateChangesetCommand;
@@ -11,7 +11,7 @@ class UpdateDatasetCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "FinspaceDataClient";
@@ -27,10 +27,10 @@ class UpdateDatasetCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateDatasetCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateDatasetCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateDatasetCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateDatasetCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateDatasetCommand = UpdateDatasetCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdatePermissionGroupCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class UpdatePermissionGroupCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "FinspaceDataClient";
18
+ const commandName = "UpdatePermissionGroupCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.UpdatePermissionGroupRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.UpdatePermissionGroupResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdatePermissionGroupCommand)(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdatePermissionGroupCommand)(output, context);
34
+ }
35
+ }
36
+ exports.UpdatePermissionGroupCommand = UpdatePermissionGroupCommand;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateUserCommand = void 0;
4
+ const middleware_serde_1 = require("@aws-sdk/middleware-serde");
5
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
6
+ const models_0_1 = require("../models/models_0");
7
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
+ class UpdateUserCommand extends smithy_client_1.Command {
9
+ constructor(input) {
10
+ super();
11
+ this.input = input;
12
+ }
13
+ resolveMiddleware(clientStack, configuration, options) {
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
+ const stack = clientStack.concat(this.middlewareStack);
16
+ const { logger } = configuration;
17
+ const clientName = "FinspaceDataClient";
18
+ const commandName = "UpdateUserCommand";
19
+ const handlerExecutionContext = {
20
+ logger,
21
+ clientName,
22
+ commandName,
23
+ inputFilterSensitiveLog: models_0_1.UpdateUserRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.UpdateUserResponse.filterSensitiveLog,
25
+ };
26
+ const { requestHandler } = configuration;
27
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
+ }
29
+ serialize(input, context) {
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateUserCommand)(input, context);
31
+ }
32
+ deserialize(output, context) {
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateUserCommand)(output, context);
34
+ }
35
+ }
36
+ exports.UpdateUserCommand = UpdateUserCommand;
@@ -4,14 +4,25 @@ const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./CreateChangesetCommand"), exports);
5
5
  tslib_1.__exportStar(require("./CreateDataViewCommand"), exports);
6
6
  tslib_1.__exportStar(require("./CreateDatasetCommand"), exports);
7
+ tslib_1.__exportStar(require("./CreatePermissionGroupCommand"), exports);
8
+ tslib_1.__exportStar(require("./CreateUserCommand"), exports);
7
9
  tslib_1.__exportStar(require("./DeleteDatasetCommand"), exports);
10
+ tslib_1.__exportStar(require("./DeletePermissionGroupCommand"), exports);
11
+ tslib_1.__exportStar(require("./DisableUserCommand"), exports);
12
+ tslib_1.__exportStar(require("./EnableUserCommand"), exports);
8
13
  tslib_1.__exportStar(require("./GetChangesetCommand"), exports);
9
14
  tslib_1.__exportStar(require("./GetDataViewCommand"), exports);
10
15
  tslib_1.__exportStar(require("./GetDatasetCommand"), exports);
11
16
  tslib_1.__exportStar(require("./GetProgrammaticAccessCredentialsCommand"), exports);
17
+ tslib_1.__exportStar(require("./GetUserCommand"), exports);
12
18
  tslib_1.__exportStar(require("./GetWorkingLocationCommand"), exports);
13
19
  tslib_1.__exportStar(require("./ListChangesetsCommand"), exports);
14
20
  tslib_1.__exportStar(require("./ListDataViewsCommand"), exports);
15
21
  tslib_1.__exportStar(require("./ListDatasetsCommand"), exports);
22
+ tslib_1.__exportStar(require("./ListPermissionGroupsCommand"), exports);
23
+ tslib_1.__exportStar(require("./ListUsersCommand"), exports);
24
+ tslib_1.__exportStar(require("./ResetUserPasswordCommand"), exports);
16
25
  tslib_1.__exportStar(require("./UpdateChangesetCommand"), exports);
17
26
  tslib_1.__exportStar(require("./UpdateDatasetCommand"), exports);
27
+ tslib_1.__exportStar(require("./UpdatePermissionGroupCommand"), exports);
28
+ tslib_1.__exportStar(require("./UpdateUserCommand"), exports);
@@ -122,7 +122,7 @@ const partitionHash = {
122
122
  ],
123
123
  },
124
124
  };
125
- const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
125
+ const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
126
126
  ...options,
127
127
  signingService: "finspace-api",
128
128
  regionHash,