Module Values.UpdateBasePathMappingRequestSource

A request to change information about the BasePathMapping resource.

Sourcetype nonrec t = {
  1. domainName : String_.t;
    (*

    The domain name of the BasePathMapping resource to change.

    *)
  2. domainNameId : String_.t option;
    (*

    The identifier for the domain name resource. Supported only for private custom domain names.

    *)
  3. basePath : String_.t;
    (*

    The base path of the BasePathMapping resource to change. To specify an empty base path, set this parameter to '(none)'.

    *)
  4. patchOperations : ListOfPatchOperation.t option;
    (*

    For more information about supported patch operations, see Patch Operations.

    *)
}
Sourceval context_ : string
Sourceval make : ?domainNameId:??? -> ?patchOperations:??? -> domainName:String_.t -> basePath:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.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