Module Values.ManifestPropertiesSource

The details of the manifest that links a job's source information.

Sourcetype nonrec t = {
  1. fileSystemLocationName : FileSystemLocationName.t option;
    (*

    The file system location name.

    *)
  2. rootPath : ManifestPropertiesRootPathString.t;
    (*

    The file's root path.

    *)
  3. rootPathFormat : PathFormat.t;
    (*

    The format of the root path.

    *)
  4. outputRelativeDirectories : OutputRelativeDirectoriesList.t option;
    (*

    The file path relative to the directory.

    *)
  5. inputManifestPath : ManifestPropertiesInputManifestPathString.t option;
    (*

    The file path.

    *)
  6. inputManifestHash : ManifestPropertiesInputManifestHashString.t option;
    (*

    The hash value of the file.

    *)
}
Sourceval context_ : string
Sourceval make : ?fileSystemLocationName:??? -> ?outputRelativeDirectories:??? -> ?inputManifestPath:??? -> ?inputManifestHash:??? -> rootPath:ManifestPropertiesRootPathString.t -> rootPathFormat:PathFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of OutputRelativeDirectoriesListMemberString.t ] list | `String of FileSystemLocationName.t ]) 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