/** * 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 { StaticNetworkRuleDirection } from './static-network-rule-direction'; import { StaticNetworkRuleProtocol } from './static-network-rule-protocol'; /** * * @export * @interface NetworkRuleOptions */ export interface NetworkRuleOptions { /** * The supported network rule\'s traffic directions * @type {Array} * @memberof NetworkRuleOptions */ directions: Array; /** * The supported network rule\'s protocols * @type {Array} * @memberof NetworkRuleOptions */ protocols: Array; }