UNPKG

@kubernetes-models/flux-cd

Version:
30 lines (29 loc) 1.68 kB
import { IIoK8sApimachineryPkgApisMetaV1ObjectMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ObjectMeta"; import { IComGithubFluxcdSourceControllerApiV1ExternalArtifactSpec } from "./ExternalArtifactSpec.js"; import { IComGithubFluxcdSourceControllerApiV1ExternalArtifactStatus } from "./ExternalArtifactStatus.js"; import { ModelData, TypeMeta, Model } from "@kubernetes-models/base"; /** * ExternalArtifact is the Schema for the external artifacts API */ export interface IExternalArtifact extends TypeMeta { "apiVersion": "source.toolkit.fluxcd.io/v1"; "kind": "ExternalArtifact"; "metadata"?: IIoK8sApimachineryPkgApisMetaV1ObjectMeta; "spec"?: IComGithubFluxcdSourceControllerApiV1ExternalArtifactSpec; "status"?: IComGithubFluxcdSourceControllerApiV1ExternalArtifactStatus; } /** * ExternalArtifact is the Schema for the external artifacts API */ export declare class ExternalArtifact extends Model<IExternalArtifact> implements IExternalArtifact { "apiVersion": "source.toolkit.fluxcd.io/v1"; "kind": "ExternalArtifact"; "metadata"?: IIoK8sApimachineryPkgApisMetaV1ObjectMeta; "spec"?: IComGithubFluxcdSourceControllerApiV1ExternalArtifactSpec; "status"?: IComGithubFluxcdSourceControllerApiV1ExternalArtifactStatus; static apiVersion: IExternalArtifact["apiVersion"]; static kind: IExternalArtifact["kind"]; static is: import("@kubernetes-models/base").TypeMetaGuard<IExternalArtifact>; constructor(data?: ModelData<IExternalArtifact>); } export type { IExternalArtifact as IComGithubFluxcdSourceControllerApiV1ExternalArtifact, ExternalArtifact as ComGithubFluxcdSourceControllerApiV1ExternalArtifact };