/** * @internal */ export type JsonFeatureFlagValue = { conditions: { client_filters: { name: string; parameters?: Record; }[]; requirement_type?: "All" | "Any"; }; description?: string; enabled: boolean; id?: string; display_name?: string; }; /** * @internal */ export interface JsonSecretReferenceValue { uri: string; } /** * @internal */ export interface JsonSnapshotReferenceValue { snapshot_name: string; } //# sourceMappingURL=jsonModels.d.ts.map