@pulumi/databricks 1.40.0 → 1.41.0-alpha.1715876596

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/types/output.d.ts CHANGED
@@ -366,6 +366,110 @@ export interface ExternalLocationEncryptionDetailsSseEncryptionDetails {
366
366
  algorithm?: string;
367
367
  awsKmsKeyArn?: string;
368
368
  }
369
+ export interface GetCatalogCatalogInfo {
370
+ browseOnly?: boolean;
371
+ /**
372
+ * Type of the catalog, e.g. `MANAGED_CATALOG`, `DELTASHARING_CATALOG`, `SYSTEM_CATALOG`,
373
+ */
374
+ catalogType?: string;
375
+ /**
376
+ * Free-form text description
377
+ */
378
+ comment?: string;
379
+ /**
380
+ * The name of the connection to an external data source.
381
+ */
382
+ connectionName?: string;
383
+ /**
384
+ * Time at which this catalog was created, in epoch milliseconds.
385
+ */
386
+ createdAt?: number;
387
+ /**
388
+ * Username of catalog creator.
389
+ */
390
+ createdBy?: string;
391
+ /**
392
+ * object describing applied predictive optimization flag.
393
+ */
394
+ effectivePredictiveOptimizationFlag?: outputs.GetCatalogCatalogInfoEffectivePredictiveOptimizationFlag;
395
+ /**
396
+ * Whether predictive optimization should be enabled for this object and objects under it.
397
+ */
398
+ enablePredictiveOptimization?: string;
399
+ /**
400
+ * The full name of the catalog. Corresponds with the name field.
401
+ */
402
+ fullName?: string;
403
+ /**
404
+ * Whether the current securable is accessible from all workspaces or a specific set of workspaces.
405
+ */
406
+ isolationMode?: string;
407
+ /**
408
+ * Unique identifier of parent metastore.
409
+ */
410
+ metastoreId?: string;
411
+ /**
412
+ * name of the catalog
413
+ */
414
+ name?: string;
415
+ /**
416
+ * A map of key-value properties attached to the securable.
417
+ */
418
+ options?: {
419
+ [key: string]: any;
420
+ };
421
+ /**
422
+ * Current owner of the catalog
423
+ */
424
+ owner?: string;
425
+ /**
426
+ * A map of key-value properties attached to the securable.
427
+ */
428
+ properties?: {
429
+ [key: string]: any;
430
+ };
431
+ /**
432
+ * The name of delta sharing provider.
433
+ */
434
+ providerName?: string;
435
+ provisioningInfo?: outputs.GetCatalogCatalogInfoProvisioningInfo;
436
+ /**
437
+ * Kind of catalog securable.
438
+ */
439
+ securableKind?: string;
440
+ /**
441
+ * Securable type.
442
+ */
443
+ securableType?: string;
444
+ /**
445
+ * The name of the share under the share provider.
446
+ */
447
+ shareName?: string;
448
+ /**
449
+ * Storage Location URL (full path) for managed tables within catalog.
450
+ */
451
+ storageLocation?: string;
452
+ /**
453
+ * Storage root URL for managed tables within catalog.
454
+ */
455
+ storageRoot?: string;
456
+ /**
457
+ * Time at which this catalog was last modified, in epoch milliseconds.
458
+ */
459
+ updatedAt?: number;
460
+ /**
461
+ * Username of user who last modified catalog.
462
+ */
463
+ updatedBy?: string;
464
+ }
465
+ export interface GetCatalogCatalogInfoEffectivePredictiveOptimizationFlag {
466
+ inheritedFromName?: string;
467
+ inheritedFromType?: string;
468
+ value: string;
469
+ }
470
+ export interface GetCatalogCatalogInfoProvisioningInfo {
471
+ state?: string;
472
+ }
369
473
  export interface GetClusterClusterInfo {
370
474
  autoscale?: outputs.GetClusterClusterInfoAutoscale;
371
475
  /**
@@ -2055,6 +2159,10 @@ export interface GetMetastoreMetastoreInfo {
2055
2159
  updatedAt?: number;
2056
2160
  updatedBy?: string;
2057
2161
  }
2162
+ export interface GetMlflowExperimentTag {
2163
+ key?: string;
2164
+ value?: string;
2165
+ }
2058
2166
  export interface GetMlflowModelLatestVersion {
2059
2167
  creationTimestamp?: number;
2060
2168
  currentStage?: string;
@@ -2243,6 +2351,157 @@ export interface GetStorageCredentialStorageCredentialInfoDatabricksGcpServiceAc
2243
2351
  */
2244
2352
  email?: string;
2245
2353
  }
