Module Values.LocalDeviceResourceDataSource

Attributes that define a local device resource.

Sourcetype nonrec t = {
  1. groupOwnerSetting : GroupOwnerSetting.t option;
    (*

    Group/owner related settings for local resources.

    *)
  2. sourcePath : string option;
    (*

    The local absolute path of the device resource. The source path for a device resource can refer only to a character device or block device under ''/dev''.

    *)
}
Sourceval make : ?groupOwnerSetting:??? -> ?sourcePath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Boolean of bool | `String of string ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t