Module Values.DeleteWorkspaceServiceAccountTokenRequestSource

Deletes a token for the workspace service account. This will disable the key associated with the token. If any automation is currently using the key, it will no longer be authenticated or authorized to perform actions with the Grafana HTTP APIs. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.

Sourcetype nonrec t = {
  1. tokenId : String_.t;
    (*

    The ID of the token to delete.

    *)
  2. serviceAccountId : String_.t;
    (*

    The ID of the service account from which to delete the token.

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

    The ID of the workspace from which to delete the token.

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