Module Values.UpdateSyncBlockerInputSource

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

Sourcetype nonrec t = {
  1. id : Id.t;
    (*

    The ID of the sync blocker to be updated.

    *)
  2. syncType : SyncConfigurationType.t;
    (*

    The sync type of the sync blocker to be updated.

    *)
  3. resourceName : ResourceName.t;
    (*

    The name of the resource for the sync blocker to be updated.

    *)
  4. resolvedReason : ResolvedReason.t;
    (*

    The reason for resolving the sync blocker.

    *)
}
Sourceval context_ : string
Sourceval make : id:Id.t -> syncType:SyncConfigurationType.t -> resourceName:ResourceName.t -> resolvedReason:ResolvedReason.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.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