@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 462 B
TypeScript
/** 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?: {
[ ]: string;
};
/** Unique resource name used in policies */
urn: string;
}
//# sourceMappingURL=ResourceMetadata.d.ts.map