@databricks/sdk-scim 0.33.0 → 0.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ //#region package.json
2
+ var name = "@databricks/sdk-scim";
3
+ var version = "0.35.0";
4
+
5
+ //#endregion
6
+ export { name, version };
7
+ //# sourceMappingURL=package.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"package.js","names":[],"sources":["../package.json"],"sourcesContent":[""],"mappings":""}
@@ -1,125 +1,129 @@
1
- import type { CallOptions } from '@databricks/sdk-options/call';
2
- import type { ClientOptions } from '@databricks/sdk-options/client';
3
- import type { AccountGroup, AccountServicePrincipal, AccountUser, CreateAccountGroupRequest, CreateAccountServicePrincipalRequest, CreateAccountUserRequest, CreateGroupRequest, CreateServicePrincipalRequest, CreateUserRequest, DeleteAccountGroupRequest, DeleteAccountServicePrincipalRequest, DeleteAccountUserRequest, DeleteGroupRequest, DeleteServicePrincipalRequest, DeleteUserRequest, GetAccountGroupRequest, GetAccountServicePrincipalRequest, GetAccountUserRequest, GetGroupRequest, GetPasswordPermissionLevelsRequest, GetPasswordPermissionLevelsResponse, GetPasswordPermissionsRequest, GetServicePrincipalRequest, GetUserRequest, Group, ListAccountGroupsRequest, ListAccountGroupsResponse, ListAccountServicePrincipalsRequest, ListAccountServicePrincipalsResponse, ListAccountUsersRequest, ListAccountUsersResponse, ListGroupsRequest, ListGroupsResponse, ListServicePrincipalResponse, ListServicePrincipalsRequest, ListUsersRequest, ListUsersResponse, MeRequest, PasswordPermissions, PasswordPermissionsRequest, PatchAccountGroupRequest, PatchAccountServicePrincipalRequest, PatchAccountUserRequest, PatchGroupRequest, PatchServicePrincipalRequest, PatchUserRequest, ServicePrincipal, UpdateAccountGroupRequest, UpdateAccountServicePrincipalRequest, UpdateAccountUserRequest, UpdateGroupRequest, UpdateServicePrincipalRequest, UpdateUserRequest, User } from './model';
4
- export declare class ScimClient {
5
- private readonly options;
6
- private readonly logger;
7
- private readonly userAgent;
8
- private config;
9
- constructor(options: ClientOptions);
10
- private resolveConfig;
11
- /** Creates a group in the <Databricks> account with a unique name, using the supplied group details. */
12
- createAccountGroup(req: CreateAccountGroupRequest, options?: CallOptions): Promise<AccountGroup>;
13
- /** Deletes a group from the <Databricks> account. */
14
- deleteAccountGroup(req: DeleteAccountGroupRequest, options?: CallOptions): Promise<void>;
15
- /** Gets the information for a specific group in the <Databricks> account. */
16
- getAccountGroup(req: GetAccountGroupRequest, options?: CallOptions): Promise<AccountGroup>;
17
- /**
18
- * Gets all details of the groups associated with the <Databricks> account. As of 08/22/2025,
19
- * this endpoint will no longer return members. Instead, members should be retrieved by
20
- * iterating through `Get group details`. Existing accounts that rely on this attribute
21
- * will not be impacted and will continue receiving member data as before.
22
- */
23
- listAccountGroups(req: ListAccountGroupsRequest, options?: CallOptions): Promise<ListAccountGroupsResponse>;
24
- listAccountGroupsIter(req: ListAccountGroupsRequest, options?: CallOptions): AsyncGenerator<AccountGroup>;
25
- /** Partially updates the details of a group. */
26
- patchAccountGroup(req: PatchAccountGroupRequest, options?: CallOptions): Promise<void>;
27
- /** Updates the details of a group by replacing the entire group entity. */
28
- updateAccountGroup(req: UpdateAccountGroupRequest, options?: CallOptions): Promise<void>;
29
- /** Creates a new service principal in the <Databricks> account. */
30
- createAccountServicePrincipal(req: CreateAccountServicePrincipalRequest, options?: CallOptions): Promise<AccountServicePrincipal>;
31
- /** Delete a single service principal in the <Databricks> account. */
32
- deleteAccountServicePrincipal(req: DeleteAccountServicePrincipalRequest, options?: CallOptions): Promise<void>;
33
- /** Gets the details for a single service principal define in the <Databricks> account. */
34
- getAccountServicePrincipal(req: GetAccountServicePrincipalRequest, options?: CallOptions): Promise<AccountServicePrincipal>;
35
- /** Gets the set of service principals associated with a <Databricks> account. */
36
- listAccountServicePrincipals(req: ListAccountServicePrincipalsRequest, options?: CallOptions): Promise<ListAccountServicePrincipalsResponse>;
37
- listAccountServicePrincipalsIter(req: ListAccountServicePrincipalsRequest, options?: CallOptions): AsyncGenerator<AccountServicePrincipal>;
38
- /** Partially updates the details of a single service principal in the <Databricks> account. */
39
- patchAccountServicePrincipal(req: PatchAccountServicePrincipalRequest, options?: CallOptions): Promise<void>;
40
- /**
41
- * Updates the details of a single service principal.
42
- *
43
- * This action replaces the existing service principal with the same name.
44
- */
45
- updateAccountServicePrincipal(req: UpdateAccountServicePrincipalRequest, options?: CallOptions): Promise<void>;
46
- /** Creates a new user in the <Databricks> account. This new user will also be added to the <Databricks> account. */
47
- createAccountUser(req: CreateAccountUserRequest, options?: CallOptions): Promise<AccountUser>;
48
- /** Deletes a user. Deleting a user from a <Databricks> account also removes objects associated with the user. */
49
- deleteAccountUser(req: DeleteAccountUserRequest, options?: CallOptions): Promise<void>;
50
- /** Gets information for a specific user in <Databricks> account. */
51
- getAccountUser(req: GetAccountUserRequest, options?: CallOptions): Promise<AccountUser>;
52
- /** Gets details for all the users associated with a <Databricks> account. */
53
- listAccountUsers(req: ListAccountUsersRequest, options?: CallOptions): Promise<ListAccountUsersResponse>;
54
- listAccountUsersIter(req: ListAccountUsersRequest, options?: CallOptions): AsyncGenerator<AccountUser>;
55
- /**
56
- * Partially updates a user resource by applying the supplied operations on specific user attributes.
57
- * The `userName` and `emails` attributes cannot be updated through this API; any supplied changes to them are ignored (no-op).
58
- */
59
- patchAccountUser(req: PatchAccountUserRequest, options?: CallOptions): Promise<void>;
60
- /**
61
- * Replaces a user's information with the data supplied in request.
62
- * The `userName` and `emails` attributes cannot be updated through this API; any supplied changes to them are ignored (no-op).
63
- */
64
- updateAccountUser(req: UpdateAccountUserRequest, options?: CallOptions): Promise<void>;
65
- /** Get details about the current method caller's identity. */
66
- me(req: MeRequest, options?: CallOptions): Promise<User>;
67
- /** Creates a group in the <Databricks> workspace with a unique name, using the supplied group details. */
68
- createGroup(req: CreateGroupRequest, options?: CallOptions): Promise<Group>;
69
- /** Deletes a group from the <Databricks> workspace. */
70
- deleteGroup(req: DeleteGroupRequest, options?: CallOptions): Promise<void>;
71
- /** Gets the information for a specific group in the <Databricks> workspace. */
72
- getGroup(req: GetGroupRequest, options?: CallOptions): Promise<Group>;
73
- /** Gets all details of the groups associated with the <Databricks> workspace. */
74
- listGroups(req: ListGroupsRequest, options?: CallOptions): Promise<ListGroupsResponse>;
75
- listGroupsIter(req: ListGroupsRequest, options?: CallOptions): AsyncGenerator<Group>;
76
- /** Partially updates the details of a group. */
77
- patchGroup(req: PatchGroupRequest, options?: CallOptions): Promise<void>;
78
- /** Updates the details of a group by replacing the entire group entity. */
79
- updateGroup(req: UpdateGroupRequest, options?: CallOptions): Promise<void>;
80
- /** Creates a new service principal in the <Databricks> workspace. */
81
- createServicePrincipal(req: CreateServicePrincipalRequest, options?: CallOptions): Promise<ServicePrincipal>;
82
- /** Delete a single service principal in the <Databricks> workspace. */
83
- deleteServicePrincipal(req: DeleteServicePrincipalRequest, options?: CallOptions): Promise<void>;
84
- /** Gets the details for a single service principal define in the <Databricks> workspace. */
85
- getServicePrincipal(req: GetServicePrincipalRequest, options?: CallOptions): Promise<ServicePrincipal>;
86
- /** Gets the set of service principals associated with a <Databricks> workspace. */
87
- listServicePrincipals(req: ListServicePrincipalsRequest, options?: CallOptions): Promise<ListServicePrincipalResponse>;
88
- listServicePrincipalsIter(req: ListServicePrincipalsRequest, options?: CallOptions): AsyncGenerator<ServicePrincipal>;
89
- /** Partially updates the details of a single service principal in the <Databricks> workspace. */
90
- patchServicePrincipal(req: PatchServicePrincipalRequest, options?: CallOptions): Promise<void>;
91
- /**
92
- * Updates the details of a single service principal.
93
- *
94
- * This action replaces the existing service principal with the same name.
95
- */
96
- updateServicePrincipal(req: UpdateServicePrincipalRequest, options?: CallOptions): Promise<void>;
97
- /** Creates a new user in the <Databricks> workspace. This new user will also be added to the <Databricks> account. */
98
- createUser(req: CreateUserRequest, options?: CallOptions): Promise<User>;
99
- /** Deletes a user. Deleting a user from a <Databricks> workspace also removes objects associated with the user. */
100
- deleteUser(req: DeleteUserRequest, options?: CallOptions): Promise<void>;
101
- /** Gets the permission levels that a user can have on an object. */
102
- getPermissionLevels(_req: GetPasswordPermissionLevelsRequest, options?: CallOptions): Promise<GetPasswordPermissionLevelsResponse>;
103
- /** Gets the permissions of all passwords. Passwords can inherit permissions from their root object. */
104
- getPermissions(_req: GetPasswordPermissionsRequest, options?: CallOptions): Promise<PasswordPermissions>;
105
- /** Gets information for a specific user in <Databricks> workspace. */
106
- getUser(req: GetUserRequest, options?: CallOptions): Promise<User>;
107
- /** Gets details for all the users associated with a <Databricks> workspace. */
108
- listUsers(req: ListUsersRequest, options?: CallOptions): Promise<ListUsersResponse>;
109
- listUsersIter(req: ListUsersRequest, options?: CallOptions): AsyncGenerator<User>;
110
- /**
111
- * Partially updates a user resource by applying the supplied operations on specific user attributes.
112
- * The `userName` and `emails` attributes cannot be updated through this API; any supplied changes to them are ignored (no-op).
113
- */
114
- patchUser(req: PatchUserRequest, options?: CallOptions): Promise<void>;
115
- /** Sets permissions on an object, replacing existing permissions if they exist. Deletes all direct permissions if none are specified. Objects can inherit permissions from their root object. */
116
- setPermissions(req: PasswordPermissionsRequest, options?: CallOptions): Promise<PasswordPermissions>;
117
- /** Updates the permissions on all passwords. Passwords can inherit permissions from their root object. */
118
- updatePermissions(req: PasswordPermissionsRequest, options?: CallOptions): Promise<PasswordPermissions>;
119
- /**
120
- * Replaces a user's information with the data supplied in request.
121
- * The `userName` and `emails` attributes cannot be updated through this API; any supplied changes to them are ignored (no-op).
122
- */
123
- updateUser(req: UpdateUserRequest, options?: CallOptions): Promise<void>;
1
+ import { AccountGroup, AccountServicePrincipal, AccountUser, CreateAccountGroupRequest, CreateAccountServicePrincipalRequest, CreateAccountUserRequest, CreateGroupRequest, CreateServicePrincipalRequest, CreateUserRequest, DeleteAccountGroupRequest, DeleteAccountServicePrincipalRequest, DeleteAccountUserRequest, DeleteGroupRequest, DeleteServicePrincipalRequest, DeleteUserRequest, GetAccountGroupRequest, GetAccountServicePrincipalRequest, GetAccountUserRequest, GetGroupRequest, GetPasswordPermissionLevelsRequest, GetPasswordPermissionLevelsResponse, GetPasswordPermissionsRequest, GetServicePrincipalRequest, GetUserRequest, Group, ListAccountGroupsRequest, ListAccountGroupsResponse, ListAccountServicePrincipalsRequest, ListAccountServicePrincipalsResponse, ListAccountUsersRequest, ListAccountUsersResponse, ListGroupsRequest, ListGroupsResponse, ListServicePrincipalResponse, ListServicePrincipalsRequest, ListUsersRequest, ListUsersResponse, MeRequest, PasswordPermissions, PasswordPermissionsRequest, PatchAccountGroupRequest, PatchAccountServicePrincipalRequest, PatchAccountUserRequest, PatchGroupRequest, PatchServicePrincipalRequest, PatchUserRequest, ServicePrincipal, UpdateAccountGroupRequest, UpdateAccountServicePrincipalRequest, UpdateAccountUserRequest, UpdateGroupRequest, UpdateServicePrincipalRequest, UpdateUserRequest, User } from "./model.js";
2
+ import { CallOptions } from "@databricks/sdk-options/call";
3
+ import { ClientOptions } from "@databricks/sdk-options/client";
4
+
5
+ //#region src/v1/client.d.ts
6
+ declare class ScimClient {
7
+ private readonly options;
8
+ private readonly logger;
9
+ private readonly userAgent;
10
+ private config;
11
+ constructor(options: ClientOptions);
12
+ private resolveConfig;
13
+ /** Creates a group in the <Databricks> account with a unique name, using the supplied group details. */
14
+ createAccountGroup(req: CreateAccountGroupRequest, options?: CallOptions): Promise<AccountGroup>;
15
+ /** Deletes a group from the <Databricks> account. */
16
+ deleteAccountGroup(req: DeleteAccountGroupRequest, options?: CallOptions): Promise<void>;
17
+ /** Gets the information for a specific group in the <Databricks> account. */
18
+ getAccountGroup(req: GetAccountGroupRequest, options?: CallOptions): Promise<AccountGroup>;
19
+ /**
20
+ * Gets all details of the groups associated with the <Databricks> account. As of 08/22/2025,
21
+ * this endpoint will no longer return members. Instead, members should be retrieved by
22
+ * iterating through `Get group details`. Existing accounts that rely on this attribute
23
+ * will not be impacted and will continue receiving member data as before.
24
+ */
25
+ listAccountGroups(req: ListAccountGroupsRequest, options?: CallOptions): Promise<ListAccountGroupsResponse>;
26
+ listAccountGroupsIter(req: ListAccountGroupsRequest, options?: CallOptions): AsyncGenerator<AccountGroup>;
27
+ /** Partially updates the details of a group. */
28
+ patchAccountGroup(req: PatchAccountGroupRequest, options?: CallOptions): Promise<void>;
29
+ /** Updates the details of a group by replacing the entire group entity. */
30
+ updateAccountGroup(req: UpdateAccountGroupRequest, options?: CallOptions): Promise<void>;
31
+ /** Creates a new service principal in the <Databricks> account. */
32
+ createAccountServicePrincipal(req: CreateAccountServicePrincipalRequest, options?: CallOptions): Promise<AccountServicePrincipal>;
33
+ /** Delete a single service principal in the <Databricks> account. */
34
+ deleteAccountServicePrincipal(req: DeleteAccountServicePrincipalRequest, options?: CallOptions): Promise<void>;
35
+ /** Gets the details for a single service principal define in the <Databricks> account. */
36
+ getAccountServicePrincipal(req: GetAccountServicePrincipalRequest, options?: CallOptions): Promise<AccountServicePrincipal>;
37
+ /** Gets the set of service principals associated with a <Databricks> account. */
38
+ listAccountServicePrincipals(req: ListAccountServicePrincipalsRequest, options?: CallOptions): Promise<ListAccountServicePrincipalsResponse>;
39
+ listAccountServicePrincipalsIter(req: ListAccountServicePrincipalsRequest, options?: CallOptions): AsyncGenerator<AccountServicePrincipal>;
40
+ /** Partially updates the details of a single service principal in the <Databricks> account. */
41
+ patchAccountServicePrincipal(req: PatchAccountServicePrincipalRequest, options?: CallOptions): Promise<void>;
42
+ /**
43
+ * Updates the details of a single service principal.
44
+ *
45
+ * This action replaces the existing service principal with the same name.
46
+ */
47
+ updateAccountServicePrincipal(req: UpdateAccountServicePrincipalRequest, options?: CallOptions): Promise<void>;
48
+ /** Creates a new user in the <Databricks> account. This new user will also be added to the <Databricks> account. */
49
+ createAccountUser(req: CreateAccountUserRequest, options?: CallOptions): Promise<AccountUser>;
50
+ /** Deletes a user. Deleting a user from a <Databricks> account also removes objects associated with the user. */
51
+ deleteAccountUser(req: DeleteAccountUserRequest, options?: CallOptions): Promise<void>;
52
+ /** Gets information for a specific user in <Databricks> account. */
53
+ getAccountUser(req: GetAccountUserRequest, options?: CallOptions): Promise<AccountUser>;
54
+ /** Gets details for all the users associated with a <Databricks> account. */
55
+ listAccountUsers(req: ListAccountUsersRequest, options?: CallOptions): Promise<ListAccountUsersResponse>;
56
+ listAccountUsersIter(req: ListAccountUsersRequest, options?: CallOptions): AsyncGenerator<AccountUser>;
57
+ /**
58
+ * Partially updates a user resource by applying the supplied operations on specific user attributes.
59
+ * The `userName` and `emails` attributes cannot be updated through this API; any supplied changes to them are ignored (no-op).
60
+ */
61
+ patchAccountUser(req: PatchAccountUserRequest, options?: CallOptions): Promise<void>;
62
+ /**
63
+ * Replaces a user's information with the data supplied in request.
64
+ * The `userName` and `emails` attributes cannot be updated through this API; any supplied changes to them are ignored (no-op).
65
+ */
66
+ updateAccountUser(req: UpdateAccountUserRequest, options?: CallOptions): Promise<void>;
67
+ /** Get details about the current method caller's identity. */
68
+ me(req: MeRequest, options?: CallOptions): Promise<User>;
69
+ /** Creates a group in the <Databricks> workspace with a unique name, using the supplied group details. */
70
+ createGroup(req: CreateGroupRequest, options?: CallOptions): Promise<Group>;
71
+ /** Deletes a group from the <Databricks> workspace. */
72
+ deleteGroup(req: DeleteGroupRequest, options?: CallOptions): Promise<void>;
73
+ /** Gets the information for a specific group in the <Databricks> workspace. */
74
+ getGroup(req: GetGroupRequest, options?: CallOptions): Promise<Group>;
75
+ /** Gets all details of the groups associated with the <Databricks> workspace. */
76
+ listGroups(req: ListGroupsRequest, options?: CallOptions): Promise<ListGroupsResponse>;
77
+ listGroupsIter(req: ListGroupsRequest, options?: CallOptions): AsyncGenerator<Group>;
78
+ /** Partially updates the details of a group. */
79
+ patchGroup(req: PatchGroupRequest, options?: CallOptions): Promise<void>;
80
+ /** Updates the details of a group by replacing the entire group entity. */
81
+ updateGroup(req: UpdateGroupRequest, options?: CallOptions): Promise<void>;
82
+ /** Creates a new service principal in the <Databricks> workspace. */
83
+ createServicePrincipal(req: CreateServicePrincipalRequest, options?: CallOptions): Promise<ServicePrincipal>;
84
+ /** Delete a single service principal in the <Databricks> workspace. */
85
+ deleteServicePrincipal(req: DeleteServicePrincipalRequest, options?: CallOptions): Promise<void>;
86
+ /** Gets the details for a single service principal define in the <Databricks> workspace. */
87
+ getServicePrincipal(req: GetServicePrincipalRequest, options?: CallOptions): Promise<ServicePrincipal>;
88
+ /** Gets the set of service principals associated with a <Databricks> workspace. */
89
+ listServicePrincipals(req: ListServicePrincipalsRequest, options?: CallOptions): Promise<ListServicePrincipalResponse>;
90
+ listServicePrincipalsIter(req: ListServicePrincipalsRequest, options?: CallOptions): AsyncGenerator<ServicePrincipal>;
91
+ /** Partially updates the details of a single service principal in the <Databricks> workspace. */
92
+ patchServicePrincipal(req: PatchServicePrincipalRequest, options?: CallOptions): Promise<void>;
93
+ /**
94
+ * Updates the details of a single service principal.
95
+ *
96
+ * This action replaces the existing service principal with the same name.
97
+ */
98
+ updateServicePrincipal(req: UpdateServicePrincipalRequest, options?: CallOptions): Promise<void>;
99
+ /** Creates a new user in the <Databricks> workspace. This new user will also be added to the <Databricks> account. */
100
+ createUser(req: CreateUserRequest, options?: CallOptions): Promise<User>;
101
+ /** Deletes a user. Deleting a user from a <Databricks> workspace also removes objects associated with the user. */
102
+ deleteUser(req: DeleteUserRequest, options?: CallOptions): Promise<void>;
103
+ /** Gets the permission levels that a user can have on an object. */
104
+ getPermissionLevels(_req: GetPasswordPermissionLevelsRequest, options?: CallOptions): Promise<GetPasswordPermissionLevelsResponse>;
105
+ /** Gets the permissions of all passwords. Passwords can inherit permissions from their root object. */
106
+ getPermissions(_req: GetPasswordPermissionsRequest, options?: CallOptions): Promise<PasswordPermissions>;
107
+ /** Gets information for a specific user in <Databricks> workspace. */
108
+ getUser(req: GetUserRequest, options?: CallOptions): Promise<User>;
109
+ /** Gets details for all the users associated with a <Databricks> workspace. */
110
+ listUsers(req: ListUsersRequest, options?: CallOptions): Promise<ListUsersResponse>;
111
+ listUsersIter(req: ListUsersRequest, options?: CallOptions): AsyncGenerator<User>;
112
+ /**
113
+ * Partially updates a user resource by applying the supplied operations on specific user attributes.
114
+ * The `userName` and `emails` attributes cannot be updated through this API; any supplied changes to them are ignored (no-op).
115
+ */
116
+ patchUser(req: PatchUserRequest, options?: CallOptions): Promise<void>;
117
+ /** Sets permissions on an object, replacing existing permissions if they exist. Deletes all direct permissions if none are specified. Objects can inherit permissions from their root object. */
118
+ setPermissions(req: PasswordPermissionsRequest, options?: CallOptions): Promise<PasswordPermissions>;
119
+ /** Updates the permissions on all passwords. Passwords can inherit permissions from their root object. */
120
+ updatePermissions(req: PasswordPermissionsRequest, options?: CallOptions): Promise<PasswordPermissions>;
121
+ /**
122
+ * Replaces a user's information with the data supplied in request.
123
+ * The `userName` and `emails` attributes cannot be updated through this API; any supplied changes to them are ignored (no-op).
124
+ */
125
+ updateUser(req: UpdateUserRequest, options?: CallOptions): Promise<void>;
124
126
  }
127
+ //#endregion
128
+ export { ScimClient };
125
129
  //# sourceMappingURL=client.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/v1/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","names":[],"sources":["../../src/v1/client.ts"],"mappings":"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"}