@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
43 lines (42 loc) • 1.02 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.
*/
/**
*
* @export
* @interface CloudProviderRelation
*/
export interface CloudProviderRelation {
/**
* Cloud provider code
* @type {string}
* @memberof CloudProviderRelation
*/
code: string;
/**
* Cloud provider name
* @type {string}
* @memberof CloudProviderRelation
*/
name: string;
/**
* Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
* @type {string}
* @memberof CloudProviderRelation
*/
hint: string;
/**
* The provider\'s logo URL.
* @type {string}
* @memberof CloudProviderRelation
*/
logo_url: string;
}