@aws-sdk/client-finspace-data 3.100.0 → 3.105.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-finspace-data
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class FinspaceDataClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var FinspaceDataClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -89,9 +89,7 @@ export interface CreateChangesetRequest {
89
89
  * </p>
90
90
  * <p>The S3 path that you specify must allow the FinSpace role access. To do that, you first need to configure the IAM policy on S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/finspace/latest/data-api/fs-using-the-finspace-api.html#access-s3-buckets">Loading data from an Amazon S3 Bucket using the FinSpace API</a> section.</p>
91
91
  */
92
- sourceParams: {
93
- [key: string]: string;
94
- } | undefined;
92
+ sourceParams: Record<string, string> | undefined;
95
93
  /**
96
94
  * <p>Options that define the structure of the source file(s) including the format type (<code>formatType</code>), header row (<code>withHeader</code>), data separation character (<code>separator</code>) and the type of compression (<code>compression</code>).
97
95
  * </p>
@@ -140,9 +138,7 @@ export interface CreateChangesetRequest {
140
138
  * </p>
141
139
  * <p> For more information about supported file formats, see <a href="https://docs.aws.amazon.com/finspace/latest/userguide/supported-data-types.html">Supported Data Types and File Formats</a> in the FinSpace User Guide.</p>
142
140
  */
143
- formatParams: {
144
- [key: string]: string;
145
- } | undefined;
141
+ formatParams: Record<string, string> | undefined;
146
142
  }
147
143
  export declare namespace CreateChangesetRequest {
148
144
  /**
@@ -554,9 +550,7 @@ export interface DataViewDestinationTypeParams {
554
550
  * }</code>
555
551
  * </p>
556
552
  */
557
- s3DestinationExportFileFormatOptions?: {
558
- [key: string]: string;
559
- };
553
+ s3DestinationExportFileFormatOptions?: Record<string, string>;
560
554
  }
