Module Values.PackageConfigurationSource

The configuration parameters for a package.

Sourcetype nonrec t = {
  1. licenseRequirement : RequirementLevel.t;
    (*

    The license requirements for the package.

    *)
  2. licenseFilepath : LicenseFilepath.t option;
    (*

    The relative file path for the license associated with the package.

    *)
  3. configurationRequirement : RequirementLevel.t;
    (*

    The configuration requirements for the package.

    *)
  4. requiresRestartForConfigurationUpdate : Boolean.t option;
    (*

    This indicates whether a B/G deployment is required for updating the configuration that the plugin is prerequisite for.

    *)
}
Sourceval context_ : string
Sourceval make : ?licenseFilepath:??? -> ?requiresRestartForConfigurationUpdate:??? -> licenseRequirement:RequirementLevel.t -> configurationRequirement:RequirementLevel.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of LicenseFilepath.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