/**
 * 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.
 */
/**
 *
 * @export
 * @interface CredentialAzure
 */
export interface CredentialAzure {
    /**
     * ID that identifies your company space (directory) inside Azure
     * @type {string}
     * @memberof CredentialAzure
     */
    tenant_id: string;
    /**
     * ID that identifies your billing account where Azure resources are stored
     * @type {string}
     * @memberof CredentialAzure
     */
    subscription_id: string;
    /**
     * ID that identifies the application when connecting to Azure
     * @type {string}
     * @memberof CredentialAzure
     */
    client_id: string;
    /**
     * Secret password used by the application to authenticate to Azure
     * @type {string}
     * @memberof CredentialAzure
     */
    client_secret: string;
}
