@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
39 lines (38 loc) • 1.03 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.
*/
import { NetworkRuleProtocol } from './network-rule-protocol';
import { StaticNetworkRuleProtocolDefaults } from './static-network-rule-protocol-defaults';
/**
*
* @export
* @interface StaticNetworkRuleProtocol
*/
export interface StaticNetworkRuleProtocol {
/**
*
* @type {NetworkRuleProtocol}
* @memberof StaticNetworkRuleProtocol
*/
value: NetworkRuleProtocol;
/**
* The formatted name to be displayed in user interfaces
* @type {string}
* @memberof StaticNetworkRuleProtocol
*/
human_readable: string;
/**
*
* @type {StaticNetworkRuleProtocolDefaults}
* @memberof StaticNetworkRuleProtocol
*/
defaults: StaticNetworkRuleProtocolDefaults;
}