com.aliyun.rds20140815.models.DescribeParameterGroupsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rds20140815 Show documentation
Show all versions of rds20140815 Show documentation
Alibaba Cloud rds (20140815) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class DescribeParameterGroupsRequest extends TeaModel {
/**
* Specifies whether to return the parameter overview.
*
* - false (default): The parameter overview is returned.
* - true: The parameter overview is not returned.
*
*
* example:
* false
*/
@NameInMap("EnableDetail")
public Boolean enableDetail;
@NameInMap("OwnerId")
public Long ownerId;
/**
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
* This parameter is required.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
/**
* The ID of the resource group.
*
* example:
* rg-acfmy****
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
public static DescribeParameterGroupsRequest build(java.util.Map map) throws Exception {
DescribeParameterGroupsRequest self = new DescribeParameterGroupsRequest();
return TeaModel.build(map, self);
}
public DescribeParameterGroupsRequest setEnableDetail(Boolean enableDetail) {
this.enableDetail = enableDetail;
return this;
}
public Boolean getEnableDetail() {
return this.enableDetail;
}
public DescribeParameterGroupsRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public DescribeParameterGroupsRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public DescribeParameterGroupsRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public DescribeParameterGroupsRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public DescribeParameterGroupsRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
}