@aws-sdk/client-securitylake 3.928.0 → 3.930.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 +1131 -1213
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SecurityLakeClient.js +2 -0
- package/dist-es/commands/CreateAwsLogSourceCommand.js +3 -9
- package/dist-es/commands/CreateCustomLogSourceCommand.js +3 -9
- package/dist-es/commands/CreateDataLakeCommand.js +3 -9
- package/dist-es/commands/CreateDataLakeExceptionSubscriptionCommand.js +3 -9
- package/dist-es/commands/CreateDataLakeOrganizationConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateSubscriberCommand.js +3 -9
- package/dist-es/commands/CreateSubscriberNotificationCommand.js +3 -9
- package/dist-es/commands/DeleteAwsLogSourceCommand.js +3 -9
- package/dist-es/commands/DeleteCustomLogSourceCommand.js +3 -9
- package/dist-es/commands/DeleteDataLakeCommand.js +3 -9
- package/dist-es/commands/DeleteDataLakeExceptionSubscriptionCommand.js +3 -9
- package/dist-es/commands/DeleteDataLakeOrganizationConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteSubscriberCommand.js +3 -9
- package/dist-es/commands/DeleteSubscriberNotificationCommand.js +3 -9
- package/dist-es/commands/DeregisterDataLakeDelegatedAdministratorCommand.js +3 -9
- package/dist-es/commands/GetDataLakeExceptionSubscriptionCommand.js +3 -9
- package/dist-es/commands/GetDataLakeOrganizationConfigurationCommand.js +3 -9
- package/dist-es/commands/GetDataLakeSourcesCommand.js +3 -9
- package/dist-es/commands/GetSubscriberCommand.js +3 -9
- package/dist-es/commands/ListDataLakeExceptionsCommand.js +3 -9
- package/dist-es/commands/ListDataLakesCommand.js +3 -9
- package/dist-es/commands/ListLogSourcesCommand.js +3 -9
- package/dist-es/commands/ListSubscribersCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RegisterDataLakeDelegatedAdministratorCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateDataLakeCommand.js +3 -9
- package/dist-es/commands/UpdateDataLakeExceptionSubscriptionCommand.js +3 -9
- package/dist-es/commands/UpdateSubscriberCommand.js +3 -9
- package/dist-es/commands/UpdateSubscriberNotificationCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -20
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1061 -0
- package/dist-types/SecurityLakeClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +8 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +148 -0
- package/dist-types/ts3.4/SecurityLakeClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +153 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -965
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -281
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -377
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateAwsLogSourceCommandInput, CreateAwsLogSourceCommandOutput } from "./commands/CreateAwsLogSourceCommand";
|
|
11
11
|
import { CreateCustomLogSourceCommandInput, CreateCustomLogSourceCommandOutput } from "./commands/CreateCustomLogSourceCommand";
|
|
@@ -172,6 +172,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
172
172
|
* Optional extensions
|
|
173
173
|
*/
|
|
174
174
|
extensions?: RuntimeExtension[];
|
|
175
|
+
/**
|
|
176
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
177
|
+
* may be overridden. A default will always be set by the client.
|
|
178
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
179
|
+
* the client.
|
|
180
|
+
* @alpha
|
|
181
|
+
*
|
|
182
|
+
*/
|
|
183
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
175
184
|
/**
|
|
176
185
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
177
186
|
*/
|
|
@@ -753,12 +753,15 @@ export declare namespace LogSourceResource {
|
|
|
753
753
|
customLogSource?: never;
|
|
754
754
|
$unknown: [string, any];
|
|
755
755
|
}
|
|
756
|
+
/**
|
|
757
|
+
* @deprecated unused in schema-serde mode.
|
|
758
|
+
*
|
|
759
|
+
*/
|
|
756
760
|
interface Visitor<T> {
|
|
757
761
|
awsLogSource: (value: AwsLogSourceResource) => T;
|
|
758
762
|
customLogSource: (value: CustomLogSourceResource) => T;
|
|
759
763
|
_: (name: string, value: any) => T;
|
|
760
764
|
}
|
|
761
|
-
const visit: <T>(value: LogSourceResource, visitor: Visitor<T>) => T;
|
|
762
765
|
}
|
|
763
766
|
/**
|
|
764
767
|
* @public
|
|
@@ -1004,12 +1007,15 @@ export declare namespace NotificationConfiguration {
|
|
|
1004
1007
|
httpsNotificationConfiguration?: never;
|
|
1005
1008
|
$unknown: [string, any];
|
|
1006
1009
|
}
|
|
1010
|
+
/**
|
|
1011
|
+
* @deprecated unused in schema-serde mode.
|
|
1012
|
+
*
|
|
1013
|
+
*/
|
|
1007
1014
|
interface Visitor<T> {
|
|
1008
1015
|
sqsNotificationConfiguration: (value: SqsNotificationConfiguration) => T;
|
|
1009
1016
|
httpsNotificationConfiguration: (value: HttpsNotificationConfiguration) => T;
|
|
1010
1017
|
_: (name: string, value: any) => T;
|
|
1011
1018
|
}
|
|
1012
|
-
const visit: <T>(value: NotificationConfiguration, visitor: Visitor<T>) => T;
|
|
1013
1019
|
}
|
|
1014
1020
|
/**
|
|
1015
1021
|
* @public
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SecurityLakeHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
3
|
+
export declare var AwsIdentity: StaticStructureSchema;
|
|
4
|
+
export declare var AwsLogSourceConfiguration: StaticStructureSchema;
|
|
5
|
+
export declare var AwsLogSourceResource: StaticStructureSchema;
|
|
6
|
+
export declare var BadRequestException: StaticErrorSchema;
|
|
7
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
8
|
+
export declare var CreateAwsLogSourceRequest: StaticStructureSchema;
|
|
9
|
+
export declare var CreateAwsLogSourceResponse: StaticStructureSchema;
|
|
10
|
+
export declare var CreateCustomLogSourceRequest: StaticStructureSchema;
|
|
11
|
+
export declare var CreateCustomLogSourceResponse: StaticStructureSchema;
|
|
12
|
+
export declare var CreateDataLakeExceptionSubscriptionRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CreateDataLakeExceptionSubscriptionResponse: StaticStructureSchema;
|
|
14
|
+
export declare var CreateDataLakeOrganizationConfigurationRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateDataLakeOrganizationConfigurationResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateDataLakeRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateDataLakeResponse: StaticStructureSchema;
|
|
18
|
+
export declare var CreateSubscriberNotificationRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateSubscriberNotificationResponse: StaticStructureSchema;
|
|
20
|
+
export declare var CreateSubscriberRequest: StaticStructureSchema;
|
|
21
|
+
export declare var CreateSubscriberResponse: StaticStructureSchema;
|
|
22
|
+
export declare var CustomLogSourceAttributes: StaticStructureSchema;
|
|
23
|
+
export declare var CustomLogSourceConfiguration: StaticStructureSchema;
|
|
24
|
+
export declare var CustomLogSourceCrawlerConfiguration: StaticStructureSchema;
|
|
25
|
+
export declare var CustomLogSourceProvider: StaticStructureSchema;
|
|
26
|
+
export declare var CustomLogSourceResource: StaticStructureSchema;
|
|
27
|
+
export declare var DataLakeAutoEnableNewAccountConfiguration: StaticStructureSchema;
|
|
28
|
+
export declare var DataLakeConfiguration: StaticStructureSchema;
|
|
29
|
+
export declare var DataLakeEncryptionConfiguration: StaticStructureSchema;
|
|
30
|
+
export declare var DataLakeException: StaticStructureSchema;
|
|
31
|
+
export declare var DataLakeLifecycleConfiguration: StaticStructureSchema;
|
|
32
|
+
export declare var DataLakeLifecycleExpiration: StaticStructureSchema;
|
|
33
|
+
export declare var DataLakeLifecycleTransition: StaticStructureSchema;
|
|
34
|
+
export declare var DataLakeReplicationConfiguration: StaticStructureSchema;
|
|
35
|
+
export declare var DataLakeResource: StaticStructureSchema;
|
|
36
|
+
export declare var DataLakeSource: StaticStructureSchema;
|
|
37
|
+
export declare var DataLakeSourceStatus: StaticStructureSchema;
|
|
38
|
+
export declare var DataLakeUpdateException: StaticStructureSchema;
|
|
39
|
+
export declare var DataLakeUpdateStatus: StaticStructureSchema;
|
|
40
|
+
export declare var DeleteAwsLogSourceRequest: StaticStructureSchema;
|
|
41
|
+
export declare var DeleteAwsLogSourceResponse: StaticStructureSchema;
|
|
42
|
+
export declare var DeleteCustomLogSourceRequest: StaticStructureSchema;
|
|
43
|
+
export declare var DeleteCustomLogSourceResponse: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteDataLakeExceptionSubscriptionRequest: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteDataLakeExceptionSubscriptionResponse: StaticStructureSchema;
|
|
46
|
+
export declare var DeleteDataLakeOrganizationConfigurationRequest: StaticStructureSchema;
|
|
47
|
+
export declare var DeleteDataLakeOrganizationConfigurationResponse: StaticStructureSchema;
|
|
48
|
+
export declare var DeleteDataLakeRequest: StaticStructureSchema;
|
|
49
|
+
export declare var DeleteDataLakeResponse: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteSubscriberNotificationRequest: StaticStructureSchema;
|
|
51
|
+
export declare var DeleteSubscriberNotificationResponse: StaticStructureSchema;
|
|
52
|
+
export declare var DeleteSubscriberRequest: StaticStructureSchema;
|
|
53
|
+
export declare var DeleteSubscriberResponse: StaticStructureSchema;
|
|
54
|
+
export declare var DeregisterDataLakeDelegatedAdministratorRequest: StaticStructureSchema;
|
|
55
|
+
export declare var DeregisterDataLakeDelegatedAdministratorResponse: StaticStructureSchema;
|
|
56
|
+
export declare var GetDataLakeExceptionSubscriptionRequest: StaticStructureSchema;
|
|
57
|
+
export declare var GetDataLakeExceptionSubscriptionResponse: StaticStructureSchema;
|
|
58
|
+
export declare var GetDataLakeOrganizationConfigurationRequest: StaticStructureSchema;
|
|
59
|
+
export declare var GetDataLakeOrganizationConfigurationResponse: StaticStructureSchema;
|
|
60
|
+
export declare var GetDataLakeSourcesRequest: StaticStructureSchema;
|
|
61
|
+
export declare var GetDataLakeSourcesResponse: StaticStructureSchema;
|
|
62
|
+
export declare var GetSubscriberRequest: StaticStructureSchema;
|
|
63
|
+
export declare var GetSubscriberResponse: StaticStructureSchema;
|
|
64
|
+
export declare var HttpsNotificationConfiguration: StaticStructureSchema;
|
|
65
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
66
|
+
export declare var ListDataLakeExceptionsRequest: StaticStructureSchema;
|
|
67
|
+
export declare var ListDataLakeExceptionsResponse: StaticStructureSchema;
|
|
68
|
+
export declare var ListDataLakesRequest: StaticStructureSchema;
|
|
69
|
+
export declare var ListDataLakesResponse: StaticStructureSchema;
|
|
70
|
+
export declare var ListLogSourcesRequest: StaticStructureSchema;
|
|
71
|
+
export declare var ListLogSourcesResponse: StaticStructureSchema;
|
|
72
|
+
export declare var ListSubscribersRequest: StaticStructureSchema;
|
|
73
|
+
export declare var ListSubscribersResponse: StaticStructureSchema;
|
|
74
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
75
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
76
|
+
export declare var LogSource: StaticStructureSchema;
|
|
77
|
+
export declare var RegisterDataLakeDelegatedAdministratorRequest: StaticStructureSchema;
|
|
78
|
+
export declare var RegisterDataLakeDelegatedAdministratorResponse: StaticStructureSchema;
|
|
79
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
80
|
+
export declare var SqsNotificationConfiguration: StaticStructureSchema;
|
|
81
|
+
export declare var SubscriberResource: StaticStructureSchema;
|
|
82
|
+
export declare var Tag: StaticStructureSchema;
|
|
83
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
84
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
85
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
86
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
87
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
88
|
+
export declare var UpdateDataLakeExceptionSubscriptionRequest: StaticStructureSchema;
|
|
89
|
+
export declare var UpdateDataLakeExceptionSubscriptionResponse: StaticStructureSchema;
|
|
90
|
+
export declare var UpdateDataLakeRequest: StaticStructureSchema;
|
|
91
|
+
export declare var UpdateDataLakeResponse: StaticStructureSchema;
|
|
92
|
+
export declare var UpdateSubscriberNotificationRequest: StaticStructureSchema;
|
|
93
|
+
export declare var UpdateSubscriberNotificationResponse: StaticStructureSchema;
|
|
94
|
+
export declare var UpdateSubscriberRequest: StaticStructureSchema;
|
|
95
|
+
export declare var UpdateSubscriberResponse: StaticStructureSchema;
|
|
96
|
+
export declare var __Unit: "unit";
|
|
97
|
+
export declare var SecurityLakeServiceException: StaticErrorSchema;
|
|
98
|
+
export declare var AccessTypeList: number;
|
|
99
|
+
export declare var AccountList: number;
|
|
100
|
+
export declare var AwsLogSourceConfigurationList: StaticListSchema;
|
|
101
|
+
export declare var AwsLogSourceResourceList: StaticListSchema;
|
|
102
|
+
export declare var DataLakeAutoEnableNewAccountConfigurationList: StaticListSchema;
|
|
103
|
+
export declare var DataLakeConfigurationList: StaticListSchema;
|
|
104
|
+
export declare var DataLakeExceptionList: StaticListSchema;
|
|
105
|
+
export declare var DataLakeLifecycleTransitionList: StaticListSchema;
|
|
106
|
+
export declare var DataLakeResourceList: StaticListSchema;
|
|
107
|
+
export declare var DataLakeSourceList: StaticListSchema;
|
|
108
|
+
export declare var DataLakeSourceStatusList: StaticListSchema;
|
|
109
|
+
export declare var LogSourceList: StaticListSchema;
|
|
110
|
+
export declare var LogSourceResourceList: StaticListSchema;
|
|
111
|
+
export declare var OcsfEventClassList: number;
|
|
112
|
+
export declare var RegionList: number;
|
|
113
|
+
export declare var SubscriberResourceList: StaticListSchema;
|
|
114
|
+
export declare var TagKeyList: number;
|
|
115
|
+
export declare var TagList: StaticListSchema;
|
|
116
|
+
export declare var LogSourceResource: StaticStructureSchema;
|
|
117
|
+
export declare var NotificationConfiguration: StaticStructureSchema;
|
|
118
|
+
export declare var CreateAwsLogSource: StaticOperationSchema;
|
|
119
|
+
export declare var CreateCustomLogSource: StaticOperationSchema;
|
|
120
|
+
export declare var CreateDataLake: StaticOperationSchema;
|
|
121
|
+
export declare var CreateDataLakeExceptionSubscription: StaticOperationSchema;
|
|
122
|
+
export declare var CreateDataLakeOrganizationConfiguration: StaticOperationSchema;
|
|
123
|
+
export declare var CreateSubscriber: StaticOperationSchema;
|
|
124
|
+
export declare var CreateSubscriberNotification: StaticOperationSchema;
|
|
125
|
+
export declare var DeleteAwsLogSource: StaticOperationSchema;
|
|
126
|
+
export declare var DeleteCustomLogSource: StaticOperationSchema;
|
|
127
|
+
export declare var DeleteDataLake: StaticOperationSchema;
|
|
128
|
+
export declare var DeleteDataLakeExceptionSubscription: StaticOperationSchema;
|
|
129
|
+
export declare var DeleteDataLakeOrganizationConfiguration: StaticOperationSchema;
|
|
130
|
+
export declare var DeleteSubscriber: StaticOperationSchema;
|
|
131
|
+
export declare var DeleteSubscriberNotification: StaticOperationSchema;
|
|
132
|
+
export declare var DeregisterDataLakeDelegatedAdministrator: StaticOperationSchema;
|
|
133
|
+
export declare var GetDataLakeExceptionSubscription: StaticOperationSchema;
|
|
134
|
+
export declare var GetDataLakeOrganizationConfiguration: StaticOperationSchema;
|
|
135
|
+
export declare var GetDataLakeSources: StaticOperationSchema;
|
|
136
|
+
export declare var GetSubscriber: StaticOperationSchema;
|
|
137
|
+
export declare var ListDataLakeExceptions: StaticOperationSchema;
|
|
138
|
+
export declare var ListDataLakes: StaticOperationSchema;
|
|
139
|
+
export declare var ListLogSources: StaticOperationSchema;
|
|
140
|
+
export declare var ListSubscribers: StaticOperationSchema;
|
|
141
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
142
|
+
export declare var RegisterDataLakeDelegatedAdministrator: StaticOperationSchema;
|
|
143
|
+
export declare var TagResource: StaticOperationSchema;
|
|
144
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
145
|
+
export declare var UpdateDataLake: StaticOperationSchema;
|
|
146
|
+
export declare var UpdateDataLakeExceptionSubscription: StaticOperationSchema;
|
|
147
|
+
export declare var UpdateSubscriber: StaticOperationSchema;
|
|
148
|
+
export declare var UpdateSubscriberNotification: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -264,6 +267,7 @@ export interface ClientDefaults
|
|
|
264
267
|
retryMode?: string | __Provider<string>;
|
|
265
268
|
logger?: __Logger;
|
|
266
269
|
extensions?: RuntimeExtension[];
|
|
270
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
267
271
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
268
272
|
}
|
|
269
273
|
export type SecurityLakeClientConfigType = Partial<
|
|
@@ -224,7 +224,6 @@ export declare namespace LogSourceResource {
|
|
|
224
224
|
customLogSource: (value: CustomLogSourceResource) => T;
|
|
225
225
|
_: (name: string, value: any) => T;
|
|
226
226
|
}
|
|
227
|
-
const visit: <T>(value: LogSourceResource, visitor: Visitor<T>) => T;
|
|
228
227
|
}
|
|
229
228
|
export interface CreateSubscriberRequest {
|
|
230
229
|
subscriberIdentity: AwsIdentity | undefined;
|
|
@@ -302,7 +301,6 @@ export declare namespace NotificationConfiguration {
|
|
|
302
301
|
) => T;
|
|
303
302
|
_: (name: string, value: any) => T;
|
|
304
303
|
}
|
|
305
|
-
const visit: <T>(value: NotificationConfiguration, visitor: Visitor<T>) => T;
|
|
306
304
|
}
|
|
307
305
|
export interface CreateSubscriberNotificationRequest {
|
|
308
306
|
subscriberId: string | undefined;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: SecurityLakeClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SecurityLakeHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
8
|
+
export declare var AwsIdentity: StaticStructureSchema;
|
|
9
|
+
export declare var AwsLogSourceConfiguration: StaticStructureSchema;
|
|
10
|
+
export declare var AwsLogSourceResource: StaticStructureSchema;
|
|
11
|
+
export declare var BadRequestException: StaticErrorSchema;
|
|
12
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
13
|
+
export declare var CreateAwsLogSourceRequest: StaticStructureSchema;
|
|
14
|
+
export declare var CreateAwsLogSourceResponse: StaticStructureSchema;
|
|
15
|
+
export declare var CreateCustomLogSourceRequest: StaticStructureSchema;
|
|
16
|
+
export declare var CreateCustomLogSourceResponse: StaticStructureSchema;
|
|
17
|
+
export declare var CreateDataLakeExceptionSubscriptionRequest: StaticStructureSchema;
|
|
18
|
+
export declare var CreateDataLakeExceptionSubscriptionResponse: StaticStructureSchema;
|
|
19
|
+
export declare var CreateDataLakeOrganizationConfigurationRequest: StaticStructureSchema;
|
|
20
|
+
export declare var CreateDataLakeOrganizationConfigurationResponse: StaticStructureSchema;
|
|
21
|
+
export declare var CreateDataLakeRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateDataLakeResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateSubscriberNotificationRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateSubscriberNotificationResponse: StaticStructureSchema;
|
|
25
|
+
export declare var CreateSubscriberRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CreateSubscriberResponse: StaticStructureSchema;
|
|
27
|
+
export declare var CustomLogSourceAttributes: StaticStructureSchema;
|
|
28
|
+
export declare var CustomLogSourceConfiguration: StaticStructureSchema;
|
|
29
|
+
export declare var CustomLogSourceCrawlerConfiguration: StaticStructureSchema;
|
|
30
|
+
export declare var CustomLogSourceProvider: StaticStructureSchema;
|
|
31
|
+
export declare var CustomLogSourceResource: StaticStructureSchema;
|
|
32
|
+
export declare var DataLakeAutoEnableNewAccountConfiguration: StaticStructureSchema;
|
|
33
|
+
export declare var DataLakeConfiguration: StaticStructureSchema;
|
|
34
|
+
export declare var DataLakeEncryptionConfiguration: StaticStructureSchema;
|
|
35
|
+
export declare var DataLakeException: StaticStructureSchema;
|
|
36
|
+
export declare var DataLakeLifecycleConfiguration: StaticStructureSchema;
|
|
37
|
+
export declare var DataLakeLifecycleExpiration: StaticStructureSchema;
|
|
38
|
+
export declare var DataLakeLifecycleTransition: StaticStructureSchema;
|
|
39
|
+
export declare var DataLakeReplicationConfiguration: StaticStructureSchema;
|
|
40
|
+
export declare var DataLakeResource: StaticStructureSchema;
|
|
41
|
+
export declare var DataLakeSource: StaticStructureSchema;
|
|
42
|
+
export declare var DataLakeSourceStatus: StaticStructureSchema;
|
|
43
|
+
export declare var DataLakeUpdateException: StaticStructureSchema;
|
|
44
|
+
export declare var DataLakeUpdateStatus: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteAwsLogSourceRequest: StaticStructureSchema;
|
|
46
|
+
export declare var DeleteAwsLogSourceResponse: StaticStructureSchema;
|
|
47
|
+
export declare var DeleteCustomLogSourceRequest: StaticStructureSchema;
|
|
48
|
+
export declare var DeleteCustomLogSourceResponse: StaticStructureSchema;
|
|
49
|
+
export declare var DeleteDataLakeExceptionSubscriptionRequest: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteDataLakeExceptionSubscriptionResponse: StaticStructureSchema;
|
|
51
|
+
export declare var DeleteDataLakeOrganizationConfigurationRequest: StaticStructureSchema;
|
|
52
|
+
export declare var DeleteDataLakeOrganizationConfigurationResponse: StaticStructureSchema;
|
|
53
|
+
export declare var DeleteDataLakeRequest: StaticStructureSchema;
|
|
54
|
+
export declare var DeleteDataLakeResponse: StaticStructureSchema;
|
|
55
|
+
export declare var DeleteSubscriberNotificationRequest: StaticStructureSchema;
|
|
56
|
+
export declare var DeleteSubscriberNotificationResponse: StaticStructureSchema;
|
|
57
|
+
export declare var DeleteSubscriberRequest: StaticStructureSchema;
|
|
58
|
+
export declare var DeleteSubscriberResponse: StaticStructureSchema;
|
|
59
|
+
export declare var DeregisterDataLakeDelegatedAdministratorRequest: StaticStructureSchema;
|
|
60
|
+
export declare var DeregisterDataLakeDelegatedAdministratorResponse: StaticStructureSchema;
|
|
61
|
+
export declare var GetDataLakeExceptionSubscriptionRequest: StaticStructureSchema;
|
|
62
|
+
export declare var GetDataLakeExceptionSubscriptionResponse: StaticStructureSchema;
|
|
63
|
+
export declare var GetDataLakeOrganizationConfigurationRequest: StaticStructureSchema;
|
|
64
|
+
export declare var GetDataLakeOrganizationConfigurationResponse: StaticStructureSchema;
|
|
65
|
+
export declare var GetDataLakeSourcesRequest: StaticStructureSchema;
|
|
66
|
+
export declare var GetDataLakeSourcesResponse: StaticStructureSchema;
|
|
67
|
+
export declare var GetSubscriberRequest: StaticStructureSchema;
|
|
68
|
+
export declare var GetSubscriberResponse: StaticStructureSchema;
|
|
69
|
+
export declare var HttpsNotificationConfiguration: StaticStructureSchema;
|
|
70
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
71
|
+
export declare var ListDataLakeExceptionsRequest: StaticStructureSchema;
|
|
72
|
+
export declare var ListDataLakeExceptionsResponse: StaticStructureSchema;
|
|
73
|
+
export declare var ListDataLakesRequest: StaticStructureSchema;
|
|
74
|
+
export declare var ListDataLakesResponse: StaticStructureSchema;
|
|
75
|
+
export declare var ListLogSourcesRequest: StaticStructureSchema;
|
|
76
|
+
export declare var ListLogSourcesResponse: StaticStructureSchema;
|
|
77
|
+
export declare var ListSubscribersRequest: StaticStructureSchema;
|
|
78
|
+
export declare var ListSubscribersResponse: StaticStructureSchema;
|
|
79
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
80
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
81
|
+
export declare var LogSource: StaticStructureSchema;
|
|
82
|
+
export declare var RegisterDataLakeDelegatedAdministratorRequest: StaticStructureSchema;
|
|
83
|
+
export declare var RegisterDataLakeDelegatedAdministratorResponse: StaticStructureSchema;
|
|
84
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
85
|
+
export declare var SqsNotificationConfiguration: StaticStructureSchema;
|
|
86
|
+
export declare var SubscriberResource: StaticStructureSchema;
|
|
87
|
+
export declare var Tag: StaticStructureSchema;
|
|
88
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
89
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
90
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
91
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
92
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
93
|
+
export declare var UpdateDataLakeExceptionSubscriptionRequest: StaticStructureSchema;
|
|
94
|
+
export declare var UpdateDataLakeExceptionSubscriptionResponse: StaticStructureSchema;
|
|
95
|
+
export declare var UpdateDataLakeRequest: StaticStructureSchema;
|
|
96
|
+
export declare var UpdateDataLakeResponse: StaticStructureSchema;
|
|
97
|
+
export declare var UpdateSubscriberNotificationRequest: StaticStructureSchema;
|
|
98
|
+
export declare var UpdateSubscriberNotificationResponse: StaticStructureSchema;
|
|
99
|
+
export declare var UpdateSubscriberRequest: StaticStructureSchema;
|
|
100
|
+
export declare var UpdateSubscriberResponse: StaticStructureSchema;
|
|
101
|
+
export declare var __Unit: "unit";
|
|
102
|
+
export declare var SecurityLakeServiceException: StaticErrorSchema;
|
|
103
|
+
export declare var AccessTypeList: number;
|
|
104
|
+
export declare var AccountList: number;
|
|
105
|
+
export declare var AwsLogSourceConfigurationList: StaticListSchema;
|
|
106
|
+
export declare var AwsLogSourceResourceList: StaticListSchema;
|
|
107
|
+
export declare var DataLakeAutoEnableNewAccountConfigurationList: StaticListSchema;
|
|
108
|
+
export declare var DataLakeConfigurationList: StaticListSchema;
|
|
109
|
+
export declare var DataLakeExceptionList: StaticListSchema;
|
|
110
|
+
export declare var DataLakeLifecycleTransitionList: StaticListSchema;
|
|
111
|
+
export declare var DataLakeResourceList: StaticListSchema;
|
|
112
|
+
export declare var DataLakeSourceList: StaticListSchema;
|
|
113
|
+
export declare var DataLakeSourceStatusList: StaticListSchema;
|
|
114
|
+
export declare var LogSourceList: StaticListSchema;
|
|
115
|
+
export declare var LogSourceResourceList: StaticListSchema;
|
|
116
|
+
export declare var OcsfEventClassList: number;
|
|
117
|
+
export declare var RegionList: number;
|
|
118
|
+
export declare var SubscriberResourceList: StaticListSchema;
|
|
119
|
+
export declare var TagKeyList: number;
|
|
120
|
+
export declare var TagList: StaticListSchema;
|
|
121
|
+
export declare var LogSourceResource: StaticStructureSchema;
|
|
122
|
+
export declare var NotificationConfiguration: StaticStructureSchema;
|
|
123
|
+
export declare var CreateAwsLogSource: StaticOperationSchema;
|
|
124
|
+
export declare var CreateCustomLogSource: StaticOperationSchema;
|
|
125
|
+
export declare var CreateDataLake: StaticOperationSchema;
|
|
126
|
+
export declare var CreateDataLakeExceptionSubscription: StaticOperationSchema;
|
|
127
|
+
export declare var CreateDataLakeOrganizationConfiguration: StaticOperationSchema;
|
|
128
|
+
export declare var CreateSubscriber: StaticOperationSchema;
|
|
129
|
+
export declare var CreateSubscriberNotification: StaticOperationSchema;
|
|
130
|
+
export declare var DeleteAwsLogSource: StaticOperationSchema;
|
|
131
|
+
export declare var DeleteCustomLogSource: StaticOperationSchema;
|
|
132
|
+
export declare var DeleteDataLake: StaticOperationSchema;
|
|
133
|
+
export declare var DeleteDataLakeExceptionSubscription: StaticOperationSchema;
|
|
134
|
+
export declare var DeleteDataLakeOrganizationConfiguration: StaticOperationSchema;
|
|
135
|
+
export declare var DeleteSubscriber: StaticOperationSchema;
|
|
136
|
+
export declare var DeleteSubscriberNotification: StaticOperationSchema;
|
|
137
|
+
export declare var DeregisterDataLakeDelegatedAdministrator: StaticOperationSchema;
|
|
138
|
+
export declare var GetDataLakeExceptionSubscription: StaticOperationSchema;
|
|
139
|
+
export declare var GetDataLakeOrganizationConfiguration: StaticOperationSchema;
|
|
140
|
+
export declare var GetDataLakeSources: StaticOperationSchema;
|
|
141
|
+
export declare var GetSubscriber: StaticOperationSchema;
|
|
142
|
+
export declare var ListDataLakeExceptions: StaticOperationSchema;
|
|
143
|
+
export declare var ListDataLakes: StaticOperationSchema;
|
|
144
|
+
export declare var ListLogSources: StaticOperationSchema;
|
|
145
|
+
export declare var ListSubscribers: StaticOperationSchema;
|
|
146
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
147
|
+
export declare var RegisterDataLakeDelegatedAdministrator: StaticOperationSchema;
|
|
148
|
+
export declare var TagResource: StaticOperationSchema;
|
|
149
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
150
|
+
export declare var UpdateDataLake: StaticOperationSchema;
|
|
151
|
+
export declare var UpdateDataLakeExceptionSubscription: StaticOperationSchema;
|
|
152
|
+
export declare var UpdateSubscriber: StaticOperationSchema;
|
|
153
|
+
export declare var UpdateSubscriberNotification: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-securitylake",
|
|
3
3
|
"description": "AWS SDK for JavaScript Securitylake Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.930.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-securitylake",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.930.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.930.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.930.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.930.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|