@aws-sdk/client-kinesis-analytics-v2 3.213.0 → 3.216.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.
@@ -173,6 +173,7 @@ var RuntimeEnvironment;
173
173
  (function (RuntimeEnvironment) {
174
174
  RuntimeEnvironment["FLINK_1_11"] = "FLINK-1_11";
175
175
  RuntimeEnvironment["FLINK_1_13"] = "FLINK-1_13";
176
+ RuntimeEnvironment["FLINK_1_15"] = "FLINK-1_15";
176
177
  RuntimeEnvironment["FLINK_1_6"] = "FLINK-1_6";
177
178
  RuntimeEnvironment["FLINK_1_8"] = "FLINK-1_8";
178
179
  RuntimeEnvironment["SQL_1_0"] = "SQL-1_0";
@@ -1002,6 +1002,9 @@ const deserializeAws_json1_1DeleteApplicationSnapshotCommandError = async (outpu
1002
1002
  };
1003
1003
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
1004
1004
  switch (errorCode) {
1005
+ case "ConcurrentModificationException":
1006
+ case "com.amazonaws.kinesisanalyticsv2#ConcurrentModificationException":
1007
+ throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
1005
1008
  case "InvalidArgumentException":
1006
1009
  case "com.amazonaws.kinesisanalyticsv2#InvalidArgumentException":
1007
1010
  throw await deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context);
@@ -159,6 +159,7 @@ export var RuntimeEnvironment;
159
159
  (function (RuntimeEnvironment) {
160
160
  RuntimeEnvironment["FLINK_1_11"] = "FLINK-1_11";
161
161
  RuntimeEnvironment["FLINK_1_13"] = "FLINK-1_13";
162
+ RuntimeEnvironment["FLINK_1_15"] = "FLINK-1_15";
162
163
  RuntimeEnvironment["FLINK_1_6"] = "FLINK-1_6";
163
164
  RuntimeEnvironment["FLINK_1_8"] = "FLINK-1_8";
164
165
  RuntimeEnvironment["SQL_1_0"] = "SQL-1_0";
@@ -952,6 +952,9 @@ const deserializeAws_json1_1DeleteApplicationSnapshotCommandError = async (outpu
952
952
  };
953
953
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
954
954
  switch (errorCode) {
955
+ case "ConcurrentModificationException":
956
+ case "com.amazonaws.kinesisanalyticsv2#ConcurrentModificationException":
957
+ throw await deserializeAws_json1_1ConcurrentModificationExceptionResponse(parsedOutput, context);
955
958
  case "InvalidArgumentException":
956
959
  case "com.amazonaws.kinesisanalyticsv2#InvalidArgumentException":
957
960
  throw await deserializeAws_json1_1InvalidArgumentExceptionResponse(parsedOutput, context);
@@ -122,8 +122,7 @@ export declare class KinesisAnalyticsV2 extends KinesisAnalyticsV2Client {
122
122
  createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
123
123
  /**
124
124
  * <p>Creates and returns a URL that you can use to connect to
125
- * an application's extension. Currently, the only
126
- * available extension is the Apache Flink dashboard.</p>
125
+ * an application's extension.</p>
127
126
  * <p>The IAM role or user used to call this API defines the permissions to access the
128
127
  * extension. After the presigned URL is created, no additional permission is required to access
129
128
  * this URL. IAM authorization policies for this API are also enforced for every HTTP request
@@ -9,8 +9,7 @@ export interface CreateApplicationPresignedUrlCommandOutput extends CreateApplic
9
9
  }
10
10
  /**
11
11
  * <p>Creates and returns a URL that you can use to connect to
12
- * an application's extension. Currently, the only
13
- * available extension is the Apache Flink dashboard.</p>
12
+ * an application's extension.</p>
14
13
  * <p>The IAM role or user used to call this API defines the permissions to access the
15
14
  * extension. After the presigned URL is created, no additional permission is required to access
16
15
  * this URL. IAM authorization policies for this API are also enforced for every HTTP request
@@ -2428,6 +2428,7 @@ export declare enum ApplicationStatus {
2428
2428
  export declare enum RuntimeEnvironment {
2429
2429
  FLINK_1_11 = "FLINK-1_11",
2430
2430
  FLINK_1_13 = "FLINK-1_13",
2431
+ FLINK_1_15 = "FLINK-1_15",
2431
2432
  FLINK_1_6 = "FLINK-1_6",
2432
2433
  FLINK_1_8 = "FLINK-1_8",
2433
2434
  SQL_1_0 = "SQL-1_0",
@@ -2452,7 +2453,7 @@ export interface ApplicationDetail {
2452
2453
  */
2453
2454
  ApplicationName: string | undefined;
2454
2455
  /**
2455
- * <p>The runtime environment for the application (<code>SQL-1_0</code>, <code>FLINK-1_6</code>, <code>FLINK-1_8</code>, or <code>FLINK-1_11</code>).</p>
2456
+ * <p>The runtime environment for the application.</p>
2456
2457
  */
2457
2458
  RuntimeEnvironment: RuntimeEnvironment | string | undefined;
2458
2459
  /**
@@ -2605,7 +2606,7 @@ export interface CreateApplicationRequest {
2605
2606
  */
2606
2607
  ApplicationDescription?: string;
2607
2608
  /**
2608
- * <p>The runtime environment for the application (<code>SQL-1_0</code>, <code>FLINK-1_6</code>, <code>FLINK-1_8</code>, or <code>FLINK-1_11</code>).</p>
2609
+ * <p>The runtime environment for the application.</p>
2609
2610
  */
2610
2611
  RuntimeEnvironment: RuntimeEnvironment | string | undefined;
2611
2612
  /**
@@ -2632,7 +2633,7 @@ export interface CreateApplicationRequest {
2632
2633
  */
2633
2634
  Tags?: Tag[];
2634
2635
  /**
2635
- * <p>Use the <code>STREAMING</code> mode to create a Kinesis Data Analytics Studio notebook. To create a Kinesis Data Analytics Studio notebook, use the
2636
+ * <p>Use the <code>STREAMING</code> mode to create a Kinesis Data Analytics For Flink application. To create a Kinesis Data Analytics Studio notebook, use the
2636
2637
  * <code>INTERACTIVE</code> mode.</p>
2637
2638
  */
2638
2639
  ApplicationMode?: ApplicationMode | string;
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: KinesisAnalyticsV2ClientConfig)
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
38
38
  systemClockOffset?: number | undefined;
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: KinesisAnalyticsV2ClientConfig)
32
32
  }) => import("@aws-sdk/types").EndpointV2;
33
33
  tls?: boolean | undefined;
34
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
36
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
37
  signingEscapePath?: boolean | undefined;
38
38
  systemClockOffset?: number | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: KinesisAnalyticsV2ClientConfig)
31
31
  }) => import("@aws-sdk/types").EndpointV2;
