Module Values.UpdateAdapterRequestSource

Update the configuration for an adapter. FeatureTypes configurations cannot be updated. At least one new parameter must be specified as an argument.

Sourcetype nonrec t = {
  1. adapterId : AdapterId.t;
    (*

    A string containing a unique ID for the adapter that will be updated.

    *)
  2. description : AdapterDescription.t option;
    (*

    The new description to be applied to the adapter.

    *)
  3. adapterName : AdapterName.t option;
    (*

    The new name to be applied to the adapter.

    *)
  4. autoUpdate : AutoUpdate.t option;
    (*

    The new auto-update status to be applied to the adapter.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?adapterName:??? -> ?autoUpdate:??? -> adapterId:AdapterId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AdapterId.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