@aws-sdk/client-securitylake 3.952.0 → 3.954.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 (51) hide show
  1. package/dist-cjs/index.js +411 -283
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateAwsLogSourceCommand.js +2 -2
  4. package/dist-es/commands/CreateCustomLogSourceCommand.js +2 -2
  5. package/dist-es/commands/CreateDataLakeCommand.js +2 -2
  6. package/dist-es/commands/CreateDataLakeExceptionSubscriptionCommand.js +2 -2
  7. package/dist-es/commands/CreateDataLakeOrganizationConfigurationCommand.js +2 -2
  8. package/dist-es/commands/CreateSubscriberCommand.js +2 -2
  9. package/dist-es/commands/CreateSubscriberNotificationCommand.js +2 -2
  10. package/dist-es/commands/DeleteAwsLogSourceCommand.js +2 -2
  11. package/dist-es/commands/DeleteCustomLogSourceCommand.js +2 -2
  12. package/dist-es/commands/DeleteDataLakeCommand.js +2 -2
  13. package/dist-es/commands/DeleteDataLakeExceptionSubscriptionCommand.js +2 -2
  14. package/dist-es/commands/DeleteDataLakeOrganizationConfigurationCommand.js +2 -2
  15. package/dist-es/commands/DeleteSubscriberCommand.js +2 -2
  16. package/dist-es/commands/DeleteSubscriberNotificationCommand.js +2 -2
  17. package/dist-es/commands/DeregisterDataLakeDelegatedAdministratorCommand.js +2 -2
  18. package/dist-es/commands/GetDataLakeExceptionSubscriptionCommand.js +2 -2
  19. package/dist-es/commands/GetDataLakeOrganizationConfigurationCommand.js +2 -2
  20. package/dist-es/commands/GetDataLakeSourcesCommand.js +2 -2
  21. package/dist-es/commands/GetSubscriberCommand.js +2 -2
  22. package/dist-es/commands/ListDataLakeExceptionsCommand.js +2 -2
  23. package/dist-es/commands/ListDataLakesCommand.js +2 -2
  24. package/dist-es/commands/ListLogSourcesCommand.js +2 -2
  25. package/dist-es/commands/ListSubscribersCommand.js +2 -2
  26. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  27. package/dist-es/commands/RegisterDataLakeDelegatedAdministratorCommand.js +2 -2
  28. package/dist-es/commands/TagResourceCommand.js +2 -2
  29. package/dist-es/commands/UntagResourceCommand.js +2 -2
  30. package/dist-es/commands/UpdateDataLakeCommand.js +2 -2
  31. package/dist-es/commands/UpdateDataLakeExceptionSubscriptionCommand.js +2 -2
  32. package/dist-es/commands/UpdateSubscriberCommand.js +2 -2
  33. package/dist-es/commands/UpdateSubscriberNotificationCommand.js +2 -2
  34. package/dist-es/index.js +1 -0
  35. package/dist-es/runtimeConfig.shared.js +6 -1
  36. package/dist-es/schemas/schemas_0.js +239 -239
  37. package/dist-types/SecurityLakeClient.d.ts +1 -10
  38. package/dist-types/index.d.ts +1 -0
  39. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  40. package/dist-types/runtimeConfig.d.ts +6 -2
  41. package/dist-types/runtimeConfig.native.d.ts +6 -2
  42. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  43. package/dist-types/schemas/schemas_0.d.ts +129 -147
  44. package/dist-types/ts3.4/SecurityLakeClient.d.ts +0 -4
  45. package/dist-types/ts3.4/index.d.ts +1 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  50. package/dist-types/ts3.4/schemas/schemas_0.d.ts +128 -147
  51. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.securitylake" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.securitylake",
32
+ version: "2018-05-10",
33
+ serviceTarget: "SecurityLake",
34
+ },
30
35
  serviceId: config?.serviceId ?? "SecurityLake",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateAwsLogSource } from "../schemas/schemas_0";
