@aws-sdk/client-securitylake 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/CreateAwsLogSourceCommand.js +5 -0
  2. package/dist-cjs/commands/CreateCustomLogSourceCommand.js +5 -0
  3. package/dist-cjs/commands/CreateDataLakeCommand.js +5 -0
  4. package/dist-cjs/commands/CreateDataLakeExceptionSubscriptionCommand.js +5 -0
  5. package/dist-cjs/commands/CreateDataLakeOrganizationConfigurationCommand.js +5 -0
  6. package/dist-cjs/commands/CreateSubscriberCommand.js +5 -0
  7. package/dist-cjs/commands/CreateSubscriberNotificationCommand.js +5 -0
  8. package/dist-cjs/commands/DeleteAwsLogSourceCommand.js +5 -0
  9. package/dist-cjs/commands/DeleteCustomLogSourceCommand.js +5 -0
  10. package/dist-cjs/commands/DeleteDataLakeCommand.js +5 -0
  11. package/dist-cjs/commands/DeleteDataLakeExceptionSubscriptionCommand.js +5 -0
  12. package/dist-cjs/commands/DeleteDataLakeOrganizationConfigurationCommand.js +5 -0
  13. package/dist-cjs/commands/DeleteSubscriberCommand.js +5 -0
  14. package/dist-cjs/commands/DeleteSubscriberNotificationCommand.js +5 -0
  15. package/dist-cjs/commands/DeregisterDataLakeDelegatedAdministratorCommand.js +5 -0
  16. package/dist-cjs/commands/GetDataLakeExceptionSubscriptionCommand.js +5 -0
  17. package/dist-cjs/commands/GetDataLakeOrganizationConfigurationCommand.js +5 -0
  18. package/dist-cjs/commands/GetDataLakeSourcesCommand.js +5 -0
  19. package/dist-cjs/commands/GetSubscriberCommand.js +5 -0
  20. package/dist-cjs/commands/ListDataLakeExceptionsCommand.js +5 -0
  21. package/dist-cjs/commands/ListDataLakesCommand.js +5 -0
  22. package/dist-cjs/commands/ListLogSourcesCommand.js +5 -0
  23. package/dist-cjs/commands/ListSubscribersCommand.js +5 -0
  24. package/dist-cjs/commands/ListTagsForResourceCommand.js +5 -0
  25. package/dist-cjs/commands/RegisterDataLakeDelegatedAdministratorCommand.js +5 -0
  26. package/dist-cjs/commands/TagResourceCommand.js +5 -0
  27. package/dist-cjs/commands/UntagResourceCommand.js +5 -0
  28. package/dist-cjs/commands/UpdateDataLakeCommand.js +5 -0
  29. package/dist-cjs/commands/UpdateDataLakeExceptionSubscriptionCommand.js +5 -0
  30. package/dist-cjs/commands/UpdateSubscriberCommand.js +5 -0
  31. package/dist-cjs/commands/UpdateSubscriberNotificationCommand.js +5 -0
  32. package/dist-es/commands/CreateAwsLogSourceCommand.js +5 -0
  33. package/dist-es/commands/CreateCustomLogSourceCommand.js +5 -0
  34. package/dist-es/commands/CreateDataLakeCommand.js +5 -0
  35. package/dist-es/commands/CreateDataLakeExceptionSubscriptionCommand.js +5 -0
  36. package/dist-es/commands/CreateDataLakeOrganizationConfigurationCommand.js +5 -0
  37. package/dist-es/commands/CreateSubscriberCommand.js +5 -0
  38. package/dist-es/commands/CreateSubscriberNotificationCommand.js +5 -0
  39. package/dist-es/commands/DeleteAwsLogSourceCommand.js +5 -0
  40. package/dist-es/commands/DeleteCustomLogSourceCommand.js +5 -0
  41. package/dist-es/commands/DeleteDataLakeCommand.js +5 -0
  42. package/dist-es/commands/DeleteDataLakeExceptionSubscriptionCommand.js +5 -0
  43. package/dist-es/commands/DeleteDataLakeOrganizationConfigurationCommand.js +5 -0
  44. package/dist-es/commands/DeleteSubscriberCommand.js +5 -0
  45. package/dist-es/commands/DeleteSubscriberNotificationCommand.js +5 -0
  46. package/dist-es/commands/DeregisterDataLakeDelegatedAdministratorCommand.js +5 -0
  47. package/dist-es/commands/GetDataLakeExceptionSubscriptionCommand.js +5 -0
  48. package/dist-es/commands/GetDataLakeOrganizationConfigurationCommand.js +5 -0
  49. package/dist-es/commands/GetDataLakeSourcesCommand.js +5 -0
  50. package/dist-es/commands/GetSubscriberCommand.js +5 -0
  51. package/dist-es/commands/ListDataLakeExceptionsCommand.js +5 -0
  52. package/dist-es/commands/ListDataLakesCommand.js +5 -0
  53. package/dist-es/commands/ListLogSourcesCommand.js +5 -0
  54. package/dist-es/commands/ListSubscribersCommand.js +5 -0
  55. package/dist-es/commands/ListTagsForResourceCommand.js +5 -0
  56. package/dist-es/commands/RegisterDataLakeDelegatedAdministratorCommand.js +5 -0
  57. package/dist-es/commands/TagResourceCommand.js +5 -0
  58. package/dist-es/commands/UntagResourceCommand.js +5 -0
  59. package/dist-es/commands/UpdateDataLakeCommand.js +5 -0
  60. package/dist-es/commands/UpdateDataLakeExceptionSubscriptionCommand.js +5 -0
  61. package/dist-es/commands/UpdateSubscriberCommand.js +5 -0
  62. package/dist-es/commands/UpdateSubscriberNotificationCommand.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_CreateCustomLogSourceCommand, se_CreateCustomLogSourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateCustomLogSourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateCustomLogSourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "CreateCustomLogSource",
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_CreateDataLakeCommand, se_CreateDataLakeCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateDataLakeCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateDataLakeCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "CreateDataLake",
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_CreateDataLakeExceptionSubscriptionCommand, se_CreateDataLakeExceptionSubscriptionCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateDataLakeExceptionSubscriptionCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateDataLakeExceptionSubscriptionCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "CreateDataLakeExceptionSubscription",
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_CreateDataLakeOrganizationConfigurationCommand, se_CreateDataLakeOrganizationConfigurationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateDataLakeOrganizationConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateDataLakeOrganizationConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "CreateDataLakeOrganizationConfiguration",
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_CreateSubscriberCommand, se_CreateSubscriberCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateSubscriberCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateSubscriberCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "CreateSubscriber",
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_CreateSubscriberNotificationCommand, se_CreateSubscriberNotificationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class CreateSubscriberNotificationCommand extends $Command {
@@ -29,6 +30,10 @@ export class CreateSubscriberNotificationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "CreateSubscriberNotification",
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_DeleteAwsLogSourceCommand, se_DeleteAwsLogSourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteAwsLogSourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteAwsLogSourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "DeleteAwsLogSource",
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_DeleteCustomLogSourceCommand, se_DeleteCustomLogSourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteCustomLogSourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteCustomLogSourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "DeleteCustomLogSource",
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_DeleteDataLakeCommand, se_DeleteDataLakeCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteDataLakeCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteDataLakeCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "DeleteDataLake",
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_DeleteDataLakeExceptionSubscriptionCommand, se_DeleteDataLakeExceptionSubscriptionCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteDataLakeExceptionSubscriptionCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteDataLakeExceptionSubscriptionCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "DeleteDataLakeExceptionSubscription",
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_DeleteDataLakeOrganizationConfigurationCommand, se_DeleteDataLakeOrganizationConfigurationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteDataLakeOrganizationConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteDataLakeOrganizationConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "DeleteDataLakeOrganizationConfiguration",
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_DeleteSubscriberCommand, se_DeleteSubscriberCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteSubscriberCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteSubscriberCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "DeleteSubscriber",
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_DeleteSubscriberNotificationCommand, se_DeleteSubscriberNotificationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeleteSubscriberNotificationCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeleteSubscriberNotificationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "DeleteSubscriberNotification",
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_DeregisterDataLakeDelegatedAdministratorCommand, se_DeregisterDataLakeDelegatedAdministratorCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class DeregisterDataLakeDelegatedAdministratorCommand extends $Command {
@@ -29,6 +30,10 @@ export class DeregisterDataLakeDelegatedAdministratorCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "DeregisterDataLakeDelegatedAdministrator",
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_GetDataLakeExceptionSubscriptionCommand, se_GetDataLakeExceptionSubscriptionCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetDataLakeExceptionSubscriptionCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetDataLakeExceptionSubscriptionCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "GetDataLakeExceptionSubscription",
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_GetDataLakeOrganizationConfigurationCommand, se_GetDataLakeOrganizationConfigurationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetDataLakeOrganizationConfigurationCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetDataLakeOrganizationConfigurationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "GetDataLakeOrganizationConfiguration",
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_GetDataLakeSourcesCommand, se_GetDataLakeSourcesCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetDataLakeSourcesCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetDataLakeSourcesCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "GetDataLakeSources",
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_GetSubscriberCommand, se_GetSubscriberCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class GetSubscriberCommand extends $Command {
@@ -29,6 +30,10 @@ export class GetSubscriberCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "GetSubscriber",
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_ListDataLakeExceptionsCommand, se_ListDataLakeExceptionsCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListDataLakeExceptionsCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListDataLakeExceptionsCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "ListDataLakeExceptions",
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_ListDataLakesCommand, se_ListDataLakesCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListDataLakesCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListDataLakesCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "ListDataLakes",
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_ListLogSourcesCommand, se_ListLogSourcesCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListLogSourcesCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListLogSourcesCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "ListLogSources",
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_ListSubscribersCommand, se_ListSubscribersCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListSubscribersCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListSubscribersCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "ListSubscribers",
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_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class ListTagsForResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class ListTagsForResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "ListTagsForResource",
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_RegisterDataLakeDelegatedAdministratorCommand, se_RegisterDataLakeDelegatedAdministratorCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class RegisterDataLakeDelegatedAdministratorCommand extends $Command {
@@ -29,6 +30,10 @@ export class RegisterDataLakeDelegatedAdministratorCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "RegisterDataLakeDelegatedAdministrator",
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_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class TagResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class TagResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "TagResource",
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_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UntagResourceCommand extends $Command {
@@ -29,6 +30,10 @@ export class UntagResourceCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "UntagResource",
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_UpdateDataLakeCommand, se_UpdateDataLakeCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UpdateDataLakeCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateDataLakeCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "UpdateDataLake",
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_UpdateDataLakeExceptionSubscriptionCommand, se_UpdateDataLakeExceptionSubscriptionCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UpdateDataLakeExceptionSubscriptionCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateDataLakeExceptionSubscriptionCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "UpdateDataLakeExceptionSubscription",
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_UpdateSubscriberCommand, se_UpdateSubscriberCommand } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UpdateSubscriberCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateSubscriberCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "UpdateSubscriber",
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_UpdateSubscriberNotificationCommand, se_UpdateSubscriberNotificationCommand, } from "../protocols/Aws_restJson1";
5
6
  export { $Command };
6
7
  export class UpdateSubscriberNotificationCommand extends $Command {
@@ -29,6 +30,10 @@ export class UpdateSubscriberNotificationCommand extends $Command {
29
30
  commandName,
30
31
  inputFilterSensitiveLog: (_) => _,
31
32
  outputFilterSensitiveLog: (_) => _,
33
+ [SMITHY_CONTEXT_KEY]: {
34
+ service: "SecurityLake",
35
+ operation: "UpdateSubscriberNotification",
36
+ },
32
37
  };
33
38
  const { requestHandler } = configuration;
34
39
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);