Values.DirectoryLimitsSourceContains directory limit information for a Region.
type nonrec t = {cloudOnlyDirectoriesLimit : Limit.t option;The maximum number of cloud directories allowed in the Region.
*)cloudOnlyDirectoriesCurrentCount : Limit.t option;The current number of cloud directories in the Region.
*)cloudOnlyDirectoriesLimitReached : CloudOnlyDirectoriesLimitReached.t option;Indicates if the cloud directory limit has been reached.
*)cloudOnlyMicrosoftADLimit : Limit.t option;The maximum number of Managed Microsoft AD directories allowed in the region.
*)cloudOnlyMicrosoftADCurrentCount : Limit.t option;The current number of Managed Microsoft AD directories in the region.
*)cloudOnlyMicrosoftADLimitReached : CloudOnlyDirectoriesLimitReached.t option;Indicates if the Managed Microsoft AD directory limit has been reached.
*)connectedDirectoriesLimit : Limit.t option;The maximum number of connected directories allowed in the Region.
*)connectedDirectoriesCurrentCount : Limit.t option;The current number of connected directories in the Region.
*)connectedDirectoriesLimitReached : ConnectedDirectoriesLimitReached.t option;Indicates if the connected directory limit has been reached.
*)}val make :
?cloudOnlyDirectoriesLimit:??? ->
?cloudOnlyDirectoriesCurrentCount:??? ->
?cloudOnlyDirectoriesLimitReached:??? ->
?cloudOnlyMicrosoftADLimit:??? ->
?cloudOnlyMicrosoftADCurrentCount:??? ->
?cloudOnlyMicrosoftADLimitReached:??? ->
?connectedDirectoriesLimit:??? ->
?connectedDirectoriesCurrentCount:??? ->
?connectedDirectoriesLimitReached:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of CloudOnlyDirectoriesLimitReached.t
| `Integer of Limit.t ])
list ]