@osdk/foundry.connectivity 2.8.0 → 2.10.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/build/browser/_components.d.ts +129 -3
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/_errors.d.ts +94 -73
- package/build/browser/_errors.d.ts.map +1 -1
- package/build/browser/index.d.ts +2 -2
- package/build/browser/index.d.ts.map +1 -1
- package/build/browser/public/Connection.d.ts +21 -0
- package/build/browser/public/Connection.d.ts.map +1 -1
- package/build/browser/public/Connection.js +19 -0
- package/build/browser/public/Connection.js.map +1 -1
- package/build/browser/public/TableImport.d.ts +21 -4
- package/build/browser/public/TableImport.d.ts.map +1 -1
- package/build/browser/public/TableImport.js +17 -4
- package/build/browser/public/TableImport.js.map +1 -1
- package/build/esm/_components.d.ts +129 -3
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_errors.d.ts +94 -73
- package/build/esm/_errors.d.ts.map +1 -1
- package/build/esm/index.d.ts +2 -2
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/public/Connection.d.ts +21 -0
- package/build/esm/public/Connection.d.ts.map +1 -1
- package/build/esm/public/Connection.js +19 -0
- package/build/esm/public/Connection.js.map +1 -1
- package/build/esm/public/TableImport.d.ts +21 -4
- package/build/esm/public/TableImport.d.ts.map +1 -1
- package/build/esm/public/TableImport.js +17 -4
- package/build/esm/public/TableImport.js.map +1 -1
- package/package.json +6 -6
|
@@ -15,6 +15,25 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
+
const _create = [1, "/v2/connectivity/connections", 3];
|
|
19
|
+
/**
|
|
20
|
+
* Creates a new Connection.
|
|
21
|
+
* Any secrets specified in the request body are transmitted over the network encrypted using TLS. Once the
|
|
22
|
+
* secrets reach Foundry's servers, they will be temporarily decrypted and remain in plaintext in memory to
|
|
23
|
+
* be processed as needed. They will stay in plaintext in memory until the garbage collection process cleans
|
|
24
|
+
* up the memory. The secrets are always stored encrypted on our servers.
|
|
25
|
+
* By using this endpoint, you acknowledge and accept any potential risks associated with the temporary
|
|
26
|
+
* in-memory handling of secrets. If you do not want your secrets to be temporarily decrypted, you should
|
|
27
|
+
* use the Foundry UI instead.
|
|
28
|
+
*
|
|
29
|
+
* @alpha
|
|
30
|
+
*
|
|
31
|
+
* Required Scopes: [api:connectivity-connection-write]
|
|
32
|
+
* URL: /v2/connectivity/connections
|
|
33
|
+
*/
|
|
34
|
+
export function create($ctx, ...args) {
|
|
35
|
+
return $foundryPlatformFetch($ctx, _create, ...args);
|
|
36
|
+
}
|
|
18
37
|
const _get = [0, "/v2/connectivity/connections/{0}", 2];
|
|
19
38
|
/**
|
|
20
39
|
* Get the Connection with the specified rid.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Connection.js","names":["foundryPlatformFetch","$foundryPlatformFetch","
|
|
1
|
+
{"version":3,"file":"Connection.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_updateSecrets","updateSecrets"],"sources":["Connection.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _create = [1, \"/v2/connectivity/connections\", 3];\n/**\n * Creates a new Connection.\n * Any secrets specified in the request body are transmitted over the network encrypted using TLS. Once the\n * secrets reach Foundry's servers, they will be temporarily decrypted and remain in plaintext in memory to\n * be processed as needed. They will stay in plaintext in memory until the garbage collection process cleans\n * up the memory. The secrets are always stored encrypted on our servers.\n * By using this endpoint, you acknowledge and accept any potential risks associated with the temporary\n * in-memory handling of secrets. If you do not want your secrets to be temporarily decrypted, you should\n * use the Foundry UI instead.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-connection-write]\n * URL: /v2/connectivity/connections\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _get = [0, \"/v2/connectivity/connections/{0}\", 2];\n/**\n * Get the Connection with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-connection-read]\n * URL: /v2/connectivity/connections/{connectionRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _updateSecrets = [1, \"/v2/connectivity/connections/{0}/updateSecrets\", 3];\n/**\n * Updates the secrets on the connection to the specified secret values.\n * Secrets that are currently configured on the connection but are omitted in the request will remain unchanged.\n *\n * Secrets are transmitted over the network encrypted using TLS. Once the secrets reach Foundry's servers,\n * they will be temporarily decrypted and remain in plaintext in memory to be processed as needed.\n * They will stay in plaintext in memory until the garbage collection process cleans up the memory.\n * The secrets are always stored encrypted on our servers.\n *\n * By using this endpoint, you acknowledge and accept any potential risks associated with the temporary\n * in-memory handling of secrets. If you do not want your secrets to be temporarily decrypted, you should\n * use the Foundry UI instead.\n *\n * @beta\n *\n * Required Scopes: [api:connectivity-connection-write]\n * URL: /v2/connectivity/connections/{connectionRid}/updateSecrets\n */\nexport function updateSecrets($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _updateSecrets, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,OAAO,GAAG,CAAC,CAAC,EAAE,8BAA8B,EAAE,CAAC,CAAC;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,OAAO,EAAE,GAAGG,IAAI,CAAC;AACxD;AACA,MAAMC,IAAI,GAAG,CAAC,CAAC,EAAE,kCAAkC,EAAE,CAAC,CAAC;AACvD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,IAAI,EAAE,GAAGD,IAAI,CAAC;AACrD;AACA,MAAMG,cAAc,GAAG,CAAC,CAAC,EAAE,gDAAgD,EAAE,CAAC,CAAC;AAC/E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EACzC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,cAAc,EAAE,GAAGH,IAAI,CAAC;AAC/D","ignoreList":[]}
|
|
@@ -6,7 +6,7 @@ import type * as _Connectivity from "../_components.js";
|
|
|
6
6
|
/**
|
|
7
7
|
* Creates a new TableImport.
|
|
8
8
|
*
|
|
9
|
-
* @
|
|
9
|
+
* @beta
|
|
10
10
|
*
|
|
11
11
|
* Required Scopes: [api:connectivity-table-import-write]
|
|
12
12
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports
|
|
@@ -23,7 +23,7 @@ export declare function create($ctx: $Client | $ClientContext | $OldClient | $Ol
|
|
|
23
23
|
* Deleting the table import does not delete the destination dataset but the dataset will no longer
|
|
24
24
|
* be updated by this import.
|
|
25
25
|
*
|
|
26
|
-
* @
|
|
26
|
+
* @beta
|
|
27
27
|
*
|
|
28
28
|
* Required Scopes: [api:connectivity-table-import-write]
|
|
29
29
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
@@ -35,10 +35,27 @@ export declare function deleteTableImport($ctx: $Client | $ClientContext | $OldC
|
|
|
35
35
|
preview?: _Core.PreviewMode | undefined;
|
|
36
36
|
}
|
|
37
37
|
]): Promise<void>;
|
|
38
|
+
/**
|
|
39
|
+
* Lists all table imports defined for this connection.
|
|
40
|
+
* Only table imports that the user has permissions to view will be returned.
|
|
41
|
+
*
|
|
42
|
+
* @beta
|
|
43
|
+
*
|
|
44
|
+
* Required Scopes: [api:connectivity-table-import-read]
|
|
45
|
+
* URL: /v2/connectivity/connections/{connectionRid}/tableImports
|
|
46
|
+
*/
|
|
47
|
+
export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
48
|
+
connectionRid: _Connectivity.ConnectionRid,
|
|
49
|
+
$queryParams?: {
|
|
50
|
+
pageSize?: _Core.PageSize | undefined;
|
|
51
|
+
pageToken?: _Core.PageToken | undefined;
|
|
52
|
+
preview?: _Core.PreviewMode | undefined;
|
|
53
|
+
}
|
|
54
|
+
]): Promise<_Connectivity.ListTableImportsResponse>;
|
|
38
55
|
/**
|
|
39
56
|
* Get the TableImport with the specified rid.
|
|
40
57
|
*
|
|
41
|
-
* @
|
|
58
|
+
* @beta
|
|
42
59
|
*
|
|
43
60
|
* Required Scopes: [api:connectivity-table-import-read]
|
|
44
61
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
@@ -54,7 +71,7 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
54
71
|
* Executes the TableImport, which runs asynchronously as a [Foundry Build](https://www.palantir.com/docs/foundry/data-integration/builds/).
|
|
55
72
|
* The returned BuildRid can be used to check the status via the Orchestration API.
|
|
56
73
|
*
|
|
57
|
-
* @
|
|
74
|
+
* @beta
|
|
58
75
|
*
|
|
59
76
|
* Required Scopes: [api:connectivity-table-import-execute]
|
|
60
77
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}/execute
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableImport.d.ts","sourceRoot":"","sources":["../../../src/public/TableImport.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,cAAc,MAAM,6BAA6B,CAAC;AACnE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,aAAa,MAAM,mBAAmB,CAAC;AAYxD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,KAAK,EAAE,aAAa,CAAC,wBAAwB;IAC7C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,WAAW,CAAC,CAEpC;AAUD;;;;;;;;;GASG;AACH,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,cAAc,EAAE,aAAa,CAAC,cAAc;IAE5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAUD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,cAAc,EAAE,aAAa,CAAC,cAAc;IAE5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,WAAW,CAAC,CAEpC;AAUD;;;;;;;;GAQG;AACH,wBAAgB,OAAO,CACrB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,cAAc,EAAE,aAAa,CAAC,cAAc;IAE5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,CAElC"}
|
|
1
|
+
{"version":3,"file":"TableImport.d.ts","sourceRoot":"","sources":["../../../src/public/TableImport.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,cAAc,MAAM,6BAA6B,CAAC;AACnE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,aAAa,MAAM,mBAAmB,CAAC;AAYxD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,KAAK,EAAE,aAAa,CAAC,wBAAwB;IAC7C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,WAAW,CAAC,CAEpC;AAUD;;;;;;;;;GASG;AACH,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,cAAc,EAAE,aAAa,CAAC,cAAc;IAE5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAaD;;;;;;;;GAQG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;QACxC,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,aAAa,CAAC,wBAAwB,CAAC,CAEjD;AAUD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,cAAc,EAAE,aAAa,CAAC,cAAc;IAE5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,WAAW,CAAC,CAEpC;AAUD;;;;;;;;GAQG;AACH,wBAAgB,OAAO,CACrB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,cAAc,EAAE,aAAa,CAAC,cAAc;IAE5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,CAElC"}
|
|
@@ -19,7 +19,7 @@ const _create = [1, "/v2/connectivity/connections/{0}/tableImports", 3];
|
|
|
19
19
|
/**
|
|
20
20
|
* Creates a new TableImport.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @beta
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [api:connectivity-table-import-write]
|
|
25
25
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports
|
|
@@ -33,7 +33,7 @@ const _deleteTableImport = [3, "/v2/connectivity/connections/{0}/tableImports/{1
|
|
|
33
33
|
* Deleting the table import does not delete the destination dataset but the dataset will no longer
|
|
34
34
|
* be updated by this import.
|
|
35
35
|
*
|
|
36
|
-
* @
|
|
36
|
+
* @beta
|
|
37
37
|
*
|
|
38
38
|
* Required Scopes: [api:connectivity-table-import-write]
|
|
39
39
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
@@ -41,11 +41,24 @@ const _deleteTableImport = [3, "/v2/connectivity/connections/{0}/tableImports/{1
|
|
|
41
41
|
export function deleteTableImport($ctx, ...args) {
|
|
42
42
|
return $foundryPlatformFetch($ctx, _deleteTableImport, ...args);
|
|
43
43
|
}
|
|
44
|
+
const _list = [0, "/v2/connectivity/connections/{0}/tableImports", 2];
|
|
45
|
+
/**
|
|
46
|
+
* Lists all table imports defined for this connection.
|
|
47
|
+
* Only table imports that the user has permissions to view will be returned.
|
|
48
|
+
*
|
|
49
|
+
* @beta
|
|
50
|
+
*
|
|
51
|
+
* Required Scopes: [api:connectivity-table-import-read]
|
|
52
|
+
* URL: /v2/connectivity/connections/{connectionRid}/tableImports
|
|
53
|
+
*/
|
|
54
|
+
export function list($ctx, ...args) {
|
|
55
|
+
return $foundryPlatformFetch($ctx, _list, ...args);
|
|
56
|
+
}
|
|
44
57
|
const _get = [0, "/v2/connectivity/connections/{0}/tableImports/{1}", 2];
|
|
45
58
|
/**
|
|
46
59
|
* Get the TableImport with the specified rid.
|
|
47
60
|
*
|
|
48
|
-
* @
|
|
61
|
+
* @beta
|
|
49
62
|
*
|
|
50
63
|
* Required Scopes: [api:connectivity-table-import-read]
|
|
51
64
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
@@ -58,7 +71,7 @@ const _execute = [1, "/v2/connectivity/connections/{0}/tableImports/{1}/execute"
|
|
|
58
71
|
* Executes the TableImport, which runs asynchronously as a [Foundry Build](https://www.palantir.com/docs/foundry/data-integration/builds/).
|
|
59
72
|
* The returned BuildRid can be used to check the status via the Orchestration API.
|
|
60
73
|
*
|
|
61
|
-
* @
|
|
74
|
+
* @beta
|
|
62
75
|
*
|
|
63
76
|
* Required Scopes: [api:connectivity-table-import-execute]
|
|
64
77
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}/execute
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteTableImport","deleteTableImport","_get","get","_execute","execute"],"sources":["TableImport.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _create = [1, \"/v2/connectivity/connections/{0}/tableImports\", 3];\n/**\n * Creates a new TableImport.\n *\n * @
|
|
1
|
+
{"version":3,"file":"TableImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteTableImport","deleteTableImport","_list","list","_get","get","_execute","execute"],"sources":["TableImport.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _create = [1, \"/v2/connectivity/connections/{0}/tableImports\", 3];\n/**\n * Creates a new TableImport.\n *\n * @beta\n *\n * Required Scopes: [api:connectivity-table-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _deleteTableImport = [3, \"/v2/connectivity/connections/{0}/tableImports/{1}\", 2];\n/**\n * Delete the TableImport with the specified RID.\n * Deleting the table import does not delete the destination dataset but the dataset will no longer\n * be updated by this import.\n *\n * @beta\n *\n * Required Scopes: [api:connectivity-table-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}\n */\nexport function deleteTableImport($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteTableImport, ...args);\n}\nconst _list = [0, \"/v2/connectivity/connections/{0}/tableImports\", 2];\n/**\n * Lists all table imports defined for this connection.\n * Only table imports that the user has permissions to view will be returned.\n *\n * @beta\n *\n * Required Scopes: [api:connectivity-table-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports\n */\nexport function list($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _list, ...args);\n}\nconst _get = [0, \"/v2/connectivity/connections/{0}/tableImports/{1}\", 2];\n/**\n * Get the TableImport with the specified rid.\n *\n * @beta\n *\n * Required Scopes: [api:connectivity-table-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _execute = [1, \"/v2/connectivity/connections/{0}/tableImports/{1}/execute\", 2];\n/**\n * Executes the TableImport, which runs asynchronously as a [Foundry Build](https://www.palantir.com/docs/foundry/data-integration/builds/).\n * The returned BuildRid can be used to check the status via the Orchestration API.\n *\n * @beta\n *\n * Required Scopes: [api:connectivity-table-import-execute]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}/execute\n */\nexport function execute($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _execute, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,OAAO,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,OAAO,EAAE,GAAGG,IAAI,CAAC;AACxD;AACA,MAAMC,kBAAkB,GAAG,CAAC,CAAC,EAAE,mDAAmD,EAAE,CAAC,CAAC;AACtF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,iBAAiBA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC7C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,kBAAkB,EAAE,GAAGD,IAAI,CAAC;AACnE;AACA,MAAMG,KAAK,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,IAAIA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAChC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,KAAK,EAAE,GAAGH,IAAI,CAAC;AACtD;AACA,MAAMK,IAAI,GAAG,CAAC,CAAC,EAAE,mDAAmD,EAAE,CAAC,CAAC;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,IAAI,EAAE,GAAGL,IAAI,CAAC;AACrD;AACA,MAAMO,QAAQ,GAAG,CAAC,CAAC,EAAE,2DAA2D,EAAE,CAAC,CAAC;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACT,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEQ,QAAQ,EAAE,GAAGP,IAAI,CAAC;AACzD","ignoreList":[]}
|
|
@@ -92,15 +92,126 @@ export type ConnectionConfiguration = {
|
|
|
92
92
|
type: "s3";
|
|
93
93
|
} & S3ConnectionConfiguration;
|
|
94
94
|
/**
|
|
95
|
+
* The display name of the Connection. The display name must not be blank.
|
|
96
|
+
*
|
|
95
97
|
* Log Safety: UNSAFE
|
|
96
98
|
*/
|
|
97
99
|
export type ConnectionDisplayName = LooselyBrandedString<"ConnectionDisplayName">;
|
|
98
100
|
/**
|
|
99
|
-
* The Resource Identifier (RID) of a Connection (
|
|
101
|
+
* The Resource Identifier (RID) of a Connection (also known as a source).
|
|
100
102
|
*
|
|
101
103
|
* Log Safety: SAFE
|
|
102
104
|
*/
|
|
103
105
|
export type ConnectionRid = LooselyBrandedString<"ConnectionRid">;
|
|
106
|
+
/**
|
|
107
|
+
* Log Safety: UNSAFE
|
|
108
|
+
*/
|
|
109
|
+
export interface CreateConnectionRequest {
|
|
110
|
+
parentFolderRid: _Filesystem.FolderRid;
|
|
111
|
+
runtimePlatform: CreateConnectionRequestRuntimePlatform;
|
|
112
|
+
configuration: CreateConnectionRequestConnectionConfiguration;
|
|
113
|
+
displayName: ConnectionDisplayName;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* Log Safety: UNSAFE
|
|
117
|
+
*/
|
|
118
|
+
export interface CreateConnectionRequestAgentProxyRuntime {
|
|
119
|
+
agentRids: Array<AgentRid>;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Log Safety: UNSAFE
|
|
123
|
+
*/
|
|
124
|
+
export interface CreateConnectionRequestAgentWorkerRuntime {
|
|
125
|
+
agentRids: Array<AgentRid>;
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* Log Safety: DO_NOT_LOG
|
|
129
|
+
*/
|
|
130
|
+
export interface CreateConnectionRequestAsPlaintextValue {
|
|
131
|
+
value: PlaintextValue;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Log Safety: UNSAFE
|
|
135
|
+
*/
|
|
136
|
+
export interface CreateConnectionRequestAsSecretName {
|
|
137
|
+
value: SecretName;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Log Safety: UNSAFE
|
|
141
|
+
*/
|
|
142
|
+
export interface CreateConnectionRequestAwsAccessKey {
|
|
143
|
+
accessKeyId: string;
|
|
144
|
+
secretAccessKey: CreateConnectionRequestEncryptedProperty;
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* Log Safety: SAFE
|
|
148
|
+
*/
|
|
149
|
+
export interface CreateConnectionRequestCloudIdentity {
|
|
150
|
+
cloudIdentityRid: CloudIdentityRid;
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* Log Safety: UNSAFE
|
|
154
|
+
*/
|
|
155
|
+
export type CreateConnectionRequestConnectionConfiguration = {
|
|
156
|
+
type: "s3";
|
|
157
|
+
} & CreateConnectionRequestS3ConnectionConfiguration;
|
|
158
|
+
/**
|
|
159
|
+
* Log Safety: SAFE
|
|
160
|
+
*/
|
|
161
|
+
export interface CreateConnectionRequestDirectConnectionRuntime {
|
|
162
|
+
networkEgressPolicyRids: Array<NetworkEgressPolicyRid>;
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* When reading an encrypted property, the secret name representing the encrypted value will be returned.
|
|
166
|
+
When writing to an encrypted property:
|
|
167
|
+
|
|
168
|
+
If a plaintext value is passed as an input, the plaintext value will be encrypted and saved to the property.
|
|
169
|
+
If a secret name is passed as an input, the secret name must match the existing secret name of the property
|
|
170
|
+
and the property will retain its previously encrypted value.
|
|
171
|
+
*
|
|
172
|
+
* Log Safety: UNSAFE
|
|
173
|
+
*/
|
|
174
|
+
export type CreateConnectionRequestEncryptedProperty = ({
|
|
175
|
+
type: "asSecretName";
|
|
176
|
+
} & CreateConnectionRequestAsSecretName) | ({
|
|
177
|
+
type: "asPlaintextValue";
|
|
178
|
+
} & CreateConnectionRequestAsPlaintextValue);
|
|
179
|
+
/**
|
|
180
|
+
* Log Safety: UNSAFE
|
|
181
|
+
*/
|
|
182
|
+
export interface CreateConnectionRequestOidc {
|
|
183
|
+
audience: string;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* The runtime of a Connection, which defines the
|
|
187
|
+
networking configuration and where capabilities are executed.
|
|
188
|
+
*
|
|
189
|
+
* Log Safety: UNSAFE
|
|
190
|
+
*/
|
|
191
|
+
export type CreateConnectionRequestRuntimePlatform = ({
|
|
192
|
+
type: "directConnectionRuntime";
|
|
193
|
+
} & CreateConnectionRequestDirectConnectionRuntime) | ({
|
|
194
|
+
type: "agentProxyRuntime";
|
|
195
|
+
} & CreateConnectionRequestAgentProxyRuntime) | ({
|
|
196
|
+
type: "agentWorkerRuntime";
|
|
197
|
+
} & CreateConnectionRequestAgentWorkerRuntime);
|
|
198
|
+
/**
|
|
199
|
+
* Log Safety: UNSAFE
|
|
200
|
+
*/
|
|
201
|
+
export type CreateConnectionRequestS3AuthenticationMode = ({
|
|
202
|
+
type: "awsAccessKey";
|
|
203
|
+
} & CreateConnectionRequestAwsAccessKey) | ({
|
|
204
|
+
type: "cloudIdentity";
|
|
205
|
+
} & CreateConnectionRequestCloudIdentity) | ({
|
|
206
|
+
type: "oidc";
|
|
207
|
+
} & CreateConnectionRequestOidc);
|
|
208
|
+
/**
|
|
209
|
+
* Log Safety: UNSAFE
|
|
210
|
+
*/
|
|
211
|
+
export interface CreateConnectionRequestS3ConnectionConfiguration {
|
|
212
|
+
bucketUrl: string;
|
|
213
|
+
authenticationMode?: S3AuthenticationMode;
|
|
214
|
+
}
|
|
104
215
|
/**
|
|
105
216
|
* Log Safety: UNSAFE
|
|
106
217
|
*/
|
|
@@ -119,6 +230,7 @@ export interface CreateTableImportRequest {
|
|
|
119
230
|
datasetRid: _Datasets.DatasetRid;
|
|
120
231
|
importMode: TableImportMode;
|
|
121
232
|
displayName: TableImportDisplayName;
|
|
233
|
+
allowSchemaChanges?: TableImportAllowSchemaChanges;
|
|
122
234
|
branchName?: _Datasets.BranchName;
|
|
123
235
|
config: CreateTableImportRequestTableImportConfig;
|
|
124
236
|
}
|
|
@@ -280,7 +392,7 @@ UPDATE: Replaces existing files from previous import executions based on file na
|
|
|
280
392
|
*/
|
|
281
393
|
export type FileImportMode = "SNAPSHOT" | "APPEND" | "UPDATE";
|
|
282
394
|
/**
|
|
283
|
-
* The Resource Identifier (RID) of a FileImport (
|
|
395
|
+
* The Resource Identifier (RID) of a FileImport (also known as a batch sync).
|
|
284
396
|
*
|
|
285
397
|
* Log Safety: SAFE
|
|
286
398
|
*/
|
|
@@ -368,6 +480,13 @@ export interface ListFileImportsResponse {
|
|
|
368
480
|
data: Array<FileImport>;
|
|
369
481
|
nextPageToken?: _Core.PageToken;
|
|
370
482
|
}
|
|
483
|
+
/**
|
|
484
|
+
* Log Safety: UNSAFE
|
|
485
|
+
*/
|
|
486
|
+
export interface ListTableImportsResponse {
|
|
487
|
+
data: Array<TableImport>;
|
|
488
|
+
nextPageToken?: _Core.PageToken;
|
|
489
|
+
}
|
|
371
490
|
/**
|
|
372
491
|
* The import configuration for a Microsoft Access connection.
|
|
373
492
|
*
|
|
@@ -479,8 +598,15 @@ export interface TableImport {
|
|
|
479
598
|
branchName?: _Datasets.BranchName;
|
|
480
599
|
displayName: TableImportDisplayName;
|
|
481
600
|
importMode: TableImportMode;
|
|
601
|
+
allowSchemaChanges: TableImportAllowSchemaChanges;
|
|
482
602
|
config: TableImportConfig;
|
|
483
603
|
}
|
|
604
|
+
/**
|
|
605
|
+
* Allow the TableImport to succeed if the schema of imported rows does not match the existing dataset's schema. Defaults to false for new table imports.
|
|
606
|
+
*
|
|
607
|
+
* Log Safety: SAFE
|
|
608
|
+
*/
|
|
609
|
+
export type TableImportAllowSchemaChanges = boolean;
|
|
484
610
|
/**
|
|
485
611
|
* The import configuration for a specific connector type.
|
|
486
612
|
*
|
|
@@ -510,7 +636,7 @@ APPEND: Purely additive and yields data from previous import executions in addit
|
|
|
510
636
|
*/
|
|
511
637
|
export type TableImportMode = "SNAPSHOT" | "APPEND";
|
|
512
638
|
/**
|
|
513
|
-
* The Resource Identifier (RID) of a TableImport (
|
|
639
|
+
* The Resource Identifier (RID) of a TableImport (also known as a batch sync).
|
|
514
640
|
*
|
|
515
641
|
* Log Safety: SAFE
|
|
516
642
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,SAAS,MAAM,wBAAwB,CAAC;AACzD,OAAO,KAAK,KAAK,WAAW,MAAM,0BAA0B,CAAC;AAE7D,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;;;;;;KASK;AACL,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;CAC5B;AAED;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,oBAAoB,CAAC,UAAU,CAAC,CAAC;AAExD;;;;;;;;KAQK;AACL,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,cAAc,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,UAAU,CAAC;CACnB;AAED;;;;;;;;KAQK;AACL,MAAM,WAAW,YAAY;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,iBAAiB,CAAC;CACpC;AAED;;;;;KAKK;AACL,MAAM,WAAW,aAAa;IAC5B,gBAAgB,EAAE,gBAAgB,CAAC;CACpC;AAED;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;AAExE;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,GAAG,EAAE,aAAa,CAAC;IACnB,eAAe,EAAE,WAAW,CAAC,SAAS,CAAC;IACvC,WAAW,EAAE,qBAAqB,CAAC;IACnC,eAAe,EAAE,eAAe,CAAC;IACjC,aAAa,EAAE,uBAAuB,CAAC;CACxC;AAED;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG;IACpC,IAAI,EAAE,IAAI,CAAC;CACZ,GAAG,yBAAyB,CAAC;AAE9B
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
|