@aws-sdk/client-finspace-data 3.40.0 → 3.45.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 (94) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/FinspaceData.js +165 -0
  4. package/dist-cjs/commands/CreateDataViewCommand.js +36 -0
  5. package/dist-cjs/commands/CreateDatasetCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteDatasetCommand.js +36 -0
  7. package/dist-cjs/commands/GetChangesetCommand.js +36 -0
  8. package/dist-cjs/commands/GetDataViewCommand.js +36 -0
  9. package/dist-cjs/commands/GetDatasetCommand.js +36 -0
  10. package/dist-cjs/commands/ListChangesetsCommand.js +36 -0
  11. package/dist-cjs/commands/ListDataViewsCommand.js +36 -0
  12. package/dist-cjs/commands/ListDatasetsCommand.js +36 -0
  13. package/dist-cjs/commands/UpdateChangesetCommand.js +36 -0
  14. package/dist-cjs/commands/UpdateDatasetCommand.js +36 -0
  15. package/dist-cjs/commands/index.js +11 -0
  16. package/dist-cjs/endpoints.js +9 -0
  17. package/dist-cjs/index.js +1 -0
  18. package/dist-cjs/models/models_0.js +280 -43
  19. package/dist-cjs/pagination/Interfaces.js +2 -0
  20. package/dist-cjs/pagination/ListChangesetsPaginator.js +35 -0
  21. package/dist-cjs/pagination/ListDataViewsPaginator.js +35 -0
  22. package/dist-cjs/pagination/ListDatasetsPaginator.js +35 -0
  23. package/dist-cjs/pagination/index.js +7 -0
  24. package/dist-cjs/protocols/Aws_restJson1.js +1912 -60
  25. package/dist-es/FinspaceData.js +165 -0
  26. package/dist-es/commands/CreateDataViewCommand.js +39 -0
  27. package/dist-es/commands/CreateDatasetCommand.js +39 -0
  28. package/dist-es/commands/DeleteDatasetCommand.js +39 -0
  29. package/dist-es/commands/GetChangesetCommand.js +39 -0
  30. package/dist-es/commands/GetDataViewCommand.js +39 -0
  31. package/dist-es/commands/GetDatasetCommand.js +39 -0
  32. package/dist-es/commands/ListChangesetsCommand.js +39 -0
  33. package/dist-es/commands/ListDataViewsCommand.js +39 -0
  34. package/dist-es/commands/ListDatasetsCommand.js +39 -0
  35. package/dist-es/commands/UpdateChangesetCommand.js +39 -0
  36. package/dist-es/commands/UpdateDatasetCommand.js +39 -0
  37. package/dist-es/commands/index.js +11 -0
  38. package/dist-es/endpoints.js +9 -0
  39. package/dist-es/index.js +1 -0
  40. package/dist-es/models/models_0.js +206 -38
  41. package/dist-es/pagination/Interfaces.js +1 -0
  42. package/dist-es/pagination/ListChangesetsPaginator.js +74 -0
  43. package/dist-es/pagination/ListDataViewsPaginator.js +74 -0
  44. package/dist-es/pagination/ListDatasetsPaginator.js +74 -0
  45. package/dist-es/pagination/index.js +4 -0
  46. package/dist-es/protocols/Aws_restJson1.js +2109 -104
  47. package/dist-types/FinspaceData.d.ts +82 -5
  48. package/dist-types/FinspaceDataClient.d.ts +14 -3
  49. package/dist-types/commands/CreateChangesetCommand.d.ts +2 -2
  50. package/dist-types/commands/CreateDataViewCommand.d.ts +35 -0
  51. package/dist-types/commands/CreateDatasetCommand.d.ts +35 -0
  52. package/dist-types/commands/DeleteDatasetCommand.d.ts +35 -0
  53. package/dist-types/commands/GetChangesetCommand.d.ts +35 -0
  54. package/dist-types/commands/GetDataViewCommand.d.ts +35 -0
  55. package/dist-types/commands/GetDatasetCommand.d.ts +35 -0
  56. package/dist-types/commands/GetProgrammaticAccessCredentialsCommand.d.ts +2 -2
  57. package/dist-types/commands/GetWorkingLocationCommand.d.ts +3 -3
  58. package/dist-types/commands/ListChangesetsCommand.d.ts +35 -0
  59. package/dist-types/commands/ListDataViewsCommand.d.ts +35 -0
  60. package/dist-types/commands/ListDatasetsCommand.d.ts +35 -0
  61. package/dist-types/commands/UpdateChangesetCommand.d.ts +35 -0
  62. package/dist-types/commands/UpdateDatasetCommand.d.ts +35 -0
  63. package/dist-types/commands/index.d.ts +11 -0
  64. package/dist-types/index.d.ts +1 -0
  65. package/dist-types/models/models_0.d.ts +1438 -242
  66. package/dist-types/pagination/Interfaces.d.ts +6 -0
  67. package/dist-types/pagination/ListChangesetsPaginator.d.ts +4 -0
  68. package/dist-types/pagination/ListDataViewsPaginator.d.ts +4 -0
  69. package/dist-types/pagination/ListDatasetsPaginator.d.ts +4 -0
  70. package/dist-types/pagination/index.d.ts +4 -0
  71. package/dist-types/protocols/Aws_restJson1.d.ts +33 -0
  72. package/dist-types/ts3.4/FinspaceData.d.ts +55 -0
  73. package/dist-types/ts3.4/FinspaceDataClient.d.ts +13 -2
  74. package/dist-types/ts3.4/commands/CreateDataViewCommand.d.ts +17 -0
  75. package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +17 -0
  76. package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +17 -0
  77. package/dist-types/ts3.4/commands/GetChangesetCommand.d.ts +17 -0
  78. package/dist-types/ts3.4/commands/GetDataViewCommand.d.ts +17 -0
  79. package/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +17 -0
  80. package/dist-types/ts3.4/commands/ListChangesetsCommand.d.ts +17 -0
  81. package/dist-types/ts3.4/commands/ListDataViewsCommand.d.ts +17 -0
  82. package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +17 -0
  83. package/dist-types/ts3.4/commands/UpdateChangesetCommand.d.ts +17 -0
  84. package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +17 -0
  85. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  86. package/dist-types/ts3.4/index.d.ts +1 -0
  87. package/dist-types/ts3.4/models/models_0.d.ts +606 -71
  88. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  89. package/dist-types/ts3.4/pagination/ListChangesetsPaginator.d.ts +4 -0
  90. package/dist-types/ts3.4/pagination/ListDataViewsPaginator.d.ts +4 -0
  91. package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +4 -0
  92. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  93. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +33 -0
  94. package/package.json +9 -7
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { FinspaceData } from "../FinspaceData";
3
+ import { FinspaceDataClient } from "../FinspaceDataClient";
4
+ export interface FinspaceDataPaginationConfiguration extends PaginationConfiguration {
5
+ client: FinspaceData | FinspaceDataClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListChangesetsCommandInput, ListChangesetsCommandOutput } from "../commands/ListChangesetsCommand";
3
+ import { FinspaceDataPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListChangesets(config: FinspaceDataPaginationConfiguration, input: ListChangesetsCommandInput, ...additionalArguments: any): Paginator<ListChangesetsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListDataViewsCommandInput, ListDataViewsCommandOutput } from "../commands/ListDataViewsCommand";
3
+ import { FinspaceDataPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListDataViews(config: FinspaceDataPaginationConfiguration, input: ListDataViewsCommandInput, ...additionalArguments: any): Paginator<ListDataViewsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
3
+ import { FinspaceDataPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListDatasets(config: FinspaceDataPaginationConfiguration, input: ListDatasetsCommandInput, ...additionalArguments: any): Paginator<ListDatasetsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListChangesetsPaginator";
3
+ export * from "./ListDataViewsPaginator";
4
+ export * from "./ListDatasetsPaginator";
@@ -1,11 +1,44 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
3
  import { CreateChangesetCommandInput, CreateChangesetCommandOutput } from "../commands/CreateChangesetCommand";
4
+ import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "../commands/CreateDatasetCommand";
5
+ import { CreateDataViewCommandInput, CreateDataViewCommandOutput } from "../commands/CreateDataViewCommand";
6
+ import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
7
+ import { GetChangesetCommandInput, GetChangesetCommandOutput } from "../commands/GetChangesetCommand";
8
+ import { GetDatasetCommandInput, GetDatasetCommandOutput } from "../commands/GetDatasetCommand";
9
+ import { GetDataViewCommandInput, GetDataViewCommandOutput } from "../commands/GetDataViewCommand";
4
10
  import { GetProgrammaticAccessCredentialsCommandInput, GetProgrammaticAccessCredentialsCommandOutput } from "../commands/GetProgrammaticAccessCredentialsCommand";
5
11
  import { GetWorkingLocationCommandInput, GetWorkingLocationCommandOutput } from "../commands/GetWorkingLocationCommand";
12
+ import { ListChangesetsCommandInput, ListChangesetsCommandOutput } from "../commands/ListChangesetsCommand";
13
+ import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
14
+ import { ListDataViewsCommandInput, ListDataViewsCommandOutput } from "../commands/ListDataViewsCommand";
15
+ import { UpdateChangesetCommandInput, UpdateChangesetCommandOutput } from "../commands/UpdateChangesetCommand";
16
+ import { UpdateDatasetCommandInput, UpdateDatasetCommandOutput } from "../commands/UpdateDatasetCommand";
6
17
  export declare const serializeAws_restJson1CreateChangesetCommand: (input: CreateChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1CreateDatasetCommand: (input: CreateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1CreateDataViewCommand: (input: CreateDataViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1GetChangesetCommand: (input: GetChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1GetDatasetCommand: (input: GetDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1GetDataViewCommand: (input: GetDataViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
7
24
  export declare const serializeAws_restJson1GetProgrammaticAccessCredentialsCommand: (input: GetProgrammaticAccessCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
8
25
  export declare const serializeAws_restJson1GetWorkingLocationCommand: (input: GetWorkingLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1ListChangesetsCommand: (input: ListChangesetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1ListDatasetsCommand: (input: ListDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1ListDataViewsCommand: (input: ListDataViewsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1UpdateChangesetCommand: (input: UpdateChangesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1UpdateDatasetCommand: (input: UpdateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
31
  export declare const deserializeAws_restJson1CreateChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChangesetCommandOutput>;
32
+ export declare const deserializeAws_restJson1CreateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetCommandOutput>;
33
+ export declare const deserializeAws_restJson1CreateDataViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataViewCommandOutput>;
34
+ export declare const deserializeAws_restJson1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
35
+ export declare const deserializeAws_restJson1GetChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChangesetCommandOutput>;
36
+ export declare const deserializeAws_restJson1GetDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDatasetCommandOutput>;
37
+ export declare const deserializeAws_restJson1GetDataViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataViewCommandOutput>;
10
38
  export declare const deserializeAws_restJson1GetProgrammaticAccessCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProgrammaticAccessCredentialsCommandOutput>;
11
39
  export declare const deserializeAws_restJson1GetWorkingLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkingLocationCommandOutput>;
40
+ export declare const deserializeAws_restJson1ListChangesetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChangesetsCommandOutput>;
41
+ export declare const deserializeAws_restJson1ListDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetsCommandOutput>;
42
+ export declare const deserializeAws_restJson1ListDataViewsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataViewsCommandOutput>;
43
+ export declare const deserializeAws_restJson1UpdateChangesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChangesetCommandOutput>;
44
+ export declare const deserializeAws_restJson1UpdateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatasetCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-finspace-data",
3
3
  "description": "AWS SDK for JavaScript Finspace Data Client for Node.js, Browser and React Native",
4
- "version": "3.40.0",
4
+ "version": "3.45.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.40.0",
25
- "@aws-sdk/config-resolver": "3.40.0",
26
- "@aws-sdk/credential-provider-node": "3.40.0",
24
+ "@aws-sdk/client-sts": "3.45.0",
25
+ "@aws-sdk/config-resolver": "3.45.0",
26
+ "@aws-sdk/credential-provider-node": "3.45.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",
28
28
  "@aws-sdk/hash-node": "3.40.0",
29
29
  "@aws-sdk/invalid-dependency": "3.40.0",
@@ -32,13 +32,13 @@
32
32
  "@aws-sdk/middleware-logger": "3.40.0",
33
33
  "@aws-sdk/middleware-retry": "3.40.0",
34
34
  "@aws-sdk/middleware-serde": "3.40.0",
35
- "@aws-sdk/middleware-signing": "3.40.0",
35
+ "@aws-sdk/middleware-signing": "3.45.0",
36
36
  "@aws-sdk/middleware-stack": "3.40.0",
37
37
  "@aws-sdk/middleware-user-agent": "3.40.0",
38
38
  "@aws-sdk/node-config-provider": "3.40.0",
39
39
  "@aws-sdk/node-http-handler": "3.40.0",
40
40
  "@aws-sdk/protocol-http": "3.40.0",
41
- "@aws-sdk/smithy-client": "3.40.0",
41
+ "@aws-sdk/smithy-client": "3.41.0",
42
42
  "@aws-sdk/types": "3.40.0",
43
43
  "@aws-sdk/url-parser": "3.40.0",
44
44
  "@aws-sdk/util-base64-browser": "3.37.0",
@@ -49,11 +49,13 @@
49
49
  "@aws-sdk/util-user-agent-node": "3.40.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.37.0",
51
51
  "@aws-sdk/util-utf8-node": "3.37.0",
52
- "tslib": "^2.3.0"
52
+ "tslib": "^2.3.0",
53
+ "uuid": "^8.3.2"
53
54
  },
54
55
  "devDependencies": {
55
56
  "@aws-sdk/service-client-documentation-generator": "3.38.0",
56
57
  "@types/node": "^12.7.5",
58
+ "@types/uuid": "^8.3.0",
57
59
  "downlevel-dts": "0.7.0",
58
60
  "jest": "^26.1.0",
59
61
  "rimraf": "^3.0.0",