@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
33 lines (32 loc) • 953 B
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.
*/
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<StaticNetworkRuleDirection>}
* @memberof NetworkRuleOptions
*/
directions: Array<StaticNetworkRuleDirection>;
/**
* The supported network rule\'s protocols
* @type {Array<StaticNetworkRuleProtocol>}
* @memberof NetworkRuleOptions
*/
protocols: Array<StaticNetworkRuleProtocol>;
}