/**
 * 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 { ActionRelation } from './action-relation';
import { CredentialRelation } from './credential-relation';
import { EnvironmentRelation } from './environment-relation';
import { NetworkProvisionInput } from './network-provision-input';
import { ProjectRelation } from './project-relation';
import { UserRelation } from './user-relation';
/**
 *
 * @export
 * @interface Network
 */
export interface Network {
    /**
     * The unique id of the given record
     * @type {number}
     * @memberof Network
     */
    id: number;
    /**
     * The name of the cloud provider
     * @type {string}
     * @memberof Network
     */
    provider_name: string;
    /**
     * The human readable version of the provider\'s name
     * @type {string}
     * @memberof Network
     */
    provider_name_human_readable: string;
    /**
     * The networks\'s name
     * @type {string}
     * @memberof Network
     */
    name: string;
    /**
     *
     * @type {NetworkProvisionInput}
     * @memberof Network
     */
    provision_input: NetworkProvisionInput;
    /**
     *
     * @type {UserRelation}
     * @memberof Network
     */
    created_by_user: UserRelation;
    /**
     *
     * @type {ProjectRelation}
     * @memberof Network
     */
    project: ProjectRelation | null;
    /**
     *
     * @type {EnvironmentRelation}
     * @memberof Network
     */
    environment: EnvironmentRelation | null;
    /**
     *
     * @type {CredentialRelation}
     * @memberof Network
     */
    credential: CredentialRelation | null;
    /**
     *
     * @type {ActionRelation}
     * @memberof Network
     */
    last_action: ActionRelation | null;
    /**
     * The date and time when the record was created
     * @type {string}
     * @memberof Network
     */
    created_at: string;
    /**
     * The date and time when the record was last updated
     * @type {string}
     * @memberof Network
     */
    updated_at: string;
}
