Values.AssociateLicenseRequestSourceAssigns 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.
type nonrec t = {workspaceId : WorkspaceId.t;The ID of the workspace to associate the license with.
*)licenseType : LicenseType.t;The type of license to associate with the workspace. Amazon Managed Grafana workspaces no longer support Grafana Enterprise free trials.
*)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.
*)}val make :
?grafanaToken:??? ->
workspaceId:WorkspaceId.t ->
licenseType:LicenseType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of WorkspaceId.t ]) list ]