@databricks/sdk-uc-functions 0.0.0-dev → 0.1.0-dev.2

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.
@@ -0,0 +1,384 @@
1
+ import { z } from 'zod';
2
+ export declare enum ColumnTypeName {
3
+ BOOLEAN = "BOOLEAN",
4
+ BYTE = "BYTE",
5
+ SHORT = "SHORT",
6
+ INT = "INT",
7
+ LONG = "LONG",
8
+ FLOAT = "FLOAT",
9
+ DOUBLE = "DOUBLE",
10
+ DATE = "DATE",
11
+ TIMESTAMP = "TIMESTAMP",
12
+ STRING = "STRING",
13
+ BINARY = "BINARY",
14
+ DECIMAL = "DECIMAL",
15
+ INTERVAL = "INTERVAL",
16
+ ARRAY = "ARRAY",
17
+ STRUCT = "STRUCT",
18
+ MAP = "MAP",
19
+ CHAR = "CHAR",
20
+ NULL = "NULL",
21
+ USER_DEFINED_TYPE = "USER_DEFINED_TYPE",
22
+ TIMESTAMP_NTZ = "TIMESTAMP_NTZ",
23
+ VARIANT = "VARIANT",
24
+ GEOMETRY = "GEOMETRY",
25
+ GEOGRAPHY = "GEOGRAPHY",
26
+ TABLE_TYPE = "TABLE_TYPE"
27
+ }
28
+ export declare enum FunctionParameterMode {
29
+ IN = "IN"
30
+ }
31
+ export declare enum FunctionParameterType {
32
+ PARAM = "PARAM",
33
+ COLUMN = "COLUMN"
34
+ }
35
+ export declare enum FunctionInfo_ParameterStyle {
36
+ S = "S"
37
+ }
38
+ export declare enum FunctionInfo_RoutineBody {
39
+ SQL = "SQL",
40
+ /**
41
+ * When `EXTERNAL` is used,
42
+ * * The language of the routine function should be specified in the `external_language` field.
43
+ * * The returnParams of the function cannot be used as TABLE return type is not supported.
44
+ * * The getSqlDataAccess must be NO_SQL.
45
+ */
46
+ EXTERNAL = "EXTERNAL"
47
+ }
48
+ export declare enum FunctionInfo_SecurityType {
49
+ DEFINER = "DEFINER"
50
+ }
51
+ export declare enum FunctionInfo_SqlDataAccess {
52
+ CONTAINS_SQL = "CONTAINS_SQL",
53
+ READS_SQL_DATA = "READS_SQL_DATA",
54
+ NO_SQL = "NO_SQL"
55
+ }
56
+ /** A connection that is dependent on a SQL object. */
57
+ export interface ConnectionDependency {
58
+ /** Full name of the dependent connection, in the form of __connection_name__. */
59
+ connectionName?: string | undefined;
60
+ }
61
+ export interface CreateFunction {
62
+ /** Name of function, relative to parent schema. */
63
+ name?: string | undefined;
64
+ /** Name of parent Catalog. */
65
+ catalogName?: string | undefined;
66
+ /** Name of parent Schema relative to its parent Catalog. */
67
+ schemaName?: string | undefined;
68
+ /** Function input parameters. */
69
+ inputParams?: FunctionParameterInfos | undefined;
70
+ /** Scalar function return data type. */
71
+ dataType?: ColumnTypeName | undefined;
72
+ /** Pretty printed function data type. */
73
+ fullDataType?: string | undefined;
74
+ /** Function language. When **EXTERNAL** is used, the language of the routine function should be specified in the **external_language** field, and the **return_params** of the function cannot be used (as **TABLE** return type is not supported), and the **sql_data_access** field must be **NO_SQL**. */
75
+ routineBody?: FunctionInfo_RoutineBody | undefined;
76
+ /** Function body. */
77
+ routineDefinition?: string | undefined;
78
+ /** Function parameter style. **S** is the value for SQL. */
79
+ parameterStyle?: FunctionInfo_ParameterStyle | undefined;
80
+ /** Whether the function is deterministic. */
81
+ isDeterministic?: boolean | undefined;
82
+ /** Function SQL data access. */
83
+ sqlDataAccess?: FunctionInfo_SqlDataAccess | undefined;
84
+ /** Function null call. */
85
+ isNullCall?: boolean | undefined;
86
+ /** Function security type. */
87
+ securityType?: FunctionInfo_SecurityType | undefined;
88
+ /** Specific name of the function; Reserved for future use. */
89
+ specificName?: string | undefined;
90
+ /** Table function return parameters. */
91
+ returnParams?: FunctionParameterInfos | undefined;
92
+ /** External function name. */
93
+ externalName?: string | undefined;
94
+ /** External function language. */
95
+ externalLanguage?: string | undefined;
96
+ /** List of schemes whose objects can be referenced without qualification. */
97
+ sqlPath?: string | undefined;
98
+ /** Username of current owner of the function. */
99
+ owner?: string | undefined;
100
+ /** User-provided free-form text description. */
101
+ comment?: string | undefined;
102
+ /** JSON-serialized key-value pair map, encoded (escaped) as a string. */
103
+ properties?: string | undefined;
104
+ /** function dependencies. */
105
+ routineDependencies?: DependencyList | undefined;
106
+ /** Unique identifier of parent metastore. */
107
+ metastoreId?: string | undefined;
108
+ /** Full name of Function, in form of **catalog_name**.**schema_name**.**function_name** */
109
+ fullName?: string | undefined;
110
+ /** Time at which this function was created, in epoch milliseconds. */
111
+ createdAt?: bigint | undefined;
112
+ /** Username of function creator. */
113
+ createdBy?: string | undefined;
114
+ /** Time at which this function was last modified, in epoch milliseconds. */
115
+ updatedAt?: bigint | undefined;
116
+ /** Username of user who last modified the function. */
117
+ updatedBy?: string | undefined;
118
+ /** Id of Function, relative to parent schema. */
119
+ functionId?: string | undefined;
120
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
121
+ browseOnly?: boolean | undefined;
122
+ }
123
+ export interface CreateFunctionRequest {
124
+ /** Partial __FunctionInfo__ specifying the function to be created. */
125
+ functionInfo?: CreateFunction | undefined;
126
+ }
127
+ /** A credential that is dependent on a SQL object. */
128
+ export interface CredentialDependency {
129
+ /** Full name of the dependent credential, in the form of __credential_name__. */
130
+ credentialName?: string | undefined;
131
+ }
132
+ export interface DeleteFunctionRequest {
133
+ /** The fully-qualified name of the function (of the form __catalog_name__.__schema_name__.__function__name__) . */
134
+ fullNameArg?: string | undefined;
135
+ /** Force deletion even if the function is notempty. */
136
+ force?: boolean | undefined;
137
+ }
138
+ export interface DeleteFunctionRequest_Response {
139
+ }
140
+ /**
141
+ * A dependency of a SQL object. One of the following fields must be defined:
142
+ * __table__, __function__, __connection__, __credential__, __volume__, or __secret__.
143
+ */
144
+ export interface Dependency {
145
+ value?: {
146
+ $case: 'table';
147
+ table: TableDependency;
148
+ } | {
149
+ $case: 'function';
150
+ function: FunctionDependency;
151
+ } | {
152
+ $case: 'connection';
153
+ connection: ConnectionDependency;
154
+ } | {
155
+ $case: 'credential';
156
+ credential: CredentialDependency;
157
+ } | undefined;
158
+ }
159
+ /** A list of dependencies. */
160
+ export interface DependencyList {
161
+ /** Array of dependencies. */
162
+ dependencies?: Dependency[] | undefined;
163
+ }
164
+ /** A function that is dependent on a SQL object. */
165
+ export interface FunctionDependency {
166
+ /** Full name of the dependent function, in the form of __catalog_name__.__schema_name__.__function_name__. */
167
+ functionFullName?: string | undefined;
168
+ }
169
+ export interface FunctionInfo {
170
+ /** Name of function, relative to parent schema. */
171
+ name?: string | undefined;
172
+ /** Name of parent Catalog. */
173
+ catalogName?: string | undefined;
174
+ /** Name of parent Schema relative to its parent Catalog. */
175
+ schemaName?: string | undefined;
176
+ /** Function input parameters. */
177
+ inputParams?: FunctionParameterInfos | undefined;
178
+ /** Scalar function return data type. */
179
+ dataType?: ColumnTypeName | undefined;
180
+ /** Pretty printed function data type. */
181
+ fullDataType?: string | undefined;
182
+ /** Function language. When **EXTERNAL** is used, the language of the routine function should be specified in the **external_language** field, and the **return_params** of the function cannot be used (as **TABLE** return type is not supported), and the **sql_data_access** field must be **NO_SQL**. */
183
+ routineBody?: FunctionInfo_RoutineBody | undefined;
184
+ /** Function body. */
185
+ routineDefinition?: string | undefined;
186
+ /** Function parameter style. **S** is the value for SQL. */
187
+ parameterStyle?: FunctionInfo_ParameterStyle | undefined;
188
+ /** Whether the function is deterministic. */
189
+ isDeterministic?: boolean | undefined;
190
+ /** Function SQL data access. */
191
+ sqlDataAccess?: FunctionInfo_SqlDataAccess | undefined;
192
+ /** Function null call. */
193
+ isNullCall?: boolean | undefined;
194
+ /** Function security type. */
195
+ securityType?: FunctionInfo_SecurityType | undefined;
196
+ /** Specific name of the function; Reserved for future use. */
197
+ specificName?: string | undefined;
198
+ /** Table function return parameters. */
199
+ returnParams?: FunctionParameterInfos | undefined;
200
+ /** External function name. */
201
+ externalName?: string | undefined;
202
+ /** External function language. */
203
+ externalLanguage?: string | undefined;
204
+ /** List of schemes whose objects can be referenced without qualification. */
205
+ sqlPath?: string | undefined;
206
+ /** Username of current owner of the function. */
207
+ owner?: string | undefined;
208
+ /** User-provided free-form text description. */
209
+ comment?: string | undefined;
210
+ /** JSON-serialized key-value pair map, encoded (escaped) as a string. */
211
+ properties?: string | undefined;
212
+ /** function dependencies. */
213
+ routineDependencies?: DependencyList | undefined;
214
+ /** Unique identifier of parent metastore. */
215
+ metastoreId?: string | undefined;
216
+ /** Full name of Function, in form of **catalog_name**.**schema_name**.**function_name** */
217
+ fullName?: string | undefined;
218
+ /** Time at which this function was created, in epoch milliseconds. */
219
+ createdAt?: bigint | undefined;
220
+ /** Username of function creator. */
221
+ createdBy?: string | undefined;
222
+ /** Time at which this function was last modified, in epoch milliseconds. */
223
+ updatedAt?: bigint | undefined;
224
+ /** Username of user who last modified the function. */
225
+ updatedBy?: string | undefined;
226
+ /** Id of Function, relative to parent schema. */
227
+ functionId?: string | undefined;
228
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
229
+ browseOnly?: boolean | undefined;
230
+ }
231
+ export interface FunctionParameterInfo {
232
+ /** Name of Parameter. */
233
+ name?: string | undefined;
234
+ /** Full data type spec, SQL/catalogString text. */
235
+ typeText?: string | undefined;
236
+ /** Full data type spec, JSON-serialized. */
237
+ typeJson?: string | undefined;
238
+ /** Name of type (INT, STRUCT, MAP, etc.) */
239
+ typeName?: ColumnTypeName | undefined;
240
+ /** Digits of precision; required on Create for DecimalTypes. */
241
+ typePrecision?: number | undefined;
242
+ /** Digits to right of decimal; Required on Create for DecimalTypes. */
243
+ typeScale?: number | undefined;
244
+ /** Format of IntervalType. */
245
+ typeIntervalType?: string | undefined;
246
+ /** Ordinal position of column (starting at position 0). */
247
+ position?: number | undefined;
248
+ /** Function parameter mode. */
249
+ parameterMode?: FunctionParameterMode | undefined;
250
+ /** Function parameter type. */
251
+ parameterType?: FunctionParameterType | undefined;
252
+ /** Default value of the parameter. */
253
+ parameterDefault?: string | undefined;
254
+ /** User-provided free-form text description. */
255
+ comment?: string | undefined;
256
+ }
257
+ export interface FunctionParameterInfos {
258
+ parameters?: FunctionParameterInfo[] | undefined;
259
+ }
260
+ export interface GetFunctionRequest {
261
+ /** The fully-qualified name of the function (of the form __catalog_name__.__schema_name__.__function__name__). */
262
+ fullNameArg?: string | undefined;
263
+ /** Whether to include functions in the response for which the principal can only access selective metadata for */
264
+ includeBrowse?: boolean | undefined;
265
+ }
266
+ export interface ListFunctionsRequest {
267
+ /** Name of parent catalog for functions of interest. */
268
+ catalogName?: string | undefined;
269
+ /** Parent schema of functions. */
270
+ schemaName?: string | undefined;
271
+ /** Whether to include functions in the response for which the principal can only access selective metadata for */
272
+ includeBrowse?: boolean | undefined;
273
+ /**
274
+ * Maximum number of functions to return.
275
+ * If not set, all the functions are returned (not recommended).
276
+ * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
277
+ * - when set to 0, the page length is set to a server configured value (recommended);
278
+ * - when set to a value less than 0, an invalid parameter error is returned;
279
+ */
280
+ maxResults?: number | undefined;
281
+ /** Opaque pagination token to go to next page based on previous query. */
282
+ pageToken?: string | undefined;
283
+ }
284
+ export interface ListFunctionsRequest_Response {
285
+ /** An array of function information objects. */
286
+ functions?: FunctionInfo[] | undefined;
287
+ /**
288
+ * Opaque token to retrieve the next page of results. Absent if there are no more pages.
289
+ * __page_token__ should be set to this value for the next request (for the next page of results).
290
+ */
291
+ nextPageToken?: string | undefined;
292
+ }
293
+ /** A table that is dependent on a SQL object. */
294
+ export interface TableDependency {
295
+ /** Full name of the dependent table, in the form of __catalog_name__.__schema_name__.__table_name__. */
296
+ tableFullName?: string | undefined;
297
+ }
298
+ export interface UpdateFunctionRequest {
299
+ /** The fully-qualified name of the function (of the form __catalog_name__.__schema_name__.__function__name__). */
300
+ fullNameArg?: string | undefined;
301
+ /** Name of function, relative to parent schema. */
302
+ name?: string | undefined;
303
+ /** Name of parent Catalog. */
304
+ catalogName?: string | undefined;
305
+ /** Name of parent Schema relative to its parent Catalog. */
306
+ schemaName?: string | undefined;
307
+ /** Function input parameters. */
308
+ inputParams?: FunctionParameterInfos | undefined;
309
+ /** Scalar function return data type. */
310
+ dataType?: ColumnTypeName | undefined;
311
+ /** Pretty printed function data type. */
312
+ fullDataType?: string | undefined;
313
+ /** Function language. When **EXTERNAL** is used, the language of the routine function should be specified in the **external_language** field, and the **return_params** of the function cannot be used (as **TABLE** return type is not supported), and the **sql_data_access** field must be **NO_SQL**. */
314
+ routineBody?: FunctionInfo_RoutineBody | undefined;
315
+ /** Function body. */
316
+ routineDefinition?: string | undefined;
317
+ /** Function parameter style. **S** is the value for SQL. */
318
+ parameterStyle?: FunctionInfo_ParameterStyle | undefined;
319
+ /** Whether the function is deterministic. */
320
+ isDeterministic?: boolean | undefined;
321
+ /** Function SQL data access. */
322
+ sqlDataAccess?: FunctionInfo_SqlDataAccess | undefined;
323
+ /** Function null call. */
324
+ isNullCall?: boolean | undefined;
325
+ /** Function security type. */
326
+ securityType?: FunctionInfo_SecurityType | undefined;
327
+ /** Specific name of the function; Reserved for future use. */
328
+ specificName?: string | undefined;
329
+ /** Table function return parameters. */
330
+ returnParams?: FunctionParameterInfos | undefined;
331
+ /** External function name. */
332
+ externalName?: string | undefined;
333
+ /** External function language. */
334
+ externalLanguage?: string | undefined;
335
+ /** List of schemes whose objects can be referenced without qualification. */
336
+ sqlPath?: string | undefined;
337
+ /** Username of current owner of the function. */
338
+ owner?: string | undefined;
339
+ /** User-provided free-form text description. */
340
+ comment?: string | undefined;
341
+ /** JSON-serialized key-value pair map, encoded (escaped) as a string. */
342
+ properties?: string | undefined;
343
+ /** function dependencies. */
344
+ routineDependencies?: DependencyList | undefined;
345
+ /** Unique identifier of parent metastore. */
346
+ metastoreId?: string | undefined;
347
+ /** Full name of Function, in form of **catalog_name**.**schema_name**.**function_name** */
348
+ fullName?: string | undefined;
349
+ /** Time at which this function was created, in epoch milliseconds. */
350
+ createdAt?: bigint | undefined;
351
+ /** Username of function creator. */
352
+ createdBy?: string | undefined;
353
+ /** Time at which this function was last modified, in epoch milliseconds. */
354
+ updatedAt?: bigint | undefined;
355
+ /** Username of user who last modified the function. */
356
+ updatedBy?: string | undefined;
357
+ /** Id of Function, relative to parent schema. */
358
+ functionId?: string | undefined;
359
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
360
+ browseOnly?: boolean | undefined;
361
+ }
362
+ export declare const unmarshalConnectionDependencySchema: z.ZodType<ConnectionDependency>;
363
+ export declare const unmarshalCredentialDependencySchema: z.ZodType<CredentialDependency>;
364
+ export declare const unmarshalDeleteFunctionRequest_ResponseSchema: z.ZodType<DeleteFunctionRequest_Response>;
365
+ export declare const unmarshalDependencySchema: z.ZodType<Dependency>;
366
+ export declare const unmarshalDependencyListSchema: z.ZodType<DependencyList>;
367
+ export declare const unmarshalFunctionDependencySchema: z.ZodType<FunctionDependency>;
368
+ export declare const unmarshalFunctionInfoSchema: z.ZodType<FunctionInfo>;
369
+ export declare const unmarshalFunctionParameterInfoSchema: z.ZodType<FunctionParameterInfo>;
370
+ export declare const unmarshalFunctionParameterInfosSchema: z.ZodType<FunctionParameterInfos>;
371
+ export declare const unmarshalListFunctionsRequest_ResponseSchema: z.ZodType<ListFunctionsRequest_Response>;
372
+ export declare const unmarshalTableDependencySchema: z.ZodType<TableDependency>;
373
+ export declare const marshalConnectionDependencySchema: z.ZodType;
374
+ export declare const marshalCreateFunctionSchema: z.ZodType;
375
+ export declare const marshalCreateFunctionRequestSchema: z.ZodType;
376
+ export declare const marshalCredentialDependencySchema: z.ZodType;
377
+ export declare const marshalDependencySchema: z.ZodType;
378
+ export declare const marshalDependencyListSchema: z.ZodType;
379
+ export declare const marshalFunctionDependencySchema: z.ZodType;
380
+ export declare const marshalFunctionParameterInfoSchema: z.ZodType;
381
+ export declare const marshalFunctionParameterInfosSchema: z.ZodType;
382
+ export declare const marshalTableDependencySchema: z.ZodType;
383
+ export declare const marshalUpdateFunctionRequestSchema: z.ZodType;
384
+ //# sourceMappingURL=model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/v1/model.ts"],"names":[],"mappings":"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"}