Module Values.UpdateWorkspaceConfigurationRequestSource

Updates the configuration string for the given workspace

Sourcetype nonrec t = {
  1. configuration : OverridableConfigurationJson.t;
    (*

    The new configuration string for the workspace. For more information about the format and configuration options available, see Working in your Grafana workspace.

    *)
  2. workspaceId : WorkspaceId.t;
    (*

    The ID of the workspace to update.

    *)
  3. grafanaVersion : GrafanaVersion.t option;
    (*

    Specifies the version of Grafana to support in the workspace. If not specified, keeps the current version of the workspace. Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). To know what versions are available to upgrade to for a specific workspace, see the ListVersions operation.

    *)
}
Sourceval context_ : string
Sourceval make : ?grafanaVersion:??? -> configuration:OverridableConfigurationJson.t -> workspaceId:WorkspaceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OverridableConfigurationJson.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