@aws-sdk/client-glue 3.118.1 → 3.128.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.
- package/CHANGELOG.md +28 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2782 -3705
- package/dist-es/protocols/Aws_json1_1.js +1946 -2870
- package/dist-types/models/models_0.d.ts +7 -0
- package/dist-types/models/models_1.d.ts +45 -10
- package/dist-types/models/models_2.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/package.json +26 -26
|
@@ -406,6 +406,9 @@ export interface StorageDescriptor {
|
|
|
406
406
|
* name.</p>
|
|
407
407
|
*/
|
|
408
408
|
Location?: string;
|
|
409
|
+
/**
|
|
410
|
+
* <p>A list of locations that point to the path where a Delta table is located.</p>
|
|
411
|
+
*/
|
|
409
412
|
AdditionalLocations?: string[];
|
|
410
413
|
/**
|
|
411
414
|
* <p>The input format: <code>SequenceFileInputFormat</code> (binary),
|
|
@@ -5743,6 +5746,10 @@ export interface CreateDatabaseRequest {
|
|
|
5743
5746
|
* <p>The metadata for the database.</p>
|
|
5744
5747
|
*/
|
|
5745
5748
|
DatabaseInput: DatabaseInput | undefined;
|
|
5749
|
+
/**
|
|
5750
|
+
* <p>The tags you assign to the database.</p>
|
|
5751
|
+
*/
|
|
5752
|
+
Tags?: Record<string, string>;
|
|
5746
5753
|
}
|
|
5747
5754
|
export declare namespace CreateDatabaseRequest {
|
|
5748
5755
|
/**
|
|
@@ -1599,7 +1599,7 @@ export interface GetConnectionRequest {
|
|
|
1599
1599
|
Name: string | undefined;
|
|
1600
1600
|
/**
|
|
1601
1601
|
* <p>Allows you to retrieve the connection metadata without returning the password. For
|
|
1602
|
-
* instance, the
|
|
1602
|
+
* instance, the Glue console uses this flag to retrieve the connection, and does not display
|
|
1603
1603
|
* the password. Set this parameter when the caller might not have permission to use the KMS
|
|
1604
1604
|
* key to decrypt the password, but it does have permission to access the rest of the connection
|
|
1605
1605
|
* properties.</p>
|
|
@@ -1714,35 +1714,35 @@ export interface Connection {
|
|
|
1714
1714
|
* </li>
|
|
1715
1715
|
* <li>
|
|
1716
1716
|
* <p>
|
|
1717
|
-
* <code>
|
|
1717
|
+
* <code>SECRET_ID</code> - The secret ID used for the secret manager of credentials.</p>
|
|
1718
1718
|
* </li>
|
|
1719
1719
|
* <li>
|
|
1720
1720
|
* <p>
|
|
1721
|
-
* <code>
|
|
1721
|
+
* <code>CONNECTOR_URL</code> - The connector URL for a MARKETPLACE or CUSTOM connection.</p>
|
|
1722
1722
|
* </li>
|
|
1723
1723
|
* <li>
|
|
1724
1724
|
* <p>
|
|
1725
|
-
* <code>
|
|
1725
|
+
* <code>CONNECTOR_TYPE</code> - The connector type for a MARKETPLACE or CUSTOM connection.</p>
|
|
1726
1726
|
* </li>
|
|
1727
1727
|
* <li>
|
|
1728
1728
|
* <p>
|
|
1729
|
-
* <code>
|
|
1729
|
+
* <code>CONNECTOR_CLASS_NAME</code> - The connector class name for a MARKETPLACE or CUSTOM connection.</p>
|
|
1730
1730
|
* </li>
|
|
1731
1731
|
* <li>
|
|
1732
1732
|
* <p>
|
|
1733
|
-
* <code>
|
|
1733
|
+
* <code>KAFKA_BOOTSTRAP_SERVERS</code> - A comma-separated list of host and port pairs that are the addresses of the Apache Kafka brokers in a Kafka cluster to which a Kafka client will connect to and bootstrap itself.</p>
|
|
1734
1734
|
* </li>
|
|
1735
1735
|
* <li>
|
|
1736
1736
|
* <p>
|
|
1737
|
-
* <code>
|
|
1737
|
+
* <code>KAFKA_SSL_ENABLED</code> - Whether to enable or disable SSL on an Apache Kafka connection. Default value is "true".</p>
|
|
1738
1738
|
* </li>
|
|
1739
1739
|
* <li>
|
|
1740
1740
|
* <p>
|
|
1741
|
-
* <code>
|
|
1741
|
+
* <code>KAFKA_CUSTOM_CERT</code> - The Amazon S3 URL for the private CA cert file (.pem format). The default is an empty string.</p>
|
|
1742
1742
|
* </li>
|
|
1743
1743
|
* <li>
|
|
1744
1744
|
* <p>
|
|
1745
|
-
* <code>
|
|
1745
|
+
* <code>KAFKA_SKIP_CUSTOM_CERT_VALIDATION</code> - Whether to skip the validation of the CA cert file or not. Glue validates for three algorithms: SHA256withRSA, SHA384withRSA and SHA512withRSA. Default value is "false".</p>
|
|
1746
1746
|
* </li>
|
|
1747
1747
|
* <li>
|
|
1748
1748
|
* <p>
|
|
@@ -1764,6 +1764,38 @@ export interface Connection {
|
|
|
1764
1764
|
* <p>
|
|
1765
1765
|
* <code>ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD</code> - The encrypted version of the Kafka client key password (if the user has the Glue encrypt passwords setting selected).</p>
|
|
1766
1766
|
* </li>
|
|
1767
|
+
* <li>
|
|
1768
|
+
* <p>
|
|
1769
|
+
* <code>KAFKA_SASL_MECHANISM</code> - <code>"SCRAM-SHA-512"</code> or <code>"GSSAPI"</code>. These are the two supported <a href="https://www.iana.org/assignments/sasl-mechanisms/sasl-mechanisms.xhtml">SASL Mechanisms</a>.</p>
|
|
1770
|
+
* </li>
|
|
1771
|
+
* <li>
|
|
1772
|
+
* <p>
|
|
1773
|
+
* <code>KAFKA_SASL_SCRAM_USERNAME</code> - A plaintext username used to authenticate with the "SCRAM-SHA-512" mechanism.</p>
|
|
1774
|
+
* </li>
|
|
1775
|
+
* <li>
|
|
1776
|
+
* <p>
|
|
1777
|
+
* <code>KAFKA_SASL_SCRAM_PASSWORD</code> - A plaintext password used to authenticate with the "SCRAM-SHA-512" mechanism.</p>
|
|
1778
|
+
* </li>
|
|
1779
|
+
* <li>
|
|
1780
|
+
* <p>
|
|
1781
|
+
* <code>ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD</code> - The encrypted version of the Kafka SASL SCRAM password (if the user has the Glue encrypt passwords setting selected).</p>
|
|
1782
|
+
* </li>
|
|
1783
|
+
* <li>
|
|
1784
|
+
* <p>
|
|
1785
|
+
* <code>KAFKA_SASL_GSSAPI_KEYTAB</code> - The S3 location of a Kerberos <code>keytab</code> file. A keytab stores long-term keys for one or more principals. For more information, see <a href="https://web.mit.edu/kerberos/krb5-latest/doc/basic/keytab_def.html">MIT Kerberos Documentation: Keytab</a>.</p>
|
|
1786
|
+
* </li>
|
|
1787
|
+
* <li>
|
|
1788
|
+
* <p>
|
|
1789
|
+
* <code>KAFKA_SASL_GSSAPI_KRB5_CONF</code> - The S3 location of a Kerberos <code>krb5.conf</code> file. A krb5.conf stores Kerberos configuration information, such as the location of the KDC server. For more information, see <a href="https://web.mit.edu/kerberos/krb5-1.12/doc/admin/conf_files/krb5_conf.html">MIT Kerberos Documentation: krb5.conf</a>.</p>
|
|
1790
|
+
* </li>
|
|
1791
|
+
* <li>
|
|
1792
|
+
* <p>
|
|
1793
|
+
* <code>KAFKA_SASL_GSSAPI_SERVICE</code> - The Kerberos service name, as set with <code>sasl.kerberos.service.name</code> in your <a href="https://kafka.apache.org/documentation/#brokerconfigs_sasl.kerberos.service.name">Kafka Configuration</a>.</p>
|
|
1794
|
+
* </li>
|
|
1795
|
+
* <li>
|
|
1796
|
+
* <p>
|
|
1797
|
+
* <code>KAFKA_SASL_GSSAPI_PRINCIPAL</code> - The name of the Kerberos princial used by Glue. For more information, see <a href="https://kafka.apache.org/documentation/#security_sasl_kerberos_clientconfig">Kafka Documentation: Configuring Kafka Brokers</a>.</p>
|
|
1798
|
+
* </li>
|
|
1767
1799
|
* </ul>
|
|
1768
1800
|
*/
|
|
1769
1801
|
ConnectionProperties?: Record<string, string>;
|
|
@@ -1836,7 +1868,7 @@ export interface GetConnectionsRequest {
|
|
|
1836
1868
|
Filter?: GetConnectionsFilter;
|
|
1837
1869
|
/**
|
|
1838
1870
|
* <p>Allows you to retrieve the connection metadata without returning the password. For
|
|
1839
|
-
* instance, the
|
|
1871
|
+
* instance, the Glue console uses this flag to retrieve the connection, and does not display
|
|
1840
1872
|
* the password. Set this parameter when the caller might not have permission to use the KMS
|
|
1841
1873
|
* key to decrypt the password, but it does have permission to access the rest of the connection
|
|
1842
1874
|
* properties.</p>
|
|
@@ -4712,6 +4744,9 @@ export interface Table {
|
|
|
4712
4744
|
* <p>The ID of the Data Catalog in which the table resides.</p>
|
|
4713
4745
|
*/
|
|
4714
4746
|
CatalogId?: string;
|
|
4747
|
+
/**
|
|
4748
|
+
* <p>The ID of the table version.</p>
|
|
4749
|
+
*/
|
|
4715
4750
|
VersionId?: string;
|
|
4716
4751
|
}
|
|
4717
4752
|
export declare namespace Table {
|
|
@@ -1760,6 +1760,9 @@ export interface UpdateTableRequest {
|
|
|
1760
1760
|
* <p>The transaction ID at which to update the table contents. </p>
|
|
1761
1761
|
*/
|
|
1762
1762
|
TransactionId?: string;
|
|
1763
|
+
/**
|
|
1764
|
+
* <p>The version ID at which to update the table contents. </p>
|
|
1765
|
+
*/
|
|
1763
1766
|
VersionId?: string;
|
|
1764
1767
|
}
|
|
1765
1768
|
export declare namespace UpdateTableRequest {
|
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.128.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",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.128.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.128.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.128.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.128.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
40
|
+
"@aws-sdk/types": "3.127.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.128.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|