UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

22 lines 771 B
import { DeliveryStatusEnum } from './DeliveryStatusEnum'; import { ResourceMetadata } from '../../iam/ResourceMetadata'; /** OpenSearch Dashboards instance */ export interface OsdWithIAM { /** OpenSearch Dashboards creation */ createdAt: string; /** Status of the delivering process */ deliveryStatus: DeliveryStatusEnum; /** OpenSearch Dashboards description */ description: string; /** IAM resource metadata */ iam?: ResourceMetadata; /** Indicates if you are allowed to edit entry */ isEditable: boolean; /** OpenSearch Dashboards name */ name: string; /** OpenSearch Dashboards ID */ osdId: string; /** OpenSearch Dashboards last update */ updatedAt?: string; } //# sourceMappingURL=OsdWithIAM.d.ts.map