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