UNPKG

@devopness/sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

37 lines (36 loc) 971 B
/** * 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 NetworkProvisionInputSettingsDigitalOcean */ export interface NetworkProvisionInputSettingsDigitalOcean { /** * The cloud provider region where the network will be created * @type {string} * @memberof NetworkProvisionInputSettingsDigitalOcean */ region: string; /** * Human readable version of the network region * @type {string} * @memberof NetworkProvisionInputSettingsDigitalOcean */ region_human_readable?: string; /** * The IP CIDR range of the network * @type {string} * @memberof NetworkProvisionInputSettingsDigitalOcean */ cidr_block: string; }