com.aliyuncs.cdn.model.v20180510.DescribeUserDomainsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-cdn Show documentation
Show all versions of aliyun-java-sdk-cdn Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cdn.model.v20180510;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
/**
* @author auto create
* @version
*/
public class DescribeUserDomainsRequest extends RpcAcsRequest {
public DescribeUserDomainsRequest() {
super("Cdn", "2018-05-10", "DescribeUserDomains");
}
private String funcFilter;
private String domainName;
private Long ownerId;
private String funcId;
private Integer pageNumber;
private String domainStatus;
private String domainSearchType;
private Boolean checkDomainShow;
private String resourceGroupId;
private String securityToken;
private String cdnType;
private Integer pageSize;
private List tags;
public String getFuncFilter() {
return this.funcFilter;
}
public void setFuncFilter(String funcFilter) {
this.funcFilter = funcFilter;
if(funcFilter != null){
putQueryParameter("FuncFilter", funcFilter);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getFuncId() {
return this.funcId;
}
public void setFuncId(String funcId) {
this.funcId = funcId;
if(funcId != null){
putQueryParameter("FuncId", funcId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getDomainStatus() {
return this.domainStatus;
}
public void setDomainStatus(String domainStatus) {
this.domainStatus = domainStatus;
if(domainStatus != null){
putQueryParameter("DomainStatus", domainStatus);
}
}
public String getDomainSearchType() {
return this.domainSearchType;
}
public void setDomainSearchType(String domainSearchType) {
this.domainSearchType = domainSearchType;
if(domainSearchType != null){
putQueryParameter("DomainSearchType", domainSearchType);
}
}
public Boolean getCheckDomainShow() {
return this.checkDomainShow;
}
public void setCheckDomainShow(Boolean checkDomainShow) {
this.checkDomainShow = checkDomainShow;
if(checkDomainShow != null){
putQueryParameter("CheckDomainShow", checkDomainShow.toString());
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getBizSecurityToken() {
return this.securityToken;
}
public void setBizSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
/**
* @deprecated use getBizSecurityToken instead of this.
*/
@Deprecated
public String getSecurityToken() {
return this.securityToken;
}
/**
* @deprecated use setBizSecurityToken instead of this.
*/
@Deprecated
public void setSecurityToken(String securityToken) {
this.securityToken = securityToken;
if(securityToken != null){
putQueryParameter("SecurityToken", securityToken);
}
}
public String getCdnType() {
return this.cdnType;
}
public void setCdnType(String cdnType) {
this.cdnType = cdnType;
if(cdnType != null){
putQueryParameter("CdnType", cdnType);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public List getTags() {
return this.tags;
}
public void setTags(List tags) {
this.tags = tags;
if (tags != null) {
for (int depth1 = 0; depth1 < tags.size(); depth1++) {
putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue());
putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey());
}
}
}
public static class Tag {
private String value;
private String key;
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
@Override
public Class getResponseClass() {
return DescribeUserDomainsResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy