@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 477 B
TypeScript
/** Information about a configuration */
export interface ConfigurationRequirements {
/** Indicates if some particular fields have to be inputed during the creation of `type` resource */
fields?: string[];
/** Label for your configuration item */
label: string;
/** Indicates if the configuration item is required */
required: boolean;
/** Type of the configuration item */
type: string;
}
//# sourceMappingURL=ConfigurationRequirements.d.ts.map