@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
28 lines (27 loc) • 834 B
JavaScript
/* eslint-disable */
/**
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.NetworkRuleProtocol = void 0;
/**
* The network protocol to which this rule is applied.
* @export
* @enum {string}
*/
var NetworkRuleProtocol;
(function (NetworkRuleProtocol) {
NetworkRuleProtocol["Any"] = "any";
NetworkRuleProtocol["Icmp"] = "icmp";
NetworkRuleProtocol["Tcp"] = "tcp";
NetworkRuleProtocol["Udp"] = "udp";
})(NetworkRuleProtocol || (exports.NetworkRuleProtocol = NetworkRuleProtocol = {}));
;