@databricks/sdk-scim 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.
- package/LICENSE +203 -0
- package/dist/v1/client.d.ts +114 -0
- package/dist/v1/client.d.ts.map +1 -0
- package/dist/v1/client.js +1185 -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 +881 -0
- package/dist/v1/model.d.ts.map +1 -0
- package/dist/v1/model.js +907 -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 +21 -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 +1488 -0
- package/src/v1/index.ts +93 -0
- package/src/v1/model.ts +1809 -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
package/src/v1/index.ts
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
export {ScimClient} from './client';
|
|
4
|
+
|
|
5
|
+
export {
|
|
6
|
+
GetSortOrder,
|
|
7
|
+
GroupSchema,
|
|
8
|
+
ListResponseSchema,
|
|
9
|
+
PatchOp,
|
|
10
|
+
PatchSchema,
|
|
11
|
+
ServicePrincipalSchema,
|
|
12
|
+
UserSchema,
|
|
13
|
+
AccountGetSortOrder_GetSortOrder,
|
|
14
|
+
AccountListSort_Order,
|
|
15
|
+
AccountPatchOp_PatchOp,
|
|
16
|
+
AccountPatchSchema_PatchSchema,
|
|
17
|
+
ListSort_Order,
|
|
18
|
+
PasswordPermission_Level,
|
|
19
|
+
} from './model';
|
|
20
|
+
|
|
21
|
+
export type {
|
|
22
|
+
AccountComplexValue,
|
|
23
|
+
AccountGetSortOrder,
|
|
24
|
+
AccountGroup,
|
|
25
|
+
AccountListSort,
|
|
26
|
+
AccountName,
|
|
27
|
+
AccountPatch,
|
|
28
|
+
AccountPatchOp,
|
|
29
|
+
AccountPatchSchema,
|
|
30
|
+
AccountResourceMeta,
|
|
31
|
+
AccountServicePrincipal,
|
|
32
|
+
AccountUser,
|
|
33
|
+
ComplexValue,
|
|
34
|
+
CreateAccountGroupRequest,
|
|
35
|
+
CreateAccountServicePrincipalRequest,
|
|
36
|
+
CreateAccountUserRequest,
|
|
37
|
+
CreateGroupRequest,
|
|
38
|
+
CreateServicePrincipalRequest,
|
|
39
|
+
CreateUserRequest,
|
|
40
|
+
DeleteAccountGroupRequest,
|
|
41
|
+
DeleteAccountServicePrincipalRequest,
|
|
42
|
+
DeleteAccountUserRequest,
|
|
43
|
+
DeleteGroupRequest,
|
|
44
|
+
DeleteServicePrincipalRequest,
|
|
45
|
+
DeleteUserRequest,
|
|
46
|
+
GetAccountGroupRequest,
|
|
47
|
+
GetAccountServicePrincipalRequest,
|
|
48
|
+
GetAccountUserRequest,
|
|
49
|
+
GetGroupRequest,
|
|
50
|
+
GetPasswordPermissionLevelsRequest,
|
|
51
|
+
GetPasswordPermissionLevelsResponse,
|
|
52
|
+
GetPasswordPermissionsRequest,
|
|
53
|
+
GetServicePrincipalRequest,
|
|
54
|
+
GetUserRequest,
|
|
55
|
+
Group,
|
|
56
|
+
ListAccountGroupsRequest,
|
|
57
|
+
ListAccountGroupsResponse,
|
|
58
|
+
ListAccountServicePrincipalsRequest,
|
|
59
|
+
ListAccountServicePrincipalsResponse,
|
|
60
|
+
ListAccountUsersRequest,
|
|
61
|
+
ListAccountUsersResponse,
|
|
62
|
+
ListGroupsRequest,
|
|
63
|
+
ListGroupsResponse,
|
|
64
|
+
ListServicePrincipalResponse,
|
|
65
|
+
ListServicePrincipalsRequest,
|
|
66
|
+
ListSort,
|
|
67
|
+
ListUsersRequest,
|
|
68
|
+
ListUsersResponse,
|
|
69
|
+
MeRequest,
|
|
70
|
+
Name,
|
|
71
|
+
PasswordAccessControlRequest,
|
|
72
|
+
PasswordAccessControlResponse,
|
|
73
|
+
PasswordPermission,
|
|
74
|
+
PasswordPermissions,
|
|
75
|
+
PasswordPermissionsDescription,
|
|
76
|
+
PasswordPermissionsRequest,
|
|
77
|
+
Patch,
|
|
78
|
+
PatchAccountGroupRequest,
|
|
79
|
+
PatchAccountServicePrincipalRequest,
|
|
80
|
+
PatchAccountUserRequest,
|
|
81
|
+
PatchGroupRequest,
|
|
82
|
+
PatchServicePrincipalRequest,
|
|
83
|
+
PatchUserRequest,
|
|
84
|
+
ResourceMeta,
|
|
85
|
+
ServicePrincipal,
|
|
86
|
+
UpdateAccountGroupRequest,
|
|
87
|
+
UpdateAccountServicePrincipalRequest,
|
|
88
|
+
UpdateAccountUserRequest,
|
|
89
|
+
UpdateGroupRequest,
|
|
90
|
+
UpdateServicePrincipalRequest,
|
|
91
|
+
UpdateUserRequest,
|
|
92
|
+
User,
|
|
93
|
+
} from './model';
|