import { ModelData, Model } from "@kubernetes-models/base"; /** * IBM Container-based auth with IAM Trusted Profile. */ export interface IIBMAuthContainerAuth { "iamEndpoint"?: string; /** * the IBM Trusted Profile */ "profile": string; /** * Location the token is mounted on the pod */ "tokenLocation"?: string; } /** * IBM Container-based auth with IAM Trusted Profile. */ export declare class IBMAuthContainerAuth extends Model implements IIBMAuthContainerAuth { "iamEndpoint"?: string; "profile": string; "tokenLocation"?: string; constructor(data?: ModelData); } export type { IIBMAuthContainerAuth as IComGithubExternalSecretsExternalSecretsApisExternalsecretsV1IBMAuthContainerAuth, IBMAuthContainerAuth as ComGithubExternalSecretsExternalSecretsApisExternalsecretsV1IBMAuthContainerAuth };