/** * The VpnConnectionStats model module. * @module Ntnx/VpnConnectionStats * @version 4.4.1 * @class VpnConnectionStats * @extends StatsQueryResponseBase */ export default class VpnConnectionStats extends StatsQueryResponseBase { /** * Returns VPN connection string array of ingress kilobits per second values * @return {string[]} */ getThroughputRxKbps(): string[]; /** * Sets VPN connection string array of ingress kilobits per second values * @param {string[]} throughputRxKbps VPN connection string array of ingress kilobits per second values */ setThroughputRxKbps(throughputRxKbps: string[]): void; throughputRxKbps: string[]; /** * Returns VPN connection string array of egress kilobits per second values * @return {string[]} */ getThroughputTxKbps(): string[]; /** * Sets VPN connection string array of egress kilobits per second values * @param {string[]} throughputTxKbps VPN connection string array of egress kilobits per second values */ setThroughputTxKbps(throughputTxKbps: string[]): void; throughputTxKbps: string[]; #private; } import StatsQueryResponseBase from "./StatsQueryResponseBase";