@aws-sdk/client-redshift-serverless 3.968.0 → 3.970.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.
@@ -31,7 +31,7 @@ export interface Association {
31
31
  */
32
32
  export interface ConfigParameter {
33
33
  /**
34
- * <p>The key of the parameter. The options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitive_identifier</code>, <code>enable_user_activity_logging</code>, <code>query_group</code>, <code>search_path</code>, <code>require_ssl</code>, <code>use_fips_ssl</code>, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless">Query monitoring metrics for Amazon Redshift Serverless</a>.</p>
34
+ * <p>The key of the parameter. The options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitive_identifier</code>, <code>enable_user_activity_logging</code>, <code>query_group</code>, <code>search_path</code>, <code>require_ssl</code>, <code>use_fips_ssl</code>, and either <code>wlm_json_configuration</code> or query monitoring metrics that let you define performance boundaries. You can either specify individual query monitoring metrics (such as <code>max_scan_row_count</code>, <code>max_query_execution_time</code>) or use <code>wlm_json_configuration</code> to define query queues with rules, but not both. For more information about query monitoring rules and available metrics, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless">Query monitoring metrics for Amazon Redshift Serverless</a>.</p>
35
35
  * @public
36
36
  */
37
37
  parameterKey?: string | undefined;
@@ -1133,7 +1133,7 @@ export interface CreateWorkgroupRequest {
1133
1133
  */
1134
1134
  enhancedVpcRouting?: boolean | undefined;
1135
1135
  /**
1136
- * <p>An array of parameters to set for advanced control over a database. The options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitive_identifier</code>, <code>enable_user_activity_logging</code>, <code>query_group</code>, <code>search_path</code>, <code>require_ssl</code>, <code>use_fips_ssl</code>, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless"> Query monitoring metrics for Amazon Redshift Serverless</a>.</p>
1136
+ * <p>An array of parameters to set for advanced control over a database. The options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitive_identifier</code>, <code>enable_user_activity_logging</code>, <code>query_group</code>, <code>search_path</code>, <code>require_ssl</code>, <code>use_fips_ssl</code>, and either <code>wlm_json_configuration</code> or query monitoring metrics that let you define performance boundaries. You can either specify individual query monitoring metrics (such as <code>max_scan_row_count</code>, <code>max_query_execution_time</code>) or use <code>wlm_json_configuration</code> to define query queues with rules, but not both. If you're using <code>wlm_json_configuration</code>, the maximum size of <code>parameterValue</code> is 8000 characters. For more information about query monitoring rules and available metrics, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless"> Query monitoring metrics for Amazon Redshift Serverless</a>.</p>
1137
1137
  * @public
1138
1138
  */
1139
1139
  configParameters?: ConfigParameter[] | undefined;
@@ -1182,6 +1182,11 @@ export interface CreateWorkgroupRequest {
1182
1182
  * @public
1183
1183
  */
1184
1184
  trackName?: string | undefined;
1185
+ /**
1186
+ * <p>If <code>true</code>, allocates additional compute resources for running automatic optimization operations.</p> <p>Default: false</p>
1187
+ * @public
1188
+ */
1189
+ extraComputeForAutomaticOptimization?: boolean | undefined;
1185
1190
  }
1186
1191
  /**
1187
1192
  * <p>The VPC endpoint object.</p>
@@ -1240,7 +1245,7 @@ export interface Workgroup {
1240
1245
  */
1241
1246
  enhancedVpcRouting?: boolean | undefined;
1242
1247
  /**
1243
- * <p>An array of parameters to set for advanced control over a database. The options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitive_identifier</code>, <code>enable_user_activity_logging</code>, <code>query_group</code>, <code>search_path</code>, <code>require_ssl</code>, <code>use_fips_ssl</code>, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless"> Query monitoring metrics for Amazon Redshift Serverless</a>.</p>
1248
+ * <p>An array of parameters to set for advanced control over a database. The options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitive_identifier</code>, <code>enable_user_activity_logging</code>, <code>query_group</code>, <code>search_path</code>, <code>require_ssl</code>, <code>use_fips_ssl</code>, and either <code>wlm_json_configuration</code> or query monitoring metrics that let you define performance boundaries. You can either specify individual query monitoring metrics (such as <code>max_scan_row_count</code>, <code>max_query_execution_time</code>) or use <code>wlm_json_configuration</code> to define query queues with rules, but not both. If you're using <code>wlm_json_configuration</code>, the maximum size of <code>parameterValue</code> is 8000 characters. For more information about query monitoring rules and available metrics, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless"> Query monitoring metrics for Amazon Redshift Serverless</a>.</p>
1244
1249
  * @public
1245
1250
  */
1246
1251
  configParameters?: ConfigParameter[] | undefined;
@@ -1334,6 +1339,11 @@ export interface Workgroup {
1334
1339
  * @public
1335
1340
  */
1336
1341
  pendingTrackName?: string | undefined;
1342
+ /**
1343
+ * <p>A boolean value that, if <code>true</code>, indicates that the workgroup allocates additional compute resources to run automatic optimization operations.</p> <p>Default: false</p>
1344
+ * @public
1345
+ */
1346
+ extraComputeForAutomaticOptimization?: boolean | undefined;
1337
1347
  }
1338
1348
  /**
1339
1349
  * @public
@@ -3302,7 +3312,7 @@ export interface UpdateWorkgroupRequest {
3302
3312
  */
3303
3313
  enhancedVpcRouting?: boolean | undefined;
3304
3314
  /**
3305
- * <p>An array of parameters to set for advanced control over a database. The options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitive_identifier</code>, <code>enable_user_activity_logging</code>, <code>query_group</code>, <code>search_path</code>, <code>require_ssl</code>, <code>use_fips_ssl</code>, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless"> Query monitoring metrics for Amazon Redshift Serverless</a>.</p>
3315
+ * <p>An array of parameters to set for advanced control over a database. The options are <code>auto_mv</code>, <code>datestyle</code>, <code>enable_case_sensitive_identifier</code>, <code>enable_user_activity_logging</code>, <code>query_group</code>, <code>search_path</code>, <code>require_ssl</code>, <code>use_fips_ssl</code>, and either <code>wlm_json_configuration</code> or query monitoring metrics that let you define performance boundaries. You can either specify individual query monitoring metrics (such as <code>max_scan_row_count</code>, <code>max_query_execution_time</code>) or use <code>wlm_json_configuration</code> to define query queues with rules, but not both. If you're using <code>wlm_json_configuration</code>, the maximum size of <code>parameterValue</code> is 8000 characters. For more information about query monitoring rules and available metrics, see <a href="https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless"> Query monitoring metrics for Amazon Redshift Serverless</a>.</p>
3306
3316
  * @public
3307
3317
  */
3308
3318
  configParameters?: ConfigParameter[] | undefined;
@@ -3346,6 +3356,11 @@ export interface UpdateWorkgroupRequest {
3346
3356
  * @public
3347
3357
  */
3348
3358
  trackName?: string | undefined;
3359
+ /**
3360
+ * <p>If <code>true</code>, allocates additional compute resources for running automatic optimization operations.</p> <p>Default: false</p>
3361
+ * @public
3362
+ */
3363
+ extraComputeForAutomaticOptimization?: boolean | undefined;
3349
3364
  }
3350
3365
  /**
3351
3366
  * @public
@@ -308,6 +308,7 @@ export interface CreateWorkgroupRequest {
308
308
  pricePerformanceTarget?: PerformanceTarget | undefined;
309
309
  ipAddressType?: string | undefined;
310
310
  trackName?: string | undefined;
311
+ extraComputeForAutomaticOptimization?: boolean | undefined;
311
312
  }
312
313
  export interface Endpoint {
313
314
  address?: string | undefined;
@@ -340,6 +341,7 @@ export interface Workgroup {
340
341
  pricePerformanceTarget?: PerformanceTarget | undefined;
341
342
  trackName?: string | undefined;
342
343
  pendingTrackName?: string | undefined;
344
+ extraComputeForAutomaticOptimization?: boolean | undefined;
343
345
  }
344
346
  export interface CreateWorkgroupResponse {
345
347
  workgroup?: Workgroup | undefined;
@@ -854,6 +856,7 @@ export interface UpdateWorkgroupRequest {
854
856
  ipAddressType?: string | undefined;
855
857
  pricePerformanceTarget?: PerformanceTarget | undefined;
856
858
  trackName?: string | undefined;
859
+ extraComputeForAutomaticOptimization?: boolean | undefined;
857
860
  }
858
861
  export interface UpdateWorkgroupResponse {
859
862
  workgroup: Workgroup | undefined;
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.968.0",
4
+ "version": "3.970.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-redshift-serverless",
@@ -21,41 +21,41 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "3.968.0",
25
- "@aws-sdk/credential-provider-node": "3.968.0",
26
- "@aws-sdk/middleware-host-header": "3.968.0",
27
- "@aws-sdk/middleware-logger": "3.968.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.968.0",
29
- "@aws-sdk/middleware-user-agent": "3.968.0",
30
- "@aws-sdk/region-config-resolver": "3.968.0",
31
- "@aws-sdk/types": "3.968.0",
32
- "@aws-sdk/util-endpoints": "3.968.0",
33
- "@aws-sdk/util-user-agent-browser": "3.968.0",
34
- "@aws-sdk/util-user-agent-node": "3.968.0",
35
- "@smithy/config-resolver": "^4.4.5",
36
- "@smithy/core": "^3.20.3",
37
- "@smithy/fetch-http-handler": "^5.3.8",
38
- "@smithy/hash-node": "^4.2.7",
39
- "@smithy/invalid-dependency": "^4.2.7",
40
- "@smithy/middleware-content-length": "^4.2.7",
41
- "@smithy/middleware-endpoint": "^4.4.4",
42
- "@smithy/middleware-retry": "^4.4.20",
43
- "@smithy/middleware-serde": "^4.2.8",
44
- "@smithy/middleware-stack": "^4.2.7",
45
- "@smithy/node-config-provider": "^4.3.7",
46
- "@smithy/node-http-handler": "^4.4.7",
47
- "@smithy/protocol-http": "^5.3.7",
48
- "@smithy/smithy-client": "^4.10.5",
49
- "@smithy/types": "^4.11.0",
50
- "@smithy/url-parser": "^4.2.7",
24
+ "@aws-sdk/core": "3.970.0",
25
+ "@aws-sdk/credential-provider-node": "3.970.0",
26
+ "@aws-sdk/middleware-host-header": "3.969.0",
27
+ "@aws-sdk/middleware-logger": "3.969.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.969.0",
29
+ "@aws-sdk/middleware-user-agent": "3.970.0",
30
+ "@aws-sdk/region-config-resolver": "3.969.0",
31
+ "@aws-sdk/types": "3.969.0",
32
+ "@aws-sdk/util-endpoints": "3.970.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.969.0",
34
+ "@aws-sdk/util-user-agent-node": "3.970.0",
35
+ "@smithy/config-resolver": "^4.4.6",
36
+ "@smithy/core": "^3.20.6",
37
+ "@smithy/fetch-http-handler": "^5.3.9",
38
+ "@smithy/hash-node": "^4.2.8",
39
+ "@smithy/invalid-dependency": "^4.2.8",
40
+ "@smithy/middleware-content-length": "^4.2.8",
41
+ "@smithy/middleware-endpoint": "^4.4.7",
42
+ "@smithy/middleware-retry": "^4.4.23",
43
+ "@smithy/middleware-serde": "^4.2.9",
44
+ "@smithy/middleware-stack": "^4.2.8",
45
+ "@smithy/node-config-provider": "^4.3.8",
46
+ "@smithy/node-http-handler": "^4.4.8",
47
+ "@smithy/protocol-http": "^5.3.8",
48
+ "@smithy/smithy-client": "^4.10.8",
49
+ "@smithy/types": "^4.12.0",
50
+ "@smithy/url-parser": "^4.2.8",
51
51
  "@smithy/util-base64": "^4.3.0",
52
52
  "@smithy/util-body-length-browser": "^4.2.0",
53
53
  "@smithy/util-body-length-node": "^4.2.1",
54
- "@smithy/util-defaults-mode-browser": "^4.3.19",
55
- "@smithy/util-defaults-mode-node": "^4.2.22",
56
- "@smithy/util-endpoints": "^3.2.7",
57
- "@smithy/util-middleware": "^4.2.7",
58
- "@smithy/util-retry": "^4.2.7",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.22",
55
+ "@smithy/util-defaults-mode-node": "^4.2.25",
56
+ "@smithy/util-endpoints": "^3.2.8",
57
+ "@smithy/util-middleware": "^4.2.8",
58
+ "@smithy/util-retry": "^4.2.8",
59
59
  "@smithy/util-utf8": "^4.2.0",
60
60
  "tslib": "^2.6.2"
61
61
  },