@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
50 lines (49 loc) • 1.32 kB
TypeScript
/**
* 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 { ProviderInputSettingsValidation } from './provider-input-settings-validation';
/**
* Input settings for credentials of specific provider
* @export
* @interface ProviderInputSettings
*/
export interface ProviderInputSettings {
/**
* The name of a credential input field
* @type {string}
* @memberof ProviderInputSettings
*/
name: string;
/**
* The human readable version of the input field name
* @type {string}
* @memberof ProviderInputSettings
*/
name_human_readable: string;
/**
*
* @type {ProviderInputSettingsValidation}
* @memberof ProviderInputSettings
*/
validation: ProviderInputSettingsValidation;
/**
* The default value of the input field
* @type {string}
* @memberof ProviderInputSettings
*/
default_value: string | null;
/**
* Defines if the input field data is a sensitive content
* @type {boolean}
* @memberof ProviderInputSettings
*/
sensitive: boolean;
}