@pulumi/databricks 1.55.0-alpha.1731130534 → 1.55.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/types/output.d.ts CHANGED
@@ -1338,6 +1338,253 @@ export interface GetExternalLocationExternalLocationInfoEncryptionDetailsSseEncr
1338
1338
  algorithm?: string;
1339
1339
  awsKmsKeyArn?: string;
1340
1340
  }
1341
+ export interface GetFunctionsFunction {
1342
+ /**
1343
+ * Indicates whether the principal is limited to retrieving metadata for the associated object through the `BROWSE` privilege when `includeBrowse` is enabled in the request.
1344
+ */
1345
+ browseOnly?: boolean;
1346
+ /**
1347
+ * Name of databricks_catalog.
1348
+ */
1349
+ catalogName?: string;
1350
+ /**
1351
+ * User-provided free-form text description.
1352
+ */
1353
+ comment?: string;
1354
+ /**
1355
+ * Time at which this function was created, in epoch milliseconds.
1356
+ */
1357
+ createdAt?: number;
1358
+ /**
1359
+ * Username of function creator.
1360
+ */
1361
+ createdBy?: string;
1362
+ /**
1363
+ * Scalar function return data type.
1364
+ */
1365
+ dataType?: string;
1366
+ /**
1367
+ * External function language.
1368
+ */
1369
+ externalLanguage?: string;
1370
+ /**
1371
+ * External function name.
1372
+ */
1373
+ externalName?: string;
1374
+ /**
1375
+ * Pretty printed function data type.
1376
+ */
1377
+ fullDataType?: string;
1378
+ /**
1379
+ * Full name of function, in form of catalog_name.schema_name.function__name
1380
+ */
1381
+ fullName?: string;
1382
+ /**
1383
+ * Id of Function, relative to parent schema.
1384
+ */
1385
+ functionId?: string;
1386
+ /**
1387
+ * object describing input parameters. Consists of the single attribute:
1388
+ */
1389
+ inputParams?: outputs.GetFunctionsFunctionInputParams;
1390
+ /**
1391
+ * Boolean flag specifying whether the function is deterministic.
1392
+ */
1393
+ isDeterministic?: boolean;
1394
+ /**
1395
+ * Boolean flag whether function null call.
1396
+ */
1397
+ isNullCall?: boolean;
1398
+ /**
1399
+ * Unique identifier of parent metastore.
1400
+ */
1401
+ metastoreId?: string;
1402
+ /**
1403
+ * Name of parameter.
1404
+ */
1405
+ name?: string;
1406
+ /**
1407
+ * Username of current owner of function.
1408
+ */
1409
+ owner?: string;
1410
+ /**
1411
+ * Function parameter style. `S` is the value for SQL.
1412
+ */
1413
+ parameterStyle?: string;
1414
+ /**
1415
+ * JSON-serialized key-value pair map, encoded (escaped) as a string.
1416
+ */
1417
+ properties?: string;
1418
+ /**
1419
+ * Table function return parameters. See `inputParams` for description.
1420
+ */
1421
+ returnParams?: outputs.GetFunctionsFunctionReturnParams;
1422
+ /**
1423
+ * Function language (`SQL` or `EXTERNAL`). When `EXTERNAL` is used, the language of the routine function should be specified in the `externalLanguage` field, and the `returnParams` of the function cannot be used (as `TABLE` return type is not supported), and the `sqlDataAccess` field must be `NO_SQL`.
1424
+ */
1425
+ routineBody?: string;
1426
+ /**
1427
+ * Function body.
1428
+ */
1429
+ routineDefinition?: string;
1430
+ /**
1431
+ * Function dependencies.
1432
+ */
1433
+ routineDependencies?: outputs.GetFunctionsFunctionRoutineDependencies;
1434
+ /**
1435
+ * Name of databricks_schema.
1436
+ */
1437
+ schemaName?: string;
1438
+ /**
1439
+ * Function security type. (Enum: `DEFINER`).
1440
+ */
1441
+ securityType?: string;
1442
+ /**
1443
+ * Specific name of the function; Reserved for future use.
1444
+ */
1445
+ specificName?: string;
1446
+ /**
1447
+ * Function SQL data access (`CONTAINS_SQL`, `READS_SQL_DATA`, `NO_SQL`).
1448
+ */
1449
+ sqlDataAccess?: string;
1450
+ /**
1451
+ * List of schemes whose objects can be referenced without qualification.
1452
+ */
1453
+ sqlPath?: string;
1454
+ /**
1455
+ * Time at which this function was created, in epoch milliseconds.
1456
+ */
1457
+ updatedAt?: number;
1458
+ /**
1459
+ * Username of user who last modified function.
1460
+ */
1461
+ updatedBy?: string;
1462
+ }
1463
+ export interface GetFunctionsFunctionInputParams {
1464
+ /**
1465
+ * The array of definitions of the function's parameters:
1466
+ */
1467
+ parameters?: outputs.GetFunctionsFunctionInputParamsParameter[];
1468
+ }
1469
+ export interface GetFunctionsFunctionInputParamsParameter {
1470
+ /**
1471
+ * User-provided free-form text description.
1472
+ */
1473
+ comment?: string;
1474
+ /**
1475
+ * Name of parameter.
1476
+ */
1477
+ name: string;
1478
+ /**
1479
+ * Default value of the parameter.
1480
+ */
1481
+ parameterDefault?: string;
1482
+ /**
1483
+ * The mode of the function parameter.
1484
+ */
1485
+ parameterMode?: string;
1486
+ /**
1487
+ * The type of function parameter (`PARAM` or `COLUMN`).
1488
+ */
1489
+ parameterType?: string;
1490
+ /**
1491
+ * Ordinal position of column (starting at position 0).
1492
+ */
1493
+ position: number;
1494
+ /**
1495
+ * Format of IntervalType.
1496
+ */
1497
+ typeIntervalType?: string;
1498
+ /**
1499
+ * Full data type spec, JSON-serialized.
1500
+ */
1501
+ typeJson?: string;
1502
+ /**
1503
+ * Name of type (INT, STRUCT, MAP, etc.).
1504
+ */
1505
+ typeName: string;
1506
+ /**
1507
+ * Digits of precision; required on Create for DecimalTypes.
1508
+ */
1509
+ typePrecision?: number;
1510
+ /**
1511
+ * Digits to right of decimal; Required on Create for DecimalTypes.
1512
+ */
1513
+ typeScale?: number;
1514
+ /**
1515
+ * Full data type spec, SQL/catalogString text.
1516
+ */
1517
+ typeText: string;
1518
+ }
1519
+ export interface GetFunctionsFunctionReturnParams {
1520
+ /**
1521
+ * The array of definitions of the function's parameters:
1522
+ */
1523
+ parameters?: outputs.GetFunctionsFunctionReturnParamsParameter[];
1524
+ }
1525
+ export interface GetFunctionsFunctionReturnParamsParameter {
1526
+ /**
1527
+ * User-provided free-form text description.
1528
+ */
1529
+ comment?: string;
1530
+ /**
1531
+ * Name of parameter.
1532
+ */
1533
+ name: string;
1534
+ /**
1535
+ * Default value of the parameter.
1536
+ */
1537
+ parameterDefault?: string;
1538
+ /**
1539
+ * The mode of the function parameter.
1540
+ */
1541
+ parameterMode?: string;
1542
+ /**
1543
+ * The type of function parameter (`PARAM` or `COLUMN`).
1544
+ */
1545
+ parameterType?: string;
1546
+ /**
1547
+ * Ordinal position of column (starting at position 0).
1548
+ */
1549
+ position: number;
1550
+ /**
1551
+ * Format of IntervalType.
1552
+ */
1553
+ typeIntervalType?: string;
1554
+ /**
1555
+ * Full data type spec, JSON-serialized.
1556
+ */
1557
+ typeJson?: string;
1558
+ /**
1559
+ * Name of type (INT, STRUCT, MAP, etc.).
1560
+ */
1561
+ typeName: string;
1562
+ /**
1563
+ * Digits of precision; required on Create for DecimalTypes.
1564
+ */
1565
+ typePrecision?: number;
1566
+ /**
1567
+ * Digits to right of decimal; Required on Create for DecimalTypes.
1568
+ */
1569
+ typeScale?: number;
1570
+ /**
1571
+ * Full data type spec, SQL/catalogString text.
1572
+ */
1573
+ typeText: string;
1574
+ }
1575
+ export interface GetFunctionsFunctionRoutineDependencies {
1576
+ dependencies?: outputs.GetFunctionsFunctionRoutineDependenciesDependency[];
1577
+ }
1578
+ export interface GetFunctionsFunctionRoutineDependenciesDependency {
1579
+ function?: outputs.GetFunctionsFunctionRoutineDependenciesDependencyFunction;
1580
+ table?: outputs.GetFunctionsFunctionRoutineDependenciesDependencyTable;
1581
+ }
1582
+ export interface GetFunctionsFunctionRoutineDependenciesDependencyFunction {
1583
+ functionFullName: string;
1584
+ }
1585
+ export interface GetFunctionsFunctionRoutineDependenciesDependencyTable {
1586
+ tableFullName: string;
1587
+ }
1341
1588
  export interface GetInstancePoolPoolInfo {
1342
1589
  awsAttributes?: outputs.GetInstancePoolPoolInfoAwsAttributes;
1343
1590
  azureAttributes?: outputs.GetInstancePoolPoolInfoAzureAttributes;