UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 569 B
import { StateEnum } from './resourceMetadata/StateEnum'; /** IAM resource metadata embedded in services models */ export interface ResourceMetadata { /** Resource display name */ displayName?: string; /** Unique identifier of the resource */ id: string; /** Resource state */ state?: StateEnum; /** 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