561
555
  export declare namespace DataViewDestinationTypeParams {
562
556
  /**
@@ -1009,15 +1003,11 @@ export interface GetChangesetResponse {
1009
1003
  /**
1010
1004
  * <p>Options that define the location of the data being ingested.</p>
1011
1005
  */
1012
- sourceParams?: {
1013
- [key: string]: string;
1014
- };
1006
+ sourceParams?: Record<string, string>;
1015
1007
  /**
1016
1008
  * <p>Structure of the source file(s).</p>
1017
1009
  */
1018
- formatParams?: {
1019
- [key: string]: string;
1020
- };
1010
+ formatParams?: Record<string, string>;
1021
1011
  /**
1022
1012
  * <p>The timestamp at which the Changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.</p>
1023
1013
  */
@@ -1618,15 +1608,11 @@ export interface ChangesetSummary {
1618
1608
  /**
1619
1609
  * <p>Options that define the location of the data being ingested.</p>
1620
1610
  */
1621
- sourceParams?: {
1622
- [key: string]: string;
1623
- };
1611
+ sourceParams?: Record<string, string>;
1624
1612
  /**
1625
1613
  * <p>Options that define the structure of the source file(s).</p>
1626
1614
  */
1627
- formatParams?: {
1628
- [key: string]: string;
1629
- };
1615
+ formatParams?: Record<string, string>;
1630
1616
  /**
1631
1617
  * <p>The timestamp at which the Changeset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.</p>
1632
1618
  */
@@ -2228,9 +2214,7 @@ export interface UpdateChangesetRequest {
2228
2214
  * </p>
2229
2215
  * <p>The S3 path that you specify must allow the FinSpace role access. To do that, you first need to configure the IAM policy on S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/finspace/latest/data-api/fs-using-the-finspace-api.html#access-s3-buckets">Loading data from an Amazon S3 Bucket using the FinSpace API</a>section.</p>
2230
2216
  */
2231
- sourceParams: {
2232
- [key: string]: string;
2233
- } | undefined;
2217
+ sourceParams: Record<string, string> | undefined;
2234
2218
  /**
2235
2219
  * <p>Options that define the structure of the source file(s) including the format type (<code>formatType</code>), header row (<code>withHeader</code>), data separation character (<code>separator</code>) and the type of compression (<code>compression</code>).
2236
2220
  * </p>
@@ -2279,9 +2263,7 @@ export interface UpdateChangesetRequest {
2279
2263
  * </p>
2280
2264
  * <p> For more information about supported file formats, see <a href="https://docs.aws.amazon.com/finspace/latest/userguide/supported-data-types.html">Supported Data Types and File Formats</a> in the FinSpace User Guide.</p>
2281
2265
  */
2282
- formatParams: {
2283
- [key: string]: string;
2284
- } | undefined;
2266
+ formatParams: Record<string, string> | undefined;
2285
2267
  }
2286
2268
  export declare namespace UpdateChangesetRequest {
2287
2269
  /**
@@ -42,13 +42,9 @@ export interface CreateChangesetRequest {
42
42
 
43
43
  changeType: ChangeType | string | undefined;
44
44
 
45
- sourceParams: {
46
- [key: string]: string;
47
- } | undefined;
45
+ sourceParams: Record<string, string> | undefined;
48
46
 
49
- formatParams: {
50
- [key: string]: string;
51
- } | undefined;
47
+ formatParams: Record<string, string> | undefined;
52
48
  }
53
49
  export declare namespace CreateChangesetRequest {
54
50
 
@@ -229,9 +225,7 @@ export interface DataViewDestinationTypeParams {
229
225
 
230
226
  s3DestinationExportFileFormat?: ExportFileFormat | string;
231
227
 
232
- s3DestinationExportFileFormatOptions?: {
233
- [key: string]: string;
234
- };
228
+ s3DestinationExportFileFormatOptions?: Record<string, string>;
235
229
  }
236
230
  export declare namespace DataViewDestinationTypeParams {
237
231
 
@@ -447,13 +441,9 @@ export interface GetChangesetResponse {
447
441
 
448
442
  changeType?: ChangeType | string;
449
443
 
450
- sourceParams?: {
451
- [key: string]: string;
452
- };
444
+ sourceParams?: Record<string, string>;
453
445
 
454
- formatParams?: {
455
- [key: string]: string;
456
- };
446
+ formatParams?: Record<string, string>;
457
447
 
458
448
  createTime?: number;
459
449
 
@@ -706,13 +696,9 @@ export interface ChangesetSummary {
706
696
 
707
697
  changeType?: ChangeType | string;
708
698
 
709
- sourceParams?: {
710
- [key: string]: string;
711
- };
699
+ sourceParams?: Record<string, string>;
712
700
 
713
- formatParams?: {
714
- [key: string]: string;
715
- };
701
+ formatParams?: Record<string, string>;
716
702
 
717
703
  createTime?: number;
718
704
 
@@ -967,13 +953,9 @@ export interface UpdateChangesetRequest {
967
953
 
968
954
  changesetId: string | undefined;
969
955
 
970
- sourceParams: {
971
- [key: string]: string;
972
- } | undefined;
956
+ sourceParams: Record<string, string> | undefined;
973
957
 
974
- formatParams: {
975
- [key: string]: string;
976
- } | undefined;
958
+ formatParams: Record<string, string> | undefined;
977
959
  }
978
960
  export declare namespace UpdateChangesetRequest {
979
961
 
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.100.0",
4
+ "version": "3.105.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",
@@ -18,15 +18,16 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.100.0",
21
+ "@aws-sdk/client-sts": "3.105.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.100.0",
23
+ "@aws-sdk/credential-provider-node": "3.105.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
30
31
  "@aws-sdk/middleware-retry": "3.80.0",
31
32
  "@aws-sdk/middleware-serde": "3.78.0",
32
33
  "@aws-sdk/middleware-signing": "3.78.0",