32
32
  tls?: boolean | undefined;
33
33
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
34
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
35
35
  signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
36
36
  signingEscapePath?: boolean | undefined;
37
37
  systemClockOffset?: number | undefined;
@@ -679,6 +679,7 @@ export declare enum ApplicationStatus {
679
679
  export declare enum RuntimeEnvironment {
680
680
  FLINK_1_11 = "FLINK-1_11",
681
681
  FLINK_1_13 = "FLINK-1_13",
682
+ FLINK_1_15 = "FLINK-1_15",
682
683
  FLINK_1_6 = "FLINK-1_6",
683
684
  FLINK_1_8 = "FLINK-1_8",
684
685
  SQL_1_0 = "SQL-1_0",
@@ -66,8 +66,10 @@ export declare const getRuntimeConfig: (
66
66
  tls?: boolean | undefined;
67
67
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
68
68
  credentials?:
69
- | import("@aws-sdk/types").Credentials
70
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
69
+ | import("@aws-sdk/types").AwsCredentialIdentity
70
+ | import("@aws-sdk/types").Provider<
71
+ import("@aws-sdk/types").AwsCredentialIdentity
72
+ >
71
73
  | undefined;
72
74
  signer?:
73
75
  | import("@aws-sdk/types").RequestSigner
@@ -66,8 +66,10 @@ export declare const getRuntimeConfig: (
66
66
  tls?: boolean | undefined;
67
67
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
68
68
  credentials?:
69
- | import("@aws-sdk/types").Credentials
70
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
69
+ | import("@aws-sdk/types").AwsCredentialIdentity
70
+ | import("@aws-sdk/types").Provider<
71
+ import("@aws-sdk/types").AwsCredentialIdentity
72
+ >
71
73
  | undefined;
72
74
  signer?:
73
75
  | import("@aws-sdk/types").RequestSigner
@@ -55,8 +55,10 @@ export declare const getRuntimeConfig: (
55
55
  tls?: boolean | undefined;
56
56
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
57
57
  credentials?:
58
- | import("@aws-sdk/types").Credentials
59
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
58
+ | import("@aws-sdk/types").AwsCredentialIdentity
59
+ | import("@aws-sdk/types").Provider<
60
+ import("@aws-sdk/types").AwsCredentialIdentity
61
+ >
60
62
  | undefined;
61
63
  signer?:
62
64
  | import("@aws-sdk/types").RequestSigner
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-analytics-v2",
3
3
  "description": "AWS SDK for JavaScript Kinesis Analytics V2 Client for Node.js, Browser and React Native",
4
- "version": "3.213.0",
4
+ "version": "3.216.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",
@@ -19,36 +19,36 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.213.0",
23
- "@aws-sdk/config-resolver": "3.212.0",
24
- "@aws-sdk/credential-provider-node": "3.212.0",
25
- "@aws-sdk/fetch-http-handler": "3.212.0",
26
- "@aws-sdk/hash-node": "3.212.0",
27
- "@aws-sdk/invalid-dependency": "3.212.0",
28
- "@aws-sdk/middleware-content-length": "3.212.0",
29
- "@aws-sdk/middleware-endpoint": "3.212.0",
30
- "@aws-sdk/middleware-host-header": "3.212.0",
31
- "@aws-sdk/middleware-logger": "3.212.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.212.0",
33
- "@aws-sdk/middleware-retry": "3.212.0",
34
- "@aws-sdk/middleware-serde": "3.212.0",
35
- "@aws-sdk/middleware-signing": "3.212.0",
36
- "@aws-sdk/middleware-stack": "3.212.0",
37
- "@aws-sdk/middleware-user-agent": "3.212.0",
38
- "@aws-sdk/node-config-provider": "3.212.0",
39
- "@aws-sdk/node-http-handler": "3.212.0",
40
- "@aws-sdk/protocol-http": "3.212.0",
41
- "@aws-sdk/smithy-client": "3.212.0",
42
- "@aws-sdk/types": "3.212.0",
43
- "@aws-sdk/url-parser": "3.212.0",
22
+ "@aws-sdk/client-sts": "3.216.0",
23
+ "@aws-sdk/config-resolver": "3.215.0",
24
+ "@aws-sdk/credential-provider-node": "3.216.0",
25
+ "@aws-sdk/fetch-http-handler": "3.215.0",
26
+ "@aws-sdk/hash-node": "3.215.0",
27
+ "@aws-sdk/invalid-dependency": "3.215.0",
28
+ "@aws-sdk/middleware-content-length": "3.215.0",
29
+ "@aws-sdk/middleware-endpoint": "3.215.0",
30
+ "@aws-sdk/middleware-host-header": "3.215.0",
31
+ "@aws-sdk/middleware-logger": "3.215.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.215.0",
33
+ "@aws-sdk/middleware-retry": "3.215.0",
34
+ "@aws-sdk/middleware-serde": "3.215.0",
35
+ "@aws-sdk/middleware-signing": "3.215.0",
36
+ "@aws-sdk/middleware-stack": "3.215.0",
37
+ "@aws-sdk/middleware-user-agent": "3.215.0",
38
+ "@aws-sdk/node-config-provider": "3.215.0",
39
+ "@aws-sdk/node-http-handler": "3.215.0",
40
+ "@aws-sdk/protocol-http": "3.215.0",
41
+ "@aws-sdk/smithy-client": "3.215.0",
42
+ "@aws-sdk/types": "3.215.0",
43
+ "@aws-sdk/url-parser": "3.215.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.212.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.212.0",
49
- "@aws-sdk/util-endpoints": "3.212.0",
50
- "@aws-sdk/util-user-agent-browser": "3.212.0",
51
- "@aws-sdk/util-user-agent-node": "3.212.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.215.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.215.0",
49
+ "@aws-sdk/util-endpoints": "3.216.0",
50
+ "@aws-sdk/util-user-agent-browser": "3.215.0",
51
+ "@aws-sdk/util-user-agent-node": "3.215.0",
52
52
  "@aws-sdk/util-utf8-browser": "3.188.0",
53
53
  "@aws-sdk/util-utf8-node": "3.208.0",
54
54
  "tslib": "^2.3.1"