@aws-sdk/client-redshift-serverless 3.296.0 → 3.297.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 (53) hide show
  1. package/dist-types/RedshiftServerless.d.ts +41 -0
  2. package/dist-types/RedshiftServerlessClient.d.ts +24 -4
  3. package/dist-types/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateEndpointAccessCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateNamespaceCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateUsageLimitCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateWorkgroupCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteUsageLimitCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteWorkgroupCommand.d.ts +16 -0
  15. package/dist-types/commands/GetCredentialsCommand.d.ts +16 -0
  16. package/dist-types/commands/GetEndpointAccessCommand.d.ts +16 -0
  17. package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
  18. package/dist-types/commands/GetRecoveryPointCommand.d.ts +16 -0
  19. package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
  20. package/dist-types/commands/GetSnapshotCommand.d.ts +16 -0
  21. package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +16 -0
  22. package/dist-types/commands/GetUsageLimitCommand.d.ts +16 -0
  23. package/dist-types/commands/GetWorkgroupCommand.d.ts +16 -0
  24. package/dist-types/commands/ListEndpointAccessCommand.d.ts +16 -0
  25. package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListRecoveryPointsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListSnapshotsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +16 -0
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/ListUsageLimitsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListWorkgroupsCommand.d.ts +16 -0
  32. package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
  33. package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +16 -0
  34. package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +16 -0
  35. package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +16 -0
  36. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateNamespaceCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateUsageLimitCommand.d.ts +16 -0
  42. package/dist-types/commands/UpdateWorkgroupCommand.d.ts +16 -0
  43. package/dist-types/models/RedshiftServerlessServiceException.d.ts +2 -0
  44. package/dist-types/models/models_0.d.ts +289 -4
  45. package/dist-types/pagination/Interfaces.d.ts +3 -0
  46. package/dist-types/pagination/ListEndpointAccessPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListRecoveryPointsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListSnapshotsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListTableRestoreStatusPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListUsageLimitsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListWorkgroupsPaginator.d.ts +3 -0
  53. package/package.json +3 -3
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { RedshiftServerlessClient } from "../RedshiftServerlessClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface RedshiftServerlessPaginationConfiguration extends PaginationConfiguration {
4
7
  client: RedshiftServerlessClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListEndpointAccessCommandInput, ListEndpointAccessCommandOutput } from "../commands/ListEndpointAccessCommand";
3
3
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListEndpointAccess(config: RedshiftServerlessPaginationConfiguration, input: ListEndpointAccessCommandInput, ...additionalArguments: any): Paginator<ListEndpointAccessCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "../commands/ListNamespacesCommand";
3
3
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListNamespaces(config: RedshiftServerlessPaginationConfiguration, input: ListNamespacesCommandInput, ...additionalArguments: any): Paginator<ListNamespacesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListRecoveryPointsCommandInput, ListRecoveryPointsCommandOutput } from "../commands/ListRecoveryPointsCommand";
3
3
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListRecoveryPoints(config: RedshiftServerlessPaginationConfiguration, input: ListRecoveryPointsCommandInput, ...additionalArguments: any): Paginator<ListRecoveryPointsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListSnapshotsCommandInput, ListSnapshotsCommandOutput } from "../commands/ListSnapshotsCommand";
3
3
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListSnapshots(config: RedshiftServerlessPaginationConfiguration, input: ListSnapshotsCommandInput, ...additionalArguments: any): Paginator<ListSnapshotsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTableRestoreStatusCommandInput, ListTableRestoreStatusCommandOutput } from "../commands/ListTableRestoreStatusCommand";
3
3
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTableRestoreStatus(config: RedshiftServerlessPaginationConfiguration, input: ListTableRestoreStatusCommandInput, ...additionalArguments: any): Paginator<ListTableRestoreStatusCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListUsageLimitsCommandInput, ListUsageLimitsCommandOutput } from "../commands/ListUsageLimitsCommand";
3
3
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListUsageLimits(config: RedshiftServerlessPaginationConfiguration, input: ListUsageLimitsCommandInput, ...additionalArguments: any): Paginator<ListUsageLimitsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListWorkgroupsCommandInput, ListWorkgroupsCommandOutput } from "../commands/ListWorkgroupsCommand";
3
3
  import { RedshiftServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListWorkgroups(config: RedshiftServerlessPaginationConfiguration, input: ListWorkgroupsCommandInput, ...additionalArguments: any): Paginator<ListWorkgroupsCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-redshift-serverless",
3
3
  "description": "AWS SDK for JavaScript Redshift Serverless Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.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",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",