@aws-sdk/client-glue 3.208.0 → 3.210.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.
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
4
5
  const url_parser_1 = require("@aws-sdk/url-parser");
5
6
  const util_base64_1 = require("@aws-sdk/util-base64");
6
7
  const endpointResolver_1 = require("./endpoint/endpointResolver");
@@ -10,7 +11,7 @@ const getRuntimeConfig = (config) => ({
10
11
  base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64,
11
12
  disableHostPrefix: config?.disableHostPrefix ?? false,
12
13
  endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
13
- logger: config?.logger ?? {},
14
+ logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
14
15
  serviceId: config?.serviceId ?? "Glue",
15
16
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
16
17
  });
@@ -1,3 +1,4 @@
1
+ import { NoOpLogger } from "@aws-sdk/smithy-client";
1
2
  import { parseUrl } from "@aws-sdk/url-parser";
2
3
  import { fromBase64, toBase64 } from "@aws-sdk/util-base64";
3
4
  import { defaultEndpointResolver } from "./endpoint/endpointResolver";
@@ -7,7 +8,7 @@ export const getRuntimeConfig = (config) => ({
7
8
  base64Encoder: config?.base64Encoder ?? toBase64,
8
9
  disableHostPrefix: config?.disableHostPrefix ?? false,
9
10
  endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
10
- logger: config?.logger ?? {},
11
+ logger: config?.logger ?? new NoOpLogger(),
11
12
  serviceId: config?.serviceId ?? "Glue",
12
13
  urlParser: config?.urlParser ?? parseUrl,
13
14
  });
@@ -761,7 +761,7 @@ export declare class Glue extends GlueClient {
761
761
  getDevEndpoint(args: GetDevEndpointCommandInput, cb: (err: any, data?: GetDevEndpointCommandOutput) => void): void;
762
762
  getDevEndpoint(args: GetDevEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDevEndpointCommandOutput) => void): void;
763
763
  /**
764
- * <p>Retrieves all the development endpoints in this AWS account.</p>
764
+ * <p>Retrieves all the development endpoints in this Amazon Web Services account.</p>
765
765
  * <note>
766
766
  * <p>When you create a development endpoint in a virtual private cloud (VPC), Glue returns only a private IP address
767
767
  * and the public IP address field is not populated. When you create a non-VPC development
@@ -779,6 +779,26 @@ export declare class Glue extends GlueClient {
779
779
  getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
780
780
  /**
781
781
  * <p>Returns information on a job bookmark entry.</p>
782
+ *
783
+ * <p>For more information about enabling and using job bookmarks, see:</p>
784
+ *
785
+ * <ul>
786
+ * <li>
787
+ * <p>
788
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
789
+ * </p>
790
+ * </li>
791
+ * <li>
792
+ * <p>
793
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Job parameters used by Glue</a>
794
+ * </p>
795
+ * </li>
796
+ * <li>
797
+ * <p>
798
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job">Job structure</a>
799
+ * </p>
800
+ * </li>
801
+ * </ul>
782
802
  */
783
803
  getJobBookmark(args: GetJobBookmarkCommandInput, options?: __HttpHandlerOptions): Promise<GetJobBookmarkCommandOutput>;
784
804
  getJobBookmark(args: GetJobBookmarkCommandInput, cb: (err: any, data?: GetJobBookmarkCommandOutput) => void): void;
@@ -1213,6 +1233,26 @@ export declare class Glue extends GlueClient {
1213
1233
  removeSchemaVersionMetadata(args: RemoveSchemaVersionMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveSchemaVersionMetadataCommandOutput) => void): void;
1214
1234
  /**
1215
1235
  * <p>Resets a bookmark entry.</p>
1236
+ *
1237
+ * <p>For more information about enabling and using job bookmarks, see:</p>
1238
+ *
1239
+ * <ul>
1240
+ * <li>
1241
+ * <p>
1242
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
1243
+ * </p>
1244
+ * </li>
1245
+ * <li>
1246
+ * <p>
1247
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Job parameters used by Glue</a>
1248
+ * </p>
1249
+ * </li>
1250
+ * <li>
1251
+ * <p>
1252
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job">Job structure</a>
1253
+ * </p>
1254
+ * </li>
1255
+ * </ul>
1216
1256
  */
