@pulumi/databricks 1.62.0-alpha.1741239473 → 1.62.0-alpha.1741375452
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/app.d.ts +5 -0
- package/app.js +4 -0
- package/app.js.map +1 -1
- package/budgetPolicy.d.ts +98 -0
- package/budgetPolicy.js +81 -0
- package/budgetPolicy.js.map +1 -0
- package/connection.d.ts +106 -9
- package/connection.js +37 -7
- package/connection.js.map +1 -1
- package/credential.d.ts +0 -2
- package/credential.js +0 -2
- package/credential.js.map +1 -1
- package/getBudgetPolicies.d.ts +49 -0
- package/getBudgetPolicies.js +50 -0
- package/getBudgetPolicies.js.map +1 -0
- package/getBudgetPolicy.d.ts +53 -0
- package/getBudgetPolicy.js +36 -0
- package/getBudgetPolicy.js.map +1 -0
- package/getCluster.d.ts +4 -28
- package/getCluster.js +0 -24
- package/getCluster.js.map +1 -1
- package/getClusters.d.ts +60 -0
- package/getClusters.js +60 -0
- package/getClusters.js.map +1 -1
- package/getDashboards.d.ts +42 -0
- package/getDashboards.js +30 -0
- package/getDashboards.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +19 -5
- package/index.js.map +1 -1
- package/metastoreAssignment.d.ts +7 -1
- package/metastoreAssignment.js.map +1 -1
- package/package.json +2 -2
- package/qualityMonitor.d.ts +6 -6
- package/sqlTable.d.ts +7 -7
- package/sqlTable.js +1 -1
- package/types/input.d.ts +89 -12
- package/types/output.d.ts +117 -8
- package/vectorSearchIndex.d.ts +6 -6
- package/volume.d.ts +0 -2
- package/volume.js +0 -2
- package/volume.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -342,6 +342,16 @@ export interface BudgetFilterWorkspaceId {
|
|
|
342
342
|
*/
|
|
343
343
|
values?: number[];
|
|
344
344
|
}
|
|
345
|
+
export interface BudgetPolicyCustomTag {
|
|
346
|
+
/**
|
|
347
|
+
* The key of the tag. - Must be unique among all custom tags of the same policy. Cannot be “budget-policy-name”, “budget-policy-id” or "budget-policy-resolution-result" as these tags are preserved.
|
|
348
|
+
*/
|
|
349
|
+
key: string;
|
|
350
|
+
/**
|
|
351
|
+
* The value of the tag.
|
|
352
|
+
*/
|
|
353
|
+
value?: string;
|
|
354
|
+
}
|
|
345
355
|
export interface ClusterAutoscale {
|
|
346
356
|
/**
|
|
347
357
|
* The maximum number of workers to which the cluster can scale up when overloaded. maxWorkers must be strictly greater than min_workers.
|
|
@@ -746,6 +756,9 @@ export interface ComplianceSecurityProfileWorkspaceSettingComplianceSecurityProf
|
|
|
746
756
|
complianceStandards: string[];
|
|
747
757
|
isEnabled: boolean;
|
|
748
758
|
}
|
|
759
|
+
export interface ConnectionProvisioningInfo {
|
|
760
|
+
state?: string;
|
|
761
|
+
}
|
|
749
762
|
export interface CredentialAwsIamRole {
|
|
750
763
|
externalId: string;
|
|
751
764
|
/**
|
|
@@ -831,6 +844,7 @@ export interface GetAppApp {
|
|
|
831
844
|
* attribute
|
|
832
845
|
*/
|
|
833
846
|
appStatus: outputs.GetAppAppAppStatus;
|
|
847
|
+
budgetPolicyId?: string;
|
|
834
848
|
/**
|
|
835
849
|
* attribute
|
|
836
850
|
*/
|
|
@@ -851,6 +865,7 @@ export interface GetAppApp {
|
|
|
851
865
|
* The description of the resource.
|
|
852
866
|
*/
|
|
853
867
|
description?: string;
|
|
868
|
+
effectiveBudgetPolicyId: string;
|
|
854
869
|
/**
|
|
855
870
|
* Id of the job to grant permission on.
|
|
856
871
|
*/
|
|
@@ -1046,6 +1061,7 @@ export interface GetAppsApp {
|
|
|
1046
1061
|
* attribute
|
|
1047
1062
|
*/
|
|
1048
1063
|
appStatus: outputs.GetAppsAppAppStatus;
|
|
1064
|
+
budgetPolicyId?: string;
|
|
1049
1065
|
/**
|
|
1050
1066
|
* attribute
|
|
1051
1067
|
*/
|
|
@@ -1066,6 +1082,7 @@ export interface GetAppsApp {
|
|
|
1066
1082
|
* The description of the resource.
|
|
1067
1083
|
*/
|
|
1068
1084
|
description?: string;
|
|
1085
|
+
effectiveBudgetPolicyId: string;
|
|
1069
1086
|
/**
|
|
1070
1087
|
* Id of the job to grant permission on.
|
|
1071
1088
|
*/
|
|
@@ -1255,6 +1272,22 @@ export interface GetAppsAppResourceSqlWarehouse {
|
|
|
1255
1272
|
*/
|
|
1256
1273
|
permission: string;
|
|
1257
1274
|
}
|
|
1275
|
+
export interface GetBudgetPoliciesBudgetPolicy {
|
|
1276
|
+
customTags?: outputs.GetBudgetPoliciesBudgetPolicyCustomTag[];
|
|
1277
|
+
policyId: string;
|
|
1278
|
+
/**
|
|
1279
|
+
* The partial name of policies to be filtered on. If unspecified, all policies will be returned.
|
|
1280
|
+
*/
|
|
1281
|
+
policyName?: string;
|
|
1282
|
+
}
|
|
1283
|
+
export interface GetBudgetPoliciesBudgetPolicyCustomTag {
|
|
1284
|
+
key: string;
|
|
1285
|
+
value?: string;
|
|
1286
|
+
}
|
|
1287
|
+
export interface GetBudgetPolicyCustomTag {
|
|
1288
|
+
key: string;
|
|
1289
|
+
value?: string;
|
|
1290
|
+
}
|
|
1258
1291
|
export interface GetCatalogCatalogInfo {
|
|
1259
1292
|
browseOnly?: boolean;
|
|
1260
1293
|
/**
|
|
@@ -1365,14 +1398,14 @@ export interface GetClusterClusterInfo {
|
|
|
1365
1398
|
azureAttributes?: outputs.GetClusterClusterInfoAzureAttributes;
|
|
1366
1399
|
clusterCores?: number;
|
|
1367
1400
|
/**
|
|
1368
|
-
* The id of the cluster
|
|
1401
|
+
* The id of the cluster.
|
|
1369
1402
|
*/
|
|
1370
1403
|
clusterId?: string;
|
|
1371
1404
|
clusterLogConf?: outputs.GetClusterClusterInfoClusterLogConf;
|
|
1372
1405
|
clusterLogStatus?: outputs.GetClusterClusterInfoClusterLogStatus;
|
|
1373
1406
|
clusterMemoryMb?: number;
|
|
1374
1407
|
/**
|
|
1375
|
-
* The exact name of the cluster to search
|
|
1408
|
+
* The exact name of the cluster to search. Can only be specified if there is exactly one cluster with the provided name.
|
|
1376
1409
|
*/
|
|
1377
1410
|
clusterName?: string;
|
|
1378
1411
|
clusterSource?: string;
|
|
@@ -1599,13 +1632,13 @@ export interface GetClusterClusterInfoSpec {
|
|
|
1599
1632
|
awsAttributes?: outputs.GetClusterClusterInfoSpecAwsAttributes;
|
|
1600
1633
|
azureAttributes?: outputs.GetClusterClusterInfoSpecAzureAttributes;
|
|
1601
1634
|
/**
|
|
1602
|
-
* The id of the cluster
|
|
1635
|
+
* The id of the cluster.
|
|
1603
1636
|
*/
|
|
1604
1637
|
clusterId: string;
|
|
1605
1638
|
clusterLogConf?: outputs.GetClusterClusterInfoSpecClusterLogConf;
|
|
1606
1639
|
clusterMountInfos?: outputs.GetClusterClusterInfoSpecClusterMountInfo[];
|
|
1607
1640
|
/**
|
|
1608
|
-
* The exact name of the cluster to search
|
|
1641
|
+
* The exact name of the cluster to search. Can only be specified if there is exactly one cluster with the provided name.
|
|
1609
1642
|
*/
|
|
1610
1643
|
clusterName?: string;
|
|
1611
1644
|
/**
|
|
@@ -1931,6 +1964,27 @@ export interface GetCurrentMetastoreMetastoreInfo {
|
|
|
1931
1964
|
*/
|
|
1932
1965
|
updatedBy?: string;
|
|
1933
1966
|
}
|
|
1967
|
+
export interface GetDashboardsDashboard {
|
|
1968
|
+
/**
|
|
1969
|
+
* The timestamp of when the dashboard was created.
|
|
1970
|
+
*/
|
|
1971
|
+
createTime: string;
|
|
1972
|
+
/**
|
|
1973
|
+
* The unique ID of the dashboard.
|
|
1974
|
+
*/
|
|
1975
|
+
dashboardId: string;
|
|
1976
|
+
/**
|
|
1977
|
+
* The display name of the dashboard.
|
|
1978
|
+
*/
|
|
1979
|
+
displayName?: string;
|
|
1980
|
+
etag: string;
|
|
1981
|
+
lifecycleState: string;
|
|
1982
|
+
parentPath: string;
|
|
1983
|
+
path: string;
|
|
1984
|
+
serializedDashboard?: string;
|
|
1985
|
+
updateTime: string;
|
|
1986
|
+
warehouseId?: string;
|
|
1987
|
+
}
|
|
1934
1988
|
export interface GetDbfsFilePathsPathList {
|
|
1935
1989
|
fileSize?: number;
|
|
1936
1990
|
/**
|
|
@@ -4131,6 +4185,7 @@ export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAmazo
|
|
|
4131
4185
|
awsSecretAccessKey?: string;
|
|
4132
4186
|
awsSecretAccessKeyPlaintext?: string;
|
|
4133
4187
|
bedrockProvider: string;
|
|
4188
|
+
instanceProfileArn?: string;
|
|
4134
4189
|
}
|
|
4135
4190
|
export interface GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig {
|
|
4136
4191
|
anthropicApiKey?: string;
|
|
@@ -5453,6 +5508,7 @@ export interface JobTask {
|
|
|
5453
5508
|
*/
|
|
5454
5509
|
existingClusterId?: string;
|
|
5455
5510
|
forEachTask?: outputs.JobTaskForEachTask;
|
|
5511
|
+
genAiComputeTask?: outputs.JobTaskGenAiComputeTask;
|
|
5456
5512
|
/**
|
|
5457
5513
|
* block described below that specifies health conditions for a given task.
|
|
5458
5514
|
*/
|
|
@@ -5662,6 +5718,7 @@ export interface JobTaskForEachTaskTask {
|
|
|
5662
5718
|
* Identifier of the interactive cluster to run job on. *Note: running tasks on interactive clusters may lead to increased costs!*
|
|
5663
5719
|
*/
|
|
5664
5720
|
existingClusterId?: string;
|
|
5721
|
+
genAiComputeTask?: outputs.JobTaskForEachTaskTaskGenAiComputeTask;
|
|
5665
5722
|
/**
|
|
5666
5723
|
* block described below that specifies health conditions for a given task.
|
|
5667
5724
|
*/
|
|
@@ -5829,6 +5886,21 @@ export interface JobTaskForEachTaskTaskEmailNotifications {
|
|
|
5829
5886
|
*/
|
|
5830
5887
|
onSuccesses?: string[];
|
|
5831
5888
|
}
|
|
5889
|
+
export interface JobTaskForEachTaskTaskGenAiComputeTask {
|
|
5890
|
+
command?: string;
|
|
5891
|
+
compute?: outputs.JobTaskForEachTaskTaskGenAiComputeTaskCompute;
|
|
5892
|
+
dlRuntimeImage: string;
|
|
5893
|
+
mlflowExperimentName?: string;
|
|
5894
|
+
source?: string;
|
|
5895
|
+
trainingScriptPath?: string;
|
|
5896
|
+
yamlParameters?: string;
|
|
5897
|
+
yamlParametersFilePath?: string;
|
|
5898
|
+
}
|
|
5899
|
+
export interface JobTaskForEachTaskTaskGenAiComputeTaskCompute {
|
|
5900
|
+
gpuNodePoolId: string;
|
|
5901
|
+
gpuType?: string;
|
|
5902
|
+
numGpus: number;
|
|
5903
|
+
}
|
|
5832
5904
|
export interface JobTaskForEachTaskTaskHealth {
|
|
5833
5905
|
/**
|
|
5834
5906
|
* list of rules that are represented as objects with the following attributes:
|
|
@@ -6383,6 +6455,21 @@ export interface JobTaskForEachTaskTaskWebhookNotificationsOnSuccess {
|
|
|
6383
6455
|
*/
|
|
6384
6456
|
id: string;
|
|
6385
6457
|
}
|
|
6458
|
+
export interface JobTaskGenAiComputeTask {
|
|
6459
|
+
command?: string;
|
|
6460
|
+
compute?: outputs.JobTaskGenAiComputeTaskCompute;
|
|
6461
|
+
dlRuntimeImage: string;
|
|
6462
|
+
mlflowExperimentName?: string;
|
|
6463
|
+
source?: string;
|
|
6464
|
+
trainingScriptPath?: string;
|
|
6465
|
+
yamlParameters?: string;
|
|
6466
|
+
yamlParametersFilePath?: string;
|
|
6467
|
+
}
|
|
6468
|
+
export interface JobTaskGenAiComputeTaskCompute {
|
|
6469
|
+
gpuNodePoolId: string;
|
|
6470
|
+
gpuType?: string;
|
|
6471
|
+
numGpus: number;
|
|
6472
|
+
}
|
|
6386
6473
|
export interface JobTaskHealth {
|
|
6387
6474
|
/**
|
|
6388
6475
|
* list of rules that are represented as objects with the following attributes:
|
|
@@ -7507,6 +7594,7 @@ export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig
|
|
|
7507
7594
|
* The underlying provider in Amazon Bedrock. Supported values (case insensitive) include: `Anthropic`, `Cohere`, `AI21Labs`, `Amazon`.
|
|
7508
7595
|
*/
|
|
7509
7596
|
bedrockProvider: string;
|
|
7597
|
+
instanceProfileArn?: string;
|
|
7510
7598
|
}
|
|
7511
7599
|
export interface ModelServingConfigServedEntityExternalModelAnthropicConfig {
|
|
7512
7600
|
/**
|
|
@@ -9077,7 +9165,13 @@ export interface VectorSearchIndexDeltaSyncIndexSpec {
|
|
|
9077
9165
|
* array of objects representing columns that contain the embedding source. Each entry consists of:
|
|
9078
9166
|
*/
|
|
9079
9167
|
embeddingSourceColumns?: outputs.VectorSearchIndexDeltaSyncIndexSpecEmbeddingSourceColumn[];
|
|
9168
|
+
/**
|
|
9169
|
+
* array of objects representing columns that contain the embedding vectors. Each entry consists of:
|
|
9170
|
+
*/
|
|
9080
9171
|
embeddingVectorColumns?: outputs.VectorSearchIndexDeltaSyncIndexSpecEmbeddingVectorColumn[];
|
|
9172
|
+
/**
|
|
9173
|
+
* Automatically sync the vector index contents and computed embeddings to the specified Delta table. The only supported table name is the index name with the suffix `_writeback_table`.
|
|
9174
|
+
*/
|
|
9081
9175
|
embeddingWritebackTable?: string;
|
|
9082
9176
|
/**
|
|
9083
9177
|
* ID of the associated Delta Live Table pipeline.
|
|
@@ -9095,16 +9189,22 @@ export interface VectorSearchIndexDeltaSyncIndexSpec {
|
|
|
9095
9189
|
sourceTable?: string;
|
|
9096
9190
|
}
|
|
9097
9191
|
export interface VectorSearchIndexDeltaSyncIndexSpecEmbeddingSourceColumn {
|
|
9192
|
+
/**
|
|
9193
|
+
* The name of the embedding model endpoint
|
|
9194
|
+
*/
|
|
9098
9195
|
embeddingModelEndpointName?: string;
|
|
9099
9196
|
/**
|
|
9100
|
-
*
|
|
9197
|
+
* The name of the column
|
|
9101
9198
|
*/
|
|
9102
9199
|
name?: string;
|
|
9103
9200
|
}
|
|
9104
9201
|
export interface VectorSearchIndexDeltaSyncIndexSpecEmbeddingVectorColumn {
|
|
9202
|
+
/**
|
|
9203
|
+
* Dimension of the embedding vector.
|
|
9204
|
+
*/
|
|
9105
9205
|
embeddingDimension?: number;
|
|
9106
9206
|
/**
|
|
9107
|
-
*
|
|
9207
|
+
* The name of the column.
|
|
9108
9208
|
*/
|
|
9109
9209
|
name?: string;
|
|
9110
9210
|
}
|
|
@@ -9113,6 +9213,9 @@ export interface VectorSearchIndexDirectAccessIndexSpec {
|
|
|
9113
9213
|
* array of objects representing columns that contain the embedding source. Each entry consists of:
|
|
9114
9214
|
*/
|
|
9115
9215
|
embeddingSourceColumns?: outputs.VectorSearchIndexDirectAccessIndexSpecEmbeddingSourceColumn[];
|
|
9216
|
+
/**
|
|
9217
|
+
* array of objects representing columns that contain the embedding vectors. Each entry consists of:
|
|
9218
|
+
*/
|
|
9116
9219
|
embeddingVectorColumns?: outputs.VectorSearchIndexDirectAccessIndexSpecEmbeddingVectorColumn[];
|
|
9117
9220
|
/**
|
|
9118
9221
|
* The schema of the index in JSON format. Check the [API documentation](https://docs.databricks.com/api/workspace/vectorsearchindexes/createindex#direct_access_index_spec-schema_json) for a list of supported data types.
|
|
@@ -9120,16 +9223,22 @@ export interface VectorSearchIndexDirectAccessIndexSpec {
|
|
|
9120
9223
|
schemaJson?: string;
|
|
9121
9224
|
}
|
|
9122
9225
|
export interface VectorSearchIndexDirectAccessIndexSpecEmbeddingSourceColumn {
|
|
9226
|
+
/**
|
|
9227
|
+
* The name of the embedding model endpoint
|
|
9228
|
+
*/
|
|
9123
9229
|
embeddingModelEndpointName?: string;
|
|
9124
9230
|
/**
|
|
9125
|
-
*
|
|
9231
|
+
* The name of the column
|
|
9126
9232
|
*/
|
|
9127
9233
|
name?: string;
|
|
9128
9234
|
}
|
|
9129
9235
|
export interface VectorSearchIndexDirectAccessIndexSpecEmbeddingVectorColumn {
|
|
9236
|
+
/**
|
|
9237
|
+
* Dimension of the embedding vector.
|
|
9238
|
+
*/
|
|
9130
9239
|
embeddingDimension?: number;
|
|
9131
9240
|
/**
|
|
9132
|
-
*
|
|
9241
|
+
* The name of the column.
|
|
9133
9242
|
*/
|
|
9134
9243
|
name?: string;
|
|
9135
9244
|
}
|
package/vectorSearchIndex.d.ts
CHANGED
|
@@ -59,11 +59,11 @@ export declare class VectorSearchIndex extends pulumi.CustomResource {
|
|
|
59
59
|
*/
|
|
60
60
|
readonly creator: pulumi.Output<string>;
|
|
61
61
|
/**
|
|
62
|
-
* Specification for Delta Sync Index. Required if `indexType` is `DELTA_SYNC`.
|
|
62
|
+
* Specification for Delta Sync Index. Required if `indexType` is `DELTA_SYNC`. This field is a block and is documented below.
|
|
63
63
|
*/
|
|
64
64
|
readonly deltaSyncIndexSpec: pulumi.Output<outputs.VectorSearchIndexDeltaSyncIndexSpec | undefined>;
|
|
65
65
|
/**
|
|
66
|
-
* Specification for Direct Vector Access Index. Required if `indexType` is `DIRECT_ACCESS`.
|
|
66
|
+
* Specification for Direct Vector Access Index. Required if `indexType` is `DIRECT_ACCESS`. This field is a block and is documented below.
|
|
67
67
|
*/
|
|
68
68
|
readonly directAccessIndexSpec: pulumi.Output<outputs.VectorSearchIndexDirectAccessIndexSpec | undefined>;
|
|
69
69
|
/**
|
|
@@ -106,11 +106,11 @@ export interface VectorSearchIndexState {
|
|
|
106
106
|
*/
|
|
107
107
|
creator?: pulumi.Input<string>;
|
|
108
108
|
/**
|
|
109
|
-
* Specification for Delta Sync Index. Required if `indexType` is `DELTA_SYNC`.
|
|
109
|
+
* Specification for Delta Sync Index. Required if `indexType` is `DELTA_SYNC`. This field is a block and is documented below.
|
|
110
110
|
*/
|
|
111
111
|
deltaSyncIndexSpec?: pulumi.Input<inputs.VectorSearchIndexDeltaSyncIndexSpec>;
|
|
112
112
|
/**
|
|
113
|
-
* Specification for Direct Vector Access Index. Required if `indexType` is `DIRECT_ACCESS`.
|
|
113
|
+
* Specification for Direct Vector Access Index. Required if `indexType` is `DIRECT_ACCESS`. This field is a block and is documented below.
|
|
114
114
|
*/
|
|
115
115
|
directAccessIndexSpec?: pulumi.Input<inputs.VectorSearchIndexDirectAccessIndexSpec>;
|
|
116
116
|
/**
|
|
@@ -141,11 +141,11 @@ export interface VectorSearchIndexState {
|
|
|
141
141
|
*/
|
|
142
142
|
export interface VectorSearchIndexArgs {
|
|
143
143
|
/**
|
|
144
|
-
* Specification for Delta Sync Index. Required if `indexType` is `DELTA_SYNC`.
|
|
144
|
+
* Specification for Delta Sync Index. Required if `indexType` is `DELTA_SYNC`. This field is a block and is documented below.
|
|
145
145
|
*/
|
|
146
146
|
deltaSyncIndexSpec?: pulumi.Input<inputs.VectorSearchIndexDeltaSyncIndexSpec>;
|
|
147
147
|
/**
|
|
148
|
-
* Specification for Direct Vector Access Index. Required if `indexType` is `DIRECT_ACCESS`.
|
|
148
|
+
* Specification for Direct Vector Access Index. Required if `indexType` is `DIRECT_ACCESS`. This field is a block and is documented below.
|
|
149
149
|
*/
|
|
150
150
|
directAccessIndexSpec?: pulumi.Input<inputs.VectorSearchIndexDirectAccessIndexSpec>;
|
|
151
151
|
/**
|
package/volume.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* > This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
|
|
4
|
-
*
|
|
5
3
|
* > This resource can only be used with a workspace-level provider!
|
|
6
4
|
*
|
|
7
5
|
* Volumes are Unity Catalog objects representing a logical volume of storage in a cloud object storage location. Volumes provide capabilities for accessing, storing, governing, and organizing files. While tables provide governance over tabular datasets, volumes add governance over non-tabular datasets. You can use volumes to store and access files in any format, including structured, semi-structured, and unstructured data.
|
package/volume.js
CHANGED
|
@@ -6,8 +6,6 @@ exports.Volume = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* > This feature is in [Public Preview](https://docs.databricks.com/release-notes/release-types.html).
|
|
10
|
-
*
|
|
11
9
|
* > This resource can only be used with a workspace-level provider!
|
|
12
10
|
*
|
|
13
11
|
* Volumes are Unity Catalog objects representing a logical volume of storage in a cloud object storage location. Volumes provide capabilities for accessing, storing, governing, and organizing files. While tables provide governance over tabular datasets, volumes add governance over non-tabular datasets. You can use volumes to store and access files in any format, including structured, semi-structured, and unstructured data.
|
package/volume.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"volume.js","sourceRoot":"","sources":["../volume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"volume.js","sourceRoot":"","sources":["../volume.ts"],"names":[],"mappings":"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"}
|