Module Values.UpdateRepositoryNameInputSource

Represents the input of an update repository description operation.

Sourcetype nonrec t = {
  1. oldName : RepositoryName.t;
    (*

    The current name of the repository.

    *)
  2. newName : RepositoryName.t;
    (*

    The new name for the repository.

    *)
}
Sourceval context_ : string
Sourceval make : oldName:RepositoryName.t -> newName:RepositoryName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RepositoryName.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