import { ModelData, Model } from "@kubernetes-models/base"; export interface IGrafanaServiceAccount { /** * Name is the name of the service account that will be created by ESO. */ "name": string; /** * Role is the role of the service account. * See here for the documentation on basic roles offered by Grafana: * https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/access-control/rbac-fixed-basic-role-definitions/ */ "role": string; } export declare class GrafanaServiceAccount extends Model implements IGrafanaServiceAccount { "name": string; "role": string; constructor(data?: ModelData); } export type { IGrafanaServiceAccount as IComGithubExternalSecretsExternalSecretsApisGeneratorsV1alpha1GrafanaServiceAccount, GrafanaServiceAccount as ComGithubExternalSecretsExternalSecretsApisGeneratorsV1alpha1GrafanaServiceAccount };