@aws-sdk/client-glue 3.731.0 → 3.733.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.
|
@@ -50,8 +50,11 @@ export interface Action {
|
|
|
50
50
|
Arguments?: Record<string, string> | undefined;
|
|
51
51
|
/**
|
|
52
52
|
* <p>The <code>JobRun</code> timeout in minutes. This is the maximum time that a job run can
|
|
53
|
-
* consume resources before it is terminated and enters <code>TIMEOUT</code> status.
|
|
54
|
-
*
|
|
53
|
+
* consume resources before it is terminated and enters <code>TIMEOUT</code> status. This overrides the timeout value set in the parent job.</p>
|
|
54
|
+
* <p>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.</p>
|
|
55
|
+
* <p>When the value is left blank, the timeout is defaulted to 2880 minutes.</p>
|
|
56
|
+
* <p>Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.</p>
|
|
57
|
+
* <p>For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
55
58
|
* @public
|
|
56
59
|
*/
|
|
57
60
|
Timeout?: number | undefined;
|
|
@@ -7569,6 +7572,7 @@ export interface JobRun {
|
|
|
7569
7572
|
* <p>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.</p>
|
|
7570
7573
|
* <p>When the value is left blank, the timeout is defaulted to 2880 minutes.</p>
|
|
7571
7574
|
* <p>Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.</p>
|
|
7575
|
+
* <p>For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
7572
7576
|
* @public
|
|
7573
7577
|
*/
|
|
7574
7578
|
Timeout?: number | undefined;
|
|
@@ -3188,7 +3188,7 @@ export interface CreateSessionRequest {
|
|
|
3188
3188
|
/**
|
|
3189
3189
|
* <p>
|
|
3190
3190
|
* The number of minutes before session times out. Default for Spark ETL
|
|
3191
|
-
* jobs is 48 hours (2880 minutes)
|
|
3191
|
+
* jobs is 48 hours (2880 minutes).
|
|
3192
3192
|
* Consult the documentation for other job types.
|
|
3193
3193
|
* </p>
|
|
3194
3194
|
* @public
|
|
@@ -485,6 +485,7 @@ export interface StartJobRunRequest {
|
|
|
485
485
|
* <p>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.</p>
|
|
486
486
|
* <p>When the value is left blank, the timeout is defaulted to 2880 minutes.</p>
|
|
487
487
|
* <p>Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.</p>
|
|
488
|
+
* <p>For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
488
489
|
* @public
|
|
489
490
|
*/
|
|
490
491
|
Timeout?: number | undefined;
|
|
@@ -3250,8 +3251,11 @@ export interface CreateJobRequest {
|
|
|
3250
3251
|
/**
|
|
3251
3252
|
* <p>The job timeout in minutes. This is the maximum time that a job run
|
|
3252
3253
|
* can consume resources before it is terminated and enters <code>TIMEOUT</code>
|
|
3253
|
-
* status
|
|
3254
|
-
* <p>
|
|
3254
|
+
* status.</p>
|
|
3255
|
+
* <p>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.</p>
|
|
3256
|
+
* <p>When the value is left blank, the timeout is defaulted to 2880 minutes.</p>
|
|
3257
|
+
* <p>Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.</p>
|
|
3258
|
+
* <p>For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
3255
3259
|
* @public
|
|
3256
3260
|
*/
|
|
3257
3261
|
Timeout?: number | undefined;
|
|
@@ -3504,8 +3508,11 @@ export interface Job {
|
|
|
3504
3508
|
/**
|
|
3505
3509
|
* <p>The job timeout in minutes. This is the maximum time that a job run
|
|
3506
3510
|
* can consume resources before it is terminated and enters <code>TIMEOUT</code>
|
|
3507
|
-
* status
|
|
3508
|
-
* <p>
|
|
3511
|
+
* status.</p>
|
|
3512
|
+
* <p>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.</p>
|
|
3513
|
+
* <p>When the value is left blank, the timeout is defaulted to 2880 minutes.</p>
|
|
3514
|
+
* <p>Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.</p>
|
|
3515
|
+
* <p>For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
3509
3516
|
* @public
|
|
3510
3517
|
*/
|
|
3511
3518
|
Timeout?: number | undefined;
|
|
@@ -3727,8 +3734,11 @@ export interface JobUpdate {
|
|
|
3727
3734
|
/**
|
|
3728
3735
|
* <p>The job timeout in minutes. This is the maximum time that a job run
|
|
3729
3736
|
* can consume resources before it is terminated and enters <code>TIMEOUT</code>
|
|
3730
|
-
* status
|
|
3731
|
-
* <p>
|
|
3737
|
+
* status.</p>
|
|
3738
|
+
* <p>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.</p>
|
|
3739
|
+
* <p>When the value is left blank, the timeout is defaulted to 2880 minutes.</p>
|
|
3740
|
+
* <p>Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day.</p>
|
|
3741
|
+
* <p>For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days.</p>
|
|
3732
3742
|
* @public
|
|
3733
3743
|
*/
|
|
3734
3744
|
Timeout?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glue",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.733.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glue",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.731.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.731.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.731.1",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.731.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.731.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.731.0",
|