Module Values.AssociateLicenseRequestSource

Assigns a Grafana Enterprise license to a workspace. To upgrade, you must use ENTERPRISE for the licenseType, and pass in a valid Grafana Labs token for the grafanaToken. Upgrading to Grafana Enterprise incurs additional fees. For more information, see Upgrade a workspace to Grafana Enterprise.

Sourcetype nonrec t = {
  1. workspaceId : WorkspaceId.t;
    (*

    The ID of the workspace to associate the license with.

    *)
  2. licenseType : LicenseType.t;
    (*

    The type of license to associate with the workspace. Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.

    *)
  3. grafanaToken : GrafanaToken.t option;
    (*

    A token from Grafana Labs that ties your Amazon Web Services account with a Grafana Labs account. For more information, see Link your account with Grafana Labs.

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