2354
+ export interface GetTableTableInfo {
2355
+ accessPoint?: string;
2356
+ browseOnly?: boolean;
2357
+ /**
2358
+ * Name of parent catalog.
2359
+ */
2360
+ catalogName?: string;
2361
+ /**
2362
+ * Array of ColumnInfo objects of the table's columns
2363
+ */
2364
+ columns?: outputs.GetTableTableInfoColumn[];
2365
+ /**
2366
+ * Free-form text description
2367
+ */
2368
+ comment?: string;
2369
+ createdAt?: number;
2370
+ createdBy?: string;
2371
+ dataAccessConfigurationId?: string;
2372
+ /**
2373
+ * Table format, e.g. DELTA, CSV, JSON
2374
+ */
2375
+ dataSourceFormat?: string;
2376
+ deletedAt?: number;
2377
+ deltaRuntimePropertiesKvpairs?: outputs.GetTableTableInfoDeltaRuntimePropertiesKvpairs;
2378
+ effectivePredictiveOptimizationFlag?: outputs.GetTableTableInfoEffectivePredictiveOptimizationFlag;
2379
+ enablePredictiveOptimization?: string;
2380
+ encryptionDetails?: outputs.GetTableTableInfoEncryptionDetails;
2381
+ fullName?: string;
2382
+ metastoreId?: string;
2383
+ /**
2384
+ * Full name of the databricks_table: _`catalog`.`schema`.`table`_
2385
+ */
2386
+ name?: string;
2387
+ /**
2388
+ * Current owner of the table
2389
+ */
2390
+ owner?: string;
2391
+ pipelineId?: string;
2392
+ properties?: {
2393
+ [key: string]: any;
2394
+ };
2395
+ rowFilter?: outputs.GetTableTableInfoRowFilter;
2396
+ /**
2397
+ * Name of parent schema relative to its parent catalog.
2398
+ */
2399
+ schemaName?: string;
2400
+ sqlPath?: string;
2401
+ storageCredentialName?: string;
2402
+ storageLocation?: string;
2403
+ tableConstraints?: outputs.GetTableTableInfoTableConstraint[];
2404
+ tableId?: string;
2405
+ /**
2406
+ * Table type, e.g. MANAGED, EXTERNAL, VIEW
2407
+ */
2408
+ tableType?: string;
2409
+ updatedAt?: number;
2410
+ updatedBy?: string;
2411
+ /**
2412
+ * View definition SQL (when `tableType` is VIEW, MATERIALIZED_VIEW, or STREAMING_TABLE)
2413
+ */
2414
+ viewDefinition?: string;
2415
+ /**
2416
+ * View dependencies (when `tableType` is VIEW or MATERIALIZED_VIEW, STREAMING_TABLE)
2417
+ */
2418
+ viewDependencies?: outputs.GetTableTableInfoViewDependencies;
2419
+ }
2420
+ export interface GetTableTableInfoColumn {
2421
+ /**
2422
+ * Free-form text description
2423
+ */
2424
+ comment?: string;
2425
+ mask?: outputs.GetTableTableInfoColumnMask;
2426
+ /**
2427
+ * Full name of the databricks_table: _`catalog`.`schema`.`table`_
2428
+ */
2429
+ name?: string;
2430
+ nullable?: boolean;
2431
+ partitionIndex?: number;
2432
+ position?: number;
2433
+ typeIntervalType?: string;
2434
+ typeJson?: string;
2435
+ typeName?: string;
2436
+ typePrecision?: number;
2437
+ typeScale?: number;
2438
+ typeText?: string;
2439
+ }
2440
+ export interface GetTableTableInfoColumnMask {
2441
+ functionName?: string;
2442
+ usingColumnNames?: string[];
2443
+ }
2444
+ export interface GetTableTableInfoDeltaRuntimePropertiesKvpairs {
2445
+ deltaRuntimeProperties: {
2446
+ [key: string]: any;
2447
+ };
2448
+ }
2449
+ export interface GetTableTableInfoEffectivePredictiveOptimizationFlag {
2450
+ inheritedFromName?: string;
2451
+ inheritedFromType?: string;
2452
+ value: string;
2453
+ }
2454
+ export interface GetTableTableInfoEncryptionDetails {
2455
+ sseEncryptionDetails?: outputs.GetTableTableInfoEncryptionDetailsSseEncryptionDetails;
2456
+ }
2457
+ export interface GetTableTableInfoEncryptionDetailsSseEncryptionDetails {
2458
+ algorithm?: string;
2459
+ awsKmsKeyArn?: string;
2460
+ }
2461
+ export interface GetTableTableInfoRowFilter {
2462
+ functionName: string;
2463
+ inputColumnNames: string[];
2464
+ }
2465
+ export interface GetTableTableInfoTableConstraint {
2466
+ foreignKeyConstraint?: outputs.GetTableTableInfoTableConstraintForeignKeyConstraint;
2467
+ namedTableConstraint?: outputs.GetTableTableInfoTableConstraintNamedTableConstraint;
2468
+ primaryKeyConstraint?: outputs.GetTableTableInfoTableConstraintPrimaryKeyConstraint;
2469
+ }
2470
+ export interface GetTableTableInfoTableConstraintForeignKeyConstraint {
2471
+ childColumns: string[];
2472
+ /**
2473
+ * Full name of the databricks_table: _`catalog`.`schema`.`table`_
2474
+ */
2475
+ name: string;
2476
+ parentColumns: string[];
2477
+ parentTable: string;
2478
+ }
2479
+ export interface GetTableTableInfoTableConstraintNamedTableConstraint {
2480
+ /**
2481
+ * Full name of the databricks_table: _`catalog`.`schema`.`table`_
2482
+ */
2483
+ name: string;
2484
+ }
2485
+ export interface GetTableTableInfoTableConstraintPrimaryKeyConstraint {
2486
+ childColumns: string[];
2487
+ /**
2488
+ * Full name of the databricks_table: _`catalog`.`schema`.`table`_
2489
+ */
2490
+ name: string;
2491
+ }
2492
+ export interface GetTableTableInfoViewDependencies {
2493
+ dependencies?: outputs.GetTableTableInfoViewDependenciesDependency[];
2494
+ }
2495
+ export interface GetTableTableInfoViewDependenciesDependency {
2496
+ function?: outputs.GetTableTableInfoViewDependenciesDependencyFunction;
2497
+ table?: outputs.GetTableTableInfoViewDependenciesDependencyTable;
2498
+ }
2499
+ export interface GetTableTableInfoViewDependenciesDependencyFunction {
2500
+ functionFullName: string;
2501
+ }
2502
+ export interface GetTableTableInfoViewDependenciesDependencyTable {
2503
+ tableFullName: string;
2504
+ }
2246
2505
  export interface GrantsGrant {
2247
2506
  principal: string;
2248
2507
  privileges: string[];
@@ -2514,7 +2773,7 @@ export interface JobJobClusterNewCluster {
2514
2773
  initScripts?: outputs.JobJobClusterNewClusterInitScript[];
2515
2774
  instancePoolId?: string;
2516
2775
  /**
2517
- * (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
2776
+ * (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
2518
2777
  */
2519
2778
  libraries?: outputs.JobJobClusterNewClusterLibrary[];
2520
2779
  nodeTypeId: string;
@@ -2720,7 +2979,7 @@ export interface JobNewCluster {
2720
2979
  initScripts?: outputs.JobNewClusterInitScript[];
2721
2980
  instancePoolId?: string;
2722
2981
  /**
2723
- * (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
2982
+ * (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
2724
2983
  */
2725
2984
  libraries?: outputs.JobNewClusterLibrary[];
2726
2985
  nodeTypeId: string;
@@ -3445,7 +3704,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
3445
3704
  initScripts?: outputs.JobTaskForEachTaskTaskNewClusterInitScript[];
3446
3705
  instancePoolId?: string;
3447
3706
  /**
3448
- * (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
3707
+ * (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
3449
3708
  */
3450
3709
  libraries?: outputs.JobTaskForEachTaskTaskNewClusterLibrary[];
3451
3710
  nodeTypeId: string;
@@ -3972,7 +4231,7 @@ export interface JobTaskNewCluster {
3972
4231
  initScripts?: outputs.JobTaskNewClusterInitScript[];
3973
4232
  instancePoolId?: string;
3974
4233
  /**
3975
- * (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
4234
+ * (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
3976
4235
  */
3977
4236
  libraries?: outputs.JobTaskNewClusterLibrary[];
3978
4237
  nodeTypeId: string;