4
+ import { CreateAwsLogSource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAwsLogSourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAwsLogSourceCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "CreateAwsLogSource", {})
13
13
  .n("SecurityLakeClient", "CreateAwsLogSourceCommand")
14
- .sc(CreateAwsLogSource)
14
+ .sc(CreateAwsLogSource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateCustomLogSource } from "../schemas/schemas_0";
4
+ import { CreateCustomLogSource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateCustomLogSourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateCustomLogSourceCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "CreateCustomLogSource", {})
13
13
  .n("SecurityLakeClient", "CreateCustomLogSourceCommand")
14
- .sc(CreateCustomLogSource)
14
+ .sc(CreateCustomLogSource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateDataLake } from "../schemas/schemas_0";
4
+ import { CreateDataLake$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateDataLakeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateDataLakeCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "CreateDataLake", {})
13
13
  .n("SecurityLakeClient", "CreateDataLakeCommand")
14
- .sc(CreateDataLake)
14
+ .sc(CreateDataLake$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateDataLakeExceptionSubscription } from "../schemas/schemas_0";
4
+ import { CreateDataLakeExceptionSubscription$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateDataLakeExceptionSubscriptionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateDataLakeExceptionSubscriptionCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "CreateDataLakeExceptionSubscription", {})
13
13
  .n("SecurityLakeClient", "CreateDataLakeExceptionSubscriptionCommand")
14
- .sc(CreateDataLakeExceptionSubscription)
14
+ .sc(CreateDataLakeExceptionSubscription$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateDataLakeOrganizationConfiguration } from "../schemas/schemas_0";
4
+ import { CreateDataLakeOrganizationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateDataLakeOrganizationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateDataLakeOrganizationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "CreateDataLakeOrganizationConfiguration", {})
13
13
  .n("SecurityLakeClient", "CreateDataLakeOrganizationConfigurationCommand")
14
- .sc(CreateDataLakeOrganizationConfiguration)
14
+ .sc(CreateDataLakeOrganizationConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateSubscriber } from "../schemas/schemas_0";
4
+ import { CreateSubscriber$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSubscriberCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSubscriberCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "CreateSubscriber", {})
13
13
  .n("SecurityLakeClient", "CreateSubscriberCommand")
14
- .sc(CreateSubscriber)
14
+ .sc(CreateSubscriber$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateSubscriberNotification } from "../schemas/schemas_0";
4
+ import { CreateSubscriberNotification$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSubscriberNotificationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSubscriberNotificationCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "CreateSubscriberNotification", {})
13
13
  .n("SecurityLakeClient", "CreateSubscriberNotificationCommand")
14
- .sc(CreateSubscriberNotification)
14
+ .sc(CreateSubscriberNotification$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteAwsLogSource } from "../schemas/schemas_0";
4
+ import { DeleteAwsLogSource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAwsLogSourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAwsLogSourceCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "DeleteAwsLogSource", {})
13
13
  .n("SecurityLakeClient", "DeleteAwsLogSourceCommand")
14
- .sc(DeleteAwsLogSource)
14
+ .sc(DeleteAwsLogSource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteCustomLogSource } from "../schemas/schemas_0";
4
+ import { DeleteCustomLogSource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteCustomLogSourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteCustomLogSourceCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "DeleteCustomLogSource", {})
13
13
  .n("SecurityLakeClient", "DeleteCustomLogSourceCommand")
14
- .sc(DeleteCustomLogSource)
14
+ .sc(DeleteCustomLogSource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteDataLake } from "../schemas/schemas_0";
4
+ import { DeleteDataLake$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteDataLakeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteDataLakeCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "DeleteDataLake", {})
13
13
  .n("SecurityLakeClient", "DeleteDataLakeCommand")
