@databricks/sdk-sharing 0.0.0-dev → 0.1.0-dev.1
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/LICENSE +203 -0
- package/dist/v1/client.d.ts +178 -0
- package/dist/v1/client.d.ts.map +1 -0
- package/dist/v1/client.js +954 -0
- package/dist/v1/client.js.map +1 -0
- package/dist/v1/index.d.ts +4 -0
- package/dist/v1/index.d.ts.map +1 -0
- package/dist/v1/index.js +4 -0
- package/dist/v1/index.js.map +1 -0
- package/dist/v1/model.d.ts +1198 -0
- package/dist/v1/model.d.ts.map +1 -0
- package/dist/v1/model.js +1150 -0
- package/dist/v1/model.js.map +1 -0
- package/dist/v1/transport.d.ts +5 -0
- package/dist/v1/transport.d.ts.map +1 -0
- package/dist/v1/transport.js +57 -0
- package/dist/v1/transport.js.map +1 -0
- package/dist/v1/utils.d.ts +22 -0
- package/dist/v1/utils.d.ts.map +1 -0
- package/dist/v1/utils.js +113 -0
- package/dist/v1/utils.js.map +1 -0
- package/package.json +38 -4
- package/src/v1/client.ts +1217 -0
- package/src/v1/index.ts +93 -0
- package/src/v1/model.ts +2393 -0
- package/src/v1/transport.ts +73 -0
- package/src/v1/utils.ts +156 -0
- package/README.md +0 -1
- package/index.js +0 -1
|
@@ -0,0 +1,1198 @@
|
|
|
1
|
+
import { Temporal } from '@js-temporal/polyfill';
|
|
2
|
+
import { z } from 'zod';
|
|
3
|
+
/**
|
|
4
|
+
* UC supported column types
|
|
5
|
+
* Copied from https://src.dev.databricks.com/databricks/universe@23a85902bb58695ab9293adc9f327b0714b55e72/-/blob/managed-catalog/api/messages/table.proto?L68
|
|
6
|
+
*/
|
|
7
|
+
export declare enum ColumnTypeName {
|
|
8
|
+
COLUMN_TYPE_NAME_UNSPECIFIED = "COLUMN_TYPE_NAME_UNSPECIFIED",
|
|
9
|
+
BOOLEAN = "BOOLEAN",
|
|
10
|
+
BYTE = "BYTE",
|
|
11
|
+
SHORT = "SHORT",
|
|
12
|
+
INT = "INT",
|
|
13
|
+
LONG = "LONG",
|
|
14
|
+
FLOAT = "FLOAT",
|
|
15
|
+
DOUBLE = "DOUBLE",
|
|
16
|
+
DATE = "DATE",
|
|
17
|
+
TIMESTAMP = "TIMESTAMP",
|
|
18
|
+
STRING = "STRING",
|
|
19
|
+
BINARY = "BINARY",
|
|
20
|
+
DECIMAL = "DECIMAL",
|
|
21
|
+
INTERVAL = "INTERVAL",
|
|
22
|
+
ARRAY = "ARRAY",
|
|
23
|
+
STRUCT = "STRUCT",
|
|
24
|
+
MAP = "MAP",
|
|
25
|
+
CHAR = "CHAR",
|
|
26
|
+
NULL = "NULL",
|
|
27
|
+
USER_DEFINED_TYPE = "USER_DEFINED_TYPE",
|
|
28
|
+
TIMESTAMP_NTZ = "TIMESTAMP_NTZ",
|
|
29
|
+
VARIANT = "VARIANT",
|
|
30
|
+
TABLE_TYPE = "TABLE_TYPE"
|
|
31
|
+
}
|
|
32
|
+
/** The delta sharing authentication type. */
|
|
33
|
+
export declare enum DeltaSharingAuthenticationType {
|
|
34
|
+
/** Token-based authentication. */
|
|
35
|
+
TOKEN = "TOKEN",
|
|
36
|
+
/** Databricks-managed authentication. */
|
|
37
|
+
DATABRICKS = "DATABRICKS",
|
|
38
|
+
/** OIDC Federation authentication */
|
|
39
|
+
OIDC_FEDERATION = "OIDC_FEDERATION",
|
|
40
|
+
/** OAuth Client Credentials Grant based authentication. This option is for provider imports only. */
|
|
41
|
+
OAUTH_CLIENT_CREDENTIALS = "OAUTH_CLIENT_CREDENTIALS"
|
|
42
|
+
}
|
|
43
|
+
export declare enum FunctionParameterMode {
|
|
44
|
+
FUNCTION_PARAMETER_MODE_UNSPECIFIED = "FUNCTION_PARAMETER_MODE_UNSPECIFIED",
|
|
45
|
+
IN = "IN",
|
|
46
|
+
OUT = "OUT",
|
|
47
|
+
INOUT = "INOUT"
|
|
48
|
+
}
|
|
49
|
+
export declare enum FunctionParameterType {
|
|
50
|
+
FUNCTION_PARAMETER_TYPE_UNSPECIFIED = "FUNCTION_PARAMETER_TYPE_UNSPECIFIED",
|
|
51
|
+
PARAM = "PARAM",
|
|
52
|
+
COLUMN = "COLUMN"
|
|
53
|
+
}
|
|
54
|
+
/** The SecurableKind of a delta-shared object. */
|
|
55
|
+
export declare enum SharedSecurableKind {
|
|
56
|
+
SHARED_SECURABLE_KIND_UNSPECIFIED = "SHARED_SECURABLE_KIND_UNSPECIFIED",
|
|
57
|
+
FUNCTION_STANDARD = "FUNCTION_STANDARD",
|
|
58
|
+
FUNCTION_REGISTERED_MODEL = "FUNCTION_REGISTERED_MODEL",
|
|
59
|
+
FUNCTION_FEATURE_SPEC = "FUNCTION_FEATURE_SPEC"
|
|
60
|
+
}
|
|
61
|
+
export declare enum PartitionSpecification_Partition_PartitionValue_PartitionValueOp {
|
|
62
|
+
EQUAL = "EQUAL",
|
|
63
|
+
LIKE = "LIKE"
|
|
64
|
+
}
|
|
65
|
+
export declare enum SharedDataObject_HistoryDataSharingStatus_Enum {
|
|
66
|
+
DISABLED = "DISABLED",
|
|
67
|
+
ENABLED = "ENABLED"
|
|
68
|
+
}
|
|
69
|
+
export declare enum SharedDataObject_Status_Enum {
|
|
70
|
+
/** Object is being shared with recipients without any issues. */
|
|
71
|
+
ACTIVE = "ACTIVE",
|
|
72
|
+
/**
|
|
73
|
+
* For securables, the share owner has lost access to the securable,
|
|
74
|
+
* so the securable is not being shared with the recipient.
|
|
75
|
+
*/
|
|
76
|
+
PERMISSION_DENIED = "PERMISSION_DENIED"
|
|
77
|
+
}
|
|
78
|
+
export declare enum UpdateShareRequest_SharedDataObjectUpdate_Action {
|
|
79
|
+
ADD = "ADD",
|
|
80
|
+
REMOVE = "REMOVE",
|
|
81
|
+
UPDATE = "UPDATE"
|
|
82
|
+
}
|
|
83
|
+
export interface CreateFederationPolicyRequest {
|
|
84
|
+
/** Name of the recipient. This is the name of the recipient for which the policy is being created. */
|
|
85
|
+
recipientName?: string | undefined;
|
|
86
|
+
/** Name of the policy. This is the name of the policy to be created. */
|
|
87
|
+
policy?: FederationPolicy | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface CreateProviderRequest {
|
|
90
|
+
/** The name of the Provider. */
|
|
91
|
+
name?: string | undefined;
|
|
92
|
+
authenticationType?: DeltaSharingAuthenticationType | undefined;
|
|
93
|
+
/** This field is required when the __authentication_type__ is **TOKEN**, **OAUTH_CLIENT_CREDENTIALS** or not provided. */
|
|
94
|
+
recipientProfileStr?: string | undefined;
|
|
95
|
+
/** Description about the provider. */
|
|
96
|
+
comment?: string | undefined;
|
|
97
|
+
/** Username of Provider owner. */
|
|
98
|
+
owner?: string | undefined;
|
|
99
|
+
/** The recipient profile. This field is only present when the authentication_type is `TOKEN` or `OAUTH_CLIENT_CREDENTIALS`. */
|
|
100
|
+
recipientProfile?: RecipientProfile | undefined;
|
|
101
|
+
/** Time at which this Provider was created, in epoch milliseconds. */
|
|
102
|
+
createdAt?: bigint | undefined;
|
|
103
|
+
/** Username of Provider creator. */
|
|
104
|
+
createdBy?: string | undefined;
|
|
105
|
+
/** Time at which this Provider was created, in epoch milliseconds. */
|
|
106
|
+
updatedAt?: bigint | undefined;
|
|
107
|
+
/** Username of user who last modified Provider. */
|
|
108
|
+
updatedBy?: string | undefined;
|
|
109
|
+
/** Cloud vendor of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
110
|
+
cloud?: string | undefined;
|
|
111
|
+
/** Cloud region of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
112
|
+
region?: string | undefined;
|
|
113
|
+
/** UUID of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
114
|
+
metastoreId?: string | undefined;
|
|
115
|
+
/** The global UC metastore id of the data provider. This field is only present when the __authentication_type__ is **DATABRICKS**. The identifier is of format __cloud__:__region__:__metastore-uuid__. */
|
|
116
|
+
dataProviderGlobalMetastoreId?: string | undefined;
|
|
117
|
+
}
|
|
118
|
+
export interface CreateRecipientRequest {
|
|
119
|
+
/** Name of Recipient. */
|
|
120
|
+
name?: string | undefined;
|
|
121
|
+
authenticationType?: DeltaSharingAuthenticationType | undefined;
|
|
122
|
+
/** The one-time sharing code provided by the data recipient. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
123
|
+
sharingCode?: string | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* The global Unity Catalog metastore id provided by the data recipient.
|
|
126
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
127
|
+
* The identifier is of format __cloud__:__region__:__metastore-uuid__.
|
|
128
|
+
*/
|
|
129
|
+
dataRecipientGlobalMetastoreId?: string | undefined;
|
|
130
|
+
/** Username of the recipient owner. */
|
|
131
|
+
owner?: string | undefined;
|
|
132
|
+
/** Description about the recipient. */
|
|
133
|
+
comment?: string | undefined;
|
|
134
|
+
/** IP Access List */
|
|
135
|
+
ipAccessList?: IpAccessList | undefined;
|
|
136
|
+
/**
|
|
137
|
+
* Recipient properties as map of string key-value pairs.
|
|
138
|
+
* When provided in update request, the specified properties will override the existing
|
|
139
|
+
* properties. To add and remove properties, one would need to perform a read-modify-write.
|
|
140
|
+
*/
|
|
141
|
+
propertiesKvpairs?: PropertiesKvPairs | undefined;
|
|
142
|
+
/** Expiration timestamp of the token, in epoch milliseconds. */
|
|
143
|
+
expirationTime?: bigint | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* Full activation url to retrieve the access token.
|
|
146
|
+
* It will be empty if the token is already retrieved.
|
|
147
|
+
*/
|
|
148
|
+
activationUrl?: string | undefined;
|
|
149
|
+
/** A boolean status field showing whether the Recipient's activation URL has been exercised or not. */
|
|
150
|
+
activated?: boolean | undefined;
|
|
151
|
+
/** Time at which this recipient was created, in epoch milliseconds. */
|
|
152
|
+
createdAt?: bigint | undefined;
|
|
153
|
+
/** Username of recipient creator. */
|
|
154
|
+
createdBy?: string | undefined;
|
|
155
|
+
/** This field is only present when the __authentication_type__ is **TOKEN**. */
|
|
156
|
+
tokens?: RecipientTokenInfo[] | undefined;
|
|
157
|
+
/** Time at which the recipient was updated, in epoch milliseconds. */
|
|
158
|
+
updatedAt?: bigint | undefined;
|
|
159
|
+
/** Username of recipient updater. */
|
|
160
|
+
updatedBy?: string | undefined;
|
|
161
|
+
/**
|
|
162
|
+
* Cloud vendor of the recipient's Unity Catalog Metastore.
|
|
163
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
164
|
+
*/
|
|
165
|
+
cloud?: string | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* Cloud region of the recipient's Unity Catalog Metastore.
|
|
168
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
169
|
+
*/
|
|
170
|
+
region?: string | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* Unique identifier of recipient's Unity Catalog Metastore.
|
|
173
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
174
|
+
*/
|
|
175
|
+
metastoreId?: string | undefined;
|
|
176
|
+
/** [Create,Update:IGN] common - id of the recipient */
|
|
177
|
+
id?: string | undefined;
|
|
178
|
+
}
|
|
179
|
+
export interface CreateShareRequest {
|
|
180
|
+
/** Name of the share. */
|
|
181
|
+
name?: string | undefined;
|
|
182
|
+
/** Username of current owner of share. */
|
|
183
|
+
owner?: string | undefined;
|
|
184
|
+
/** User-provided free-form text description. */
|
|
185
|
+
comment?: string | undefined;
|
|
186
|
+
/** Storage root URL for the share. */
|
|
187
|
+
storageRoot?: string | undefined;
|
|
188
|
+
/** A list of shared data objects within the share. */
|
|
189
|
+
objects?: SharedDataObject[] | undefined;
|
|
190
|
+
/** Time at which this share was created, in epoch milliseconds. */
|
|
191
|
+
createdAt?: bigint | undefined;
|
|
192
|
+
/** Username of share creator. */
|
|
193
|
+
createdBy?: string | undefined;
|
|
194
|
+
/** Time at which this share was updated, in epoch milliseconds. */
|
|
195
|
+
updatedAt?: bigint | undefined;
|
|
196
|
+
/** Username of share updater. */
|
|
197
|
+
updatedBy?: string | undefined;
|
|
198
|
+
/** Storage Location URL (full path) for the share. */
|
|
199
|
+
storageLocation?: string | undefined;
|
|
200
|
+
}
|
|
201
|
+
export interface DeleteFederationPolicyRequest {
|
|
202
|
+
/** Name of the recipient. This is the name of the recipient for which the policy is being deleted. */
|
|
203
|
+
recipientName?: string | undefined;
|
|
204
|
+
/** Name of the policy. This is the name of the policy to be deleted. */
|
|
205
|
+
name?: string | undefined;
|
|
206
|
+
}
|
|
207
|
+
export interface DeleteProviderRequest {
|
|
208
|
+
/** Name of the provider. */
|
|
209
|
+
nameArg?: string | undefined;
|
|
210
|
+
}
|
|
211
|
+
export interface DeleteProviderRequest_Response {
|
|
212
|
+
}
|
|
213
|
+
export interface DeleteRecipientRequest {
|
|
214
|
+
/** Name of the recipient. */
|
|
215
|
+
name?: string | undefined;
|
|
216
|
+
}
|
|
217
|
+
export interface DeleteRecipientRequest_Response {
|
|
218
|
+
}
|
|
219
|
+
export interface DeleteShareRequest {
|
|
220
|
+
/** The name of the share. */
|
|
221
|
+
name?: string | undefined;
|
|
222
|
+
}
|
|
223
|
+
export interface DeleteShareRequest_Response {
|
|
224
|
+
}
|
|
225
|
+
/** Represents a UC dependency. */
|
|
226
|
+
export interface Dependency {
|
|
227
|
+
value?: {
|
|
228
|
+
$case: 'table';
|
|
229
|
+
table: TableDependency;
|
|
230
|
+
} | {
|
|
231
|
+
$case: 'function';
|
|
232
|
+
function: FunctionDependency;
|
|
233
|
+
} | undefined;
|
|
234
|
+
}
|
|
235
|
+
/** Represents a list of dependencies. */
|
|
236
|
+
export interface DependencyList {
|
|
237
|
+
/** An array of Dependency. */
|
|
238
|
+
dependencies?: Dependency[] | undefined;
|
|
239
|
+
}
|
|
240
|
+
export interface FederationPolicy {
|
|
241
|
+
/**
|
|
242
|
+
* Name of the federation policy. A recipient can have multiple policies with different names.
|
|
243
|
+
* The name must contain only lowercase alphanumeric characters, numbers, and hyphens.
|
|
244
|
+
*/
|
|
245
|
+
name?: string | undefined;
|
|
246
|
+
policy?: {
|
|
247
|
+
$case: 'oidcPolicy';
|
|
248
|
+
/** Specifies the policy to use for validating OIDC claims in the federated tokens. */
|
|
249
|
+
oidcPolicy: OidcFederationPolicy;
|
|
250
|
+
} | undefined;
|
|
251
|
+
/** System-generated timestamp indicating when the policy was created. */
|
|
252
|
+
createTime?: Temporal.Instant | undefined;
|
|
253
|
+
/** Description of the policy. This is a user-provided description. */
|
|
254
|
+
comment?: string | undefined;
|
|
255
|
+
/** System-generated timestamp indicating when the policy was last updated. */
|
|
256
|
+
updateTime?: Temporal.Instant | undefined;
|
|
257
|
+
/** Unique, immutable system-generated identifier for the federation policy. */
|
|
258
|
+
id?: string | undefined;
|
|
259
|
+
}
|
|
260
|
+
export interface Function {
|
|
261
|
+
/** The name of the function. */
|
|
262
|
+
name?: string | undefined;
|
|
263
|
+
/** The name of the schema that the function belongs to. */
|
|
264
|
+
schema?: string | undefined;
|
|
265
|
+
/** The name of the share that the function belongs to. */
|
|
266
|
+
share?: string | undefined;
|
|
267
|
+
/** The id of the share that the function belongs to. */
|
|
268
|
+
shareId?: string | undefined;
|
|
269
|
+
/** The id of the function. */
|
|
270
|
+
id?: string | undefined;
|
|
271
|
+
/** The storage location of the function. */
|
|
272
|
+
storageLocation?: string | undefined;
|
|
273
|
+
/** The comment of the function. */
|
|
274
|
+
comment?: string | undefined;
|
|
275
|
+
/** The aliass of registered model. */
|
|
276
|
+
aliases?: RegisteredModelAlias[] | undefined;
|
|
277
|
+
/** The tags of the function. */
|
|
278
|
+
tags?: TagKeyValue[] | undefined;
|
|
279
|
+
/** The securable kind of the function. */
|
|
280
|
+
securableKind?: SharedSecurableKind | undefined;
|
|
281
|
+
/** The full data type of the function. */
|
|
282
|
+
fullDataType?: string | undefined;
|
|
283
|
+
/** The data type of the function. */
|
|
284
|
+
dataType?: ColumnTypeName | undefined;
|
|
285
|
+
/** The routine definition of the function. */
|
|
286
|
+
routineDefinition?: string | undefined;
|
|
287
|
+
/** The function parameter information. */
|
|
288
|
+
inputParams?: FunctionParameterInfos | undefined;
|
|
289
|
+
/** The dependency list of the function. */
|
|
290
|
+
dependencyList?: DependencyList | undefined;
|
|
291
|
+
/** The properties of the function. */
|
|
292
|
+
properties?: string | undefined;
|
|
293
|
+
}
|
|
294
|
+
/** A Function in UC as a dependency. */
|
|
295
|
+
export interface FunctionDependency {
|
|
296
|
+
schemaName?: string | undefined;
|
|
297
|
+
functionName?: string | undefined;
|
|
298
|
+
}
|
|
299
|
+
/** Represents a parameter of a function. The same message is used for both input and output columns. */
|
|
300
|
+
export interface FunctionParameterInfo {
|
|
301
|
+
/** The name of the parameter. */
|
|
302
|
+
name?: string | undefined;
|
|
303
|
+
/** The type of the parameter in text format. */
|
|
304
|
+
typeText?: string | undefined;
|
|
305
|
+
/** The type of the parameter in JSON format. */
|
|
306
|
+
typeJson?: string | undefined;
|
|
307
|
+
/** The type of the parameter in Enum format. */
|
|
308
|
+
typeName?: ColumnTypeName | undefined;
|
|
309
|
+
/** The precision of the parameter type. */
|
|
310
|
+
typePrecision?: number | undefined;
|
|
311
|
+
/** The scale of the parameter type. */
|
|
312
|
+
typeScale?: number | undefined;
|
|
313
|
+
/** The interval type of the parameter type. */
|
|
314
|
+
typeIntervalType?: string | undefined;
|
|
315
|
+
/** The position of the parameter. */
|
|
316
|
+
position?: number | undefined;
|
|
317
|
+
/** The mode of the function parameter. */
|
|
318
|
+
parameterMode?: FunctionParameterMode | undefined;
|
|
319
|
+
/** The type of the function parameter. */
|
|
320
|
+
parameterType?: FunctionParameterType | undefined;
|
|
321
|
+
/** The default value of the parameter. */
|
|
322
|
+
parameterDefault?: string | undefined;
|
|
323
|
+
/** The comment of the parameter. */
|
|
324
|
+
comment?: string | undefined;
|
|
325
|
+
}
|
|
326
|
+
export interface FunctionParameterInfos {
|
|
327
|
+
/** The list of parameters of the function. */
|
|
328
|
+
parameters?: FunctionParameterInfo[] | undefined;
|
|
329
|
+
}
|
|
330
|
+
export interface GetActivationUrlInfoRequest {
|
|
331
|
+
/** The one time activation url. It also accepts activation token. */
|
|
332
|
+
activationUrl?: string | undefined;
|
|
333
|
+
}
|
|
334
|
+
export interface GetActivationUrlInfoRequest_Response {
|
|
335
|
+
}
|
|
336
|
+
export interface GetFederationPolicyRequest {
|
|
337
|
+
/** Name of the recipient. This is the name of the recipient for which the policy is being retrieved. */
|
|
338
|
+
recipientName?: string | undefined;
|
|
339
|
+
/** Name of the policy. This is the name of the policy to be retrieved. */
|
|
340
|
+
name?: string | undefined;
|
|
341
|
+
}
|
|
342
|
+
export interface GetProviderRequest {
|
|
343
|
+
/** Name of the provider. */
|
|
344
|
+
nameArg?: string | undefined;
|
|
345
|
+
}
|
|
346
|
+
export interface GetRecipientRequest {
|
|
347
|
+
/** Name of the recipient. */
|
|
348
|
+
name?: string | undefined;
|
|
349
|
+
}
|
|
350
|
+
export interface GetRecipientSharePermissionsRequest {
|
|
351
|
+
/** The name of the Recipient. */
|
|
352
|
+
name?: string | undefined;
|
|
353
|
+
/**
|
|
354
|
+
* Maximum number of permissions to return.
|
|
355
|
+
* - when set to 0, the page length is set to a server configured value (recommended);
|
|
356
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
|
|
357
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
358
|
+
* - If not set, all valid permissions are returned (not recommended).
|
|
359
|
+
* - Note: The number of returned permissions might be less than the specified max_results size, even zero.
|
|
360
|
+
* The only definitive indication that no further permissions can be fetched is when the next_page_token is unset from the response.
|
|
361
|
+
*/
|
|
362
|
+
maxResults?: number | undefined;
|
|
363
|
+
/** Opaque pagination token to go to next page based on previous query. */
|
|
364
|
+
pageToken?: string | undefined;
|
|
365
|
+
}
|
|
366
|
+
export interface GetRecipientSharePermissionsRequest_Response {
|
|
367
|
+
/** An array of data share permissions for a recipient. */
|
|
368
|
+
permissionsOut?: ShareToPrivilegeAssignment[] | undefined;
|
|
369
|
+
/**
|
|
370
|
+
* Opaque token to retrieve the next page of results. Absent if there are no more pages.
|
|
371
|
+
* __page_token__ should be set to this value for the next request (for the next page of results).
|
|
372
|
+
*/
|
|
373
|
+
nextPageToken?: string | undefined;
|
|
374
|
+
}
|
|
375
|
+
export interface GetSharePermissionsRequest {
|
|
376
|
+
/** The name of the share. */
|
|
377
|
+
name?: string | undefined;
|
|
378
|
+
/**
|
|
379
|
+
* Maximum number of permissions to return.
|
|
380
|
+
* - when set to 0, the page length is set to a server configured value (recommended);
|
|
381
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
|
|
382
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
383
|
+
* - If not set, all valid permissions are returned (not recommended).
|
|
384
|
+
* - Note: The number of returned permissions might be less than the specified max_results size, even zero.
|
|
385
|
+
* The only definitive indication that no further permissions can be fetched is when the next_page_token is unset from the response.
|
|
386
|
+
*/
|
|
387
|
+
maxResults?: number | undefined;
|
|
388
|
+
/** Opaque pagination token to go to next page based on previous query. */
|
|
389
|
+
pageToken?: string | undefined;
|
|
390
|
+
}
|
|
391
|
+
export interface GetSharePermissionsRequest_Response {
|
|
392
|
+
/**
|
|
393
|
+
* Opaque token to retrieve the next page of results. Absent if there are no more pages.
|
|
394
|
+
* __page_token__ should be set to this value for the next request (for the next page of results).
|
|
395
|
+
*/
|
|
396
|
+
nextPageToken?: string | undefined;
|
|
397
|
+
/** The privileges assigned to each principal */
|
|
398
|
+
privilegeAssignments?: PrivilegeAssignment[] | undefined;
|
|
399
|
+
}
|
|
400
|
+
export interface GetShareRequest {
|
|
401
|
+
/** The name of the share. */
|
|
402
|
+
name?: string | undefined;
|
|
403
|
+
/** Query for data to include in the share. */
|
|
404
|
+
includeSharedData?: boolean | undefined;
|
|
405
|
+
}
|
|
406
|
+
export interface IpAccessList {
|
|
407
|
+
/** Allowed IP Addresses in CIDR notation. Limit of 100. */
|
|
408
|
+
allowedIpAddresses?: string[] | undefined;
|
|
409
|
+
}
|
|
410
|
+
export interface ListFederationPoliciesRequest {
|
|
411
|
+
/** Name of the recipient. This is the name of the recipient for which the policies are being listed. */
|
|
412
|
+
recipientName?: string | undefined;
|
|
413
|
+
maxResults?: number | undefined;
|
|
414
|
+
pageToken?: string | undefined;
|
|
415
|
+
}
|
|
416
|
+
export interface ListFederationPoliciesResponse {
|
|
417
|
+
policies?: FederationPolicy[] | undefined;
|
|
418
|
+
nextPageToken?: string | undefined;
|
|
419
|
+
}
|
|
420
|
+
/** Request to fetch the list of assets of a share that is shared with the recipient. */
|
|
421
|
+
export interface ListProviderShareAssetsRequest {
|
|
422
|
+
/** The name of the provider who owns the share. */
|
|
423
|
+
providerNameArg?: string | undefined;
|
|
424
|
+
/** The name of the share. */
|
|
425
|
+
shareNameArg?: string | undefined;
|
|
426
|
+
/** Maximum number of tables to return. */
|
|
427
|
+
tableMaxResults?: number | undefined;
|
|
428
|
+
/** Maximum number of functions to return. */
|
|
429
|
+
functionMaxResults?: number | undefined;
|
|
430
|
+
/** Maximum number of volumes to return. */
|
|
431
|
+
volumeMaxResults?: number | undefined;
|
|
432
|
+
/** Maximum number of notebooks to return. */
|
|
433
|
+
notebookMaxResults?: number | undefined;
|
|
434
|
+
}
|
|
435
|
+
/** Response to ListProviderShareAssets, which contains the list of assets of a share. */
|
|
436
|
+
export interface ListProviderShareAssetsResponse {
|
|
437
|
+
/** The list of tables in the share. */
|
|
438
|
+
tables?: Table[] | undefined;
|
|
439
|
+
/** The list of functions in the share. */
|
|
440
|
+
functions?: Function[] | undefined;
|
|
441
|
+
/** The list of notebooks in the share. */
|
|
442
|
+
notebooks?: NotebookFile[] | undefined;
|
|
443
|
+
/** The list of volumes in the share. */
|
|
444
|
+
volumes?: Volume[] | undefined;
|
|
445
|
+
/** The metadata of the share. */
|
|
446
|
+
share?: Share | undefined;
|
|
447
|
+
}
|
|
448
|
+
export interface ListProviderSharesRequest {
|
|
449
|
+
/** Name of the provider in which to list shares. */
|
|
450
|
+
providerNameArg?: string | undefined;
|
|
451
|
+
/**
|
|
452
|
+
* Maximum number of shares to return.
|
|
453
|
+
* - when set to 0, the page length is set to a server configured value (recommended);
|
|
454
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
|
|
455
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
456
|
+
* - If not set, all valid shares are returned (not recommended).
|
|
457
|
+
* - Note: The number of returned shares might be less than the specified max_results size, even zero.
|
|
458
|
+
* The only definitive indication that no further shares can be fetched is when the next_page_token is unset from the response.
|
|
459
|
+
*/
|
|
460
|
+
maxResults?: number | undefined;
|
|
461
|
+
/** Opaque pagination token to go to next page based on previous query. */
|
|
462
|
+
pageToken?: string | undefined;
|
|
463
|
+
}
|
|
464
|
+
export interface ListProviderSharesRequest_Response {
|
|
465
|
+
/** An array of provider shares. */
|
|
466
|
+
shares?: ProviderShare[] | undefined;
|
|
467
|
+
/**
|
|
468
|
+
* Opaque token to retrieve the next page of results. Absent if there are no more pages.
|
|
469
|
+
* __page_token__ should be set to this value for the next request (for the next page of results).
|
|
470
|
+
*/
|
|
471
|
+
nextPageToken?: string | undefined;
|
|
472
|
+
}
|
|
473
|
+
export interface ListProvidersRequest {
|
|
474
|
+
/**
|
|
475
|
+
* If not provided, all providers will be returned.
|
|
476
|
+
* If no providers exist with this ID, no results will be returned.
|
|
477
|
+
*/
|
|
478
|
+
dataProviderGlobalMetastoreId?: string | undefined;
|
|
479
|
+
/**
|
|
480
|
+
* Maximum number of providers to return.
|
|
481
|
+
* - when set to 0, the page length is set to a server configured value (recommended);
|
|
482
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
|
|
483
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
484
|
+
* - If not set, all valid providers are returned (not recommended).
|
|
485
|
+
* - Note: The number of returned providers might be less than the specified max_results size, even zero.
|
|
486
|
+
* The only definitive indication that no further providers can be fetched is when the next_page_token is unset from the response.
|
|
487
|
+
*/
|
|
488
|
+
maxResults?: number | undefined;
|
|
489
|
+
/** Opaque pagination token to go to next page based on previous query. */
|
|
490
|
+
pageToken?: string | undefined;
|
|
491
|
+
}
|
|
492
|
+
export interface ListProvidersRequest_Response {
|
|
493
|
+
/** An array of provider information objects. */
|
|
494
|
+
providers?: ProviderInfo[] | undefined;
|
|
495
|
+
/**
|
|
496
|
+
* Opaque token to retrieve the next page of results. Absent if there are no more pages.
|
|
497
|
+
* __page_token__ should be set to this value for the next request (for the next page of results).
|
|
498
|
+
*/
|
|
499
|
+
nextPageToken?: string | undefined;
|
|
500
|
+
}
|
|
501
|
+
export interface ListRecipientsRequest {
|
|
502
|
+
/**
|
|
503
|
+
* If not provided, all recipients will be returned.
|
|
504
|
+
* If no recipients exist with this ID, no results will be returned.
|
|
505
|
+
*/
|
|
506
|
+
dataRecipientGlobalMetastoreId?: string | undefined;
|
|
507
|
+
/**
|
|
508
|
+
* Maximum number of recipients to return.
|
|
509
|
+
* - when set to 0, the page length is set to a server configured value (recommended);
|
|
510
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
|
|
511
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
512
|
+
* - If not set, all valid recipients are returned (not recommended).
|
|
513
|
+
* - Note: The number of returned recipients might be less than the specified max_results size, even zero.
|
|
514
|
+
* The only definitive indication that no further recipients can be fetched is when the next_page_token is unset from the response.
|
|
515
|
+
*/
|
|
516
|
+
maxResults?: number | undefined;
|
|
517
|
+
/** Opaque pagination token to go to next page based on previous query. */
|
|
518
|
+
pageToken?: string | undefined;
|
|
519
|
+
}
|
|
520
|
+
export interface ListRecipientsRequest_Response {
|
|
521
|
+
/** An array of recipient information objects. */
|
|
522
|
+
recipients?: RecipientInfo[] | undefined;
|
|
523
|
+
/**
|
|
524
|
+
* Opaque token to retrieve the next page of results. Absent if there are no more pages.
|
|
525
|
+
* __page_token__ should be set to this value for the next request (for the next page of results).
|
|
526
|
+
*/
|
|
527
|
+
nextPageToken?: string | undefined;
|
|
528
|
+
}
|
|
529
|
+
export interface ListSharesRequest {
|
|
530
|
+
/**
|
|
531
|
+
* Maximum number of shares to return.
|
|
532
|
+
* - when set to 0, the page length is set to a server configured value (recommended);
|
|
533
|
+
* - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
|
|
534
|
+
* - when set to a value less than 0, an invalid parameter error is returned;
|
|
535
|
+
* - If not set, all valid shares are returned (not recommended).
|
|
536
|
+
* - Note: The number of returned shares might be less than the specified max_results size, even zero.
|
|
537
|
+
* The only definitive indication that no further shares can be fetched is when the next_page_token is unset from the response.
|
|
538
|
+
*/
|
|
539
|
+
maxResults?: number | undefined;
|
|
540
|
+
/** Opaque pagination token to go to next page based on previous query. */
|
|
541
|
+
pageToken?: string | undefined;
|
|
542
|
+
}
|
|
543
|
+
export interface ListSharesRequest_Response {
|
|
544
|
+
/** An array of data share information objects. */
|
|
545
|
+
shares?: ShareInfo[] | undefined;
|
|
546
|
+
/**
|
|
547
|
+
* Opaque token to retrieve the next page of results. Absent if there are no more pages.
|
|
548
|
+
* __page_token__ should be set to this value for the next request (for the next page of results).
|
|
549
|
+
*/
|
|
550
|
+
nextPageToken?: string | undefined;
|
|
551
|
+
}
|
|
552
|
+
export interface NotebookFile {
|
|
553
|
+
/** Name of the notebook file. */
|
|
554
|
+
name?: string | undefined;
|
|
555
|
+
/** The name of the share that the notebook file belongs to. */
|
|
556
|
+
share?: string | undefined;
|
|
557
|
+
/** The id of the share that the notebook file belongs to. */
|
|
558
|
+
shareId?: string | undefined;
|
|
559
|
+
/** The id of the notebook file. */
|
|
560
|
+
id?: string | undefined;
|
|
561
|
+
/** The comment of the notebook file. */
|
|
562
|
+
comment?: string | undefined;
|
|
563
|
+
/** The tags of the notebook file. */
|
|
564
|
+
tags?: TagKeyValue[] | undefined;
|
|
565
|
+
}
|
|
566
|
+
/**
|
|
567
|
+
* Specifies the policy to use for validating OIDC claims in your federated tokens from Delta Sharing Clients.
|
|
568
|
+
* Refer to https://docs.databricks.com/en/delta-sharing/create-recipient-oidc-fed for more details.
|
|
569
|
+
*/
|
|
570
|
+
export interface OidcFederationPolicy {
|
|
571
|
+
/** The required token issuer, as specified in the 'iss' claim of federated tokens. */
|
|
572
|
+
issuer?: string | undefined;
|
|
573
|
+
/**
|
|
574
|
+
* The claim that contains the subject of the token.
|
|
575
|
+
* Depending on the identity provider and the use case (U2M or M2M), this can vary:
|
|
576
|
+
* - For Entra ID (AAD):
|
|
577
|
+
* * U2M flow (group access): Use `groups`.
|
|
578
|
+
* * U2M flow (user access): Use `oid`.
|
|
579
|
+
* * M2M flow (OAuth App access): Use `azp`.
|
|
580
|
+
* - For other IdPs, refer to the specific IdP documentation.
|
|
581
|
+
*
|
|
582
|
+
* Supported `subject_claim` values are:
|
|
583
|
+
* - `oid`: Object ID of the user.
|
|
584
|
+
* - `azp`: Client ID of the OAuth app.
|
|
585
|
+
* - `groups`: Object ID of the group.
|
|
586
|
+
* - `sub`: Subject identifier for other use cases.
|
|
587
|
+
*/
|
|
588
|
+
subjectClaim?: string | undefined;
|
|
589
|
+
/**
|
|
590
|
+
* The required token subject, as specified in the subject claim of federated tokens.
|
|
591
|
+
* The subject claim identifies the identity of the user or machine accessing the resource.
|
|
592
|
+
* Examples for Entra ID (AAD):
|
|
593
|
+
* - U2M flow (group access): If the subject claim is `groups`, this must be the Object ID of the group in Entra ID.
|
|
594
|
+
* - U2M flow (user access): If the subject claim is `oid`, this must be the Object ID of the user in Entra ID.
|
|
595
|
+
* - M2M flow (OAuth App access): If the subject claim is `azp`, this must be the client ID of the OAuth app registered in Entra ID.
|
|
596
|
+
*/
|
|
597
|
+
subject?: string | undefined;
|
|
598
|
+
/**
|
|
599
|
+
* The allowed token audiences, as specified in the 'aud' claim of federated tokens.
|
|
600
|
+
* The audience identifier is intended to represent the recipient of the token.
|
|
601
|
+
* Can be any non-empty string value. As long as the audience in the token matches at least one audience in the policy,
|
|
602
|
+
*/
|
|
603
|
+
audiences?: string[] | undefined;
|
|
604
|
+
}
|
|
605
|
+
/**
|
|
606
|
+
* PartitionSpecification defines the format of partition filtering specification for shared tables.
|
|
607
|
+
* It consists of a list of Partitions which in turn include a list of PartitionValues.
|
|
608
|
+
* - Partitions inside a single PartitionSpecification have OR logical relationship.
|
|
609
|
+
* - PartitionValues inside a single Partition have AND logical relationship.
|
|
610
|
+
* - PartitionValue.name must have distinct values inside a single Partition.
|
|
611
|
+
*/
|
|
612
|
+
export interface PartitionSpecification {
|
|
613
|
+
}
|
|
614
|
+
export interface PartitionSpecification_Partition {
|
|
615
|
+
/** An array of partition values. */
|
|
616
|
+
values?: PartitionSpecification_Partition_PartitionValue[] | undefined;
|
|
617
|
+
}
|
|
618
|
+
export interface PartitionSpecification_Partition_PartitionValue {
|
|
619
|
+
/** The name of the partition column. */
|
|
620
|
+
name?: string | undefined;
|
|
621
|
+
/**
|
|
622
|
+
* The value of the partition column. When this value is not set, it means `null` value.
|
|
623
|
+
* When this field is set, field `recipient_property_key` can not be set.
|
|
624
|
+
*/
|
|
625
|
+
value?: string | undefined;
|
|
626
|
+
/**
|
|
627
|
+
* The key of a Delta Sharing recipient's property. For example "databricks-account-id".
|
|
628
|
+
* When this field is set, field `value` can not be set.
|
|
629
|
+
*/
|
|
630
|
+
recipientPropertyKey?: string | undefined;
|
|
631
|
+
/** The operator to apply for the value. */
|
|
632
|
+
op?: PartitionSpecification_Partition_PartitionValue_PartitionValueOp | undefined;
|
|
633
|
+
}
|
|
634
|
+
export interface PermissionsChange {
|
|
635
|
+
/**
|
|
636
|
+
* The principal whose privileges we are changing.
|
|
637
|
+
* Only one of principal or principal_id should be specified, never both at the same time.
|
|
638
|
+
*/
|
|
639
|
+
principal?: string | undefined;
|
|
640
|
+
/** The set of privileges to add. */
|
|
641
|
+
add?: string[] | undefined;
|
|
642
|
+
/** The set of privileges to remove. */
|
|
643
|
+
remove?: string[] | undefined;
|
|
644
|
+
}
|
|
645
|
+
export interface PrivilegeAssignment {
|
|
646
|
+
/**
|
|
647
|
+
* The principal (user email address or group name).
|
|
648
|
+
* For deleted principals, `principal` is empty while `principal_id` is populated.
|
|
649
|
+
*/
|
|
650
|
+
principal?: string | undefined;
|
|
651
|
+
/** The privileges assigned to the principal. */
|
|
652
|
+
privileges?: string[] | undefined;
|
|
653
|
+
}
|
|
654
|
+
/** An object with __properties__ containing map of key-value properties attached to the securable. */
|
|
655
|
+
export interface PropertiesKvPairs {
|
|
656
|
+
/** A map of key-value properties attached to the securable. */
|
|
657
|
+
properties?: Record<string, string> | undefined;
|
|
658
|
+
}
|
|
659
|
+
export interface PropertiesKvPairs_PropertiesEntry {
|
|
660
|
+
key?: string | undefined;
|
|
661
|
+
value?: string | undefined;
|
|
662
|
+
}
|
|
663
|
+
export interface ProviderInfo {
|
|
664
|
+
/** The name of the Provider. */
|
|
665
|
+
name?: string | undefined;
|
|
666
|
+
authenticationType?: DeltaSharingAuthenticationType | undefined;
|
|
667
|
+
/** This field is required when the __authentication_type__ is **TOKEN**, **OAUTH_CLIENT_CREDENTIALS** or not provided. */
|
|
668
|
+
recipientProfileStr?: string | undefined;
|
|
669
|
+
/** Description about the provider. */
|
|
670
|
+
comment?: string | undefined;
|
|
671
|
+
/** Username of Provider owner. */
|
|
672
|
+
owner?: string | undefined;
|
|
673
|
+
/** The recipient profile. This field is only present when the authentication_type is `TOKEN` or `OAUTH_CLIENT_CREDENTIALS`. */
|
|
674
|
+
recipientProfile?: RecipientProfile | undefined;
|
|
675
|
+
/** Time at which this Provider was created, in epoch milliseconds. */
|
|
676
|
+
createdAt?: bigint | undefined;
|
|
677
|
+
/** Username of Provider creator. */
|
|
678
|
+
createdBy?: string | undefined;
|
|
679
|
+
/** Time at which this Provider was created, in epoch milliseconds. */
|
|
680
|
+
updatedAt?: bigint | undefined;
|
|
681
|
+
/** Username of user who last modified Provider. */
|
|
682
|
+
updatedBy?: string | undefined;
|
|
683
|
+
/** Cloud vendor of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
684
|
+
cloud?: string | undefined;
|
|
685
|
+
/** Cloud region of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
686
|
+
region?: string | undefined;
|
|
687
|
+
/** UUID of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
688
|
+
metastoreId?: string | undefined;
|
|
689
|
+
/** The global UC metastore id of the data provider. This field is only present when the __authentication_type__ is **DATABRICKS**. The identifier is of format __cloud__:__region__:__metastore-uuid__. */
|
|
690
|
+
dataProviderGlobalMetastoreId?: string | undefined;
|
|
691
|
+
}
|
|
692
|
+
export interface ProviderShare {
|
|
693
|
+
/** The name of the Provider Share. */
|
|
694
|
+
name?: string | undefined;
|
|
695
|
+
}
|
|
696
|
+
export interface RecipientInfo {
|
|
697
|
+
/** Name of Recipient. */
|
|
698
|
+
name?: string | undefined;
|
|
699
|
+
authenticationType?: DeltaSharingAuthenticationType | undefined;
|
|
700
|
+
/** The one-time sharing code provided by the data recipient. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
701
|
+
sharingCode?: string | undefined;
|
|
702
|
+
/**
|
|
703
|
+
* The global Unity Catalog metastore id provided by the data recipient.
|
|
704
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
705
|
+
* The identifier is of format __cloud__:__region__:__metastore-uuid__.
|
|
706
|
+
*/
|
|
707
|
+
dataRecipientGlobalMetastoreId?: string | undefined;
|
|
708
|
+
/** Username of the recipient owner. */
|
|
709
|
+
owner?: string | undefined;
|
|
710
|
+
/** Description about the recipient. */
|
|
711
|
+
comment?: string | undefined;
|
|
712
|
+
/** IP Access List */
|
|
713
|
+
ipAccessList?: IpAccessList | undefined;
|
|
714
|
+
/**
|
|
715
|
+
* Recipient properties as map of string key-value pairs.
|
|
716
|
+
* When provided in update request, the specified properties will override the existing
|
|
717
|
+
* properties. To add and remove properties, one would need to perform a read-modify-write.
|
|
718
|
+
*/
|
|
719
|
+
propertiesKvpairs?: PropertiesKvPairs | undefined;
|
|
720
|
+
/** Expiration timestamp of the token, in epoch milliseconds. */
|
|
721
|
+
expirationTime?: bigint | undefined;
|
|
722
|
+
/**
|
|
723
|
+
* Full activation url to retrieve the access token.
|
|
724
|
+
* It will be empty if the token is already retrieved.
|
|
725
|
+
*/
|
|
726
|
+
activationUrl?: string | undefined;
|
|
727
|
+
/** A boolean status field showing whether the Recipient's activation URL has been exercised or not. */
|
|
728
|
+
activated?: boolean | undefined;
|
|
729
|
+
/** Time at which this recipient was created, in epoch milliseconds. */
|
|
730
|
+
createdAt?: bigint | undefined;
|
|
731
|
+
/** Username of recipient creator. */
|
|
732
|
+
createdBy?: string | undefined;
|
|
733
|
+
/** This field is only present when the __authentication_type__ is **TOKEN**. */
|
|
734
|
+
tokens?: RecipientTokenInfo[] | undefined;
|
|
735
|
+
/** Time at which the recipient was updated, in epoch milliseconds. */
|
|
736
|
+
updatedAt?: bigint | undefined;
|
|
737
|
+
/** Username of recipient updater. */
|
|
738
|
+
updatedBy?: string | undefined;
|
|
739
|
+
/**
|
|
740
|
+
* Cloud vendor of the recipient's Unity Catalog Metastore.
|
|
741
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
742
|
+
*/
|
|
743
|
+
cloud?: string | undefined;
|
|
744
|
+
/**
|
|
745
|
+
* Cloud region of the recipient's Unity Catalog Metastore.
|
|
746
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
747
|
+
*/
|
|
748
|
+
region?: string | undefined;
|
|
749
|
+
/**
|
|
750
|
+
* Unique identifier of recipient's Unity Catalog Metastore.
|
|
751
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
752
|
+
*/
|
|
753
|
+
metastoreId?: string | undefined;
|
|
754
|
+
/** [Create,Update:IGN] common - id of the recipient */
|
|
755
|
+
id?: string | undefined;
|
|
756
|
+
}
|
|
757
|
+
export interface RecipientProfile {
|
|
758
|
+
/** The version number of the recipient's credentials on a share. */
|
|
759
|
+
shareCredentialsVersion?: number | undefined;
|
|
760
|
+
/** The endpoint for the share to be used by the recipient. */
|
|
761
|
+
endpoint?: string | undefined;
|
|
762
|
+
/** The token used to authorize the recipient. */
|
|
763
|
+
bearerToken?: string | undefined;
|
|
764
|
+
}
|
|
765
|
+
export interface RecipientTokenInfo {
|
|
766
|
+
/** Unique ID of the recipient token. */
|
|
767
|
+
id?: string | undefined;
|
|
768
|
+
/** Time at which this recipient token was created, in epoch milliseconds. */
|
|
769
|
+
createdAt?: bigint | undefined;
|
|
770
|
+
/** Username of recipient token creator. */
|
|
771
|
+
createdBy?: string | undefined;
|
|
772
|
+
/** Full activation URL to retrieve the access token. It will be empty if the token is already retrieved. */
|
|
773
|
+
activationUrl?: string | undefined;
|
|
774
|
+
/** Expiration timestamp of the token in epoch milliseconds. */
|
|
775
|
+
expirationTime?: bigint | undefined;
|
|
776
|
+
/** Time at which this recipient token was updated, in epoch milliseconds. */
|
|
777
|
+
updatedAt?: bigint | undefined;
|
|
778
|
+
/** Username of recipient token updater. */
|
|
779
|
+
updatedBy?: string | undefined;
|
|
780
|
+
}
|
|
781
|
+
export interface RegisteredModelAlias {
|
|
782
|
+
/** Name of the alias. */
|
|
783
|
+
aliasName?: string | undefined;
|
|
784
|
+
/** Numeric model version that alias will reference. */
|
|
785
|
+
versionNum?: bigint | undefined;
|
|
786
|
+
}
|
|
787
|
+
export interface RetrieveToken {
|
|
788
|
+
/** The one time activation url. It also accepts activation token. */
|
|
789
|
+
activationUrl?: string | undefined;
|
|
790
|
+
}
|
|
791
|
+
export interface RetrieveToken_Response {
|
|
792
|
+
/** These field names must follow the delta sharing protocol. */
|
|
793
|
+
shareCredentialsVersion?: number | undefined;
|
|
794
|
+
/** The token used to authorize the recipient. */
|
|
795
|
+
bearerToken?: string | undefined;
|
|
796
|
+
/** The endpoint for the share to be used by the recipient. */
|
|
797
|
+
endpoint?: string | undefined;
|
|
798
|
+
/** Expiration timestamp of the token in epoch milliseconds. */
|
|
799
|
+
expirationTime?: string | undefined;
|
|
800
|
+
}
|
|
801
|
+
export interface RotateRecipientTokenRequest {
|
|
802
|
+
/** The name of the Recipient. */
|
|
803
|
+
name?: string | undefined;
|
|
804
|
+
/**
|
|
805
|
+
* The expiration time of the bearer token in ISO 8601 format. This will set the expiration_time
|
|
806
|
+
* of existing token only to a smaller timestamp, it cannot extend the expiration_time. Use 0 to
|
|
807
|
+
* expire the existing token immediately, negative number will return an error.
|
|
808
|
+
*/
|
|
809
|
+
existingTokenExpireInSeconds?: bigint | undefined;
|
|
810
|
+
}
|
|
811
|
+
export interface Share {
|
|
812
|
+
name?: string | undefined;
|
|
813
|
+
id?: string | undefined;
|
|
814
|
+
}
|
|
815
|
+
export interface ShareInfo {
|
|
816
|
+
/** Name of the share. */
|
|
817
|
+
name?: string | undefined;
|
|
818
|
+
/** Username of current owner of share. */
|
|
819
|
+
owner?: string | undefined;
|
|
820
|
+
/** User-provided free-form text description. */
|
|
821
|
+
comment?: string | undefined;
|
|
822
|
+
/** Storage root URL for the share. */
|
|
823
|
+
storageRoot?: string | undefined;
|
|
824
|
+
/** A list of shared data objects within the share. */
|
|
825
|
+
objects?: SharedDataObject[] | undefined;
|
|
826
|
+
/** Time at which this share was created, in epoch milliseconds. */
|
|
827
|
+
createdAt?: bigint | undefined;
|
|
828
|
+
/** Username of share creator. */
|
|
829
|
+
createdBy?: string | undefined;
|
|
830
|
+
/** Time at which this share was updated, in epoch milliseconds. */
|
|
831
|
+
updatedAt?: bigint | undefined;
|
|
832
|
+
/** Username of share updater. */
|
|
833
|
+
updatedBy?: string | undefined;
|
|
834
|
+
/** Storage Location URL (full path) for the share. */
|
|
835
|
+
storageLocation?: string | undefined;
|
|
836
|
+
}
|
|
837
|
+
export interface ShareToPrivilegeAssignment {
|
|
838
|
+
/** The share name. */
|
|
839
|
+
shareName?: string | undefined;
|
|
840
|
+
/** The privileges assigned to the principal. */
|
|
841
|
+
privilegeAssignments?: PrivilegeAssignment[] | undefined;
|
|
842
|
+
}
|
|
843
|
+
export interface SharedDataObject {
|
|
844
|
+
/**
|
|
845
|
+
* A fully qualified name that uniquely identifies a data object.
|
|
846
|
+
* For example, a table's fully qualified name is in the format of `<catalog>.<schema>.<table>`,
|
|
847
|
+
*/
|
|
848
|
+
name?: string | undefined;
|
|
849
|
+
/** The type of the data object. */
|
|
850
|
+
dataObjectType?: string | undefined;
|
|
851
|
+
/** The time when this data object is added to the share, in epoch milliseconds. */
|
|
852
|
+
addedAt?: bigint | undefined;
|
|
853
|
+
/** Username of the sharer. */
|
|
854
|
+
addedBy?: string | undefined;
|
|
855
|
+
/** A user-provided comment when adding the data object to the share. */
|
|
856
|
+
comment?: string | undefined;
|
|
857
|
+
/**
|
|
858
|
+
* A user-provided alias name for table-like data objects within the share.
|
|
859
|
+
*
|
|
860
|
+
* Use this field for table-like objects (for example: TABLE, VIEW, MATERIALIZED_VIEW, STREAMING_TABLE, FOREIGN_TABLE).
|
|
861
|
+
* For non-table objects (for example: VOLUME, MODEL, NOTEBOOK_FILE, FUNCTION), use `string_shared_as` instead.
|
|
862
|
+
*
|
|
863
|
+
* Important: For non-table objects, this field must be omitted entirely.
|
|
864
|
+
*
|
|
865
|
+
* Format: Must be a 2-part name `<schema_name>.<table_name>` (e.g., "sales_schema.orders_table")
|
|
866
|
+
* - Both schema and table names must contain only alphanumeric characters and underscores
|
|
867
|
+
* - No periods, spaces, forward slashes, or control characters are allowed within each part
|
|
868
|
+
* - Do not include the catalog name (use 2 parts, not 3)
|
|
869
|
+
*
|
|
870
|
+
* Behavior:
|
|
871
|
+
* - If not provided, the service automatically generates the alias as `<schema>.<table>` from the object's original name
|
|
872
|
+
* - If you don't want to specify this field, omit it entirely from the request (do not pass an empty string)
|
|
873
|
+
* - The `shared_as` name must be unique within the share
|
|
874
|
+
*
|
|
875
|
+
* Examples:
|
|
876
|
+
* - Valid: "analytics_schema.customer_view"
|
|
877
|
+
* - Invalid: "catalog.analytics_schema.customer_view" (3 parts not allowed)
|
|
878
|
+
* - Invalid: "analytics-schema.customer-view" (hyphens not allowed)
|
|
879
|
+
*/
|
|
880
|
+
sharedAs?: string | undefined;
|
|
881
|
+
/** Whether to enable cdf or indicate if cdf is enabled on the shared object. */
|
|
882
|
+
cdfEnabled?: boolean | undefined;
|
|
883
|
+
/** Whether to enable or disable sharing of data history. If not specified, the default is **DISABLED**. */
|
|
884
|
+
historyDataSharingStatus?: SharedDataObject_HistoryDataSharingStatus_Enum | undefined;
|
|
885
|
+
/**
|
|
886
|
+
* The start version associated with the object.
|
|
887
|
+
* This allows data providers to control the lowest object version that is accessible by clients.
|
|
888
|
+
* If specified, clients can query snapshots or changes for versions >= start_version.
|
|
889
|
+
* If not specified, clients can only query starting from the version of the object at the time
|
|
890
|
+
* it was added to the share.
|
|
891
|
+
*
|
|
892
|
+
* NOTE: The start_version should be <= the `current` version of the object.
|
|
893
|
+
*/
|
|
894
|
+
startVersion?: bigint | undefined;
|
|
895
|
+
/** One of: **ACTIVE**, **PERMISSION_DENIED**. */
|
|
896
|
+
status?: SharedDataObject_Status_Enum | undefined;
|
|
897
|
+
/**
|
|
898
|
+
* The content of the notebook file when the data object type is NOTEBOOK_FILE.
|
|
899
|
+
* This should be base64 encoded.
|
|
900
|
+
* Required for adding a NOTEBOOK_FILE, optional for updating, ignored for other types.
|
|
901
|
+
*/
|
|
902
|
+
content?: string | undefined;
|
|
903
|
+
/**
|
|
904
|
+
* A user-provided alias name for non-table data objects within the share.
|
|
905
|
+
*
|
|
906
|
+
* Use this field for non-table objects (for example: VOLUME, MODEL, NOTEBOOK_FILE, FUNCTION).
|
|
907
|
+
* For table-like objects (for example: TABLE, VIEW, MATERIALIZED_VIEW, STREAMING_TABLE, FOREIGN_TABLE), use `shared_as` instead.
|
|
908
|
+
*
|
|
909
|
+
* Important: For table-like objects, this field must be omitted entirely.
|
|
910
|
+
*
|
|
911
|
+
* Format:
|
|
912
|
+
* - For VOLUME: Must be a 2-part name `<schema_name>.<volume_name>` (e.g., "data_schema.ml_models")
|
|
913
|
+
* - For FUNCTION: Must be a 2-part name `<schema_name>.<function_name>` (e.g., "udf_schema.calculate_tax")
|
|
914
|
+
* - For MODEL: Must be a 2-part name `<schema_name>.<model_name>` (e.g., "models.prediction_model")
|
|
915
|
+
* - For NOTEBOOK_FILE: Should be the notebook file name (e.g., "analysis_notebook.py")
|
|
916
|
+
* - All names must contain only alphanumeric characters and underscores
|
|
917
|
+
* - No periods, spaces, forward slashes, or control characters are allowed within each part
|
|
918
|
+
*
|
|
919
|
+
* Behavior:
|
|
920
|
+
* - If not provided, the service automatically generates the alias from the object's original name
|
|
921
|
+
* - If you don't want to specify this field, omit it entirely from the request (do not pass an empty string)
|
|
922
|
+
* - The `string_shared_as` name must be unique for objects of the same type within the share
|
|
923
|
+
*
|
|
924
|
+
* Examples:
|
|
925
|
+
* - Valid for VOLUME: "data_schema.training_data"
|
|
926
|
+
* - Valid for FUNCTION: "analytics.calculate_revenue"
|
|
927
|
+
* - Invalid: "catalog.data_schema.training_data" (3 parts not allowed for volumes)
|
|
928
|
+
* - Invalid: "data-schema.training-data" (hyphens not allowed)
|
|
929
|
+
*/
|
|
930
|
+
stringSharedAs?: string | undefined;
|
|
931
|
+
/** Array of partitions for the shared data. */
|
|
932
|
+
partitions?: PartitionSpecification_Partition[] | undefined;
|
|
933
|
+
}
|
|
934
|
+
export interface SharedDataObject_HistoryDataSharingStatus {
|
|
935
|
+
}
|
|
936
|
+
/** Note: This is scoped to prevent future enum name conflicts. */
|
|
937
|
+
export interface SharedDataObject_Status {
|
|
938
|
+
}
|
|
939
|
+
export interface Table {
|
|
940
|
+
/** The name of the table. */
|
|
941
|
+
name?: string | undefined;
|
|
942
|
+
/** The name of the schema that the table belongs to. */
|
|
943
|
+
schema?: string | undefined;
|
|
944
|
+
/** The name of the share that the table belongs to. */
|
|
945
|
+
share?: string | undefined;
|
|
946
|
+
/** The id of the share that the table belongs to. */
|
|
947
|
+
shareId?: string | undefined;
|
|
948
|
+
/** The id of the table. */
|
|
949
|
+
id?: string | undefined;
|
|
950
|
+
/** The comment of the table. */
|
|
951
|
+
comment?: string | undefined;
|
|
952
|
+
/** The Tags of the table. */
|
|
953
|
+
tags?: TagKeyValue[] | undefined;
|
|
954
|
+
/** The name of a materialized table. */
|
|
955
|
+
materializedTableName?: string | undefined;
|
|
956
|
+
/** The catalog and schema of the materialized table */
|
|
957
|
+
materializationNamespace?: string | undefined;
|
|
958
|
+
}
|
|
959
|
+
/** A Table in UC as a dependency. */
|
|
960
|
+
export interface TableDependency {
|
|
961
|
+
schemaName?: string | undefined;
|
|
962
|
+
tableName?: string | undefined;
|
|
963
|
+
}
|
|
964
|
+
export interface TagKeyValue {
|
|
965
|
+
/** name of the tag */
|
|
966
|
+
key?: string | undefined;
|
|
967
|
+
/** value of the tag associated with the key, could be optional */
|
|
968
|
+
value?: string | undefined;
|
|
969
|
+
}
|
|
970
|
+
export interface UpdateProviderRequest {
|
|
971
|
+
/** Name of the provider. */
|
|
972
|
+
nameArg?: string | undefined;
|
|
973
|
+
/** New name for the provider. */
|
|
974
|
+
newName?: string | undefined;
|
|
975
|
+
/** The name of the Provider. */
|
|
976
|
+
name?: string | undefined;
|
|
977
|
+
authenticationType?: DeltaSharingAuthenticationType | undefined;
|
|
978
|
+
/** This field is required when the __authentication_type__ is **TOKEN**, **OAUTH_CLIENT_CREDENTIALS** or not provided. */
|
|
979
|
+
recipientProfileStr?: string | undefined;
|
|
980
|
+
/** Description about the provider. */
|
|
981
|
+
comment?: string | undefined;
|
|
982
|
+
/** Username of Provider owner. */
|
|
983
|
+
owner?: string | undefined;
|
|
984
|
+
/** The recipient profile. This field is only present when the authentication_type is `TOKEN` or `OAUTH_CLIENT_CREDENTIALS`. */
|
|
985
|
+
recipientProfile?: RecipientProfile | undefined;
|
|
986
|
+
/** Time at which this Provider was created, in epoch milliseconds. */
|
|
987
|
+
createdAt?: bigint | undefined;
|
|
988
|
+
/** Username of Provider creator. */
|
|
989
|
+
createdBy?: string | undefined;
|
|
990
|
+
/** Time at which this Provider was created, in epoch milliseconds. */
|
|
991
|
+
updatedAt?: bigint | undefined;
|
|
992
|
+
/** Username of user who last modified Provider. */
|
|
993
|
+
updatedBy?: string | undefined;
|
|
994
|
+
/** Cloud vendor of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
995
|
+
cloud?: string | undefined;
|
|
996
|
+
/** Cloud region of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
997
|
+
region?: string | undefined;
|
|
998
|
+
/** UUID of the provider's UC metastore. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
999
|
+
metastoreId?: string | undefined;
|
|
1000
|
+
/** The global UC metastore id of the data provider. This field is only present when the __authentication_type__ is **DATABRICKS**. The identifier is of format __cloud__:__region__:__metastore-uuid__. */
|
|
1001
|
+
dataProviderGlobalMetastoreId?: string | undefined;
|
|
1002
|
+
}
|
|
1003
|
+
export interface UpdateRecipientRequest {
|
|
1004
|
+
/** Name of the recipient. */
|
|
1005
|
+
nameArg?: string | undefined;
|
|
1006
|
+
/**
|
|
1007
|
+
* New name for the recipient.
|
|
1008
|
+
* .
|
|
1009
|
+
*/
|
|
1010
|
+
newName?: string | undefined;
|
|
1011
|
+
/** Name of Recipient. */
|
|
1012
|
+
name?: string | undefined;
|
|
1013
|
+
authenticationType?: DeltaSharingAuthenticationType | undefined;
|
|
1014
|
+
/** The one-time sharing code provided by the data recipient. This field is only present when the __authentication_type__ is **DATABRICKS**. */
|
|
1015
|
+
sharingCode?: string | undefined;
|
|
1016
|
+
/**
|
|
1017
|
+
* The global Unity Catalog metastore id provided by the data recipient.
|
|
1018
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
1019
|
+
* The identifier is of format __cloud__:__region__:__metastore-uuid__.
|
|
1020
|
+
*/
|
|
1021
|
+
dataRecipientGlobalMetastoreId?: string | undefined;
|
|
1022
|
+
/** Username of the recipient owner. */
|
|
1023
|
+
owner?: string | undefined;
|
|
1024
|
+
/** Description about the recipient. */
|
|
1025
|
+
comment?: string | undefined;
|
|
1026
|
+
/** IP Access List */
|
|
1027
|
+
ipAccessList?: IpAccessList | undefined;
|
|
1028
|
+
/**
|
|
1029
|
+
* Recipient properties as map of string key-value pairs.
|
|
1030
|
+
* When provided in update request, the specified properties will override the existing
|
|
1031
|
+
* properties. To add and remove properties, one would need to perform a read-modify-write.
|
|
1032
|
+
*/
|
|
1033
|
+
propertiesKvpairs?: PropertiesKvPairs | undefined;
|
|
1034
|
+
/** Expiration timestamp of the token, in epoch milliseconds. */
|
|
1035
|
+
expirationTime?: bigint | undefined;
|
|
1036
|
+
/**
|
|
1037
|
+
* Full activation url to retrieve the access token.
|
|
1038
|
+
* It will be empty if the token is already retrieved.
|
|
1039
|
+
*/
|
|
1040
|
+
activationUrl?: string | undefined;
|
|
1041
|
+
/** A boolean status field showing whether the Recipient's activation URL has been exercised or not. */
|
|
1042
|
+
activated?: boolean | undefined;
|
|
1043
|
+
/** Time at which this recipient was created, in epoch milliseconds. */
|
|
1044
|
+
createdAt?: bigint | undefined;
|
|
1045
|
+
/** Username of recipient creator. */
|
|
1046
|
+
createdBy?: string | undefined;
|
|
1047
|
+
/** This field is only present when the __authentication_type__ is **TOKEN**. */
|
|
1048
|
+
tokens?: RecipientTokenInfo[] | undefined;
|
|
1049
|
+
/** Time at which the recipient was updated, in epoch milliseconds. */
|
|
1050
|
+
updatedAt?: bigint | undefined;
|
|
1051
|
+
/** Username of recipient updater. */
|
|
1052
|
+
updatedBy?: string | undefined;
|
|
1053
|
+
/**
|
|
1054
|
+
* Cloud vendor of the recipient's Unity Catalog Metastore.
|
|
1055
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
1056
|
+
*/
|
|
1057
|
+
cloud?: string | undefined;
|
|
1058
|
+
/**
|
|
1059
|
+
* Cloud region of the recipient's Unity Catalog Metastore.
|
|
1060
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
1061
|
+
*/
|
|
1062
|
+
region?: string | undefined;
|
|
1063
|
+
/**
|
|
1064
|
+
* Unique identifier of recipient's Unity Catalog Metastore.
|
|
1065
|
+
* This field is only present when the __authentication_type__ is **DATABRICKS**.
|
|
1066
|
+
*/
|
|
1067
|
+
metastoreId?: string | undefined;
|
|
1068
|
+
/** [Create,Update:IGN] common - id of the recipient */
|
|
1069
|
+
id?: string | undefined;
|
|
1070
|
+
}
|
|
1071
|
+
export interface UpdateSharePermissionsRequest {
|
|
1072
|
+
/** The name of the share. */
|
|
1073
|
+
name?: string | undefined;
|
|
1074
|
+
/** Optional. Whether to return the latest permissions list of the share in the response. */
|
|
1075
|
+
omitPermissionsList?: boolean | undefined;
|
|
1076
|
+
/** Array of permissions change objects. */
|
|
1077
|
+
changes?: PermissionsChange[] | undefined;
|
|
1078
|
+
}
|
|
1079
|
+
export interface UpdateSharePermissionsRequest_Response {
|
|
1080
|
+
/** The privileges assigned to each principal */
|
|
1081
|
+
privilegeAssignments?: PrivilegeAssignment[] | undefined;
|
|
1082
|
+
}
|
|
1083
|
+
export interface UpdateShareRequest {
|
|
1084
|
+
/** The name of the share. */
|
|
1085
|
+
nameArg?: string | undefined;
|
|
1086
|
+
/** New name for the share. */
|
|
1087
|
+
newName?: string | undefined;
|
|
1088
|
+
/** Array of shared data object updates. */
|
|
1089
|
+
updates?: UpdateShareRequest_SharedDataObjectUpdate[] | undefined;
|
|
1090
|
+
/** Name of the share. */
|
|
1091
|
+
name?: string | undefined;
|
|
1092
|
+
/** Username of current owner of share. */
|
|
1093
|
+
owner?: string | undefined;
|
|
1094
|
+
/** User-provided free-form text description. */
|
|
1095
|
+
comment?: string | undefined;
|
|
1096
|
+
/** Storage root URL for the share. */
|
|
1097
|
+
storageRoot?: string | undefined;
|
|
1098
|
+
/** A list of shared data objects within the share. */
|
|
1099
|
+
objects?: SharedDataObject[] | undefined;
|
|
1100
|
+
/** Time at which this share was created, in epoch milliseconds. */
|
|
1101
|
+
createdAt?: bigint | undefined;
|
|
1102
|
+
/** Username of share creator. */
|
|
1103
|
+
createdBy?: string | undefined;
|
|
1104
|
+
/** Time at which this share was updated, in epoch milliseconds. */
|
|
1105
|
+
updatedAt?: bigint | undefined;
|
|
1106
|
+
/** Username of share updater. */
|
|
1107
|
+
updatedBy?: string | undefined;
|
|
1108
|
+
/** Storage Location URL (full path) for the share. */
|
|
1109
|
+
storageLocation?: string | undefined;
|
|
1110
|
+
}
|
|
1111
|
+
export interface UpdateShareRequest_SharedDataObjectUpdate {
|
|
1112
|
+
/** One of: **ADD**, **REMOVE**, **UPDATE**. */
|
|
1113
|
+
action?: UpdateShareRequest_SharedDataObjectUpdate_Action | undefined;
|
|
1114
|
+
/** The data object that is being added, removed, or updated. The maximum number update data objects allowed is a 100. */
|
|
1115
|
+
dataObject?: SharedDataObject | undefined;
|
|
1116
|
+
}
|
|
1117
|
+
export interface Volume {
|
|
1118
|
+
/** The name of the volume. */
|
|
1119
|
+
name?: string | undefined;
|
|
1120
|
+
/**
|
|
1121
|
+
* This id maps to the shared_volume_id in database
|
|
1122
|
+
* Recipient needs shared_volume_id for recon
|
|
1123
|
+
* to check if this volume is already in recipient's DB or not.
|
|
1124
|
+
*/
|
|
1125
|
+
id?: string | undefined;
|
|
1126
|
+
/** The name of the schema that the volume belongs to. */
|
|
1127
|
+
schema?: string | undefined;
|
|
1128
|
+
/** The name of the share that the volume belongs to. */
|
|
1129
|
+
share?: string | undefined;
|
|
1130
|
+
/** / The id of the share that the volume belongs to. */
|
|
1131
|
+
shareId?: string | undefined;
|
|
1132
|
+
/** The comment of the volume. */
|
|
1133
|
+
comment?: string | undefined;
|
|
1134
|
+
/** The tags of the volume. */
|
|
1135
|
+
tags?: TagKeyValue[] | undefined;
|
|
1136
|
+
}
|
|
1137
|
+
export declare const unmarshalDeleteProviderRequest_ResponseSchema: z.ZodType<DeleteProviderRequest_Response>;
|
|
1138
|
+
export declare const unmarshalDeleteRecipientRequest_ResponseSchema: z.ZodType<DeleteRecipientRequest_Response>;
|
|
1139
|
+
export declare const unmarshalDeleteShareRequest_ResponseSchema: z.ZodType<DeleteShareRequest_Response>;
|
|
1140
|
+
export declare const unmarshalDependencySchema: z.ZodType<Dependency>;
|
|
1141
|
+
export declare const unmarshalDependencyListSchema: z.ZodType<DependencyList>;
|
|
1142
|
+
export declare const unmarshalFederationPolicySchema: z.ZodType<FederationPolicy>;
|
|
1143
|
+
export declare const unmarshalFunctionSchema: z.ZodType<Function>;
|
|
1144
|
+
export declare const unmarshalFunctionDependencySchema: z.ZodType<FunctionDependency>;
|
|
1145
|
+
export declare const unmarshalFunctionParameterInfoSchema: z.ZodType<FunctionParameterInfo>;
|
|
1146
|
+
export declare const unmarshalFunctionParameterInfosSchema: z.ZodType<FunctionParameterInfos>;
|
|
1147
|
+
export declare const unmarshalGetActivationUrlInfoRequest_ResponseSchema: z.ZodType<GetActivationUrlInfoRequest_Response>;
|
|
1148
|
+
export declare const unmarshalGetRecipientSharePermissionsRequest_ResponseSchema: z.ZodType<GetRecipientSharePermissionsRequest_Response>;
|
|
1149
|
+
export declare const unmarshalGetSharePermissionsRequest_ResponseSchema: z.ZodType<GetSharePermissionsRequest_Response>;
|
|
1150
|
+
export declare const unmarshalIpAccessListSchema: z.ZodType<IpAccessList>;
|
|
1151
|
+
export declare const unmarshalListFederationPoliciesResponseSchema: z.ZodType<ListFederationPoliciesResponse>;
|
|
1152
|
+
export declare const unmarshalListProviderShareAssetsResponseSchema: z.ZodType<ListProviderShareAssetsResponse>;
|
|
1153
|
+
export declare const unmarshalListProviderSharesRequest_ResponseSchema: z.ZodType<ListProviderSharesRequest_Response>;
|
|
1154
|
+
export declare const unmarshalListProvidersRequest_ResponseSchema: z.ZodType<ListProvidersRequest_Response>;
|
|
1155
|
+
export declare const unmarshalListRecipientsRequest_ResponseSchema: z.ZodType<ListRecipientsRequest_Response>;
|
|
1156
|
+
export declare const unmarshalListSharesRequest_ResponseSchema: z.ZodType<ListSharesRequest_Response>;
|
|
1157
|
+
export declare const unmarshalNotebookFileSchema: z.ZodType<NotebookFile>;
|
|
1158
|
+
export declare const unmarshalOidcFederationPolicySchema: z.ZodType<OidcFederationPolicy>;
|
|
1159
|
+
export declare const unmarshalPartitionSpecification_PartitionSchema: z.ZodType<PartitionSpecification_Partition>;
|
|
1160
|
+
export declare const unmarshalPartitionSpecification_Partition_PartitionValueSchema: z.ZodType<PartitionSpecification_Partition_PartitionValue>;
|
|
1161
|
+
export declare const unmarshalPrivilegeAssignmentSchema: z.ZodType<PrivilegeAssignment>;
|
|
1162
|
+
export declare const unmarshalPropertiesKvPairsSchema: z.ZodType<PropertiesKvPairs>;
|
|
1163
|
+
export declare const unmarshalProviderInfoSchema: z.ZodType<ProviderInfo>;
|
|
1164
|
+
export declare const unmarshalProviderShareSchema: z.ZodType<ProviderShare>;
|
|
1165
|
+
export declare const unmarshalRecipientInfoSchema: z.ZodType<RecipientInfo>;
|
|
1166
|
+
export declare const unmarshalRecipientProfileSchema: z.ZodType<RecipientProfile>;
|
|
1167
|
+
export declare const unmarshalRecipientTokenInfoSchema: z.ZodType<RecipientTokenInfo>;
|
|
1168
|
+
export declare const unmarshalRegisteredModelAliasSchema: z.ZodType<RegisteredModelAlias>;
|
|
1169
|
+
export declare const unmarshalRetrieveToken_ResponseSchema: z.ZodType<RetrieveToken_Response>;
|
|
1170
|
+
export declare const unmarshalShareSchema: z.ZodType<Share>;
|
|
1171
|
+
export declare const unmarshalShareInfoSchema: z.ZodType<ShareInfo>;
|
|
1172
|
+
export declare const unmarshalShareToPrivilegeAssignmentSchema: z.ZodType<ShareToPrivilegeAssignment>;
|
|
1173
|
+
export declare const unmarshalSharedDataObjectSchema: z.ZodType<SharedDataObject>;
|
|
1174
|
+
export declare const unmarshalTableSchema: z.ZodType<Table>;
|
|
1175
|
+
export declare const unmarshalTableDependencySchema: z.ZodType<TableDependency>;
|
|
1176
|
+
export declare const unmarshalTagKeyValueSchema: z.ZodType<TagKeyValue>;
|
|
1177
|
+
export declare const unmarshalUpdateSharePermissionsRequest_ResponseSchema: z.ZodType<UpdateSharePermissionsRequest_Response>;
|
|
1178
|
+
export declare const unmarshalVolumeSchema: z.ZodType<Volume>;
|
|
1179
|
+
export declare const marshalCreateProviderRequestSchema: z.ZodType;
|
|
1180
|
+
export declare const marshalCreateRecipientRequestSchema: z.ZodType;
|
|
1181
|
+
export declare const marshalCreateShareRequestSchema: z.ZodType;
|
|
1182
|
+
export declare const marshalFederationPolicySchema: z.ZodType;
|
|
1183
|
+
export declare const marshalIpAccessListSchema: z.ZodType;
|
|
1184
|
+
export declare const marshalOidcFederationPolicySchema: z.ZodType;
|
|
1185
|
+
export declare const marshalPartitionSpecification_PartitionSchema: z.ZodType;
|
|
1186
|
+
export declare const marshalPartitionSpecification_Partition_PartitionValueSchema: z.ZodType;
|
|
1187
|
+
export declare const marshalPermissionsChangeSchema: z.ZodType;
|
|
1188
|
+
export declare const marshalPropertiesKvPairsSchema: z.ZodType;
|
|
1189
|
+
export declare const marshalRecipientProfileSchema: z.ZodType;
|
|
1190
|
+
export declare const marshalRecipientTokenInfoSchema: z.ZodType;
|
|
1191
|
+
export declare const marshalRotateRecipientTokenRequestSchema: z.ZodType;
|
|
1192
|
+
export declare const marshalSharedDataObjectSchema: z.ZodType;
|
|
1193
|
+
export declare const marshalUpdateProviderRequestSchema: z.ZodType;
|
|
1194
|
+
export declare const marshalUpdateRecipientRequestSchema: z.ZodType;
|
|
1195
|
+
export declare const marshalUpdateSharePermissionsRequestSchema: z.ZodType;
|
|
1196
|
+
export declare const marshalUpdateShareRequestSchema: z.ZodType;
|
|
1197
|
+
export declare const marshalUpdateShareRequest_SharedDataObjectUpdateSchema: z.ZodType;
|
|
1198
|
+
//# sourceMappingURL=model.d.ts.map
|