Module Values.UpdateSyncBlockerOutputSource

Allows you to update the status of a sync blocker, resolving the blocker and allowing syncing to continue.

Sourcetype nonrec t = {
  1. resourceName : ResourceName.t option;
    (*

    The resource name for the sync blocker.

    *)
  2. parentResourceName : ResourceName.t option;
    (*

    The parent resource name for the sync blocker.

    *)
  3. syncBlocker : SyncBlocker.t option;
    (*

    Information about the sync blocker to be updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `InvalidInputException of InvalidInputException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `RetryLatestCommitFailedException of RetryLatestCommitFailedException.t
  6. | `SyncBlockerDoesNotExistException of SyncBlockerDoesNotExistException.t
  7. | `ThrottlingException of ThrottlingException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?resourceName:??? -> ?parentResourceName:??? -> ?syncBlocker:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `InvalidInputException of InvalidInputException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `RetryLatestCommitFailedException of RetryLatestCommitFailedException.t | `SyncBlockerDoesNotExistException of SyncBlockerDoesNotExistException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `InvalidInputException of InvalidInputException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `RetryLatestCommitFailedException of RetryLatestCommitFailedException.t | `SyncBlockerDoesNotExistException of SyncBlockerDoesNotExistException.t | `ThrottlingException of ThrottlingException.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 ResourceName.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of SyncBlockerContextKey.t ]) list ] list | `String of Id.t | `Timestamp of Timestamp.t ]) list ]) 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