14
- .sc(DeleteDataLake)
14
+ .sc(DeleteDataLake$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteDataLakeExceptionSubscription } from "../schemas/schemas_0";
4
+ import { DeleteDataLakeExceptionSubscription$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteDataLakeExceptionSubscriptionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteDataLakeExceptionSubscriptionCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "DeleteDataLakeExceptionSubscription", {})
13
13
  .n("SecurityLakeClient", "DeleteDataLakeExceptionSubscriptionCommand")
14
- .sc(DeleteDataLakeExceptionSubscription)
14
+ .sc(DeleteDataLakeExceptionSubscription$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteDataLakeOrganizationConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteDataLakeOrganizationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteDataLakeOrganizationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteDataLakeOrganizationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "DeleteDataLakeOrganizationConfiguration", {})
13
13
  .n("SecurityLakeClient", "DeleteDataLakeOrganizationConfigurationCommand")
14
- .sc(DeleteDataLakeOrganizationConfiguration)
14
+ .sc(DeleteDataLakeOrganizationConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteSubscriber } from "../schemas/schemas_0";
4
+ import { DeleteSubscriber$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSubscriberCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSubscriberCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "DeleteSubscriber", {})
13
13
  .n("SecurityLakeClient", "DeleteSubscriberCommand")
14
- .sc(DeleteSubscriber)
14
+ .sc(DeleteSubscriber$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteSubscriberNotification } from "../schemas/schemas_0";
4
+ import { DeleteSubscriberNotification$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSubscriberNotificationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSubscriberNotificationCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "DeleteSubscriberNotification", {})
13
13
  .n("SecurityLakeClient", "DeleteSubscriberNotificationCommand")
14
- .sc(DeleteSubscriberNotification)
14
+ .sc(DeleteSubscriberNotification$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeregisterDataLakeDelegatedAdministrator } from "../schemas/schemas_0";
4
+ import { DeregisterDataLakeDelegatedAdministrator$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeregisterDataLakeDelegatedAdministratorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeregisterDataLakeDelegatedAdministratorCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "DeregisterDataLakeDelegatedAdministrator", {})
13
13
  .n("SecurityLakeClient", "DeregisterDataLakeDelegatedAdministratorCommand")
14
- .sc(DeregisterDataLakeDelegatedAdministrator)
14
+ .sc(DeregisterDataLakeDelegatedAdministrator$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetDataLakeExceptionSubscription } from "../schemas/schemas_0";
4
+ import { GetDataLakeExceptionSubscription$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDataLakeExceptionSubscriptionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDataLakeExceptionSubscriptionCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "GetDataLakeExceptionSubscription", {})
13
13
  .n("SecurityLakeClient", "GetDataLakeExceptionSubscriptionCommand")
14
- .sc(GetDataLakeExceptionSubscription)
14
+ .sc(GetDataLakeExceptionSubscription$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetDataLakeOrganizationConfiguration } from "../schemas/schemas_0";
4
+ import { GetDataLakeOrganizationConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDataLakeOrganizationConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDataLakeOrganizationConfigurationCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "GetDataLakeOrganizationConfiguration", {})
13
13
  .n("SecurityLakeClient", "GetDataLakeOrganizationConfigurationCommand")
14
- .sc(GetDataLakeOrganizationConfiguration)
14
+ .sc(GetDataLakeOrganizationConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetDataLakeSources } from "../schemas/schemas_0";
4
+ import { GetDataLakeSources$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDataLakeSourcesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDataLakeSourcesCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "GetDataLakeSources", {})
13
13
  .n("SecurityLakeClient", "GetDataLakeSourcesCommand")
14
- .sc(GetDataLakeSources)
14
+ .sc(GetDataLakeSources$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetSubscriber } from "../schemas/schemas_0";
4
+ import { GetSubscriber$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetSubscriberCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetSubscriberCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "GetSubscriber", {})
13
13
  .n("SecurityLakeClient", "GetSubscriberCommand")
14
- .sc(GetSubscriber)
14
+ .sc(GetSubscriber$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDataLakeExceptions } from "../schemas/schemas_0";
4
+ import { ListDataLakeExceptions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDataLakeExceptionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDataLakeExceptionsCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "ListDataLakeExceptions", {})
13
13
  .n("SecurityLakeClient", "ListDataLakeExceptionsCommand")
