/** * The VpcNsStats model module. * @module Ntnx/VpcNsStats * @version 4.4.1 * @class VpcNsStats * @extends StatsQueryResponseBase */ export default class VpcNsStats extends StatsQueryResponseBase { /** * Returns VPC North-South string array of ingress BPS values * @return {string[]} */ getNorthSouthIngressBytesPerSec(): string[]; /** * Sets VPC North-South string array of ingress BPS values * @param {string[]} northSouthIngressBytesPerSec VPC North-South string array of ingress BPS values */ setNorthSouthIngressBytesPerSec(northSouthIngressBytesPerSec: string[]): void; northSouthIngressBytesPerSec: string[]; /** * Returns VPC North-South string array of egress BPS values * @return {string[]} */ getNorthSouthEgressBytesPerSec(): string[]; /** * Sets VPC North-South string array of egress BPS values * @param {string[]} northSouthEgressBytesPerSec VPC North-South string array of egress BPS values */ setNorthSouthEgressBytesPerSec(northSouthEgressBytesPerSec: string[]): void; northSouthEgressBytesPerSec: string[]; /** * Returns VPC North-South string array of ingress PPS values * @return {string[]} */ getNorthSouthIngressPacketsPerSec(): string[]; /** * Sets VPC North-South string array of ingress PPS values * @param {string[]} northSouthIngressPacketsPerSec VPC North-South string array of ingress PPS values */ setNorthSouthIngressPacketsPerSec(northSouthIngressPacketsPerSec: string[]): void; northSouthIngressPacketsPerSec: string[]; /** * Returns VPC North-South string array of egress PPS values * @return {string[]} */ getNorthSouthEgressPacketsPerSec(): string[]; /** * Sets VPC North-South string array of egress PPS values * @param {string[]} northSouthEgressPacketsPerSec VPC North-South string array of egress PPS values */ setNorthSouthEgressPacketsPerSec(northSouthEgressPacketsPerSec: string[]): void; northSouthEgressPacketsPerSec: string[]; /** * Returns VPC North-South string array of ingress absolute bytes values * @return {string[]} */ getNorthSouthIngressBytesAbs(): string[]; /** * Sets VPC North-South string array of ingress absolute bytes values * @param {string[]} northSouthIngressBytesAbs VPC North-South string array of ingress absolute bytes values */ setNorthSouthIngressBytesAbs(northSouthIngressBytesAbs: string[]): void; northSouthIngressBytesAbs: string[]; /** * Returns VPC North-South string array of egress absolute bytes values * @return {string[]} */ getNorthSouthEgressBytesAbs(): string[]; /** * Sets VPC North-South string array of egress absolute bytes values * @param {string[]} northSouthEgressBytesAbs VPC North-South string array of egress absolute bytes values */ setNorthSouthEgressBytesAbs(northSouthEgressBytesAbs: string[]): void; northSouthEgressBytesAbs: string[]; /** * Returns VPC North-South string array of ingress absolute packets values * @return {string[]} */ getNorthSouthIngressPacketsAbs(): string[]; /** * Sets VPC North-South string array of ingress absolute packets values * @param {string[]} northSouthIngressPacketsAbs VPC North-South string array of ingress absolute packets values */ setNorthSouthIngressPacketsAbs(northSouthIngressPacketsAbs: string[]): void; northSouthIngressPacketsAbs: string[]; /** * Returns VPC North-South string array of egress absolute packets values * @return {string[]} */ getNorthSouthEgressPacketsAbs(): string[]; /** * Sets VPC North-South string array of egress absolute packets values * @param {string[]} northSouthEgressPacketsAbs VPC North-South string array of egress absolute packets values */ setNorthSouthEgressPacketsAbs(northSouthEgressPacketsAbs: string[]): void; northSouthEgressPacketsAbs: string[]; #private; } import StatsQueryResponseBase from "./StatsQueryResponseBase";