@aws-sdk/client-securitylake 3.306.0 → 3.310.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.
- package/dist-cjs/commands/CreateAwsLogSourceCommand.js +2 -2
- package/dist-cjs/commands/CreateCustomLogSourceCommand.js +2 -2
- package/dist-cjs/commands/CreateDatalakeAutoEnableCommand.js +2 -2
- package/dist-cjs/commands/CreateDatalakeCommand.js +2 -2
- package/dist-cjs/commands/CreateDatalakeDelegatedAdminCommand.js +2 -2
- package/dist-cjs/commands/CreateDatalakeExceptionsSubscriptionCommand.js +2 -2
- package/dist-cjs/commands/CreateSubscriberCommand.js +2 -2
- package/dist-cjs/commands/CreateSubscriptionNotificationConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DeleteAwsLogSourceCommand.js +2 -2
- package/dist-cjs/commands/DeleteCustomLogSourceCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatalakeAutoEnableCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatalakeCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatalakeDelegatedAdminCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatalakeExceptionsSubscriptionCommand.js +2 -2
- package/dist-cjs/commands/DeleteSubscriberCommand.js +2 -2
- package/dist-cjs/commands/DeleteSubscriptionNotificationConfigurationCommand.js +2 -2
- package/dist-cjs/commands/GetDatalakeAutoEnableCommand.js +2 -2
- package/dist-cjs/commands/GetDatalakeCommand.js +2 -2
- package/dist-cjs/commands/GetDatalakeExceptionsExpiryCommand.js +2 -2
- package/dist-cjs/commands/GetDatalakeExceptionsSubscriptionCommand.js +2 -2
- package/dist-cjs/commands/GetDatalakeStatusCommand.js +2 -2
- package/dist-cjs/commands/GetSubscriberCommand.js +2 -2
- package/dist-cjs/commands/ListDatalakeExceptionsCommand.js +2 -2
- package/dist-cjs/commands/ListLogSourcesCommand.js +2 -2
- package/dist-cjs/commands/ListSubscribersCommand.js +2 -2
- package/dist-cjs/commands/UpdateDatalakeCommand.js +2 -2
- package/dist-cjs/commands/UpdateDatalakeExceptionsExpiryCommand.js +2 -2
- package/dist-cjs/commands/UpdateDatalakeExceptionsSubscriptionCommand.js +2 -2
- package/dist-cjs/commands/UpdateSubscriberCommand.js +2 -2
- package/dist-cjs/commands/UpdateSubscriptionNotificationConfigurationCommand.js +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +475 -481
- package/dist-es/commands/CreateAwsLogSourceCommand.js +3 -3
- package/dist-es/commands/CreateCustomLogSourceCommand.js +3 -3
- package/dist-es/commands/CreateDatalakeAutoEnableCommand.js +3 -3
- package/dist-es/commands/CreateDatalakeCommand.js +3 -3
- package/dist-es/commands/CreateDatalakeDelegatedAdminCommand.js +3 -3
- package/dist-es/commands/CreateDatalakeExceptionsSubscriptionCommand.js +3 -3
- package/dist-es/commands/CreateSubscriberCommand.js +3 -3
- package/dist-es/commands/CreateSubscriptionNotificationConfigurationCommand.js +3 -3
- package/dist-es/commands/DeleteAwsLogSourceCommand.js +3 -3
- package/dist-es/commands/DeleteCustomLogSourceCommand.js +3 -3
- package/dist-es/commands/DeleteDatalakeAutoEnableCommand.js +3 -3
- package/dist-es/commands/DeleteDatalakeCommand.js +3 -3
- package/dist-es/commands/DeleteDatalakeDelegatedAdminCommand.js +3 -3
- package/dist-es/commands/DeleteDatalakeExceptionsSubscriptionCommand.js +3 -3
- package/dist-es/commands/DeleteSubscriberCommand.js +3 -3
- package/dist-es/commands/DeleteSubscriptionNotificationConfigurationCommand.js +3 -3
- package/dist-es/commands/GetDatalakeAutoEnableCommand.js +3 -3
- package/dist-es/commands/GetDatalakeCommand.js +3 -3
- package/dist-es/commands/GetDatalakeExceptionsExpiryCommand.js +3 -3
- package/dist-es/commands/GetDatalakeExceptionsSubscriptionCommand.js +3 -3
- package/dist-es/commands/GetDatalakeStatusCommand.js +3 -3
- package/dist-es/commands/GetSubscriberCommand.js +3 -3
- package/dist-es/commands/ListDatalakeExceptionsCommand.js +3 -3
- package/dist-es/commands/ListLogSourcesCommand.js +3 -3
- package/dist-es/commands/ListSubscribersCommand.js +3 -3
- package/dist-es/commands/UpdateDatalakeCommand.js +3 -3
- package/dist-es/commands/UpdateDatalakeExceptionsExpiryCommand.js +3 -3
- package/dist-es/commands/UpdateDatalakeExceptionsSubscriptionCommand.js +3 -3
- package/dist-es/commands/UpdateSubscriberCommand.js +3 -3
- package/dist-es/commands/UpdateSubscriptionNotificationConfigurationCommand.js +3 -3
- package/dist-es/protocols/Aws_restJson1.js +413 -419
- package/dist-types/protocols/Aws_restJson1.d.ts +240 -60
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -60
- package/package.json +35 -35
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateSubscriberCommand, se_UpdateSubscriberCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class UpdateSubscriberCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class UpdateSubscriberCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_UpdateSubscriberCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_UpdateSubscriberCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateSubscriptionNotificationConfigurationCommand, se_UpdateSubscriptionNotificationConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class UpdateSubscriptionNotificationConfigurationCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class UpdateSubscriptionNotificationConfigurationCommand extends $Command
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_UpdateSubscriptionNotificationConfigurationCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_UpdateSubscriptionNotificationConfigurationCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|