@aws-sdk/client-glue 3.714.0 → 3.718.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.
@@ -39,6 +39,7 @@ declare const GetCatalogsCommand_base: {
39
39
  * NextToken: "STRING_VALUE",
40
40
  * MaxResults: Number("int"),
41
41
  * Recursive: true || false,
42
+ * IncludeRoot: true || false,
42
43
  * };
43
44
  * const command = new GetCatalogsCommand(input);
44
45
  * const response = await client.send(command);
@@ -7566,7 +7566,9 @@ export interface JobRun {
7566
7566
  /**
7567
7567
  * <p>The <code>JobRun</code> timeout in minutes. This is the maximum time that a job run can
7568
7568
  * consume resources before it is terminated and enters <code>TIMEOUT</code> status. This value overrides the timeout value set in the parent job.</p>
7569
- * <p>Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.</p>
7569
+ * <p>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.</p>
7570
+ * <p>When the value is left blank, the timeout is defaulted to 2880 minutes.</p>
7571
+ * <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>
7570
7572
  * @public
7571
7573
  */
7572
7574
  Timeout?: number | undefined;
@@ -5922,10 +5922,16 @@ export interface GetCatalogsRequest {
5922
5922
  */
5923
5923
  MaxResults?: number | undefined;
5924
5924
  /**
5925
- * <p>When specified as true, iterates through the account and returns all catalog resources (including top-level resources and child resources)</p>
5925
+ * <p>Whether to list all catalogs across the catalog hierarchy, starting from the <code>ParentCatalogId</code>. Defaults to <code>false</code> . When <code>true</code>, all catalog objects in the <code>ParentCatalogID</code> hierarchy are enumerated in the response.</p>
5926
5926
  * @public
5927
5927
  */
5928
5928
  Recursive?: boolean | undefined;
5929
+ /**
5930
+ * <p>Whether to list the default catalog in the account and region in the response. Defaults to <code>false</code>. When <code>true</code> and <code>ParentCatalogId = NULL | Amazon Web Services Account ID</code>, all catalogs and the default catalog are enumerated in the response.</p>
5931
+ * <p>When the <code>ParentCatalogId</code> is not equal to null, and this attribute is passed as <code>false</code> or <code>true</code>, an <code>InvalidInputException</code> is thrown.</p>
5932
+ * @public
5933
+ */
5934
+ IncludeRoot?: boolean | undefined;
5929
5935
  }
5930
5936
  /**
5931
5937
  * @public
@@ -482,7 +482,9 @@ export interface StartJobRunRequest {
482
482
  /**
483
483
  * <p>The <code>JobRun</code> timeout in minutes. This is the maximum time that a job run can
484
484
  * consume resources before it is terminated and enters <code>TIMEOUT</code> status. This value overrides the timeout value set in the parent job. </p>
485
- * <p>Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days.</p>
485
+ * <p>Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception.</p>
486
+ * <p>When the value is left blank, the timeout is defaulted to 2880 minutes.</p>
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>
486
488
  * @public
487
489
  */
488
490
  Timeout?: number | undefined;
@@ -1573,6 +1573,7 @@ export interface GetCatalogsRequest {
1573
1573
  NextToken?: string | undefined;
1574
1574
  MaxResults?: number | undefined;
1575
1575
  Recursive?: boolean | undefined;
1576
+ IncludeRoot?: boolean | undefined;
1576
1577
  }
1577
1578
  export interface GetCatalogsResponse {
1578
1579
  CatalogList: Catalog[] | 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.714.0",
4
+ "version": "3.718.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",
@@ -20,40 +20,40 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.714.0",
24
- "@aws-sdk/client-sts": "3.714.0",
25
- "@aws-sdk/core": "3.714.0",
26
- "@aws-sdk/credential-provider-node": "3.714.0",
23
+ "@aws-sdk/client-sso-oidc": "3.716.0",
24
+ "@aws-sdk/client-sts": "3.716.0",
25
+ "@aws-sdk/core": "3.716.0",
26
+ "@aws-sdk/credential-provider-node": "3.716.0",
27
27
  "@aws-sdk/middleware-host-header": "3.714.0",
28
28
  "@aws-sdk/middleware-logger": "3.714.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
- "@aws-sdk/middleware-user-agent": "3.714.0",
30
+ "@aws-sdk/middleware-user-agent": "3.716.0",
31
31
  "@aws-sdk/region-config-resolver": "3.714.0",
32
32
  "@aws-sdk/types": "3.714.0",
33
33
  "@aws-sdk/util-endpoints": "3.714.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.714.0",
35
- "@aws-sdk/util-user-agent-node": "3.714.0",
35
+ "@aws-sdk/util-user-agent-node": "3.716.0",
36
36
  "@smithy/config-resolver": "^3.0.13",
37
37
  "@smithy/core": "^2.5.5",
38
38
  "@smithy/fetch-http-handler": "^4.1.2",
39
39
  "@smithy/hash-node": "^3.0.11",
40
40
  "@smithy/invalid-dependency": "^3.0.11",
41
41
  "@smithy/middleware-content-length": "^3.0.13",
42
- "@smithy/middleware-endpoint": "^3.2.5",
43
- "@smithy/middleware-retry": "^3.0.30",
42
+ "@smithy/middleware-endpoint": "^3.2.6",
43
+ "@smithy/middleware-retry": "^3.0.31",
44
44
  "@smithy/middleware-serde": "^3.0.11",
45
45
  "@smithy/middleware-stack": "^3.0.11",
46
46
  "@smithy/node-config-provider": "^3.1.12",
47
47
  "@smithy/node-http-handler": "^3.3.2",
48
48
  "@smithy/protocol-http": "^4.1.8",
49
- "@smithy/smithy-client": "^3.5.0",
49
+ "@smithy/smithy-client": "^3.5.1",
50
50
  "@smithy/types": "^3.7.2",
51
51
  "@smithy/url-parser": "^3.0.11",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.30",
56
- "@smithy/util-defaults-mode-node": "^3.0.30",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.31",
56
+ "@smithy/util-defaults-mode-node": "^3.0.31",
57
57
  "@smithy/util-endpoints": "^2.1.7",
58
58
  "@smithy/util-middleware": "^3.0.11",
59
59
  "@smithy/util-retry": "^3.0.11",