@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
23 lines • 645 B
TypeScript
import { ResourceMetadata } from '../../iam/ResourceMetadata';
/** Alias */
export interface AliasWithIAM {
/** Alias ID */
aliasId: string;
/** Input creation */
createdAt: string;
/** Alias description */
description?: string;
/** IAM resource metadata */
iam?: ResourceMetadata;
/** Indicates if you are allowed to edit entry */
isEditable: boolean;
/** Alias name */
name: string;
/** Number of indices linked */
nbIndex: number;
/** Number of streams linked */
nbStream: number;
/** Input last update */
updatedAt?: string;
}
//# sourceMappingURL=AliasWithIAM.d.ts.map