com.aliyun.devs20230714.models.ListConnectionsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devs20230714 Show documentation
Show all versions of devs20230714 Show documentation
Alibaba Cloud Devs (20230714) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.devs20230714.models;
import com.aliyun.tea.*;
public class ListConnectionsRequest extends TeaModel {
@NameInMap("keyword")
public String keyword;
@NameInMap("labelSelector")
public java.util.List labelSelector;
@NameInMap("pageNumber")
public Long pageNumber;
@NameInMap("pageSize")
public Long pageSize;
public static ListConnectionsRequest build(java.util.Map map) throws Exception {
ListConnectionsRequest self = new ListConnectionsRequest();
return TeaModel.build(map, self);
}
public ListConnectionsRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public ListConnectionsRequest setLabelSelector(java.util.List labelSelector) {
this.labelSelector = labelSelector;
return this;
}
public java.util.List getLabelSelector() {
return this.labelSelector;
}
public ListConnectionsRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ListConnectionsRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
}