com.aliyun.sdk.service.cloudapi20160714.models.DescribeDeployedApisRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeDeployedApisRequest} extends {@link RequestModel}
*
* DescribeDeployedApisRequest
*/
public class DescribeDeployedApisRequest extends Request {
@Query
@NameInMap("ApiId")
private String apiId;
@Query
@NameInMap("ApiMethod")
private String apiMethod;
@Query
@NameInMap("ApiName")
private String apiName;
@Query
@NameInMap("ApiPath")
private String apiPath;
@Query
@NameInMap("EnableTagAuth")
private Boolean enableTagAuth;
@Query
@NameInMap("GroupId")
private String groupId;
@Query
@NameInMap("PageNumber")
private Integer pageNumber;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("SecurityToken")
private String securityToken;
@Query
@NameInMap("StageName")
private String stageName;
@Query
@NameInMap("Tag")
private java.util.List < Tag> tag;
private DescribeDeployedApisRequest(Builder builder) {
super(builder);
this.apiId = builder.apiId;
this.apiMethod = builder.apiMethod;
this.apiName = builder.apiName;
this.apiPath = builder.apiPath;
this.enableTagAuth = builder.enableTagAuth;
this.groupId = builder.groupId;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.securityToken = builder.securityToken;
this.stageName = builder.stageName;
this.tag = builder.tag;
}
public static Builder builder() {
return new Builder();
}
public static DescribeDeployedApisRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return apiId
*/
public String getApiId() {
return this.apiId;
}
/**
* @return apiMethod
*/
public String getApiMethod() {
return this.apiMethod;
}
/**
* @return apiName
*/
public String getApiName() {
return this.apiName;
}
/**
* @return apiPath
*/
public String getApiPath() {
return this.apiPath;
}
/**
* @return enableTagAuth
*/
public Boolean getEnableTagAuth() {
return this.enableTagAuth;
}
/**
* @return groupId
*/
public String getGroupId() {
return this.groupId;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return securityToken
*/
public String getSecurityToken() {
return this.securityToken;
}
/**
* @return stageName
*/
public String getStageName() {
return this.stageName;
}
/**
* @return tag
*/
public java.util.List < Tag> getTag() {
return this.tag;
}
public static final class Builder extends Request.Builder {
private String apiId;
private String apiMethod;
private String apiName;
private String apiPath;
private Boolean enableTagAuth;
private String groupId;
private Integer pageNumber;
private Integer pageSize;
private String securityToken;
private String stageName;
private java.util.List < Tag> tag;
private Builder() {
super();
}
private Builder(DescribeDeployedApisRequest request) {
super(request);
this.apiId = request.apiId;
this.apiMethod = request.apiMethod;
this.apiName = request.apiName;
this.apiPath = request.apiPath;
this.enableTagAuth = request.enableTagAuth;
this.groupId = request.groupId;
this.pageNumber = request.pageNumber;
this.pageSize = request.pageSize;
this.securityToken = request.securityToken;
this.stageName = request.stageName;
this.tag = request.tag;
}
/**
* ApiId.
*/
public Builder apiId(String apiId) {
this.putQueryParameter("ApiId", apiId);
this.apiId = apiId;
return this;
}
/**
* ApiMethod.
*/
public Builder apiMethod(String apiMethod) {
this.putQueryParameter("ApiMethod", apiMethod);
this.apiMethod = apiMethod;
return this;
}
/**
* ApiName.
*/
public Builder apiName(String apiName) {
this.putQueryParameter("ApiName", apiName);
this.apiName = apiName;
return this;
}
/**
* ApiPath.
*/
public Builder apiPath(String apiPath) {
this.putQueryParameter("ApiPath", apiPath);
this.apiPath = apiPath;
return this;
}
/**
* EnableTagAuth.
*/
public Builder enableTagAuth(Boolean enableTagAuth) {
this.putQueryParameter("EnableTagAuth", enableTagAuth);
this.enableTagAuth = enableTagAuth;
return this;
}
/**
* GroupId.
*/
public Builder groupId(String groupId) {
this.putQueryParameter("GroupId", groupId);
this.groupId = groupId;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* SecurityToken.
*/
public Builder securityToken(String securityToken) {
this.putQueryParameter("SecurityToken", securityToken);
this.securityToken = securityToken;
return this;
}
/**
* StageName.
*/
public Builder stageName(String stageName) {
this.putQueryParameter("StageName", stageName);
this.stageName = stageName;
return this;
}
/**
* Tag.
*/
public Builder tag(java.util.List < Tag> tag) {
this.putQueryParameter("Tag", tag);
this.tag = tag;
return this;
}
@Override
public DescribeDeployedApisRequest build() {
return new DescribeDeployedApisRequest(this);
}
}
public static class Tag extends TeaModel {
@NameInMap("Key")
private String key;
@NameInMap("Value")
private String value;
private Tag(Builder builder) {
this.key = builder.key;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Tag create() {
return builder().build();
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String key;
private String value;
/**
* Key.
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* Value.
*/
public Builder value(String value) {
this.value = value;
return this;
}
public Tag build() {
return new Tag(this);
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy