@aws-sdk/client-securitylake 3.241.0 → 3.243.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/README.md +27 -11
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-types/SecurityLake.d.ts +138 -103
- package/dist-types/SecurityLakeClient.d.ts +27 -11
- package/dist-types/commands/CreateAwsLogSourceCommand.d.ts +12 -12
- package/dist-types/commands/CreateCustomLogSourceCommand.d.ts +6 -6
- package/dist-types/commands/CreateDatalakeAutoEnableCommand.d.ts +3 -2
- package/dist-types/commands/CreateDatalakeCommand.d.ts +15 -12
- package/dist-types/commands/CreateDatalakeDelegatedAdminCommand.d.ts +3 -3
- package/dist-types/commands/CreateDatalakeExceptionsSubscriptionCommand.d.ts +2 -2
- package/dist-types/commands/CreateSubscriberCommand.d.ts +2 -1
- package/dist-types/commands/CreateSubscriptionNotificationConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAwsLogSourceCommand.d.ts +11 -13
- package/dist-types/commands/DeleteCustomLogSourceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDatalakeAutoEnableCommand.d.ts +9 -6
- package/dist-types/commands/DeleteDatalakeCommand.d.ts +8 -7
- package/dist-types/commands/DeleteDatalakeDelegatedAdminCommand.d.ts +3 -1
- package/dist-types/commands/DeleteDatalakeExceptionsSubscriptionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +3 -1
- package/dist-types/commands/DeleteSubscriptionNotificationConfigurationCommand.d.ts +2 -2
- package/dist-types/commands/GetDatalakeAutoEnableCommand.d.ts +3 -1
- package/dist-types/commands/GetDatalakeCommand.d.ts +2 -1
- package/dist-types/commands/GetDatalakeExceptionsExpiryCommand.d.ts +3 -2
- package/dist-types/commands/GetDatalakeStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetSubscriberCommand.d.ts +2 -1
- package/dist-types/commands/ListDatalakeExceptionsCommand.d.ts +2 -1
- package/dist-types/commands/ListLogSourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscribersCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDatalakeCommand.d.ts +2 -4
- package/dist-types/commands/UpdateDatalakeExceptionsExpiryCommand.d.ts +3 -4
- package/dist-types/commands/UpdateDatalakeExceptionsSubscriptionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSubscriptionNotificationConfigurationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +201 -157
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/package.json +1 -1
|
@@ -514,7 +514,7 @@ export interface UpdateDatalakeExceptionsSubscriptionRequest {
|
|
|
514
514
|
export interface UpdateDatalakeExceptionsSubscriptionResponse {}
|
|
515
515
|
export interface UpdateSubscriberRequest {
|
|
516
516
|
id: string | undefined;
|
|
517
|
-
sourceTypes
|
|
517
|
+
sourceTypes: SourceType[] | undefined;
|
|
518
518
|
externalId?: string;
|
|
519
519
|
subscriberName?: string;
|
|
520
520
|
subscriberDescription?: string;
|
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.243.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|