/** * The LoadBalancerSessionStats model module. * @module Ntnx/LoadBalancerSessionStats * @version 4.4.1 * @class LoadBalancerSessionStats * @extends StatsQueryResponseBase */ export default class LoadBalancerSessionStats extends StatsQueryResponseBase { /** * Returns List of listener stats associated with the load balancer session. * @return {ListenerStats[]} */ getListenerStats(): ListenerStats[]; /** * Sets List of listener stats associated with the load balancer session. * @param {ListenerStats[]} listenerStats List of listener stats associated with the load balancer session. */ setListenerStats(listenerStats: ListenerStats[]): void; listenerStats: ListenerStats[]; /** * Returns List of target stats associated with the load balancer session. * @return {TargetStats[]} */ getTargetStats(): TargetStats[]; /** * Sets List of target stats associated with the load balancer session. * @param {TargetStats[]} targetStats List of target stats associated with the load balancer session. */ setTargetStats(targetStats: TargetStats[]): void; targetStats: TargetStats[]; #private; } import StatsQueryResponseBase from "./StatsQueryResponseBase"; import ListenerStats from "./ListenerStats"; import TargetStats from "./TargetStats";