1217
1257
  resetJobBookmark(args: ResetJobBookmarkCommandInput, options?: __HttpHandlerOptions): Promise<ResetJobBookmarkCommandOutput>;
1218
1258
  resetJobBookmark(args: ResetJobBookmarkCommandInput, cb: (err: any, data?: ResetJobBookmarkCommandOutput) => void): void;
@@ -8,7 +8,7 @@ export interface GetDevEndpointsCommandInput extends GetDevEndpointsRequest {
8
8
  export interface GetDevEndpointsCommandOutput extends GetDevEndpointsResponse, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Retrieves all the development endpoints in this AWS account.</p>
11
+ * <p>Retrieves all the development endpoints in this Amazon Web Services account.</p>
12
12
  * <note>
13
13
  * <p>When you create a development endpoint in a virtual private cloud (VPC), Glue returns only a private IP address
14
14
  * and the public IP address field is not populated. When you create a non-VPC development
@@ -9,6 +9,26 @@ export interface GetJobBookmarkCommandOutput extends GetJobBookmarkResponse, __M
9
9
  }
10
10
  /**
11
11
  * <p>Returns information on a job bookmark entry.</p>
12
+ *
13
+ * <p>For more information about enabling and using job bookmarks, see:</p>
14
+ *
15
+ * <ul>
16
+ * <li>
17
+ * <p>
18
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
19
+ * </p>
20
+ * </li>
21
+ * <li>
22
+ * <p>
23
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Job parameters used by Glue</a>
24
+ * </p>
25
+ * </li>
26
+ * <li>
27
+ * <p>
28
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job">Job structure</a>
29
+ * </p>
30
+ * </li>
31
+ * </ul>
12
32
  * @example
13
33
  * Use a bare-bones client and the command you need to make an API call.
14
34
  * ```javascript
@@ -9,6 +9,26 @@ export interface ResetJobBookmarkCommandOutput extends ResetJobBookmarkResponse,
9
9
  }
10
10
  /**
11
11
  * <p>Resets a bookmark entry.</p>
12
+ *
13
+ * <p>For more information about enabling and using job bookmarks, see:</p>
14
+ *
15
+ * <ul>
16
+ * <li>
17
+ * <p>
18
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html">Tracking processed data using job bookmarks</a>
19
+ * </p>
20
+ * </li>
21
+ * <li>
22
+ * <p>
23
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html">Job parameters used by Glue</a>
24
+ * </p>
25
+ * </li>
26
+ * <li>
27
+ * <p>
28
+ * <a href="https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job">Job structure</a>
29
+ * </p>
30
+ * </li>
31
+ * </ul>
12
32
  * @example
13
33
  * Use a bare-bones client and the command you need to make an API call.
14
34
  * ```javascript
@@ -1364,7 +1364,7 @@ export interface DevEndpoint {
1364
1364
  */
1365
1365
  NumberOfNodes?: number;
1366
1366
  /**
1367
- * <p>The AWS Availability Zone where this <code>DevEndpoint</code> is located.</p>
1367
+ * <p>The Amazon Web Services Availability Zone where this <code>DevEndpoint</code> is located.</p>
1368
1368
  */
1369
1369
  AvailabilityZone?: string;
1370
1370
  /**
@@ -4900,7 +4900,7 @@ export interface CreateDevEndpointResponse {
4900
4900
  */
4901
4901
  NumberOfWorkers?: number;
4902
4902
  /**
4903
- * <p>The AWS Availability Zone where this <code>DevEndpoint</code> is located.</p>
4903
+ * <p>The Amazon Web Services Availability Zone where this <code>DevEndpoint</code> is located.</p>
4904
4904
  */
4905
4905
  AvailabilityZone?: string;
