@aws-sdk/client-finspace-data 3.414.0 → 3.418.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 (63) hide show
  1. package/dist-cjs/commands/AssociateUserToPermissionGroupCommand.js +5 -0
  2. package/dist-cjs/commands/CreateChangesetCommand.js +5 -0
  3. package/dist-cjs/commands/CreateDataViewCommand.js +5 -0
  4. package/dist-cjs/commands/CreateDatasetCommand.js +5 -0
  5. package/dist-cjs/commands/CreatePermissionGroupCommand.js +5 -0
  6. package/dist-cjs/commands/CreateUserCommand.js +5 -0
  7. package/dist-cjs/commands/DeleteDatasetCommand.js +5 -0
  8. package/dist-cjs/commands/DeletePermissionGroupCommand.js +5 -0
  9. package/dist-cjs/commands/DisableUserCommand.js +5 -0
  10. package/dist-cjs/commands/DisassociateUserFromPermissionGroupCommand.js +5 -0
  11. package/dist-cjs/commands/EnableUserCommand.js +5 -0
  12. package/dist-cjs/commands/GetChangesetCommand.js +5 -0
  13. package/dist-cjs/commands/GetDataViewCommand.js +5 -0
  14. package/dist-cjs/commands/GetDatasetCommand.js +5 -0
  15. package/dist-cjs/commands/GetExternalDataViewAccessDetailsCommand.js +5 -0
  16. package/dist-cjs/commands/GetPermissionGroupCommand.js +5 -0
  17. package/dist-cjs/commands/GetProgrammaticAccessCredentialsCommand.js +5 -0
  18. package/dist-cjs/commands/GetUserCommand.js +5 -0
  19. package/dist-cjs/commands/GetWorkingLocationCommand.js +5 -0
  20. package/dist-cjs/commands/ListChangesetsCommand.js +5 -0
  21. package/dist-cjs/commands/ListDataViewsCommand.js +5 -0
  22. package/dist-cjs/commands/ListDatasetsCommand.js +5 -0
  23. package/dist-cjs/commands/ListPermissionGroupsByUserCommand.js +5 -0
  24. package/dist-cjs/commands/ListPermissionGroupsCommand.js +5 -0
  25. package/dist-cjs/commands/ListUsersByPermissionGroupCommand.js +5 -0
  26. package/dist-cjs/commands/ListUsersCommand.js +5 -0
  27. package/dist-cjs/commands/ResetUserPasswordCommand.js +5 -0
  28. package/dist-cjs/commands/UpdateChangesetCommand.js +5 -0
  29. package/dist-cjs/commands/UpdateDatasetCommand.js +5 -0
  30. package/dist-cjs/commands/UpdatePermissionGroupCommand.js +5 -0
  31. package/dist-cjs/commands/UpdateUserCommand.js +5 -0
  32. package/dist-es/commands/AssociateUserToPermissionGroupCommand.js +5 -0
  33. package/dist-es/commands/CreateChangesetCommand.js +5 -0
  34. package/dist-es/commands/CreateDataViewCommand.js +5 -0
  35. package/dist-es/commands/CreateDatasetCommand.js +5 -0
  36. package/dist-es/commands/CreatePermissionGroupCommand.js +5 -0
  37. package/dist-es/commands/CreateUserCommand.js +5 -0
  38. package/dist-es/commands/DeleteDatasetCommand.js +5 -0
  39. package/dist-es/commands/DeletePermissionGroupCommand.js +5 -0
  40. package/dist-es/commands/DisableUserCommand.js +5 -0
  41. package/dist-es/commands/DisassociateUserFromPermissionGroupCommand.js +5 -0
  42. package/dist-es/commands/EnableUserCommand.js +5 -0
  43. package/dist-es/commands/GetChangesetCommand.js +5 -0
  44. package/dist-es/commands/GetDataViewCommand.js +5 -0
  45. package/dist-es/commands/GetDatasetCommand.js +5 -0
  46. package/dist-es/commands/GetExternalDataViewAccessDetailsCommand.js +5 -0
  47. package/dist-es/commands/GetPermissionGroupCommand.js +5 -0
  48. package/dist-es/commands/GetProgrammaticAccessCredentialsCommand.js +5 -0
  49. package/dist-es/commands/GetUserCommand.js +5 -0
  50. package/dist-es/commands/GetWorkingLocationCommand.js +5 -0
  51. package/dist-es/commands/ListChangesetsCommand.js +5 -0
  52. package/dist-es/commands/ListDataViewsCommand.js +5 -0
  53. package/dist-es/commands/ListDatasetsCommand.js +5 -0
  54. package/dist-es/commands/ListPermissionGroupsByUserCommand.js +5 -0
  55. package/dist-es/commands/ListPermissionGroupsCommand.js +5 -0
  56. package/dist-es/commands/ListUsersByPermissionGroupCommand.js +5 -0
  57. package/dist-es/commands/ListUsersCommand.js +5 -0
  58. package/dist-es/commands/ResetUserPasswordCommand.js +5 -0
  59. package/dist-es/commands/UpdateChangesetCommand.js +5 -0
  60. package/dist-es/commands/UpdateDatasetCommand.js +5 -0
  61. package/dist-es/commands/UpdatePermissionGroupCommand.js +5 -0
  62. package/dist-es/commands/UpdateUserCommand.js +5 -0
  63. package/package.json +31 -31
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_CreateChangesetCommand, se_CreateChangesetCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateChangesetCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateChangesetCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "CreateChangeset",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_CreateDataViewCommand, se_CreateDataViewCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateDataViewCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateDataViewCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "CreateDataView",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { CreateDatasetRequestFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_CreateDatasetCommand, se_CreateDatasetCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class CreateDatasetCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: CreateDatasetRequestFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "CreateDataset",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { CreatePermissionGroupRequestFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_CreatePermissionGroupCommand, se_CreatePermissionGroupCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class CreatePermissionGroupCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: CreatePermissionGroupRequestFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "CreatePermissionGroup",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { CreateUserRequestFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_CreateUserCommand, se_CreateUserCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class CreateUserCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: CreateUserRequestFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "CreateUser",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeleteDatasetCommand, se_DeleteDatasetCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteDatasetCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteDatasetCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "DeleteDataset",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DeletePermissionGroupCommand, se_DeletePermissionGroupCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeletePermissionGroupCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeletePermissionGroupCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "DeletePermissionGroup",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DisableUserCommand, se_DisableUserCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DisableUserCommand extends $Command {
@@ -29,6 +30,10 @@ export class DisableUserCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "DisableUser",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_DisassociateUserFromPermissionGroupCommand, se_DisassociateUserFromPermissionGroupCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DisassociateUserFromPermissionGroupCommand extends $Command {
@@ -29,6 +30,10 @@ export class DisassociateUserFromPermissionGroupCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "DisassociateUserFromPermissionGroup",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_EnableUserCommand, se_EnableUserCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class EnableUserCommand extends $Command {
@@ -29,6 +30,10 @@ export class EnableUserCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "EnableUser",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetChangesetCommand, se_GetChangesetCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetChangesetCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetChangesetCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "GetChangeset",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetDataViewCommand, se_GetDataViewCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetDataViewCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetDataViewCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "GetDataView",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetDatasetCommand, se_GetDatasetCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetDatasetCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetDatasetCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "GetDataset",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { GetExternalDataViewAccessDetailsResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_GetExternalDataViewAccessDetailsCommand, se_GetExternalDataViewAccessDetailsCommand, } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class GetExternalDataViewAccessDetailsCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: GetExternalDataViewAccessDetailsResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "GetExternalDataViewAccessDetails",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { GetPermissionGroupResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_GetPermissionGroupCommand, se_GetPermissionGroupCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class GetPermissionGroupCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: GetPermissionGroupResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "GetPermissionGroup",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetProgrammaticAccessCredentialsCommand, se_GetProgrammaticAccessCredentialsCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetProgrammaticAccessCredentialsCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetProgrammaticAccessCredentialsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "GetProgrammaticAccessCredentials",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { GetUserResponseFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_GetUserCommand, se_GetUserCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class GetUserCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: GetUserResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "GetUser",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_GetWorkingLocationCommand, se_GetWorkingLocationCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetWorkingLocationCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetWorkingLocationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "GetWorkingLocation",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListChangesetsCommand, se_ListChangesetsCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListChangesetsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListChangesetsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "ListChangesets",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_ListDataViewsCommand, se_ListDataViewsCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListDataViewsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListDataViewsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "ListDataViews",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ListDatasetsResponseFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_ListDatasetsCommand, se_ListDatasetsCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ListDatasetsCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: ListDatasetsResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "ListDatasets",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ListPermissionGroupsByUserResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_ListPermissionGroupsByUserCommand, se_ListPermissionGroupsByUserCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ListPermissionGroupsByUserCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: ListPermissionGroupsByUserResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "ListPermissionGroupsByUser",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ListPermissionGroupsResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_ListPermissionGroupsCommand, se_ListPermissionGroupsCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ListPermissionGroupsCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: ListPermissionGroupsResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "ListPermissionGroups",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ListUsersByPermissionGroupResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_ListUsersByPermissionGroupCommand, se_ListUsersByPermissionGroupCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ListUsersByPermissionGroupCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: ListUsersByPermissionGroupResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "ListUsersByPermissionGroup",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ListUsersResponseFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_ListUsersCommand, se_ListUsersCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ListUsersCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: ListUsersResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "ListUsers",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { ResetUserPasswordResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_ResetUserPasswordCommand, se_ResetUserPasswordCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class ResetUserPasswordCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: (_) => _,
32
33
  outputFilterSensitiveLog: ResetUserPasswordResponseFilterSensitiveLog,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "ResetUserPassword",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_UpdateChangesetCommand, se_UpdateChangesetCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UpdateChangesetCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateChangesetCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "UpdateChangeset",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { de_UpdateDatasetCommand, se_UpdateDatasetCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UpdateDatasetCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateDatasetCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "AWSHabaneroPublicAPI",
35
+ operation: "UpdateDataset",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { UpdatePermissionGroupRequestFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_UpdatePermissionGroupCommand, se_UpdatePermissionGroupCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class UpdatePermissionGroupCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: UpdatePermissionGroupRequestFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "UpdatePermissionGroup",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
+ import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
5
  import { UpdateUserRequestFilterSensitiveLog } from "../models/models_0";
5
6
  import { de_UpdateUserCommand, se_UpdateUserCommand } from "../protocols/Aws_restJson1";
6
7
  export { $Command };
@@ -30,6 +31,10 @@ export class UpdateUserCommand extends $Command {
30
31
  commandName,
31
32
  inputFilterSensitiveLog: UpdateUserRequestFilterSensitiveLog,
32
33
  outputFilterSensitiveLog: (_) => _,
34
+ [SMITHY_CONTEXT_KEY]: {
35
+ service: "AWSHabaneroPublicAPI",
36
+ operation: "UpdateUser",
37
+ },
33
38
  };
34
39
  const { requestHandler } = configuration;
35
40
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);