UNPKG

@kubernetes-models/argo-cd

Version:
18 lines (17 loc) 602 B
import { ModelData, Model } from "@kubernetes-models/base"; /** * SecretRef struct for a reference to a secret key. */ export interface ISecretRef { "key": string; "secretName": string; } /** * SecretRef struct for a reference to a secret key. */ export declare class SecretRef extends Model<ISecretRef> implements ISecretRef { "key": string; "secretName": string; constructor(data?: ModelData<ISecretRef>); } export type { ISecretRef as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1SecretRef, SecretRef as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1SecretRef };