Module Values.ServiceSyncConfigSource

Detailed data of the service sync configuration.

Sourcetype nonrec t = {
  1. branch : GitBranchName.t option;
    (*

    The name of the code repository branch that holds the service code Proton will sync with.

    *)
  2. filePath : OpsFilePath.t option;
    (*

    The file path to the service sync configuration file.

    *)
  3. repositoryName : RepositoryName.t option;
    (*

    The name of the code repository that holds the service code Proton will sync with.

    *)
  4. repositoryProvider : RepositoryProvider.t option;
    (*

    The name of the repository provider that holds the repository Proton will sync with.

    *)
  5. serviceName : ResourceName.t option;
    (*

    The name of the service that the service instance is added to.

    *)
}
Sourceval make : ?branch:??? -> ?filePath:??? -> ?repositoryName:??? -> ?repositoryProvider:??? -> ?serviceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GitBranchName.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