com.jdcloud.sdk.service.vm.model.DescribeQuotasRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vm Show documentation
Show all versions of vm Show documentation
JDCLOUD Open API SDK for Java
/*
* Copyright 2018 JDCLOUD.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.
*
* 配额
* 与配额相关的接口
*
* OpenAPI spec version: v1
* Contact:
*
* NOTE: This class is auto generated by the jdcloud code generator program.
*/
package com.jdcloud.sdk.service.vm.model;
import java.util.List;
import java.util.ArrayList;
import com.jdcloud.sdk.service.common.model.Filter;
import com.jdcloud.sdk.annotation.Required;
import com.jdcloud.sdk.service.JdcloudRequest;
/**
* 查询配额,支持:云主机、镜像、密钥、模板
*/
public class DescribeQuotasRequest extends JdcloudRequest implements java.io.Serializable {
private static final long serialVersionUID = 1L;
/**
* resourceTypes - 资源类型,支持多个[instance,keypair,image,instanceTemplate]
*/
private List filters;
/**
* 地域ID
* Required:true
*/
@Required
private String regionId;
/**
* get resourceTypes - 资源类型,支持多个[instance,keypair,image,instanceTemplate]
*
* @return
*/
public List getFilters() {
return filters;
}
/**
* set resourceTypes - 资源类型,支持多个[instance,keypair,image,instanceTemplate]
*
* @param filters
*/
public void setFilters(List filters) {
this.filters = filters;
}
/**
* get 地域ID
*
* @return
*/
public String getRegionId() {
return regionId;
}
/**
* set 地域ID
*
* @param regionId
*/
public void setRegionId(String regionId) {
this.regionId = regionId;
}
/**
* set resourceTypes - 资源类型,支持多个[instance,keypair,image,instanceTemplate]
*
* @param filters
*/
public DescribeQuotasRequest filters(List filters) {
this.filters = filters;
return this;
}
/**
* set 地域ID
*
* @param regionId
*/
public DescribeQuotasRequest regionId(String regionId) {
this.regionId = regionId;
return this;
}
/**
* add item to resourceTypes - 资源类型,支持多个[instance,keypair,image,instanceTemplate]
*
* @param filter
*/
public void addFilter(Filter filter) {
if (this.filters == null) {
this.filters = new ArrayList<>();
}
this.filters.add(filter);
}
}