export type Policies = { quarantinePolicy: RegistryQuarantinePolicy; trustPolicy: RegistryTrustPolicy; retentionPolicy: RegistryRetentionPolicy; exportPolicy: RegistryExportPolicy; }; export type RegistryQuarantinePolicy = { status: string; }; export type RegistryTrustPolicy = { type: string; status: string; }; export type RegistryRetentionPolicy = { days: number; lastUpdatedTime: string; status: string; }; export type RegistryExportPolicy = { status: string; };