@databricks/sdk-accessmanagement 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,368 @@
1
+ import { z } from 'zod';
2
+ /** Permission level */
3
+ export declare enum PermissionLevel {
4
+ CAN_MANAGE = "CAN_MANAGE",
5
+ CAN_RESTART = "CAN_RESTART",
6
+ CAN_ATTACH_TO = "CAN_ATTACH_TO",
7
+ IS_OWNER = "IS_OWNER",
8
+ CAN_MANAGE_RUN = "CAN_MANAGE_RUN",
9
+ CAN_VIEW = "CAN_VIEW",
10
+ CAN_READ = "CAN_READ",
11
+ CAN_RUN = "CAN_RUN",
12
+ CAN_EDIT = "CAN_EDIT",
13
+ CAN_USE = "CAN_USE",
14
+ CAN_MANAGE_STAGING_VERSIONS = "CAN_MANAGE_STAGING_VERSIONS",
15
+ CAN_MANAGE_PRODUCTION_VERSIONS = "CAN_MANAGE_PRODUCTION_VERSIONS",
16
+ CAN_EDIT_METADATA = "CAN_EDIT_METADATA",
17
+ CAN_VIEW_METADATA = "CAN_VIEW_METADATA",
18
+ CAN_BIND = "CAN_BIND",
19
+ CAN_QUERY = "CAN_QUERY",
20
+ CAN_MONITOR = "CAN_MONITOR",
21
+ CAN_CREATE = "CAN_CREATE",
22
+ CAN_MONITOR_ONLY = "CAN_MONITOR_ONLY",
23
+ CAN_CREATE_APP = "CAN_CREATE_APP"
24
+ }
25
+ /**
26
+ * Defines the identity to be used for authZ of the request on the server side. See one pager for
27
+ * for more information: http://go/acl/service-identity
28
+ */
29
+ export declare enum RequestAuthzIdentity {
30
+ REQUEST_AUTHZ_IDENTITY_UNSPECIFIED = "REQUEST_AUTHZ_IDENTITY_UNSPECIFIED",
31
+ REQUEST_AUTHZ_IDENTITY_USER_CONTEXT = "REQUEST_AUTHZ_IDENTITY_USER_CONTEXT",
32
+ REQUEST_AUTHZ_IDENTITY_SERVICE_IDENTITY = "REQUEST_AUTHZ_IDENTITY_SERVICE_IDENTITY"
33
+ }
34
+ export declare enum WorkspacePermission {
35
+ UNKNOWN = "UNKNOWN",
36
+ /** The most basic workspace permission */
37
+ USER = "USER",
38
+ ADMIN = "ADMIN"
39
+ }
40
+ export interface AccessControlRequest {
41
+ principalName?: {
42
+ $case: 'userName';
43
+ /** name of the user */
44
+ userName: string;
45
+ } | {
46
+ $case: 'groupName';
47
+ /** name of the group */
48
+ groupName: string;
49
+ } | {
50
+ $case: 'servicePrincipalName';
51
+ /** application ID of a service principal */
52
+ servicePrincipalName: string;
53
+ } | undefined;
54
+ permissionLevel?: PermissionLevel | undefined;
55
+ }
56
+ export interface AccessControlResponse {
57
+ principalName?: {
58
+ $case: 'userName';
59
+ /** name of the user */
60
+ userName: string;
61
+ } | {
62
+ $case: 'groupName';
63
+ /** name of the group */
64
+ groupName: string;
65
+ } | {
66
+ $case: 'servicePrincipalName';
67
+ /** Name of the service principal. */
68
+ servicePrincipalName: string;
69
+ } | undefined;
70
+ /** Display name of the user or service principal. */
71
+ displayName?: string | undefined;
72
+ /** All permissions. */
73
+ allPermissions?: Permission[] | undefined;
74
+ }
75
+ /**
76
+ * represents an identity trying to access a resource - user or a service principal
77
+ * group can be a principal of a permission set assignment but an actor is always a user or a service principal
78
+ */
79
+ export interface Actor {
80
+ kind?: {
81
+ $case: 'actorId';
82
+ actorId: bigint;
83
+ } | undefined;
84
+ }
85
+ export interface CheckPolicyRequest {
86
+ actor?: Actor | undefined;
87
+ permission?: string | undefined;
88
+ /**
89
+ * Ex: (servicePrincipal/use, accounts/<account-id>/servicePrincipals/<sp-id>)
90
+ * Ex: (servicePrincipal.ruleSet/update, accounts/<account-id>/servicePrincipals/<sp-id>/ruleSets/default)
91
+ */
92
+ resource?: string | undefined;
93
+ consistencyToken?: ConsistencyToken | undefined;
94
+ authzIdentity?: RequestAuthzIdentity | undefined;
95
+ resourceInfo?: ResourceInfo | undefined;
96
+ }
97
+ export interface CheckPolicyResponse {
98
+ isPermitted?: boolean | undefined;
99
+ consistencyToken?: ConsistencyToken | undefined;
100
+ }
101
+ export interface ConsistencyToken {
102
+ value?: string | undefined;
103
+ }
104
+ /** Removes all permission assignments for a workspace given a principal. */
105
+ export interface DeleteWorkspacePermissionAssignmentRequest {
106
+ /** The account ID. */
107
+ accountId?: string | undefined;
108
+ /** The workspace ID for the account. */
109
+ workspaceId?: bigint | undefined;
110
+ /** The ID of the user, service principal, or group. */
111
+ principalId?: bigint | undefined;
112
+ }
113
+ export interface DeleteWorkspacePermissionAssignmentRequest_Response {
114
+ }
115
+ export interface GetObjectPermissionsRequest {
116
+ /** The type of the request object. Can be one of the following: alerts, alertsv2, authorization, clusters, cluster-policies, dashboards, database-projects, dbsql-dashboards, directories, experiments, files, genie, instance-pools, jobs, knowledge-assistants, notebooks, pipelines, queries, registered-models, repos, serving-endpoints, supervisor-agents, vector-search-endpoints, or warehouses. */
117
+ requestObjectType?: string | undefined;
118
+ /** The id of the request object. */
119
+ requestObjectId?: string | undefined;
120
+ }
121
+ export interface GetRuleSetRequest {
122
+ /** <Databricks> account ID. */
123
+ accountId?: string | undefined;
124
+ /**
125
+ * The ruleset name associated with the request.
126
+ *
127
+ * Examples | Summary
128
+ * :--- | :---
129
+ * `name=accounts/<ACCOUNT_ID>/ruleSets/default` | A name for a rule set on the account.
130
+ * `name=accounts/<ACCOUNT_ID>/groups/<GROUP_ID>/ruleSets/default` | A name for a rule set on the group.
131
+ * `name=accounts/<ACCOUNT_ID>/servicePrincipals/<SERVICE_PRINCIPAL_APPLICATION_ID>/ruleSets/default` | A name for a rule set on the service principal.
132
+ * `name=accounts/<ACCOUNT_ID>/tagPolicies/<TAG_POLICY_ID>/ruleSets/default` | A name for a rule set on the tag policy.
133
+ */
134
+ name?: string | undefined;
135
+ /**
136
+ * Etag used for versioning. The response is at least as fresh as the eTag provided. Etag is used for optimistic
137
+ * concurrency control as a way to help prevent simultaneous updates of a rule set from overwriting each other. It is
138
+ * strongly suggested that systems make use of the etag in the read -> modify -> write pattern to perform rule set
139
+ * updates in order to avoid race conditions that is get an etag from a GET rule set request, and pass it with the
140
+ * PUT update request to identify the rule set version you are updating.
141
+ *
142
+ * Examples | Summary
143
+ * :--- | :---
144
+ * `etag=` | An empty etag can only be used in GET to indicate no freshness requirements.
145
+ * `etag=RENUAAABhSweA4NvVmmUYdiU717H3Tgy0UJdor3gE4a+mq/oj9NjAf8ZsQ==` | An etag encoded a specific version of the rule set to get or to be updated.
146
+ */
147
+ etag?: string | undefined;
148
+ }
149
+ export interface GrantRule {
150
+ /**
151
+ * Principals this grant rule applies to.
152
+ * A principal can be a user (for end users), a service principal (for applications and
153
+ * compute workloads), or an account group. Each principal has its own identifier format:
154
+ * * users/<USERNAME>
155
+ * * groups/<GROUP_NAME>
156
+ * * servicePrincipals/<SERVICE_PRINCIPAL_APPLICATION_ID>
157
+ */
158
+ principals?: string[] | undefined;
159
+ /** Role that is assigned to the list of principals. */
160
+ role?: string | undefined;
161
+ }
162
+ export interface ListAssignableRolesForResourceRequest {
163
+ /** <Databricks> account ID. */
164
+ accountId?: string | undefined;
165
+ /**
166
+ * The resource name for which assignable roles will be listed.
167
+ *
168
+ * Examples | Summary
169
+ * :--- | :---
170
+ * `resource=accounts/<ACCOUNT_ID>` | A resource name for the account.
171
+ * `resource=accounts/<ACCOUNT_ID>/groups/<GROUP_ID>` | A resource name for the group.
172
+ * `resource=accounts/<ACCOUNT_ID>/servicePrincipals/<SP_ID>` | A resource name for the service principal.
173
+ * `resource=accounts/<ACCOUNT_ID>/tagPolicies/<TAG_POLICY_ID>` | A resource name for the tag policy.
174
+ */
175
+ resource?: string | undefined;
176
+ }
177
+ export interface ListAssignableRolesForResourceResponse {
178
+ roles?: Role[] | undefined;
179
+ }
180
+ export interface ListPermissionLevelsRequest {
181
+ /** The type of the request object. Can be one of the following: alerts, alertsv2, authorization, clusters, cluster-policies, dashboards, database-projects, dbsql-dashboards, directories, experiments, files, genie, instance-pools, jobs, knowledge-assistants, notebooks, pipelines, queries, registered-models, repos, serving-endpoints, supervisor-agents, vector-search-endpoints, or warehouses. */
182
+ requestObjectType?: string | undefined;
183
+ requestObjectId?: string | undefined;
184
+ }
185
+ export interface ListPermissionLevelsRequest_Response {
186
+ /** Specific permission levels */
187
+ permissionLevels?: PermissionsDescription[] | undefined;
188
+ }
189
+ /** Gets all the permission assignments for a workspace, given an account and a workspace. */
190
+ export interface ListWorkspacePermissionAssignmentsRequest {
191
+ /** The account ID. */
192
+ accountId?: string | undefined;
193
+ /** The workspace ID for the account. */
194
+ workspaceId?: bigint | undefined;
195
+ }
196
+ export interface ListWorkspacePermissionAssignmentsRequest_Response {
197
+ /** Array of permissions assignments defined for a workspace. */
198
+ permissionAssignments?: WorkspacePermissionAssignmentOutput[] | undefined;
199
+ }
200
+ /** List permissions for a workspace, given an account and a workspace. */
201
+ export interface ListWorkspacePermissionsRequest {
202
+ /** The account ID. */
203
+ accountId?: string | undefined;
204
+ /** The workspace ID. */
205
+ workspaceId?: bigint | undefined;
206
+ }
207
+ export interface ListWorkspacePermissionsRequest_Response {
208
+ /** Array of permissions defined for a workspace. */
209
+ permissions?: PermissionOutput[] | undefined;
210
+ }
211
+ export interface Permission {
212
+ permissionLevel?: PermissionLevel | undefined;
213
+ inherited?: boolean | undefined;
214
+ inheritedFromObject?: string[] | undefined;
215
+ }
216
+ export interface PermissionOutput {
217
+ permissionLevel?: WorkspacePermission | undefined;
218
+ /** The results of a permissions query. */
219
+ description?: string | undefined;
220
+ }
221
+ export interface PermissionsDescription {
222
+ permissionLevel?: PermissionLevel | undefined;
223
+ description?: string | undefined;
224
+ }
225
+ export interface PermissionsResponse {
226
+ objectId?: string | undefined;
227
+ objectType?: string | undefined;
228
+ accessControlList?: AccessControlResponse[] | undefined;
229
+ }
230
+ /** Information about the principal assigned to the workspace. */
231
+ export interface PrincipalOutput {
232
+ principalName?: {
233
+ $case: 'userName';
234
+ /** The username of the user. Present only if the principal is a user. */
235
+ userName: string;
236
+ } | {
237
+ $case: 'groupName';
238
+ /** The group name of the group. Present only if the principal is a group. */
239
+ groupName: string;
240
+ } | {
241
+ $case: 'servicePrincipalName';
242
+ /** The name of the service principal. Present only if the principal is a service principal. */
243
+ servicePrincipalName: string;
244
+ } | undefined;
245
+ /** The unique, opaque id of the principal. */
246
+ principalId?: bigint | undefined;
247
+ /** The display name of the principal. */
248
+ displayName?: string | undefined;
249
+ }
250
+ export interface ResourceInfo {
251
+ /** Id of the current resource. */
252
+ id?: string | undefined;
253
+ /** Parent resource info for the current resource. The parent may have another parent. */
254
+ parentResourceInfo?: ResourceInfo | undefined;
255
+ /** The legacy acl path of the current resource. */
256
+ legacyAclPath?: string | undefined;
257
+ }
258
+ export interface Role {
259
+ /** Role to assign to a principal or a list of principals on a resource. */
260
+ name?: string | undefined;
261
+ }
262
+ export interface RuleSet {
263
+ /** Name of the rule set. */
264
+ name?: string | undefined;
265
+ /**
266
+ * Identifies the version of the rule set returned.
267
+ * Etag used for versioning. The response is at least as fresh as the eTag provided.
268
+ * Etag is used for optimistic concurrency control as a way to help prevent simultaneous
269
+ * updates of a rule set from overwriting each other. It is strongly suggested that systems
270
+ * make use of the etag in the read -> modify -> write pattern to perform rule set updates in
271
+ * order to avoid race conditions that is get an etag from a GET rule set request, and pass it
272
+ * with the PUT update request to identify the rule set version you are updating.
273
+ */
274
+ etag?: string | undefined;
275
+ grantRules?: GrantRule[] | undefined;
276
+ }
277
+ export interface RuleSetUpdateRequest {
278
+ /** Name of the rule set. */
279
+ name?: string | undefined;
280
+ /**
281
+ * Identifies the version of the rule set returned.
282
+ * Etag used for versioning. The response is at least as fresh as the eTag provided.
283
+ * Etag is used for optimistic concurrency control as a way to help prevent simultaneous
284
+ * updates of a rule set from overwriting each other. It is strongly suggested that systems
285
+ * make use of the etag in the read -> modify -> write pattern to perform rule set updates in
286
+ * order to avoid race conditions that is get an etag from a GET rule set request, and pass it
287
+ * with the PUT update request to identify the rule set version you are updating.
288
+ */
289
+ etag?: string | undefined;
290
+ grantRules?: GrantRule[] | undefined;
291
+ }
292
+ export interface SetObjectPermissionsRequest {
293
+ /** The type of the request object. Can be one of the following: alerts, alertsv2, authorization, clusters, cluster-policies, dashboards, database-projects, dbsql-dashboards, directories, experiments, files, genie, instance-pools, jobs, knowledge-assistants, notebooks, pipelines, queries, registered-models, repos, serving-endpoints, supervisor-agents, vector-search-endpoints, or warehouses. */
294
+ requestObjectType?: string | undefined;
295
+ /** The id of the request object. */
296
+ requestObjectId?: string | undefined;
297
+ accessControlList?: AccessControlRequest[] | undefined;
298
+ }
299
+ export interface UpdateObjectPermissionsRequest {
300
+ /** The type of the request object. Can be one of the following: alerts, alertsv2, authorization, clusters, cluster-policies, dashboards, database-projects, dbsql-dashboards, directories, experiments, files, genie, instance-pools, jobs, knowledge-assistants, notebooks, pipelines, queries, registered-models, repos, serving-endpoints, supervisor-agents, vector-search-endpoints, or warehouses. */
301
+ requestObjectType?: string | undefined;
302
+ /** The id of the request object. */
303
+ requestObjectId?: string | undefined;
304
+ accessControlList?: AccessControlRequest[] | undefined;
305
+ }
306
+ export interface UpdateRuleSetRequest {
307
+ /** <Databricks> account ID. */
308
+ accountId?: string | undefined;
309
+ /** Name of the rule set. */
310
+ name?: string | undefined;
311
+ ruleSet?: RuleSetUpdateRequest | undefined;
312
+ }
313
+ export interface UpdateWorkspacePermissionAssignmentRequest {
314
+ /** The account ID. */
315
+ accountId?: string | undefined;
316
+ /** The workspace ID. */
317
+ workspaceId?: bigint | undefined;
318
+ /** The ID of the user, service principal, or group. */
319
+ principalId?: bigint | undefined;
320
+ /**
321
+ * Array of permissions assignments to update on the workspace.
322
+ * Valid values are "USER" and "ADMIN" (case-sensitive).
323
+ * If both "USER" and "ADMIN" are provided, "ADMIN" takes precedence.
324
+ * Other values will be ignored.
325
+ * Note that excluding this field, or providing unsupported values, will have the same effect as providing an empty list, which will result in the deletion of all permissions for the principal.
326
+ */
327
+ permissions?: WorkspacePermission[] | undefined;
328
+ }
329
+ /**
330
+ * The output format for existing workspace PermissionAssignment records, which contains some info for
331
+ * user consumption.
332
+ */
333
+ export interface WorkspacePermissionAssignmentOutput {
334
+ /** Information about the principal assigned to the workspace. */
335
+ principal?: PrincipalOutput | undefined;
336
+ /** The permissions level of the principal. */
337
+ permissions?: WorkspacePermission[] | undefined;
338
+ /** Error response associated with a workspace permission assignment, if any. */
339
+ error?: string | undefined;
340
+ }
341
+ export declare const unmarshalAccessControlResponseSchema: z.ZodType<AccessControlResponse>;
342
+ export declare const unmarshalCheckPolicyResponseSchema: z.ZodType<CheckPolicyResponse>;
343
+ export declare const unmarshalConsistencyTokenSchema: z.ZodType<ConsistencyToken>;
344
+ export declare const unmarshalDeleteWorkspacePermissionAssignmentRequest_ResponseSchema: z.ZodType<DeleteWorkspacePermissionAssignmentRequest_Response>;
345
+ export declare const unmarshalGrantRuleSchema: z.ZodType<GrantRule>;
346
+ export declare const unmarshalListAssignableRolesForResourceResponseSchema: z.ZodType<ListAssignableRolesForResourceResponse>;
347
+ export declare const unmarshalListPermissionLevelsRequest_ResponseSchema: z.ZodType<ListPermissionLevelsRequest_Response>;
348
+ export declare const unmarshalListWorkspacePermissionAssignmentsRequest_ResponseSchema: z.ZodType<ListWorkspacePermissionAssignmentsRequest_Response>;
349
+ export declare const unmarshalListWorkspacePermissionsRequest_ResponseSchema: z.ZodType<ListWorkspacePermissionsRequest_Response>;
350
+ export declare const unmarshalPermissionSchema: z.ZodType<Permission>;
351
+ export declare const unmarshalPermissionOutputSchema: z.ZodType<PermissionOutput>;
352
+ export declare const unmarshalPermissionsDescriptionSchema: z.ZodType<PermissionsDescription>;
353
+ export declare const unmarshalPermissionsResponseSchema: z.ZodType<PermissionsResponse>;
354
+ export declare const unmarshalPrincipalOutputSchema: z.ZodType<PrincipalOutput>;
355
+ export declare const unmarshalRoleSchema: z.ZodType<Role>;
356
+ export declare const unmarshalRuleSetSchema: z.ZodType<RuleSet>;
357
+ export declare const unmarshalWorkspacePermissionAssignmentOutputSchema: z.ZodType<WorkspacePermissionAssignmentOutput>;
358
+ export declare const marshalAccessControlRequestSchema: z.ZodType;
359
+ export declare const marshalActorSchema: z.ZodType;
360
+ export declare const marshalConsistencyTokenSchema: z.ZodType;
361
+ export declare const marshalGrantRuleSchema: z.ZodType;
362
+ export declare const marshalResourceInfoSchema: z.ZodType;
363
+ export declare const marshalRuleSetUpdateRequestSchema: z.ZodType;
364
+ export declare const marshalSetObjectPermissionsRequestSchema: z.ZodType;
365
+ export declare const marshalUpdateObjectPermissionsRequestSchema: z.ZodType;
366
+ export declare const marshalUpdateRuleSetRequestSchema: z.ZodType;
367
+ export declare const marshalUpdateWorkspacePermissionAssignmentRequestSchema: z.ZodType;
368
+ //# 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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"}