import { IDevKnativeEventingPkgApisCommonIntegrationV1alpha1Secret } from "./Secret.js"; import { ModelData, Model } from "@kubernetes-models/base"; export interface IAuth { /** * AccessKey is the AWS access key ID. */ "accessKey"?: string; /** * Auth Secret */ "secret"?: IDevKnativeEventingPkgApisCommonIntegrationV1alpha1Secret; /** * SecretKey is the AWS secret access key. */ "secretKey"?: string; "serviceAccountName"?: string; } export declare class Auth extends Model implements IAuth { "accessKey"?: string; "secret"?: IDevKnativeEventingPkgApisCommonIntegrationV1alpha1Secret; "secretKey"?: string; "serviceAccountName"?: string; constructor(data?: ModelData); } export type { IAuth as IDevKnativeEventingPkgApisCommonIntegrationV1alpha1Auth, Auth as DevKnativeEventingPkgApisCommonIntegrationV1alpha1Auth };