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

com.aliyun.sas20181203.models.FindContainerNetworkConnectShrinkRequest Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class FindContainerNetworkConnectShrinkRequest extends TeaModel {
    /**
     * 

The type of the information that you want to query. Valid values:

*
*

* **EDGE**: connection information

*/ @NameInMap("CriteriaType") public String criteriaType; /** *

The number of the page to return. Default value: **1**.

*/ @NameInMap("CurrentPage") public Long currentPage; /** *

The information about the destination node.

*/ @NameInMap("DstNode") public String dstNodeShrink; /** *

The end time of the network connection.

*/ @NameInMap("EndTime") public Long endTime; /** *

The number of entries to return on each page. Default value: 20. If you leave this parameter empty, 20 entries are returned on each page.

*
*

> We recommend that you do not leave this parameter empty.

*/ @NameInMap("PageSize") public Long pageSize; /** *

The information about the source node.

*/ @NameInMap("SrcNode") public String srcNodeShrink; /** *

The start time of the network connection.

*/ @NameInMap("StartTime") public Long startTime; public static FindContainerNetworkConnectShrinkRequest build(java.util.Map map) throws Exception { FindContainerNetworkConnectShrinkRequest self = new FindContainerNetworkConnectShrinkRequest(); return TeaModel.build(map, self); } public FindContainerNetworkConnectShrinkRequest setCriteriaType(String criteriaType) { this.criteriaType = criteriaType; return this; } public String getCriteriaType() { return this.criteriaType; } public FindContainerNetworkConnectShrinkRequest setCurrentPage(Long currentPage) { this.currentPage = currentPage; return this; } public Long getCurrentPage() { return this.currentPage; } public FindContainerNetworkConnectShrinkRequest setDstNodeShrink(String dstNodeShrink) { this.dstNodeShrink = dstNodeShrink; return this; } public String getDstNodeShrink() { return this.dstNodeShrink; } public FindContainerNetworkConnectShrinkRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public FindContainerNetworkConnectShrinkRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public FindContainerNetworkConnectShrinkRequest setSrcNodeShrink(String srcNodeShrink) { this.srcNodeShrink = srcNodeShrink; return this; } public String getSrcNodeShrink() { return this.srcNodeShrink; } public FindContainerNetworkConnectShrinkRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy