/** IAM resource metadata embedded in services models */
export interface ResourceMetadata {
    /** Resource display name */
    displayName?: string;
    /** Unique identifier of the resource */
    id: string;
    /** Resource tags. Tags that were internally computed are prefixed with ovh: */
    tags?: {
        [key: string]: string;
    };
    /** Unique resource name used in policies */
    urn: string;
}
//# sourceMappingURL=ResourceMetadata.d.ts.map