Module Values.UpdateHttpNamespaceResponseSource

Updates an HTTP namespace.

Sourcetype nonrec t = {
  1. operationId : OperationId.t option;
    (*

    A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.

    *)
}
Sourcetype nonrec error = [
  1. | `DuplicateRequest of DuplicateRequest.t
  2. | `InvalidInput of InvalidInput.t
  3. | `NamespaceNotFound of NamespaceNotFound.t
  4. | `ResourceInUse of ResourceInUse.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?operationId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DuplicateRequest of DuplicateRequest.t | `InvalidInput of InvalidInput.t | `NamespaceNotFound of NamespaceNotFound.t | `ResourceInUse of ResourceInUse.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DuplicateRequest of DuplicateRequest.t | `InvalidInput of InvalidInput.t | `NamespaceNotFound of NamespaceNotFound.t | `ResourceInUse of ResourceInUse.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OperationId.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