@pulumi/databricks 1.40.0 → 1.41.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/getCatalog.d.ts +112 -0
- package/getCatalog.js +77 -0
- package/getCatalog.js.map +1 -0
- package/getMlflowExperiment.d.ts +126 -0
- package/getMlflowExperiment.js +37 -0
- package/getMlflowExperiment.js.map +1 -0
- package/getTable.d.ts +109 -0
- package/getTable.js +83 -0
- package/getTable.js.map +1 -0
- package/index.d.ts +9 -0
- package/index.js +13 -4
- package/index.js.map +1 -1
- package/job.d.ts +33 -6
- package/job.js.map +1 -1
- package/package.json +2 -2
- package/package.json.bak +2 -2
- package/sqlTable.d.ts +12 -0
- package/sqlTable.js +2 -0
- package/sqlTable.js.map +1 -1
- package/types/input.d.ts +522 -4
- package/types/output.d.ts +263 -4
package/types/input.d.ts
CHANGED
|
@@ -367,6 +367,214 @@ export interface ExternalLocationEncryptionDetailsSseEncryptionDetails {
|
|
|
367
367
|
algorithm?: pulumi.Input<string>;
|
|
368
368
|
awsKmsKeyArn?: pulumi.Input<string>;
|
|
369
369
|
}
|
|
370
|
+
export interface GetCatalogCatalogInfo {
|
|
371
|
+
browseOnly?: boolean;
|
|
372
|
+
/**
|
|
373
|
+
* Type of the catalog, e.g. `MANAGED_CATALOG`, `DELTASHARING_CATALOG`, `SYSTEM_CATALOG`,
|
|
374
|
+
*/
|
|
375
|
+
catalogType?: string;
|
|
376
|
+
/**
|
|
377
|
+
* Free-form text description
|
|
378
|
+
*/
|
|
379
|
+
comment?: string;
|
|
380
|
+
/**
|
|
381
|
+
* The name of the connection to an external data source.
|
|
382
|
+
*/
|
|
383
|
+
connectionName?: string;
|
|
384
|
+
/**
|
|
385
|
+
* Time at which this catalog was created, in epoch milliseconds.
|
|
386
|
+
*/
|
|
387
|
+
createdAt?: number;
|
|
388
|
+
/**
|
|
389
|
+
* Username of catalog creator.
|
|
390
|
+
*/
|
|
391
|
+
createdBy?: string;
|
|
392
|
+
/**
|
|
393
|
+
* object describing applied predictive optimization flag.
|
|
394
|
+
*/
|
|
395
|
+
effectivePredictiveOptimizationFlag?: inputs.GetCatalogCatalogInfoEffectivePredictiveOptimizationFlag;
|
|
396
|
+
/**
|
|
397
|
+
* Whether predictive optimization should be enabled for this object and objects under it.
|
|
398
|
+
*/
|
|
399
|
+
enablePredictiveOptimization?: string;
|
|
400
|
+
/**
|
|
401
|
+
* The full name of the catalog. Corresponds with the name field.
|
|
402
|
+
*/
|
|
403
|
+
fullName?: string;
|
|
404
|
+
/**
|
|
405
|
+
* Whether the current securable is accessible from all workspaces or a specific set of workspaces.
|
|
406
|
+
*/
|
|
407
|
+
isolationMode?: string;
|
|
408
|
+
/**
|
|
409
|
+
* Unique identifier of parent metastore.
|
|
410
|
+
*/
|
|
411
|
+
metastoreId?: string;
|
|
412
|
+
/**
|
|
413
|
+
* name of the catalog
|
|
414
|
+
*/
|
|
415
|
+
name?: string;
|
|
416
|
+
/**
|
|
417
|
+
* A map of key-value properties attached to the securable.
|
|
418
|
+
*/
|
|
419
|
+
options?: {
|
|
420
|
+
[key: string]: any;
|
|
421
|
+
};
|
|
422
|
+
/**
|
|
423
|
+
* Current owner of the catalog
|
|
424
|
+
*/
|
|
425
|
+
owner?: string;
|
|
426
|
+
/**
|
|
427
|
+
* A map of key-value properties attached to the securable.
|
|
428
|
+
*/
|
|
429
|
+
properties?: {
|
|
430
|
+
[key: string]: any;
|
|
431
|
+
};
|
|
432
|
+
/**
|
|
433
|
+
* The name of delta sharing provider.
|
|
434
|
+
*/
|
|
435
|
+
providerName?: string;
|
|
436
|
+
provisioningInfo?: inputs.GetCatalogCatalogInfoProvisioningInfo;
|
|
437
|
+
/**
|
|
438
|
+
* Kind of catalog securable.
|
|
439
|
+
*/
|
|
440
|
+
securableKind?: string;
|
|
441
|
+
/**
|
|
442
|
+
* Securable type.
|
|
443
|
+
*/
|
|
444
|
+
securableType?: string;
|
|
445
|
+
/**
|
|
446
|
+
* The name of the share under the share provider.
|
|
447
|
+
*/
|
|
448
|
+
shareName?: string;
|
|
449
|
+
/**
|
|
450
|
+
* Storage Location URL (full path) for managed tables within catalog.
|
|
451
|
+
*/
|
|
452
|
+
storageLocation?: string;
|
|
453
|
+
/**
|
|
454
|
+
* Storage root URL for managed tables within catalog.
|
|
455
|
+
*/
|
|
456
|
+
storageRoot?: string;
|
|
457
|
+
/**
|
|
458
|
+
* Time at which this catalog was last modified, in epoch milliseconds.
|
|
459
|
+
*/
|
|
460
|
+
updatedAt?: number;
|
|
461
|
+
/**
|
|
462
|
+
* Username of user who last modified catalog.
|
|
463
|
+
*/
|
|
464
|
+
updatedBy?: string;
|
|
465
|
+
}
|
|
466
|
+
export interface GetCatalogCatalogInfoArgs {
|
|
467
|
+
browseOnly?: pulumi.Input<boolean>;
|
|
468
|
+
/**
|
|
469
|
+
* Type of the catalog, e.g. `MANAGED_CATALOG`, `DELTASHARING_CATALOG`, `SYSTEM_CATALOG`,
|
|
470
|
+
*/
|
|
471
|
+
catalogType?: pulumi.Input<string>;
|
|
472
|
+
/**
|
|
473
|
+
* Free-form text description
|
|
474
|
+
*/
|
|
475
|
+
comment?: pulumi.Input<string>;
|
|
476
|
+
/**
|
|
477
|
+
* The name of the connection to an external data source.
|
|
478
|
+
*/
|
|
479
|
+
connectionName?: pulumi.Input<string>;
|
|
480
|
+
/**
|
|
481
|
+
* Time at which this catalog was created, in epoch milliseconds.
|
|
482
|
+
*/
|
|
483
|
+
createdAt?: pulumi.Input<number>;
|
|
484
|
+
/**
|
|
485
|
+
* Username of catalog creator.
|
|
486
|
+
*/
|
|
487
|
+
createdBy?: pulumi.Input<string>;
|
|
488
|
+
/**
|
|
489
|
+
* object describing applied predictive optimization flag.
|
|
490
|
+
*/
|
|
491
|
+
effectivePredictiveOptimizationFlag?: pulumi.Input<inputs.GetCatalogCatalogInfoEffectivePredictiveOptimizationFlagArgs>;
|
|
492
|
+
/**
|
|
493
|
+
* Whether predictive optimization should be enabled for this object and objects under it.
|
|
494
|
+
*/
|
|
495
|
+
enablePredictiveOptimization?: pulumi.Input<string>;
|
|
496
|
+
/**
|
|
497
|
+
* The full name of the catalog. Corresponds with the name field.
|
|
498
|
+
*/
|
|
499
|
+
fullName?: pulumi.Input<string>;
|
|
500
|
+
/**
|
|
501
|
+
* Whether the current securable is accessible from all workspaces or a specific set of workspaces.
|
|
502
|
+
*/
|
|
503
|
+
isolationMode?: pulumi.Input<string>;
|
|
504
|
+
/**
|
|
505
|
+
* Unique identifier of parent metastore.
|
|
506
|
+
*/
|
|
507
|
+
metastoreId?: pulumi.Input<string>;
|
|
508
|
+
/**
|
|
509
|
+
* name of the catalog
|
|
510
|
+
*/
|
|
511
|
+
name?: pulumi.Input<string>;
|
|
512
|
+
/**
|
|
513
|
+
* A map of key-value properties attached to the securable.
|
|
514
|
+
*/
|
|
515
|
+
options?: pulumi.Input<{
|
|
516
|
+
[key: string]: any;
|
|
517
|
+
}>;
|
|
518
|
+
/**
|
|
519
|
+
* Current owner of the catalog
|
|
520
|
+
*/
|
|
521
|
+
owner?: pulumi.Input<string>;
|
|
522
|
+
/**
|
|
523
|
+
* A map of key-value properties attached to the securable.
|
|
524
|
+
*/
|
|
525
|
+
properties?: pulumi.Input<{
|
|
526
|
+
[key: string]: any;
|
|
527
|
+
}>;
|
|
528
|
+
/**
|
|
529
|
+
* The name of delta sharing provider.
|
|
530
|
+
*/
|
|
531
|
+
providerName?: pulumi.Input<string>;
|
|
532
|
+
provisioningInfo?: pulumi.Input<inputs.GetCatalogCatalogInfoProvisioningInfoArgs>;
|
|
533
|
+
/**
|
|
534
|
+
* Kind of catalog securable.
|
|
535
|
+
*/
|
|
536
|
+
securableKind?: pulumi.Input<string>;
|
|
537
|
+
/**
|
|
538
|
+
* Securable type.
|
|
539
|
+
*/
|
|
540
|
+
securableType?: pulumi.Input<string>;
|
|
541
|
+
/**
|
|
542
|
+
* The name of the share under the share provider.
|
|
543
|
+
*/
|
|
544
|
+
shareName?: pulumi.Input<string>;
|
|
545
|
+
/**
|
|
546
|
+
* Storage Location URL (full path) for managed tables within catalog.
|
|
547
|
+
*/
|
|
548
|
+
storageLocation?: pulumi.Input<string>;
|
|
549
|
+
/**
|
|
550
|
+
* Storage root URL for managed tables within catalog.
|
|
551
|
+
*/
|
|
552
|
+
storageRoot?: pulumi.Input<string>;
|
|
553
|
+
/**
|
|
554
|
+
* Time at which this catalog was last modified, in epoch milliseconds.
|
|
555
|
+
*/
|
|
556
|
+
updatedAt?: pulumi.Input<number>;
|
|
557
|
+
/**
|
|
558
|
+
* Username of user who last modified catalog.
|
|
559
|
+
*/
|
|
560
|
+
updatedBy?: pulumi.Input<string>;
|
|
561
|
+
}
|
|
562
|
+
export interface GetCatalogCatalogInfoEffectivePredictiveOptimizationFlag {
|
|
563
|
+
inheritedFromName?: string;
|
|
564
|
+
inheritedFromType?: string;
|
|
565
|
+
value: string;
|
|
566
|
+
}
|
|
567
|
+
export interface GetCatalogCatalogInfoEffectivePredictiveOptimizationFlagArgs {
|
|
568
|
+
inheritedFromName?: pulumi.Input<string>;
|
|
569
|
+
inheritedFromType?: pulumi.Input<string>;
|
|
570
|
+
value: pulumi.Input<string>;
|
|
571
|
+
}
|
|
572
|
+
export interface GetCatalogCatalogInfoProvisioningInfo {
|
|
573
|
+
state?: string;
|
|
574
|
+
}
|
|
575
|
+
export interface GetCatalogCatalogInfoProvisioningInfoArgs {
|
|
576
|
+
state?: pulumi.Input<string>;
|
|
577
|
+
}
|
|
370
578
|
export interface GetClusterClusterInfo {
|
|
371
579
|
autoscale?: inputs.GetClusterClusterInfoAutoscale;
|
|
372
580
|
/**
|
|
@@ -3731,6 +3939,14 @@ export interface GetMetastoreMetastoreInfoArgs {
|
|
|
3731
3939
|
updatedAt?: pulumi.Input<number>;
|
|
3732
3940
|
updatedBy?: pulumi.Input<string>;
|
|
3733
3941
|
}
|
|
3942
|
+
export interface GetMlflowExperimentTag {
|
|
3943
|
+
key?: string;
|
|
3944
|
+
value?: string;
|
|
3945
|
+
}
|
|
3946
|
+
export interface GetMlflowExperimentTagArgs {
|
|
3947
|
+
key?: pulumi.Input<string>;
|
|
3948
|
+
value?: pulumi.Input<string>;
|
|
3949
|
+
}
|
|
3734
3950
|
export interface GetMlflowModelLatestVersion {
|
|
3735
3951
|
creationTimestamp?: number;
|
|
3736
3952
|
currentStage?: string;
|
|
@@ -4093,6 +4309,308 @@ export interface GetStorageCredentialStorageCredentialInfoDatabricksGcpServiceAc
|
|
|
4093
4309
|
*/
|
|
4094
4310
|
email?: pulumi.Input<string>;
|
|
4095
4311
|
}
|
|
4312
|
+
export interface GetTableTableInfo {
|
|
4313
|
+
accessPoint?: string;
|
|
4314
|
+
browseOnly?: boolean;
|
|
4315
|
+
/**
|
|
4316
|
+
* Name of parent catalog.
|
|
4317
|
+
*/
|
|
4318
|
+
catalogName?: string;
|
|
4319
|
+
/**
|
|
4320
|
+
* Array of ColumnInfo objects of the table's columns
|
|
4321
|
+
*/
|
|
4322
|
+
columns?: inputs.GetTableTableInfoColumn[];
|
|
4323
|
+
/**
|
|
4324
|
+
* Free-form text description
|
|
4325
|
+
*/
|
|
4326
|
+
comment?: string;
|
|
4327
|
+
createdAt?: number;
|
|
4328
|
+
createdBy?: string;
|
|
4329
|
+
dataAccessConfigurationId?: string;
|
|
4330
|
+
/**
|
|
4331
|
+
* Table format, e.g. DELTA, CSV, JSON
|
|
4332
|
+
*/
|
|
4333
|
+
dataSourceFormat?: string;
|
|
4334
|
+
deletedAt?: number;
|
|
4335
|
+
deltaRuntimePropertiesKvpairs?: inputs.GetTableTableInfoDeltaRuntimePropertiesKvpairs;
|
|
4336
|
+
effectivePredictiveOptimizationFlag?: inputs.GetTableTableInfoEffectivePredictiveOptimizationFlag;
|
|
4337
|
+
enablePredictiveOptimization?: string;
|
|
4338
|
+
encryptionDetails?: inputs.GetTableTableInfoEncryptionDetails;
|
|
4339
|
+
fullName?: string;
|
|
4340
|
+
metastoreId?: string;
|
|
4341
|
+
/**
|
|
4342
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4343
|
+
*/
|
|
4344
|
+
name?: string;
|
|
4345
|
+
/**
|
|
4346
|
+
* Current owner of the table
|
|
4347
|
+
*/
|
|
4348
|
+
owner?: string;
|
|
4349
|
+
pipelineId?: string;
|
|
4350
|
+
properties?: {
|
|
4351
|
+
[key: string]: any;
|
|
4352
|
+
};
|
|
4353
|
+
rowFilter?: inputs.GetTableTableInfoRowFilter;
|
|
4354
|
+
/**
|
|
4355
|
+
* Name of parent schema relative to its parent catalog.
|
|
4356
|
+
*/
|
|
4357
|
+
schemaName?: string;
|
|
4358
|
+
sqlPath?: string;
|
|
4359
|
+
storageCredentialName?: string;
|
|
4360
|
+
storageLocation?: string;
|
|
4361
|
+
tableConstraints?: inputs.GetTableTableInfoTableConstraint[];
|
|
4362
|
+
tableId?: string;
|
|
4363
|
+
/**
|
|
4364
|
+
* Table type, e.g. MANAGED, EXTERNAL, VIEW
|
|
4365
|
+
*/
|
|
4366
|
+
tableType?: string;
|
|
4367
|
+
updatedAt?: number;
|
|
4368
|
+
updatedBy?: string;
|
|
4369
|
+
/**
|
|
4370
|
+
* View definition SQL (when `tableType` is VIEW, MATERIALIZED_VIEW, or STREAMING_TABLE)
|
|
4371
|
+
*/
|
|
4372
|
+
viewDefinition?: string;
|
|
4373
|
+
/**
|
|
4374
|
+
* View dependencies (when `tableType` is VIEW or MATERIALIZED_VIEW, STREAMING_TABLE)
|
|
4375
|
+
*/
|
|
4376
|
+
viewDependencies?: inputs.GetTableTableInfoViewDependencies;
|
|
4377
|
+
}
|
|
4378
|
+
export interface GetTableTableInfoArgs {
|
|
4379
|
+
accessPoint?: pulumi.Input<string>;
|
|
4380
|
+
browseOnly?: pulumi.Input<boolean>;
|
|
4381
|
+
/**
|
|
4382
|
+
* Name of parent catalog.
|
|
4383
|
+
*/
|
|
4384
|
+
catalogName?: pulumi.Input<string>;
|
|
4385
|
+
/**
|
|
4386
|
+
* Array of ColumnInfo objects of the table's columns
|
|
4387
|
+
*/
|
|
4388
|
+
columns?: pulumi.Input<pulumi.Input<inputs.GetTableTableInfoColumnArgs>[]>;
|
|
4389
|
+
/**
|
|
4390
|
+
* Free-form text description
|
|
4391
|
+
*/
|
|
4392
|
+
comment?: pulumi.Input<string>;
|
|
4393
|
+
createdAt?: pulumi.Input<number>;
|
|
4394
|
+
createdBy?: pulumi.Input<string>;
|
|
4395
|
+
dataAccessConfigurationId?: pulumi.Input<string>;
|
|
4396
|
+
/**
|
|
4397
|
+
* Table format, e.g. DELTA, CSV, JSON
|
|
4398
|
+
*/
|
|
4399
|
+
dataSourceFormat?: pulumi.Input<string>;
|
|
4400
|
+
deletedAt?: pulumi.Input<number>;
|
|
4401
|
+
deltaRuntimePropertiesKvpairs?: pulumi.Input<inputs.GetTableTableInfoDeltaRuntimePropertiesKvpairsArgs>;
|
|
4402
|
+
effectivePredictiveOptimizationFlag?: pulumi.Input<inputs.GetTableTableInfoEffectivePredictiveOptimizationFlagArgs>;
|
|
4403
|
+
enablePredictiveOptimization?: pulumi.Input<string>;
|
|
4404
|
+
encryptionDetails?: pulumi.Input<inputs.GetTableTableInfoEncryptionDetailsArgs>;
|
|
4405
|
+
fullName?: pulumi.Input<string>;
|
|
4406
|
+
metastoreId?: pulumi.Input<string>;
|
|
4407
|
+
/**
|
|
4408
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4409
|
+
*/
|
|
4410
|
+
name?: pulumi.Input<string>;
|
|
4411
|
+
/**
|
|
4412
|
+
* Current owner of the table
|
|
4413
|
+
*/
|
|
4414
|
+
owner?: pulumi.Input<string>;
|
|
4415
|
+
pipelineId?: pulumi.Input<string>;
|
|
4416
|
+
properties?: pulumi.Input<{
|
|
4417
|
+
[key: string]: any;
|
|
4418
|
+
}>;
|
|
4419
|
+
rowFilter?: pulumi.Input<inputs.GetTableTableInfoRowFilterArgs>;
|
|
4420
|
+
/**
|
|
4421
|
+
* Name of parent schema relative to its parent catalog.
|
|
4422
|
+
*/
|
|
4423
|
+
schemaName?: pulumi.Input<string>;
|
|
4424
|
+
sqlPath?: pulumi.Input<string>;
|
|
4425
|
+
storageCredentialName?: pulumi.Input<string>;
|
|
4426
|
+
storageLocation?: pulumi.Input<string>;
|
|
4427
|
+
tableConstraints?: pulumi.Input<pulumi.Input<inputs.GetTableTableInfoTableConstraintArgs>[]>;
|
|
4428
|
+
tableId?: pulumi.Input<string>;
|
|
4429
|
+
/**
|
|
4430
|
+
* Table type, e.g. MANAGED, EXTERNAL, VIEW
|
|
4431
|
+
*/
|
|
4432
|
+
tableType?: pulumi.Input<string>;
|
|
4433
|
+
updatedAt?: pulumi.Input<number>;
|
|
4434
|
+
updatedBy?: pulumi.Input<string>;
|
|
4435
|
+
/**
|
|
4436
|
+
* View definition SQL (when `tableType` is VIEW, MATERIALIZED_VIEW, or STREAMING_TABLE)
|
|
4437
|
+
*/
|
|
4438
|
+
viewDefinition?: pulumi.Input<string>;
|
|
4439
|
+
/**
|
|
4440
|
+
* View dependencies (when `tableType` is VIEW or MATERIALIZED_VIEW, STREAMING_TABLE)
|
|
4441
|
+
*/
|
|
4442
|
+
viewDependencies?: pulumi.Input<inputs.GetTableTableInfoViewDependenciesArgs>;
|
|
4443
|
+
}
|
|
4444
|
+
export interface GetTableTableInfoColumn {
|
|
4445
|
+
/**
|
|
4446
|
+
* Free-form text description
|
|
4447
|
+
*/
|
|
4448
|
+
comment?: string;
|
|
4449
|
+
mask?: inputs.GetTableTableInfoColumnMask;
|
|
4450
|
+
/**
|
|
4451
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4452
|
+
*/
|
|
4453
|
+
name?: string;
|
|
4454
|
+
nullable?: boolean;
|
|
4455
|
+
partitionIndex?: number;
|
|
4456
|
+
position?: number;
|
|
4457
|
+
typeIntervalType?: string;
|
|
4458
|
+
typeJson?: string;
|
|
4459
|
+
typeName?: string;
|
|
4460
|
+
typePrecision?: number;
|
|
4461
|
+
typeScale?: number;
|
|
4462
|
+
typeText?: string;
|
|
4463
|
+
}
|
|
4464
|
+
export interface GetTableTableInfoColumnArgs {
|
|
4465
|
+
/**
|
|
4466
|
+
* Free-form text description
|
|
4467
|
+
*/
|
|
4468
|
+
comment?: pulumi.Input<string>;
|
|
4469
|
+
mask?: pulumi.Input<inputs.GetTableTableInfoColumnMaskArgs>;
|
|
4470
|
+
/**
|
|
4471
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4472
|
+
*/
|
|
4473
|
+
name?: pulumi.Input<string>;
|
|
4474
|
+
nullable?: pulumi.Input<boolean>;
|
|
4475
|
+
partitionIndex?: pulumi.Input<number>;
|
|
4476
|
+
position?: pulumi.Input<number>;
|
|
4477
|
+
typeIntervalType?: pulumi.Input<string>;
|
|
4478
|
+
typeJson?: pulumi.Input<string>;
|
|
4479
|
+
typeName?: pulumi.Input<string>;
|
|
4480
|
+
typePrecision?: pulumi.Input<number>;
|
|
4481
|
+
typeScale?: pulumi.Input<number>;
|
|
4482
|
+
typeText?: pulumi.Input<string>;
|
|
4483
|
+
}
|
|
4484
|
+
export interface GetTableTableInfoColumnMask {
|
|
4485
|
+
functionName?: string;
|
|
4486
|
+
usingColumnNames?: string[];
|
|
4487
|
+
}
|
|
4488
|
+
export interface GetTableTableInfoColumnMaskArgs {
|
|
4489
|
+
functionName?: pulumi.Input<string>;
|
|
4490
|
+
usingColumnNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4491
|
+
}
|
|
4492
|
+
export interface GetTableTableInfoDeltaRuntimePropertiesKvpairs {
|
|
4493
|
+
deltaRuntimeProperties: {
|
|
4494
|
+
[key: string]: any;
|
|
4495
|
+
};
|
|
4496
|
+
}
|
|
4497
|
+
export interface GetTableTableInfoDeltaRuntimePropertiesKvpairsArgs {
|
|
4498
|
+
deltaRuntimeProperties: pulumi.Input<{
|
|
4499
|
+
[key: string]: any;
|
|
4500
|
+
}>;
|
|
4501
|
+
}
|
|
4502
|
+
export interface GetTableTableInfoEffectivePredictiveOptimizationFlag {
|
|
4503
|
+
inheritedFromName?: string;
|
|
4504
|
+
inheritedFromType?: string;
|
|
4505
|
+
value: string;
|
|
4506
|
+
}
|
|
4507
|
+
export interface GetTableTableInfoEffectivePredictiveOptimizationFlagArgs {
|
|
4508
|
+
inheritedFromName?: pulumi.Input<string>;
|
|
4509
|
+
inheritedFromType?: pulumi.Input<string>;
|
|
4510
|
+
value: pulumi.Input<string>;
|
|
4511
|
+
}
|
|
4512
|
+
export interface GetTableTableInfoEncryptionDetails {
|
|
4513
|
+
sseEncryptionDetails?: inputs.GetTableTableInfoEncryptionDetailsSseEncryptionDetails;
|
|
4514
|
+
}
|
|
4515
|
+
export interface GetTableTableInfoEncryptionDetailsArgs {
|
|
4516
|
+
sseEncryptionDetails?: pulumi.Input<inputs.GetTableTableInfoEncryptionDetailsSseEncryptionDetailsArgs>;
|
|
4517
|
+
}
|
|
4518
|
+
export interface GetTableTableInfoEncryptionDetailsSseEncryptionDetails {
|
|
4519
|
+
algorithm?: string;
|
|
4520
|
+
awsKmsKeyArn?: string;
|
|
4521
|
+
}
|
|
4522
|
+
export interface GetTableTableInfoEncryptionDetailsSseEncryptionDetailsArgs {
|
|
4523
|
+
algorithm?: pulumi.Input<string>;
|
|
4524
|
+
awsKmsKeyArn?: pulumi.Input<string>;
|
|
4525
|
+
}
|
|
4526
|
+
export interface GetTableTableInfoRowFilter {
|
|
4527
|
+
functionName: string;
|
|
4528
|
+
inputColumnNames: string[];
|
|
4529
|
+
}
|
|
4530
|
+
export interface GetTableTableInfoRowFilterArgs {
|
|
4531
|
+
functionName: pulumi.Input<string>;
|
|
4532
|
+
inputColumnNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
4533
|
+
}
|
|
4534
|
+
export interface GetTableTableInfoTableConstraint {
|
|
4535
|
+
foreignKeyConstraint?: inputs.GetTableTableInfoTableConstraintForeignKeyConstraint;
|
|
4536
|
+
namedTableConstraint?: inputs.GetTableTableInfoTableConstraintNamedTableConstraint;
|
|
4537
|
+
primaryKeyConstraint?: inputs.GetTableTableInfoTableConstraintPrimaryKeyConstraint;
|
|
4538
|
+
}
|
|
4539
|
+
export interface GetTableTableInfoTableConstraintArgs {
|
|
4540
|
+
foreignKeyConstraint?: pulumi.Input<inputs.GetTableTableInfoTableConstraintForeignKeyConstraintArgs>;
|
|
4541
|
+
namedTableConstraint?: pulumi.Input<inputs.GetTableTableInfoTableConstraintNamedTableConstraintArgs>;
|
|
4542
|
+
primaryKeyConstraint?: pulumi.Input<inputs.GetTableTableInfoTableConstraintPrimaryKeyConstraintArgs>;
|
|
4543
|
+
}
|
|
4544
|
+
export interface GetTableTableInfoTableConstraintForeignKeyConstraint {
|
|
4545
|
+
childColumns: string[];
|
|
4546
|
+
/**
|
|
4547
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4548
|
+
*/
|
|
4549
|
+
name: string;
|
|
4550
|
+
parentColumns: string[];
|
|
4551
|
+
parentTable: string;
|
|
4552
|
+
}
|
|
4553
|
+
export interface GetTableTableInfoTableConstraintForeignKeyConstraintArgs {
|
|
4554
|
+
childColumns: pulumi.Input<pulumi.Input<string>[]>;
|
|
4555
|
+
/**
|
|
4556
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4557
|
+
*/
|
|
4558
|
+
name: pulumi.Input<string>;
|
|
4559
|
+
parentColumns: pulumi.Input<pulumi.Input<string>[]>;
|
|
4560
|
+
parentTable: pulumi.Input<string>;
|
|
4561
|
+
}
|
|
4562
|
+
export interface GetTableTableInfoTableConstraintNamedTableConstraint {
|
|
4563
|
+
/**
|
|
4564
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4565
|
+
*/
|
|
4566
|
+
name: string;
|
|
4567
|
+
}
|
|
4568
|
+
export interface GetTableTableInfoTableConstraintNamedTableConstraintArgs {
|
|
4569
|
+
/**
|
|
4570
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4571
|
+
*/
|
|
4572
|
+
name: pulumi.Input<string>;
|
|
4573
|
+
}
|
|
4574
|
+
export interface GetTableTableInfoTableConstraintPrimaryKeyConstraint {
|
|
4575
|
+
childColumns: string[];
|
|
4576
|
+
/**
|
|
4577
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4578
|
+
*/
|
|
4579
|
+
name: string;
|
|
4580
|
+
}
|
|
4581
|
+
export interface GetTableTableInfoTableConstraintPrimaryKeyConstraintArgs {
|
|
4582
|
+
childColumns: pulumi.Input<pulumi.Input<string>[]>;
|
|
4583
|
+
/**
|
|
4584
|
+
* Full name of the databricks_table: _`catalog`.`schema`.`table`_
|
|
4585
|
+
*/
|
|
4586
|
+
name: pulumi.Input<string>;
|
|
4587
|
+
}
|
|
4588
|
+
export interface GetTableTableInfoViewDependencies {
|
|
4589
|
+
dependencies?: inputs.GetTableTableInfoViewDependenciesDependency[];
|
|
4590
|
+
}
|
|
4591
|
+
export interface GetTableTableInfoViewDependenciesArgs {
|
|
4592
|
+
dependencies?: pulumi.Input<pulumi.Input<inputs.GetTableTableInfoViewDependenciesDependencyArgs>[]>;
|
|
4593
|
+
}
|
|
4594
|
+
export interface GetTableTableInfoViewDependenciesDependency {
|
|
4595
|
+
function?: inputs.GetTableTableInfoViewDependenciesDependencyFunction;
|
|
4596
|
+
table?: inputs.GetTableTableInfoViewDependenciesDependencyTable;
|
|
4597
|
+
}
|
|
4598
|
+
export interface GetTableTableInfoViewDependenciesDependencyArgs {
|
|
4599
|
+
function?: pulumi.Input<inputs.GetTableTableInfoViewDependenciesDependencyFunctionArgs>;
|
|
4600
|
+
table?: pulumi.Input<inputs.GetTableTableInfoViewDependenciesDependencyTableArgs>;
|
|
4601
|
+
}
|
|
4602
|
+
export interface GetTableTableInfoViewDependenciesDependencyFunction {
|
|
4603
|
+
functionFullName: string;
|
|
4604
|
+
}
|
|
4605
|
+
export interface GetTableTableInfoViewDependenciesDependencyFunctionArgs {
|
|
4606
|
+
functionFullName: pulumi.Input<string>;
|
|
4607
|
+
}
|
|
4608
|
+
export interface GetTableTableInfoViewDependenciesDependencyTable {
|
|
4609
|
+
tableFullName: string;
|
|
4610
|
+
}
|
|
4611
|
+
export interface GetTableTableInfoViewDependenciesDependencyTableArgs {
|
|
4612
|
+
tableFullName: pulumi.Input<string>;
|
|
4613
|
+
}
|
|
4096
4614
|
export interface GrantsGrant {
|
|
4097
4615
|
principal: pulumi.Input<string>;
|
|
4098
4616
|
privileges: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -4364,7 +4882,7 @@ export interface JobJobClusterNewCluster {
|
|
|
4364
4882
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobJobClusterNewClusterInitScript>[]>;
|
|
4365
4883
|
instancePoolId?: pulumi.Input<string>;
|
|
4366
4884
|
/**
|
|
4367
|
-
* (List) An optional list of libraries to be installed on the cluster that will execute the job.
|
|
4885
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
|
|
4368
4886
|
*/
|
|
4369
4887
|
libraries?: pulumi.Input<pulumi.Input<inputs.JobJobClusterNewClusterLibrary>[]>;
|
|
4370
4888
|
nodeTypeId?: pulumi.Input<string>;
|
|
@@ -4570,7 +5088,7 @@ export interface JobNewCluster {
|
|
|
4570
5088
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobNewClusterInitScript>[]>;
|
|
4571
5089
|
instancePoolId?: pulumi.Input<string>;
|
|
4572
5090
|
/**
|
|
4573
|
-
* (List) An optional list of libraries to be installed on the cluster that will execute the job.
|
|
5091
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
|
|
4574
5092
|
*/
|
|
4575
5093
|
libraries?: pulumi.Input<pulumi.Input<inputs.JobNewClusterLibrary>[]>;
|
|
4576
5094
|
nodeTypeId?: pulumi.Input<string>;
|
|
@@ -5295,7 +5813,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
5295
5813
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterInitScript>[]>;
|
|
5296
5814
|
instancePoolId?: pulumi.Input<string>;
|
|
5297
5815
|
/**
|
|
5298
|
-
* (List) An optional list of libraries to be installed on the cluster that will execute the job.
|
|
5816
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
|
|
5299
5817
|
*/
|
|
5300
5818
|
libraries?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterLibrary>[]>;
|
|
5301
5819
|
nodeTypeId?: pulumi.Input<string>;
|
|
@@ -5822,7 +6340,7 @@ export interface JobTaskNewCluster {
|
|
|
5822
6340
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobTaskNewClusterInitScript>[]>;
|
|
5823
6341
|
instancePoolId?: pulumi.Input<string>;
|
|
5824
6342
|
/**
|
|
5825
|
-
* (List) An optional list of libraries to be installed on the cluster that will execute the job.
|
|
6343
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. See library Configuration Block below.
|
|
5826
6344
|
*/
|
|
5827
6345
|
libraries?: pulumi.Input<pulumi.Input<inputs.JobTaskNewClusterLibrary>[]>;
|
|
5828
6346
|
nodeTypeId?: pulumi.Input<string>;
|