4906
4906
  /**
@@ -1,4 +1,3 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
1
  import { GlueClientConfig } from "./GlueClient";
3
2
  /**
4
3
  * @internal
@@ -9,9 +8,9 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
9
8
  base64Encoder: import("@aws-sdk/types").Encoder;
10
9
  disableHostPrefix: boolean;
11
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
12
- logger?: __Logger | undefined;
11
+ logger?: import("@aws-sdk/types").Logger | undefined;
13
12
  }) => import("@aws-sdk/types").EndpointV2;
14
- logger: __Logger;
13
+ logger: import("@aws-sdk/types").Logger;
15
14
  serviceId: string;
16
15
  urlParser: import("@aws-sdk/types").UrlParser;
17
16
  };
@@ -1,4 +1,3 @@
1
- import { Logger as __Logger } from "@aws-sdk/types";
2
1
  import { GlueClientConfig } from "./GlueClient";
3
2
  export declare const getRuntimeConfig: (config: GlueClientConfig) => {
4
3
  apiVersion: string;
@@ -8,10 +7,10 @@ export declare const getRuntimeConfig: (config: GlueClientConfig) => {
8
7
  endpointProvider: (
9
8
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
10
9
  context?: {
11
- logger?: __Logger | undefined;
10
+ logger?: import("@aws-sdk/types").Logger | undefined;
12
11
  }
13
12
  ) => import("@aws-sdk/types").EndpointV2;
14
- logger: __Logger;
13
+ logger: import("@aws-sdk/types").Logger;
15
14
  serviceId: string;
16
15
  urlParser: import("@aws-sdk/types").UrlParser;
17
16
  };
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.208.0",
4
+ "version": "3.210.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,9 +19,9 @@
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.208.0",
23
- "@aws-sdk/config-resolver": "3.208.0",
24
- "@aws-sdk/credential-provider-node": "3.208.0",
22
+ "@aws-sdk/client-sts": "3.210.0",
23
+ "@aws-sdk/config-resolver": "3.209.0",
24
+ "@aws-sdk/credential-provider-node": "3.210.0",
25
25
  "@aws-sdk/fetch-http-handler": "3.208.0",
26
26
  "@aws-sdk/hash-node": "3.208.0",
27
27
  "@aws-sdk/invalid-dependency": "3.208.0",
@@ -30,27 +30,25 @@
30
30
  "@aws-sdk/middleware-host-header": "3.208.0",
31
31
  "@aws-sdk/middleware-logger": "3.208.0",
32
32
  "@aws-sdk/middleware-recursion-detection": "3.208.0",
33
- "@aws-sdk/middleware-retry": "3.208.0",
33
+ "@aws-sdk/middleware-retry": "3.209.0",
34
34
  "@aws-sdk/middleware-serde": "3.208.0",
35
35
  "@aws-sdk/middleware-signing": "3.208.0",
36
36
  "@aws-sdk/middleware-stack": "3.208.0",
37
37
  "@aws-sdk/middleware-user-agent": "3.208.0",
38
- "@aws-sdk/node-config-provider": "3.208.0",
38
+ "@aws-sdk/node-config-provider": "3.209.0",
39
39
  "@aws-sdk/node-http-handler": "3.208.0",
40
40
  "@aws-sdk/protocol-http": "3.208.0",
41
- "@aws-sdk/smithy-client": "3.208.0",
41
+ "@aws-sdk/smithy-client": "3.209.0",
42
42
  "@aws-sdk/types": "3.208.0",
43
43
  "@aws-sdk/url-parser": "3.208.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
- "@aws-sdk/util-base64-browser": "3.208.0",
46
- "@aws-sdk/util-base64-node": "3.208.0",
47
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
48
46
  "@aws-sdk/util-body-length-node": "3.208.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.208.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.208.0",
51
- "@aws-sdk/util-endpoints": "3.208.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.209.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.209.0",
49
+ "@aws-sdk/util-endpoints": "3.210.0",
52
50
  "@aws-sdk/util-user-agent-browser": "3.208.0",
53
- "@aws-sdk/util-user-agent-node": "3.208.0",
51
+ "@aws-sdk/util-user-agent-node": "3.209.0",
54
52
  "@aws-sdk/util-utf8-browser": "3.188.0",
55
53
  "@aws-sdk/util-utf8-node": "3.208.0",
56
54
  "tslib": "^2.3.1"