14
- .sc(ListDataLakeExceptions)
14
+ .sc(ListDataLakeExceptions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDataLakes } from "../schemas/schemas_0";
4
+ import { ListDataLakes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDataLakesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDataLakesCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "ListDataLakes", {})
13
13
  .n("SecurityLakeClient", "ListDataLakesCommand")
14
- .sc(ListDataLakes)
14
+ .sc(ListDataLakes$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListLogSources } from "../schemas/schemas_0";
4
+ import { ListLogSources$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListLogSourcesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListLogSourcesCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "ListLogSources", {})
13
13
  .n("SecurityLakeClient", "ListLogSourcesCommand")
14
- .sc(ListLogSources)
14
+ .sc(ListLogSources$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSubscribers } from "../schemas/schemas_0";
4
+ import { ListSubscribers$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSubscribersCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSubscribersCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "ListSubscribers", {})
13
13
  .n("SecurityLakeClient", "ListSubscribersCommand")
14
- .sc(ListSubscribers)
14
+ .sc(ListSubscribers$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "ListTagsForResource", {})
13
13
  .n("SecurityLakeClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RegisterDataLakeDelegatedAdministrator } from "../schemas/schemas_0";
4
+ import { RegisterDataLakeDelegatedAdministrator$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RegisterDataLakeDelegatedAdministratorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RegisterDataLakeDelegatedAdministratorCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "RegisterDataLakeDelegatedAdministrator", {})
13
13
  .n("SecurityLakeClient", "RegisterDataLakeDelegatedAdministratorCommand")
14
- .sc(RegisterDataLakeDelegatedAdministrator)
14
+ .sc(RegisterDataLakeDelegatedAdministrator$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "TagResource", {})
13
13
  .n("SecurityLakeClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "UntagResource", {})
13
13
  .n("SecurityLakeClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateDataLake } from "../schemas/schemas_0";
4
+ import { UpdateDataLake$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateDataLakeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateDataLakeCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "UpdateDataLake", {})
13
13
  .n("SecurityLakeClient", "UpdateDataLakeCommand")
14
- .sc(UpdateDataLake)
14
+ .sc(UpdateDataLake$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateDataLakeExceptionSubscription } from "../schemas/schemas_0";
4
+ import { UpdateDataLakeExceptionSubscription$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateDataLakeExceptionSubscriptionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateDataLakeExceptionSubscriptionCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "UpdateDataLakeExceptionSubscription", {})
13
13
  .n("SecurityLakeClient", "UpdateDataLakeExceptionSubscriptionCommand")
14
- .sc(UpdateDataLakeExceptionSubscription)
14
+ .sc(UpdateDataLakeExceptionSubscription$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateSubscriber } from "../schemas/schemas_0";
4
+ import { UpdateSubscriber$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateSubscriberCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateSubscriberCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "UpdateSubscriber", {})
13
13
  .n("SecurityLakeClient", "UpdateSubscriberCommand")
14
- .sc(UpdateSubscriber)
14
+ .sc(UpdateSubscriber$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateSubscriberNotification } from "../schemas/schemas_0";
4
+ import { UpdateSubscriberNotification$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateSubscriberNotificationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateSubscriberNotificationCommand extends $Command
11
11
  })
12
12
  .s("SecurityLake", "UpdateSubscriberNotification", {})
13
13
  .n("SecurityLakeClient", "UpdateSubscriberNotificationCommand")
14
- .sc(UpdateSubscriberNotification)
14
+ .sc(UpdateSubscriberNotification$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SecurityLakeClient";
2
2
  export * from "./SecurityLake";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.securitylake" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.securitylake",
29
+ version: "2018-05-10",
30
+ serviceTarget: "SecurityLake",
31
+ },
27
32
  serviceId: config?.serviceId ?? "SecurityLake",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,