import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * How is this resource managed */ export declare const ManagedBy: { readonly Dashboard: "dashboard"; readonly Terraform: "terraform"; readonly External: "external"; }; /** * How is this resource managed */ export type ManagedBy = ClosedEnum; export type ManagementMetaV2 = { /** * Annotations that track metadata about this resource */ annotations: { [k: string]: string; }; /** * How is this resource managed */ managedBy: ManagedBy; /** * The url of the external repository where this resource is managed (if there is one) */ sourceUrl?: string | undefined; }; /** @internal */ export declare const ManagedBy$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ManagedBy$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ManagedBy$ { /** @deprecated use `ManagedBy$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Dashboard: "dashboard"; readonly Terraform: "terraform"; readonly External: "external"; }>; /** @deprecated use `ManagedBy$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Dashboard: "dashboard"; readonly Terraform: "terraform"; readonly External: "external"; }>; } /** @internal */ export declare const ManagementMetaV2$inboundSchema: z.ZodType; /** @internal */ export type ManagementMetaV2$Outbound = { annotations: { [k: string]: string; }; managed_by: string; source_url?: string | undefined; }; /** @internal */ export declare const ManagementMetaV2$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ManagementMetaV2$ { /** @deprecated use `ManagementMetaV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ManagementMetaV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ManagementMetaV2$Outbound` instead. */ type Outbound = ManagementMetaV2$Outbound; } //# sourceMappingURL=managementmetav2.d.ts.map