You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ocaml/idl/datamodel.ml
+48-46Lines changed: 48 additions & 46 deletions
Original file line number
Diff line number
Diff line change
@@ -7849,54 +7849,56 @@ module Pool = struct
7849
7849
()
7850
7850
end
7851
7851
7852
-
(** Auth class *)
7853
-
let auth_get_subject_identifier = call ~flags:[`Session]
7854
-
~name:"get_subject_identifier"
7855
-
~in_oss_since:None
7856
-
~in_product_since:rel_george
7857
-
~params:[
7858
-
(*Ref _auth, "auth", "???";*)
7859
-
String, "subject_name", "The human-readable subject_name, such as a username or a groupname" ;
7860
-
]
7861
-
~result:(String, "the subject_identifier obtained from the external directory service")
7862
-
~doc:"This call queries the external directory service to obtain the subject_identifier as a string from the human-readable subject_name"
7863
-
~allowed_roles:_R_READ_ONLY
7864
-
()
7852
+
module Auth = struct
7853
+
(** Auth class *)
7854
+
let get_subject_identifier = call ~flags:[`Session]
7855
+
~name:"get_subject_identifier"
7856
+
~in_oss_since:None
7857
+
~in_product_since:rel_george
7858
+
~params:[
7859
+
(*Ref _auth, "auth", "???";*)
7860
+
String, "subject_name", "The human-readable subject_name, such as a username or a groupname" ;
7861
+
]
7862
+
~result:(String, "the subject_identifier obtained from the external directory service")
7863
+
~doc:"This call queries the external directory service to obtain the subject_identifier as a string from the human-readable subject_name"
7864
+
~allowed_roles:_R_READ_ONLY
7865
+
()
7865
7866
7866
-
let auth_get_subject_information_from_identifier = call ~flags:[`Session]
7867
-
~name:"get_subject_information_from_identifier"
7868
-
~in_oss_since:None
7869
-
~in_product_since:rel_george
7870
-
~params:[
7871
-
String, "subject_identifier", "A string containing the subject_identifier, unique in the external directory service"
7872
-
]
7873
-
~result:(Map(String,String), "key-value pairs containing at least a key called subject_name")
7874
-
~doc:"This call queries the external directory service to obtain the user information (e.g. username, organization etc) from the specified subject_identifier"
7875
-
~allowed_roles:_R_READ_ONLY
7876
-
()
7867
+
let get_subject_information_from_identifier = call ~flags:[`Session]
7868
+
~name:"get_subject_information_from_identifier"
7869
+
~in_oss_since:None
7870
+
~in_product_since:rel_george
7871
+
~params:[
7872
+
String, "subject_identifier", "A string containing the subject_identifier, unique in the external directory service"
7873
+
]
7874
+
~result:(Map(String,String), "key-value pairs containing at least a key called subject_name")
7875
+
~doc:"This call queries the external directory service to obtain the user information (e.g. username, organization etc) from the specified subject_identifier"
7876
+
~allowed_roles:_R_READ_ONLY
7877
+
()
7877
7878
7878
-
let auth_get_group_membership = call ~flags:[`Session]
7879
-
~name:"get_group_membership"
7880
-
~in_oss_since:None
7881
-
~in_product_since:rel_george
7882
-
~params:[
7883
-
String, "subject_identifier", "A string containing the subject_identifier, unique in the external directory service"
7884
-
]
7885
-
~result:(Set(String), "set of subject_identifiers that provides the group membership of subject_identifier passed as argument, it contains, recursively, all groups a subject_identifier is member of.")
7886
-
~doc:"This calls queries the external directory service to obtain the transitively-closed set of groups that the the subject_identifier is member of."
7887
-
~allowed_roles:_R_READ_ONLY
7888
-
()
7879
+
let get_group_membership = call ~flags:[`Session]
7880
+
~name:"get_group_membership"
7881
+
~in_oss_since:None
7882
+
~in_product_since:rel_george
7883
+
~params:[
7884
+
String, "subject_identifier", "A string containing the subject_identifier, unique in the external directory service"
7885
+
]
7886
+
~result:(Set(String), "set of subject_identifiers that provides the group membership of subject_identifier passed as argument, it contains, recursively, all groups a subject_identifier is member of.")
7887
+
~doc:"This calls queries the external directory service to obtain the transitively-closed set of groups that the the subject_identifier is member of."
0 commit comments