@azure/app-configuration
Version:
An isomorphic client library for the Azure App Configuration service.
29 lines • 555 B
TypeScript
/**
* @internal
*/
export type JsonFeatureFlagValue = {
conditions: {
client_filters: {
name: string;
parameters?: Record<string, unknown>;
}[];
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