@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.
Files changed (37) hide show
  1. package/README.md +27 -11
  2. package/dist-cjs/endpoint/ruleset.js +3 -3
  3. package/dist-es/endpoint/ruleset.js +3 -3
  4. package/dist-types/SecurityLake.d.ts +138 -103
  5. package/dist-types/SecurityLakeClient.d.ts +27 -11
  6. package/dist-types/commands/CreateAwsLogSourceCommand.d.ts +12 -12
  7. package/dist-types/commands/CreateCustomLogSourceCommand.d.ts +6 -6
  8. package/dist-types/commands/CreateDatalakeAutoEnableCommand.d.ts +3 -2
  9. package/dist-types/commands/CreateDatalakeCommand.d.ts +15 -12
  10. package/dist-types/commands/CreateDatalakeDelegatedAdminCommand.d.ts +3 -3
  11. package/dist-types/commands/CreateDatalakeExceptionsSubscriptionCommand.d.ts +2 -2
  12. package/dist-types/commands/CreateSubscriberCommand.d.ts +2 -1
  13. package/dist-types/commands/CreateSubscriptionNotificationConfigurationCommand.d.ts +2 -2
  14. package/dist-types/commands/DeleteAwsLogSourceCommand.d.ts +11 -13
  15. package/dist-types/commands/DeleteCustomLogSourceCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteDatalakeAutoEnableCommand.d.ts +9 -6
  17. package/dist-types/commands/DeleteDatalakeCommand.d.ts +8 -7
  18. package/dist-types/commands/DeleteDatalakeDelegatedAdminCommand.d.ts +3 -1
  19. package/dist-types/commands/DeleteDatalakeExceptionsSubscriptionCommand.d.ts +2 -1
  20. package/dist-types/commands/DeleteSubscriberCommand.d.ts +3 -1
  21. package/dist-types/commands/DeleteSubscriptionNotificationConfigurationCommand.d.ts +2 -2
  22. package/dist-types/commands/GetDatalakeAutoEnableCommand.d.ts +3 -1
  23. package/dist-types/commands/GetDatalakeCommand.d.ts +2 -1
  24. package/dist-types/commands/GetDatalakeExceptionsExpiryCommand.d.ts +3 -2
  25. package/dist-types/commands/GetDatalakeStatusCommand.d.ts +2 -1
  26. package/dist-types/commands/GetSubscriberCommand.d.ts +2 -1
  27. package/dist-types/commands/ListDatalakeExceptionsCommand.d.ts +2 -1
  28. package/dist-types/commands/ListLogSourcesCommand.d.ts +1 -1
  29. package/dist-types/commands/ListSubscribersCommand.d.ts +2 -1
  30. package/dist-types/commands/UpdateDatalakeCommand.d.ts +2 -4
  31. package/dist-types/commands/UpdateDatalakeExceptionsExpiryCommand.d.ts +3 -4
  32. package/dist-types/commands/UpdateDatalakeExceptionsSubscriptionCommand.d.ts +2 -1
  33. package/dist-types/commands/UpdateSubscriberCommand.d.ts +2 -1
  34. package/dist-types/commands/UpdateSubscriptionNotificationConfigurationCommand.d.ts +1 -1
  35. package/dist-types/models/models_0.d.ts +201 -157
  36. package/dist-types/ts3.4/models/models_0.d.ts +1 -1
  37. 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?: SourceType[];
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.241.0",
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",