/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { CloudProviderPropertyValidation } from './cloud-provider-property-validation';
/**
 * Cloud provider credential settings
 * @export
 * @interface CloudProviderInputSettings
 */
export interface CloudProviderInputSettings {
    /**
     * Name of the property
     * @type {string}
     * @memberof CloudProviderInputSettings
     */
    name: string;
    /**
     * Human readable version of the property\'s name
     * @type {string}
     * @memberof CloudProviderInputSettings
     */
    name_human_readable: string;
    /**
     * Default property\'s value
     * @type {string | number | boolean}
     * @memberof CloudProviderInputSettings
     */
    default_value: string | number | boolean | null;
    /**
     * Defines if the property data is a sensitive content
     * @type {boolean}
     * @memberof CloudProviderInputSettings
     */
    sensitive: boolean;
    /**
     *
     * @type {CloudProviderPropertyValidation}
     * @memberof CloudProviderInputSettings
     */
    validation: CloudProviderPropertyValidation;
}
