import type * as grafana from "@distilled.cloud/aws/grafana"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Workspace } from "./Workspace.ts"; /** * Runtime binding for the `DisassociateLicense` operation (IAM action * `grafana:DisassociateLicense`), scoped to one {@link Workspace}. * * Removes the Grafana Enterprise license from the workspace, downgrading it * back to the standard edition. Provide the implementation with * `Effect.provide(AWS.Grafana.DisassociateLicenseHttp)`. * ### Managing Licenses * **Example:** Downgrade from Grafana Enterprise * ```typescript * const disassociateLicense = yield* Grafana.DisassociateLicense(workspace); * * yield* disassociateLicense({ licenseType: "ENTERPRISE" }); * ``` * * @binding */ export interface DisassociateLicense extends Binding.Service Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const DisassociateLicense: DisassociateLicense; //# sourceMappingURL=DisassociateLicense.d.ts.map