@aws-sdk/client-securitylake 3.1086.0 → 3.1088.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/index.js +1 -1
- package/dist-types/ts3.4/SecurityLake.d.ts +99 -152
- package/dist-types/ts3.4/SecurityLakeClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateAwsLogSourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateCustomLogSourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateDataLakeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDataLakeExceptionSubscriptionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateDataLakeOrganizationConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateSubscriberNotificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAwsLogSourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteCustomLogSourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDataLakeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteDataLakeExceptionSubscriptionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteDataLakeOrganizationConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteSubscriberNotificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeregisterDataLakeDelegatedAdministratorCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataLakeExceptionSubscriptionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataLakeOrganizationConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataLakeSourcesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDataLakeExceptionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDataLakesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListLogSourcesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListSubscribersCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RegisterDataLakeDelegatedAdministratorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDataLakeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDataLakeExceptionSubscriptionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateSubscriberNotificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +39 -39
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDataLakeSourcesRequest,
|
|
4
|
-
GetDataLakeSourcesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDataLakeSourcesRequest, GetDataLakeSourcesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDataLakeSourcesCommandInput
|
|
8
|
-
extends GetDataLakeSourcesRequest {}
|
|
4
|
+
export interface GetDataLakeSourcesCommandInput extends GetDataLakeSourcesRequest {}
|
|
9
5
|
export interface GetDataLakeSourcesCommandOutput
|
|
10
|
-
extends GetDataLakeSourcesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDataLakeSourcesResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetDataLakeSourcesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDataLakeSourcesCommandInput
|
|
9
|
+
input: GetDataLakeSourcesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDataLakeSourcesCommandInput,
|
|
17
12
|
GetDataLakeSourcesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSubscriberRequest,
|
|
4
|
-
GetSubscriberResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSubscriberRequest, GetSubscriberResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetSubscriberCommandInput extends GetSubscriberRequest {}
|
|
8
|
-
export interface GetSubscriberCommandOutput
|
|
9
|
-
extends GetSubscriberResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetSubscriberCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetSubscriberCommandInput
|
|
8
|
+
input: GetSubscriberCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetSubscriberCommandInput,
|
|
16
11
|
GetSubscriberCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetSubscriberCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetSubscriberCommandInput
|
|
17
|
+
input: GetSubscriberCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetSubscriberCommandInput,
|
|
25
20
|
GetSubscriberCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDataLakeExceptionsRequest,
|
|
4
|
-
ListDataLakeExceptionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDataLakeExceptionsRequest, ListDataLakeExceptionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDataLakeExceptionsCommandInput
|
|
8
|
-
extends ListDataLakeExceptionsRequest {}
|
|
4
|
+
export interface ListDataLakeExceptionsCommandInput extends ListDataLakeExceptionsRequest {}
|
|
9
5
|
export interface ListDataLakeExceptionsCommandOutput
|
|
10
|
-
extends ListDataLakeExceptionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListDataLakeExceptionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListDataLakeExceptionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListDataLakeExceptionsCommandInput
|
|
9
|
+
input: ListDataLakeExceptionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListDataLakeExceptionsCommandInput,
|
|
17
12
|
ListDataLakeExceptionsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDataLakesRequest,
|
|
4
|
-
ListDataLakesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDataLakesRequest, ListDataLakesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListDataLakesCommandInput extends ListDataLakesRequest {}
|
|
8
|
-
export interface ListDataLakesCommandOutput
|
|
9
|
-
extends ListDataLakesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDataLakesCommandOutput extends ListDataLakesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListDataLakesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListDataLakesCommandInput
|
|
8
|
+
input: ListDataLakesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListDataLakesCommandInput,
|
|
16
11
|
ListDataLakesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListLogSourcesRequest,
|
|
4
|
-
ListLogSourcesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListLogSourcesRequest, ListLogSourcesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListLogSourcesCommandInput extends ListLogSourcesRequest {}
|
|
8
|
-
export interface ListLogSourcesCommandOutput
|
|
9
|
-
extends ListLogSourcesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListLogSourcesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListLogSourcesCommandInput
|
|
8
|
+
input: ListLogSourcesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListLogSourcesCommandInput,
|
|
16
11
|
ListLogSourcesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSubscribersRequest,
|
|
4
|
-
ListSubscribersResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSubscribersRequest, ListSubscribersResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListSubscribersCommandInput extends ListSubscribersRequest {}
|
|
8
|
-
export interface ListSubscribersCommandOutput
|
|
9
|
-
extends ListSubscribersResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListSubscribersCommandOutput extends ListSubscribersResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListSubscribersCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListSubscribersCommandInput
|
|
8
|
+
input: ListSubscribersCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListSubscribersCommandInput,
|
|
16
11
|
ListSubscribersCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
RegisterDataLakeDelegatedAdministratorResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface RegisterDataLakeDelegatedAdministratorCommandInput
|
|
8
|
-
extends RegisterDataLakeDelegatedAdministratorRequest {}
|
|
7
|
+
export interface RegisterDataLakeDelegatedAdministratorCommandInput extends RegisterDataLakeDelegatedAdministratorRequest {}
|
|
9
8
|
export interface RegisterDataLakeDelegatedAdministratorCommandOutput
|
|
10
|
-
extends RegisterDataLakeDelegatedAdministratorResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends RegisterDataLakeDelegatedAdministratorResponse, __MetadataBearer {}
|
|
12
10
|
declare const RegisterDataLakeDelegatedAdministratorCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: RegisterDataLakeDelegatedAdministratorCommandInput
|
|
12
|
+
input: RegisterDataLakeDelegatedAdministratorCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
RegisterDataLakeDelegatedAdministratorCommandInput,
|
|
17
15
|
RegisterDataLakeDelegatedAdministratorCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const RegisterDataLakeDelegatedAdministratorCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: RegisterDataLakeDelegatedAdministratorCommandInput
|
|
21
|
+
input: RegisterDataLakeDelegatedAdministratorCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
RegisterDataLakeDelegatedAdministratorCommandInput,
|
|
26
24
|
RegisterDataLakeDelegatedAdministratorCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateDataLakeRequest,
|
|
4
|
-
UpdateDataLakeResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateDataLakeRequest, UpdateDataLakeResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateDataLakeCommandInput extends UpdateDataLakeRequest {}
|
|
8
|
-
export interface UpdateDataLakeCommandOutput
|
|
9
|
-
extends UpdateDataLakeResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateDataLakeCommandOutput extends UpdateDataLakeResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateDataLakeCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateDataLakeCommandInput
|
|
8
|
+
input: UpdateDataLakeCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateDataLakeCommandInput,
|
|
16
11
|
UpdateDataLakeCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateDataLakeCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateDataLakeCommandInput
|
|
17
|
+
input: UpdateDataLakeCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateDataLakeCommandInput,
|
|
25
20
|
UpdateDataLakeCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateDataLakeExceptionSubscriptionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateDataLakeExceptionSubscriptionCommandInput
|
|
8
|
-
extends UpdateDataLakeExceptionSubscriptionRequest {}
|
|
7
|
+
export interface UpdateDataLakeExceptionSubscriptionCommandInput extends UpdateDataLakeExceptionSubscriptionRequest {}
|
|
9
8
|
export interface UpdateDataLakeExceptionSubscriptionCommandOutput
|
|
10
|
-
extends UpdateDataLakeExceptionSubscriptionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateDataLakeExceptionSubscriptionResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateDataLakeExceptionSubscriptionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateDataLakeExceptionSubscriptionCommandInput
|
|
12
|
+
input: UpdateDataLakeExceptionSubscriptionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateDataLakeExceptionSubscriptionCommandInput,
|
|
17
15
|
UpdateDataLakeExceptionSubscriptionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateDataLakeExceptionSubscriptionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateDataLakeExceptionSubscriptionCommandInput
|
|
21
|
+
input: UpdateDataLakeExceptionSubscriptionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateDataLakeExceptionSubscriptionCommandInput,
|
|
26
24
|
UpdateDataLakeExceptionSubscriptionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateSubscriberRequest,
|
|
4
|
-
UpdateSubscriberResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateSubscriberRequest, UpdateSubscriberResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateSubscriberCommandInput extends UpdateSubscriberRequest {}
|
|
8
|
-
export interface UpdateSubscriberCommandOutput
|
|
9
|
-
extends UpdateSubscriberResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateSubscriberCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateSubscriberCommandInput
|
|
8
|
+
input: UpdateSubscriberCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateSubscriberCommandInput,
|
|
16
11
|
UpdateSubscriberCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateSubscriberCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateSubscriberCommandInput
|
|
17
|
+
input: UpdateSubscriberCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateSubscriberCommandInput,
|
|
25
20
|
UpdateSubscriberCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateSubscriberNotificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateSubscriberNotificationCommandInput
|
|
8
|
-
extends UpdateSubscriberNotificationRequest {}
|
|
7
|
+
export interface UpdateSubscriberNotificationCommandInput extends UpdateSubscriberNotificationRequest {}
|
|
9
8
|
export interface UpdateSubscriberNotificationCommandOutput
|
|
10
|
-
extends UpdateSubscriberNotificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateSubscriberNotificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateSubscriberNotificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateSubscriberNotificationCommandInput
|
|
12
|
+
input: UpdateSubscriberNotificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateSubscriberNotificationCommandInput,
|
|
17
15
|
UpdateSubscriberNotificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateSubscriberNotificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateSubscriberNotificationCommandInput
|
|
21
|
+
input: UpdateSubscriberNotificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateSubscriberNotificationCommandInput,
|
|
26
24
|
UpdateSubscriberNotificationCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface SecurityLakeExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -13,24 +13,21 @@ export declare const AwsLogSourceName: {
|
|
|
13
13
|
readonly VPC_FLOW: "VPC_FLOW";
|
|
14
14
|
readonly WAF: "WAF";
|
|
15
15
|
};
|
|
16
|
-
export type AwsLogSourceName =
|
|
17
|
-
(typeof AwsLogSourceName)[keyof typeof AwsLogSourceName];
|
|
16
|
+
export type AwsLogSourceName = (typeof AwsLogSourceName)[keyof typeof AwsLogSourceName];
|
|
18
17
|
export declare const DataLakeStatus: {
|
|
19
18
|
readonly COMPLETED: "COMPLETED";
|
|
20
19
|
readonly FAILED: "FAILED";
|
|
21
20
|
readonly INITIALIZED: "INITIALIZED";
|
|
22
21
|
readonly PENDING: "PENDING";
|
|
23
22
|
};
|
|
24
|
-
export type DataLakeStatus =
|
|
25
|
-
(typeof DataLakeStatus)[keyof typeof DataLakeStatus];
|
|
23
|
+
export type DataLakeStatus = (typeof DataLakeStatus)[keyof typeof DataLakeStatus];
|
|
26
24
|
export declare const SubscriberStatus: {
|
|
27
25
|
readonly ACTIVE: "ACTIVE";
|
|
28
26
|
readonly DEACTIVATED: "DEACTIVATED";
|
|
29
27
|
readonly PENDING: "PENDING";
|
|
30
28
|
readonly READY: "READY";
|
|
31
29
|
};
|
|
32
|
-
export type SubscriberStatus =
|
|
33
|
-
(typeof SubscriberStatus)[keyof typeof SubscriberStatus];
|
|
30
|
+
export type SubscriberStatus = (typeof SubscriberStatus)[keyof typeof SubscriberStatus];
|
|
34
31
|
export declare const HttpMethod: {
|
|
35
32
|
readonly POST: "POST";
|
|
36
33
|
readonly PUT: "PUT";
|
|
@@ -4,16 +4,12 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
errorCode?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class BadRequestException extends __BaseException {
|
|
12
10
|
readonly name: "BadRequestException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
|
-
constructor(
|
|
15
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
16
|
-
);
|
|
12
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
17
13
|
}
|
|
18
14
|
export declare class ConflictException extends __BaseException {
|
|
19
15
|
readonly name: "ConflictException";
|
|
@@ -26,18 +22,14 @@ export declare class InternalServerException extends __BaseException {
|
|
|
26
22
|
readonly name: "InternalServerException";
|
|
27
23
|
readonly $fault: "server";
|
|
28
24
|
$retryable: {};
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
31
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
32
26
|
}
|
|
33
27
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
34
28
|
readonly name: "ResourceNotFoundException";
|
|
35
29
|
readonly $fault: "client";
|
|
36
30
|
resourceName?: string | undefined;
|
|
37
31
|
resourceType?: string | undefined;
|
|
38
|
-
constructor(
|
|
39
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
40
|
-
);
|
|
32
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
41
33
|
}
|
|
42
34
|
export declare class ThrottlingException extends __BaseException {
|
|
43
35
|
readonly name: "ThrottlingException";
|
|
@@ -48,7 +40,5 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
48
40
|
serviceCode?: string | undefined;
|
|
49
41
|
quotaCode?: string | undefined;
|
|
50
42
|
retryAfterSeconds?: number | undefined;
|
|
51
|
-
constructor(
|
|
52
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
53
|
-
);
|
|
43
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
54
44
|
}
|
|
@@ -123,9 +123,7 @@ export interface DataLakeAutoEnableNewAccountConfiguration {
|
|
|
123
123
|
sources: AwsLogSourceResource[] | undefined;
|
|
124
124
|
}
|
|
125
125
|
export interface CreateDataLakeOrganizationConfigurationRequest {
|
|
126
|
-
autoEnableNewAccount?:
|
|
127
|
-
| DataLakeAutoEnableNewAccountConfiguration[]
|
|
128
|
-
| undefined;
|
|
126
|
+
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[] | undefined;
|
|
129
127
|
}
|
|
130
128
|
export interface CreateDataLakeOrganizationConfigurationResponse {}
|
|
131
129
|
export type LogSourceResource =
|
|
@@ -212,9 +210,7 @@ export declare namespace NotificationConfiguration {
|
|
|
212
210
|
}
|
|
213
211
|
interface Visitor<T> {
|
|
214
212
|
sqsNotificationConfiguration: (value: SqsNotificationConfiguration) => T;
|
|
215
|
-
httpsNotificationConfiguration: (
|
|
216
|
-
value: HttpsNotificationConfiguration
|
|
217
|
-
) => T;
|
|
213
|
+
httpsNotificationConfiguration: (value: HttpsNotificationConfiguration) => T;
|
|
218
214
|
_: (name: string, value: any) => T;
|
|
219
215
|
}
|
|
220
216
|
}
|
|
@@ -241,16 +237,12 @@ export interface DeleteDataLakeRequest {
|
|
|
241
237
|
}
|
|
242
238
|
export interface DeleteDataLakeResponse {}
|
|
243
239
|
export interface DeleteDataLakeOrganizationConfigurationRequest {
|
|
244
|
-
autoEnableNewAccount?:
|
|
245
|
-
| DataLakeAutoEnableNewAccountConfiguration[]
|
|
246
|
-
| undefined;
|
|
240
|
+
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[] | undefined;
|
|
247
241
|
}
|
|
248
242
|
export interface DeleteDataLakeOrganizationConfigurationResponse {}
|
|
249
243
|
export interface GetDataLakeOrganizationConfigurationRequest {}
|
|
250
244
|
export interface GetDataLakeOrganizationConfigurationResponse {
|
|
251
|
-
autoEnableNewAccount?:
|
|
252
|
-
| DataLakeAutoEnableNewAccountConfiguration[]
|
|
253
|
-
| undefined;
|
|
245
|
+
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[] | undefined;
|
|
254
246
|
}
|
|
255
247
|
export interface GetDataLakeSourcesRequest {
|
|
256
248
|
accounts?: string[] | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { SecurityLakeClient } from "../SecurityLakeClient";
|
|
3
|
-
export interface SecurityLakePaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface SecurityLakePaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: SecurityLakeClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|