All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.ens20171110.models.DescribeInstanceBandwidthDetailResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link DescribeInstanceBandwidthDetailResponseBody} extends {@link TeaModel}
 *
 * 

DescribeInstanceBandwidthDetailResponseBody

*/ public class DescribeInstanceBandwidthDetailResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Bandwidths") private java.util.List bandwidths; @com.aliyun.core.annotation.NameInMap("PageNumber") private Integer pageNumber; @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalCount") private Integer totalCount; private DescribeInstanceBandwidthDetailResponseBody(Builder builder) { this.bandwidths = builder.bandwidths; this.pageNumber = builder.pageNumber; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeInstanceBandwidthDetailResponseBody create() { return builder().build(); } /** * @return bandwidths */ public java.util.List getBandwidths() { return this.bandwidths; } /** * @return pageNumber */ public Integer getPageNumber() { return this.pageNumber; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private java.util.List bandwidths; private Integer pageNumber; private Integer pageSize; private String requestId; private Integer totalCount; /** * Bandwidths. */ public Builder bandwidths(java.util.List bandwidths) { this.bandwidths = bandwidths; return this; } /** * PageNumber. */ public Builder pageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** *

Id of the request

* * example: *

C0003E8B-B930-4F59-ADC0-0E209A9012A8

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCount. */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeInstanceBandwidthDetailResponseBody build() { return new DescribeInstanceBandwidthDetailResponseBody(this); } } /** * * {@link DescribeInstanceBandwidthDetailResponseBody} extends {@link TeaModel} * *

DescribeInstanceBandwidthDetailResponseBody

*/ public static class Bandwidths extends TeaModel { @com.aliyun.core.annotation.NameInMap("AliUid") private Long aliUid; @com.aliyun.core.annotation.NameInMap("BizTime") private String bizTime; @com.aliyun.core.annotation.NameInMap("EnsRegionId") private String ensRegionId; @com.aliyun.core.annotation.NameInMap("FlowType") private Integer flowType; @com.aliyun.core.annotation.NameInMap("InstanceId") private String instanceId; @com.aliyun.core.annotation.NameInMap("InstanceType") private String instanceType; @com.aliyun.core.annotation.NameInMap("Ip") private String ip; @com.aliyun.core.annotation.NameInMap("Isp") private String isp; @com.aliyun.core.annotation.NameInMap("RxBw") private Long rxBw; @com.aliyun.core.annotation.NameInMap("ServiceType") private String serviceType; @com.aliyun.core.annotation.NameInMap("TxBw") private Long txBw; private Bandwidths(Builder builder) { this.aliUid = builder.aliUid; this.bizTime = builder.bizTime; this.ensRegionId = builder.ensRegionId; this.flowType = builder.flowType; this.instanceId = builder.instanceId; this.instanceType = builder.instanceType; this.ip = builder.ip; this.isp = builder.isp; this.rxBw = builder.rxBw; this.serviceType = builder.serviceType; this.txBw = builder.txBw; } public static Builder builder() { return new Builder(); } public static Bandwidths create() { return builder().build(); } /** * @return aliUid */ public Long getAliUid() { return this.aliUid; } /** * @return bizTime */ public String getBizTime() { return this.bizTime; } /** * @return ensRegionId */ public String getEnsRegionId() { return this.ensRegionId; } /** * @return flowType */ public Integer getFlowType() { return this.flowType; } /** * @return instanceId */ public String getInstanceId() { return this.instanceId; } /** * @return instanceType */ public String getInstanceType() { return this.instanceType; } /** * @return ip */ public String getIp() { return this.ip; } /** * @return isp */ public String getIsp() { return this.isp; } /** * @return rxBw */ public Long getRxBw() { return this.rxBw; } /** * @return serviceType */ public String getServiceType() { return this.serviceType; } /** * @return txBw */ public Long getTxBw() { return this.txBw; } public static final class Builder { private Long aliUid; private String bizTime; private String ensRegionId; private Integer flowType; private String instanceId; private String instanceType; private String ip; private String isp; private Long rxBw; private String serviceType; private Long txBw; /** * AliUid. */ public Builder aliUid(Long aliUid) { this.aliUid = aliUid; return this; } /** * BizTime. */ public Builder bizTime(String bizTime) { this.bizTime = bizTime; return this; } /** * EnsRegionId. */ public Builder ensRegionId(String ensRegionId) { this.ensRegionId = ensRegionId; return this; } /** * FlowType. */ public Builder flowType(Integer flowType) { this.flowType = flowType; return this; } /** * InstanceId. */ public Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } /** * InstanceType. */ public Builder instanceType(String instanceType) { this.instanceType = instanceType; return this; } /** * Ip. */ public Builder ip(String ip) { this.ip = ip; return this; } /** * Isp. */ public Builder isp(String isp) { this.isp = isp; return this; } /** * RxBw. */ public Builder rxBw(Long rxBw) { this.rxBw = rxBw; return this; } /** * ServiceType. */ public Builder serviceType(String serviceType) { this.serviceType = serviceType; return this; } /** * TxBw. */ public Builder txBw(Long txBw) { this.txBw = txBw; return this; } public Bandwidths build() { return new Bandwidths(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy