@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
package/build/esm/_errors.d.ts
CHANGED
|
@@ -2,11 +2,10 @@ export type LooselyBrandedString<T extends string> = string & {
|
|
|
2
2
|
__LOOSE_BRAND?: T;
|
|
3
3
|
};
|
|
4
4
|
/**
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*/
|
|
5
|
+
* Changing of branch name is not supported for imports.
|
|
6
|
+
*
|
|
7
|
+
* Log Safety: UNSAFE
|
|
8
|
+
*/
|
|
10
9
|
export interface ChangingBranchNameNotSupportedForImports {
|
|
11
10
|
errorCode: "INVALID_ARGUMENT";
|
|
12
11
|
errorName: "ChangingBranchNameNotSupportedForImports";
|
|
@@ -17,11 +16,10 @@ export interface ChangingBranchNameNotSupportedForImports {
|
|
|
17
16
|
};
|
|
18
17
|
}
|
|
19
18
|
/**
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
*/
|
|
19
|
+
* Changing of output dataset is not supported for imports.
|
|
20
|
+
*
|
|
21
|
+
* Log Safety: SAFE
|
|
22
|
+
*/
|
|
25
23
|
export interface ChangingOutputDatasetNotSupportedForImports {
|
|
26
24
|
errorCode: "INVALID_ARGUMENT";
|
|
27
25
|
errorName: "ChangingOutputDatasetNotSupportedForImports";
|
|
@@ -32,11 +30,10 @@ export interface ChangingOutputDatasetNotSupportedForImports {
|
|
|
32
30
|
};
|
|
33
31
|
}
|
|
34
32
|
/**
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
*/
|
|
33
|
+
* Details of the connection (such as which types of import it supports) could not be determined.
|
|
34
|
+
*
|
|
35
|
+
* Log Safety: UNSAFE
|
|
36
|
+
*/
|
|
40
37
|
export interface ConnectionDetailsNotDetermined {
|
|
41
38
|
errorCode: "INTERNAL";
|
|
42
39
|
errorName: "ConnectionDetailsNotDetermined";
|
|
@@ -60,11 +57,10 @@ export interface ConnectionNotFound {
|
|
|
60
57
|
};
|
|
61
58
|
}
|
|
62
59
|
/**
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
*/
|
|
60
|
+
* The specified connection is not yet supported in the Platform API.
|
|
61
|
+
*
|
|
62
|
+
* Log Safety: UNSAFE
|
|
63
|
+
*/
|
|
68
64
|
export interface ConnectionTypeNotSupported {
|
|
69
65
|
errorCode: "INTERNAL";
|
|
70
66
|
errorName: "ConnectionTypeNotSupported";
|
|
@@ -73,6 +69,17 @@ export interface ConnectionTypeNotSupported {
|
|
|
73
69
|
connectionType: unknown;
|
|
74
70
|
};
|
|
75
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* Could not create the Connection.
|
|
74
|
+
*
|
|
75
|
+
* Log Safety: SAFE
|
|
76
|
+
*/
|
|
77
|
+
export interface CreateConnectionPermissionDenied {
|
|
78
|
+
errorCode: "PERMISSION_DENIED";
|
|
79
|
+
errorName: "CreateConnectionPermissionDenied";
|
|
80
|
+
errorInstanceId: string;
|
|
81
|
+
parameters: {};
|
|
82
|
+
}
|
|
76
83
|
/**
|
|
77
84
|
* Could not create the FileImport.
|
|
78
85
|
*
|
|
@@ -127,6 +134,19 @@ export interface DeleteTableImportPermissionDenied {
|
|
|
127
134
|
connectionRid: unknown;
|
|
128
135
|
};
|
|
129
136
|
}
|
|
137
|
+
/**
|
|
138
|
+
* The encrypted property must be specified as a plaintext value.
|
|
139
|
+
*
|
|
140
|
+
* Log Safety: SAFE
|
|
141
|
+
*/
|
|
142
|
+
export interface EncryptedPropertyMustBeSpecifiedAsPlaintextValue {
|
|
143
|
+
errorCode: "INVALID_ARGUMENT";
|
|
144
|
+
errorName: "EncryptedPropertyMustBeSpecifiedAsPlaintextValue";
|
|
145
|
+
errorInstanceId: string;
|
|
146
|
+
parameters: {
|
|
147
|
+
propertyName: unknown;
|
|
148
|
+
};
|
|
149
|
+
}
|
|
130
150
|
/**
|
|
131
151
|
* Could not execute the FileImport.
|
|
132
152
|
*
|
|
@@ -156,11 +176,10 @@ export interface ExecuteTableImportPermissionDenied {
|
|
|
156
176
|
};
|
|
157
177
|
}
|
|
158
178
|
/**
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
*/
|
|
179
|
+
* The provided minFilesCount property in the FileAtLeastCountFilter must be strictly greater than 0.
|
|
180
|
+
*
|
|
181
|
+
* Log Safety: SAFE
|
|
182
|
+
*/
|
|
164
183
|
export interface FileAtLeastCountFilterInvalidMinCount {
|
|
165
184
|
errorCode: "INVALID_ARGUMENT";
|
|
166
185
|
errorName: "FileAtLeastCountFilterInvalidMinCount";
|
|
@@ -172,7 +191,6 @@ export interface FileAtLeastCountFilterInvalidMinCount {
|
|
|
172
191
|
/**
|
|
173
192
|
* Custom file import filters can be fetched but cannot currently be used
|
|
174
193
|
when creating or updating file imports.
|
|
175
|
-
|
|
176
194
|
*
|
|
177
195
|
* Log Safety: UNSAFE
|
|
178
196
|
*/
|
|
@@ -199,11 +217,10 @@ export interface FileImportNotFound {
|
|
|
199
217
|
};
|
|
200
218
|
}
|
|
201
219
|
/**
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
*/
|
|
220
|
+
* The specified connection does not support file imports.
|
|
221
|
+
*
|
|
222
|
+
* Log Safety: SAFE
|
|
223
|
+
*/
|
|
207
224
|
export interface FileImportNotSupportedForConnection {
|
|
208
225
|
errorCode: "INVALID_ARGUMENT";
|
|
209
226
|
errorName: "FileImportNotSupportedForConnection";
|
|
@@ -213,11 +230,10 @@ export interface FileImportNotSupportedForConnection {
|
|
|
213
230
|
};
|
|
214
231
|
}
|
|
215
232
|
/**
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
*/
|
|
233
|
+
* The gt property in the FileSizeFilter cannot be a negative number.
|
|
234
|
+
*
|
|
235
|
+
* Log Safety: SAFE
|
|
236
|
+
*/
|
|
221
237
|
export interface FileSizeFilterGreaterThanCannotBeNegative {
|
|
222
238
|
errorCode: "INVALID_ARGUMENT";
|
|
223
239
|
errorName: "FileSizeFilterGreaterThanCannotBeNegative";
|
|
@@ -227,9 +243,8 @@ export interface FileSizeFilterGreaterThanCannotBeNegative {
|
|
|
227
243
|
};
|
|
228
244
|
}
|
|
229
245
|
/**
|
|
230
|
-
* The provided
|
|
231
|
-
satisfy the provided range. The value specified for
|
|
232
|
-
|
|
246
|
+
* The provided gt and lt properties in the FileSizeFilter are invalid. No files will ever
|
|
247
|
+
satisfy the provided range. The value specified for gt must be strictly less than lt - 1.
|
|
233
248
|
*
|
|
234
249
|
* Log Safety: SAFE
|
|
235
250
|
*/
|
|
@@ -243,11 +258,10 @@ export interface FileSizeFilterInvalidGreaterThanAndLessThanRange {
|
|
|
243
258
|
};
|
|
244
259
|
}
|
|
245
260
|
/**
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
*/
|
|
261
|
+
* The lt property in the FileSizeFilter must be at least 1 byte.
|
|
262
|
+
*
|
|
263
|
+
* Log Safety: SAFE
|
|
264
|
+
*/
|
|
251
265
|
export interface FileSizeFilterLessThanMustBeOneByteOrLarger {
|
|
252
266
|
errorCode: "INVALID_ARGUMENT";
|
|
253
267
|
errorName: "FileSizeFilterLessThanMustBeOneByteOrLarger";
|
|
@@ -257,9 +271,8 @@ export interface FileSizeFilterLessThanMustBeOneByteOrLarger {
|
|
|
257
271
|
};
|
|
258
272
|
}
|
|
259
273
|
/**
|
|
260
|
-
* Both the
|
|
261
|
-
|
|
262
|
-
|
|
274
|
+
* Both the gt and lt properties are missing from the FileSizeFilter. At least one of these
|
|
275
|
+
properties must be present
|
|
263
276
|
*
|
|
264
277
|
* Log Safety: SAFE
|
|
265
278
|
*/
|
|
@@ -270,11 +283,10 @@ export interface FileSizeFilterMissingGreaterThanAndLessThan {
|
|
|
270
283
|
parameters: {};
|
|
271
284
|
}
|
|
272
285
|
/**
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
*/
|
|
286
|
+
* The filesCount property in the FilesCountLimitFilter must be strictly greater than 0.
|
|
287
|
+
*
|
|
288
|
+
* Log Safety: SAFE
|
|
289
|
+
*/
|
|
278
290
|
export interface FilesCountLimitFilterInvalidLimit {
|
|
279
291
|
errorCode: "INVALID_ARGUMENT";
|
|
280
292
|
errorName: "FilesCountLimitFilterInvalidLimit";
|
|
@@ -284,11 +296,10 @@ export interface FilesCountLimitFilterInvalidLimit {
|
|
|
284
296
|
};
|
|
285
297
|
}
|
|
286
298
|
/**
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
*/
|
|
299
|
+
* The parent folder for the specified connection could not be found.
|
|
300
|
+
*
|
|
301
|
+
* Log Safety: SAFE
|
|
302
|
+
*/
|
|
292
303
|
export interface ParentFolderNotFoundForConnection {
|
|
293
304
|
errorCode: "NOT_FOUND";
|
|
294
305
|
errorName: "ParentFolderNotFoundForConnection";
|
|
@@ -297,6 +308,19 @@ export interface ParentFolderNotFoundForConnection {
|
|
|
297
308
|
connectionRid: unknown;
|
|
298
309
|
};
|
|
299
310
|
}
|
|
311
|
+
/**
|
|
312
|
+
* The specified property cannot be blank.
|
|
313
|
+
*
|
|
314
|
+
* Log Safety: SAFE
|
|
315
|
+
*/
|
|
316
|
+
export interface PropertyCannotBeBlank {
|
|
317
|
+
errorCode: "INVALID_ARGUMENT";
|
|
318
|
+
errorName: "PropertyCannotBeBlank";
|
|
319
|
+
errorInstanceId: string;
|
|
320
|
+
parameters: {
|
|
321
|
+
propertyName: unknown;
|
|
322
|
+
};
|
|
323
|
+
}
|
|
300
324
|
/**
|
|
301
325
|
* Could not replace the FileImport.
|
|
302
326
|
*
|
|
@@ -312,11 +336,10 @@ export interface ReplaceFileImportPermissionDenied {
|
|
|
312
336
|
};
|
|
313
337
|
}
|
|
314
338
|
/**
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
*/
|
|
339
|
+
* The secret names provided do not exist on the connection.
|
|
340
|
+
*
|
|
341
|
+
* Log Safety: UNSAFE
|
|
342
|
+
*/
|
|
320
343
|
export interface SecretNamesDoNotExist {
|
|
321
344
|
errorCode: "INVALID_ARGUMENT";
|
|
322
345
|
errorName: "SecretNamesDoNotExist";
|
|
@@ -341,11 +364,10 @@ export interface TableImportNotFound {
|
|
|
341
364
|
};
|
|
342
365
|
}
|
|
343
366
|
/**
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
*/
|
|
367
|
+
* The specified connection does not support creating a table import with the specified config.
|
|
368
|
+
*
|
|
369
|
+
* Log Safety: UNSAFE
|
|
370
|
+
*/
|
|
349
371
|
export interface TableImportNotSupportedForConnection {
|
|
350
372
|
errorCode: "INVALID_ARGUMENT";
|
|
351
373
|
errorName: "TableImportNotSupportedForConnection";
|
|
@@ -356,11 +378,10 @@ export interface TableImportNotSupportedForConnection {
|
|
|
356
378
|
};
|
|
357
379
|
}
|
|
358
380
|
/**
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
*/
|
|
381
|
+
* The specified table import type is not yet supported in the Platform API.
|
|
382
|
+
*
|
|
383
|
+
* Log Safety: UNSAFE
|
|
384
|
+
*/
|
|
364
385
|
export interface TableImportTypeNotSupported {
|
|
365
386
|
errorCode: "INTERNAL";
|
|
366
387
|
errorName: "TableImportTypeNotSupported";
|
|
@@ -370,7 +391,7 @@ export interface TableImportTypeNotSupported {
|
|
|
370
391
|
};
|
|
371
392
|
}
|
|
372
393
|
/**
|
|
373
|
-
* Could not
|
|
394
|
+
* Could not update secrets for the Connection.
|
|
374
395
|
*
|
|
375
396
|
* Log Safety: SAFE
|
|
376
397
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
|
package/build/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export type { AgentProxyRuntime, AgentRid, AgentWorkerRuntime, AsPlaintextValue, AsSecretName, AwsAccessKey, CloudIdentity, CloudIdentityRid, Connection, ConnectionConfiguration, ConnectionDisplayName, ConnectionRid, CreateFileImportRequest, CreateTableImportRequest, CreateTableImportRequestJdbcImportConfig, CreateTableImportRequestMicrosoftAccessImportConfig, CreateTableImportRequestMicrosoftSqlServerImportConfig, CreateTableImportRequestOracleImportConfig, CreateTableImportRequestPostgreSqlImportConfig, CreateTableImportRequestTableImportConfig, DirectConnectionRuntime, EncryptedProperty, FileAnyPathMatchesFilter, FileAtLeastCountFilter, FileChangedSinceLastUploadFilter, FileImport, FileImportCustomFilter, FileImportDisplayName, FileImportFilter, FileImportMode, FileImportRid, FileLastModifiedAfterFilter, FilePathMatchesFilter, FilePathNotMatchesFilter, FileProperty, FilesCountLimitFilter, FileSizeFilter, JdbcImportConfig, ListFileImportsResponse, MicrosoftAccessImportConfig, MicrosoftSqlServerImportConfig, NetworkEgressPolicyRid, Oidc, OracleImportConfig, PlaintextValue, PostgreSqlImportConfig, ReplaceFileImportRequest, RuntimePlatform, S3AuthenticationMode, S3ConnectionConfiguration, SecretName, TableImport, TableImportConfig, TableImportDisplayName, TableImportMode, TableImportRid, UpdateSecretsForConnectionRequest, } from "./_components.js";
|
|
2
|
-
export type { ChangingBranchNameNotSupportedForImports, ChangingOutputDatasetNotSupportedForImports, ConnectionDetailsNotDetermined, ConnectionNotFound, ConnectionTypeNotSupported, CreateFileImportPermissionDenied, CreateTableImportPermissionDenied, DeleteFileImportPermissionDenied, DeleteTableImportPermissionDenied, ExecuteFileImportPermissionDenied, ExecuteTableImportPermissionDenied, FileAtLeastCountFilterInvalidMinCount, FileImportCustomFilterCannotBeUsedToCreateOrUpdateFileImports, FileImportNotFound, FileImportNotSupportedForConnection, FilesCountLimitFilterInvalidLimit, FileSizeFilterGreaterThanCannotBeNegative, FileSizeFilterInvalidGreaterThanAndLessThanRange, FileSizeFilterLessThanMustBeOneByteOrLarger, FileSizeFilterMissingGreaterThanAndLessThan, ParentFolderNotFoundForConnection, ReplaceFileImportPermissionDenied, SecretNamesDoNotExist, TableImportNotFound, TableImportNotSupportedForConnection, TableImportTypeNotSupported, UpdateSecretsForConnectionPermissionDenied, } from "./_errors.js";
|
|
1
|
+
export type { AgentProxyRuntime, AgentRid, AgentWorkerRuntime, AsPlaintextValue, AsSecretName, AwsAccessKey, CloudIdentity, CloudIdentityRid, Connection, ConnectionConfiguration, ConnectionDisplayName, ConnectionRid, CreateConnectionRequest, CreateConnectionRequestAgentProxyRuntime, CreateConnectionRequestAgentWorkerRuntime, CreateConnectionRequestAsPlaintextValue, CreateConnectionRequestAsSecretName, CreateConnectionRequestAwsAccessKey, CreateConnectionRequestCloudIdentity, CreateConnectionRequestConnectionConfiguration, CreateConnectionRequestDirectConnectionRuntime, CreateConnectionRequestEncryptedProperty, CreateConnectionRequestOidc, CreateConnectionRequestRuntimePlatform, CreateConnectionRequestS3AuthenticationMode, CreateConnectionRequestS3ConnectionConfiguration, CreateFileImportRequest, CreateTableImportRequest, CreateTableImportRequestJdbcImportConfig, CreateTableImportRequestMicrosoftAccessImportConfig, CreateTableImportRequestMicrosoftSqlServerImportConfig, CreateTableImportRequestOracleImportConfig, CreateTableImportRequestPostgreSqlImportConfig, CreateTableImportRequestTableImportConfig, DirectConnectionRuntime, EncryptedProperty, FileAnyPathMatchesFilter, FileAtLeastCountFilter, FileChangedSinceLastUploadFilter, FileImport, FileImportCustomFilter, FileImportDisplayName, FileImportFilter, FileImportMode, FileImportRid, FileLastModifiedAfterFilter, FilePathMatchesFilter, FilePathNotMatchesFilter, FileProperty, FilesCountLimitFilter, FileSizeFilter, JdbcImportConfig, ListFileImportsResponse, ListTableImportsResponse, MicrosoftAccessImportConfig, MicrosoftSqlServerImportConfig, NetworkEgressPolicyRid, Oidc, OracleImportConfig, PlaintextValue, PostgreSqlImportConfig, ReplaceFileImportRequest, RuntimePlatform, S3AuthenticationMode, S3ConnectionConfiguration, SecretName, TableImport, TableImportAllowSchemaChanges, TableImportConfig, TableImportDisplayName, TableImportMode, TableImportRid, UpdateSecretsForConnectionRequest, } from "./_components.js";
|
|
2
|
+
export type { ChangingBranchNameNotSupportedForImports, ChangingOutputDatasetNotSupportedForImports, ConnectionDetailsNotDetermined, ConnectionNotFound, ConnectionTypeNotSupported, CreateConnectionPermissionDenied, CreateFileImportPermissionDenied, CreateTableImportPermissionDenied, DeleteFileImportPermissionDenied, DeleteTableImportPermissionDenied, EncryptedPropertyMustBeSpecifiedAsPlaintextValue, ExecuteFileImportPermissionDenied, ExecuteTableImportPermissionDenied, FileAtLeastCountFilterInvalidMinCount, FileImportCustomFilterCannotBeUsedToCreateOrUpdateFileImports, FileImportNotFound, FileImportNotSupportedForConnection, FilesCountLimitFilterInvalidLimit, FileSizeFilterGreaterThanCannotBeNegative, FileSizeFilterInvalidGreaterThanAndLessThanRange, FileSizeFilterLessThanMustBeOneByteOrLarger, FileSizeFilterMissingGreaterThanAndLessThan, ParentFolderNotFoundForConnection, PropertyCannotBeBlank, ReplaceFileImportPermissionDenied, SecretNamesDoNotExist, TableImportNotFound, TableImportNotSupportedForConnection, TableImportTypeNotSupported, UpdateSecretsForConnectionPermissionDenied, } from "./_errors.js";
|
|
3
3
|
export * as Connections from "./public/Connection.js";
|
|
4
4
|
export * as FileImports from "./public/FileImport.js";
|
|
5
5
|
export * as TableImports from "./public/TableImport.js";
|
package/build/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,iBAAiB,EACjB,QAAQ,EACR,kBAAkB,EAClB,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,UAAU,EACV,uBAAuB,EACvB,qBAAqB,EACrB,aAAa,EACb,uBAAuB,EACvB,wBAAwB,EACxB,wCAAwC,EACxC,mDAAmD,EACnD,sDAAsD,EACtD,0CAA0C,EAC1C,8CAA8C,EAC9C,yCAAyC,EACzC,uBAAuB,EACvB,iBAAiB,EACjB,wBAAwB,EACxB,sBAAsB,EACtB,gCAAgC,EAChC,UAAU,EACV,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,2BAA2B,EAC3B,qBAAqB,EACrB,wBAAwB,EACxB,YAAY,EACZ,qBAAqB,EACrB,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,2BAA2B,EAC3B,8BAA8B,EAC9B,sBAAsB,EACtB,IAAI,EACJ,kBAAkB,EAClB,cAAc,EACd,sBAAsB,EACtB,wBAAwB,EACxB,eAAe,EACf,oBAAoB,EACpB,yBAAyB,EACzB,UAAU,EACV,WAAW,EACX,iBAAiB,EACjB,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,iCAAiC,GAClC,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,wCAAwC,EACxC,2CAA2C,EAC3C,8BAA8B,EAC9B,kBAAkB,EAClB,0BAA0B,EAC1B,gCAAgC,EAChC,iCAAiC,EACjC,gCAAgC,EAChC,iCAAiC,EACjC,iCAAiC,EACjC,kCAAkC,EAClC,qCAAqC,EACrC,6DAA6D,EAC7D,kBAAkB,EAClB,mCAAmC,EACnC,iCAAiC,EACjC,yCAAyC,EACzC,gDAAgD,EAChD,2CAA2C,EAC3C,2CAA2C,EAC3C,iCAAiC,EACjC,iCAAiC,EACjC,qBAAqB,EACrB,mBAAmB,EACnB,oCAAoC,EACpC,2BAA2B,EAC3B,0CAA0C,GAC3C,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,iBAAiB,EACjB,QAAQ,EACR,kBAAkB,EAClB,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,UAAU,EACV,uBAAuB,EACvB,qBAAqB,EACrB,aAAa,EACb,uBAAuB,EACvB,wCAAwC,EACxC,yCAAyC,EACzC,uCAAuC,EACvC,mCAAmC,EACnC,mCAAmC,EACnC,oCAAoC,EACpC,8CAA8C,EAC9C,8CAA8C,EAC9C,wCAAwC,EACxC,2BAA2B,EAC3B,sCAAsC,EACtC,2CAA2C,EAC3C,gDAAgD,EAChD,uBAAuB,EACvB,wBAAwB,EACxB,wCAAwC,EACxC,mDAAmD,EACnD,sDAAsD,EACtD,0CAA0C,EAC1C,8CAA8C,EAC9C,yCAAyC,EACzC,uBAAuB,EACvB,iBAAiB,EACjB,wBAAwB,EACxB,sBAAsB,EACtB,gCAAgC,EAChC,UAAU,EACV,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,2BAA2B,EAC3B,qBAAqB,EACrB,wBAAwB,EACxB,YAAY,EACZ,qBAAqB,EACrB,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,wBAAwB,EACxB,2BAA2B,EAC3B,8BAA8B,EAC9B,sBAAsB,EACtB,IAAI,EACJ,kBAAkB,EAClB,cAAc,EACd,sBAAsB,EACtB,wBAAwB,EACxB,eAAe,EACf,oBAAoB,EACpB,yBAAyB,EACzB,UAAU,EACV,WAAW,EACX,6BAA6B,EAC7B,iBAAiB,EACjB,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,iCAAiC,GAClC,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,wCAAwC,EACxC,2CAA2C,EAC3C,8BAA8B,EAC9B,kBAAkB,EAClB,0BAA0B,EAC1B,gCAAgC,EAChC,gCAAgC,EAChC,iCAAiC,EACjC,gCAAgC,EAChC,iCAAiC,EACjC,gDAAgD,EAChD,iCAAiC,EACjC,kCAAkC,EAClC,qCAAqC,EACrC,6DAA6D,EAC7D,kBAAkB,EAClB,mCAAmC,EACnC,iCAAiC,EACjC,yCAAyC,EACzC,gDAAgD,EAChD,2CAA2C,EAC3C,2CAA2C,EAC3C,iCAAiC,EACjC,qBAAqB,EACrB,iCAAiC,EACjC,qBAAqB,EACrB,mBAAmB,EACnB,oCAAoC,EACpC,2BAA2B,EAC3B,0CAA0C,GAC3C,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC"}
|
|
@@ -2,6 +2,27 @@ import type * as _Core from "@osdk/foundry.core";
|
|
|
2
2
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
3
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
4
|
import type * as _Connectivity from "../_components.js";
|
|
5
|
+
/**
|
|
6
|
+
* Creates a new Connection.
|
|
7
|
+
* Any secrets specified in the request body are transmitted over the network encrypted using TLS. Once the
|
|
8
|
+
* secrets reach Foundry's servers, they will be temporarily decrypted and remain in plaintext in memory to
|
|
9
|
+
* be processed as needed. They will stay in plaintext in memory until the garbage collection process cleans
|
|
10
|
+
* up the memory. The secrets are always stored encrypted on our servers.
|
|
11
|
+
* By using this endpoint, you acknowledge and accept any potential risks associated with the temporary
|
|
12
|
+
* in-memory handling of secrets. If you do not want your secrets to be temporarily decrypted, you should
|
|
13
|
+
* use the Foundry UI instead.
|
|
14
|
+
*
|
|
15
|
+
* @alpha
|
|
16
|
+
*
|
|
17
|
+
* Required Scopes: [api:connectivity-connection-write]
|
|
18
|
+
* URL: /v2/connectivity/connections
|
|
19
|
+
*/
|
|
20
|
+
export declare function create($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
21
|
+
$body: _Connectivity.CreateConnectionRequest,
|
|
22
|
+
$queryParams?: {
|
|
23
|
+
preview?: _Core.PreviewMode | undefined;
|
|
24
|
+
}
|
|
25
|
+
]): Promise<_Connectivity.Connection>;
|
|
5
26
|
/**
|
|
6
27
|
* Get the Connection with the specified rid.
|
|
7
28
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Connection.d.ts","sourceRoot":"","sources":["../../../src/public/Connection.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,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;AAWxD;;;;;;;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;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,aAAa,CAC3B,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,iCAAiC;IACtD,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf"}
|
|
1
|
+
{"version":3,"file":"Connection.d.ts","sourceRoot":"","sources":["../../../src/public/Connection.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,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;AAWxD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,KAAK,EAAE,aAAa,CAAC,uBAAuB;IAC5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AASD;;;;;;;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;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,aAAa,CAC3B,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,iCAAiC;IACtD,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf"}
|
|
@@ -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":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry.connectivity",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@osdk/shared.client": "^1.0.1",
|
|
23
23
|
"@osdk/shared.client2": "^1.0.0",
|
|
24
|
-
"@osdk/foundry.core": "2.
|
|
25
|
-
"@osdk/foundry.datasets": "2.
|
|
26
|
-
"@osdk/foundry.
|
|
27
|
-
"@osdk/foundry.
|
|
24
|
+
"@osdk/foundry.core": "2.10.0",
|
|
25
|
+
"@osdk/foundry.datasets": "2.10.0",
|
|
26
|
+
"@osdk/foundry.filesystem": "2.10.0",
|
|
27
|
+
"@osdk/foundry.orchestration": "2.10.0",
|
|
28
28
|
"@osdk/shared.net.platformapi": "~1.2.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"sls": {
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"com.palantir.foundry.api:api-gateway": {
|
|
53
|
-
"minVersion": "1.
|
|
53
|
+
"minVersion": "1.1047.0",
|
|
54
54
|
"maxVersion": "1.x.x",
|
|
55
55
|
"optional": false
|
|
56
56
|
}
|