All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.polardb20170801.models.DescribeGlobalDatabaseNetworksRequest Maven / Gradle / Ivy

There is a newer version: 4.0.28
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.polardb20170801.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link DescribeGlobalDatabaseNetworksRequest} extends {@link RequestModel}
 *
 * 

DescribeGlobalDatabaseNetworksRequest

*/ public class DescribeGlobalDatabaseNetworksRequest extends Request { @com.aliyun.core.annotation.Host @com.aliyun.core.annotation.NameInMap("RegionId") private String regionId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DBClusterId") private String DBClusterId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("FilterRegion") private String filterRegion; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("GDNDescription") private String GDNDescription; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("GDNId") private String GDNId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerAccount") private String ownerAccount; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNumber") private Integer pageNumber; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ResourceGroupId") private String resourceGroupId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ResourceOwnerAccount") private String resourceOwnerAccount; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ResourceOwnerId") private Long resourceOwnerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("SecurityToken") private String securityToken; private DescribeGlobalDatabaseNetworksRequest(Builder builder) { super(builder); this.regionId = builder.regionId; this.DBClusterId = builder.DBClusterId; this.filterRegion = builder.filterRegion; this.GDNDescription = builder.GDNDescription; this.GDNId = builder.GDNId; this.ownerAccount = builder.ownerAccount; this.ownerId = builder.ownerId; this.pageNumber = builder.pageNumber; this.pageSize = builder.pageSize; this.resourceGroupId = builder.resourceGroupId; this.resourceOwnerAccount = builder.resourceOwnerAccount; this.resourceOwnerId = builder.resourceOwnerId; this.securityToken = builder.securityToken; } public static Builder builder() { return new Builder(); } public static DescribeGlobalDatabaseNetworksRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return DBClusterId */ public String getDBClusterId() { return this.DBClusterId; } /** * @return filterRegion */ public String getFilterRegion() { return this.filterRegion; } /** * @return GDNDescription */ public String getGDNDescription() { return this.GDNDescription; } /** * @return GDNId */ public String getGDNId() { return this.GDNId; } /** * @return ownerAccount */ public String getOwnerAccount() { return this.ownerAccount; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return pageNumber */ public Integer getPageNumber() { return this.pageNumber; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return resourceGroupId */ public String getResourceGroupId() { return this.resourceGroupId; } /** * @return resourceOwnerAccount */ public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } public static final class Builder extends Request.Builder { private String regionId; private String DBClusterId; private String filterRegion; private String GDNDescription; private String GDNId; private String ownerAccount; private Long ownerId; private Integer pageNumber; private Integer pageSize; private String resourceGroupId; private String resourceOwnerAccount; private Long resourceOwnerId; private String securityToken; private Builder() { super(); } private Builder(DescribeGlobalDatabaseNetworksRequest request) { super(request); this.regionId = request.regionId; this.DBClusterId = request.DBClusterId; this.filterRegion = request.filterRegion; this.GDNDescription = request.GDNDescription; this.GDNId = request.GDNId; this.ownerAccount = request.ownerAccount; this.ownerId = request.ownerId; this.pageNumber = request.pageNumber; this.pageSize = request.pageSize; this.resourceGroupId = request.resourceGroupId; this.resourceOwnerAccount = request.resourceOwnerAccount; this.resourceOwnerId = request.resourceOwnerId; this.securityToken = request.securityToken; } /** * RegionId. */ public Builder regionId(String regionId) { this.putHostParameter("RegionId", regionId); this.regionId = regionId; return this; } /** *

The ID of the cluster.

*
*

You can call the DescribeDBClusters operation to query information about all clusters that are deployed in a specified region, such as the cluster ID.

*
* * example: *

pc-**************

*/ public Builder DBClusterId(String DBClusterId) { this.putQueryParameter("DBClusterId", DBClusterId); this.DBClusterId = DBClusterId; return this; } /** *

Specify the region in which you want to query GDNs. You can create secondary clusters for the GDNs.

* * example: *

cn-beijing

*/ public Builder filterRegion(String filterRegion) { this.putQueryParameter("FilterRegion", filterRegion); this.filterRegion = filterRegion; return this; } /** *

The description of the GDN. The description must meet the following requirements:

*
    *
  • It cannot start with http:// or https://.
  • *
  • It must start with a letter.
  • *
  • It can contain letters, digits, underscores (_), and hyphens (-).
  • *
  • It must be 2 to 126 characters in length.
  • *
* * example: *

test

*/ public Builder GDNDescription(String GDNDescription) { this.putQueryParameter("GDNDescription", GDNDescription); this.GDNDescription = GDNDescription; return this; } /** *

The ID of the GDN.

* * example: *

gdn-****************

*/ public Builder GDNId(String GDNId) { this.putQueryParameter("GDNId", GDNId); this.GDNId = GDNId; return this; } /** * OwnerAccount. */ public Builder ownerAccount(String ownerAccount) { this.putQueryParameter("OwnerAccount", ownerAccount); this.ownerAccount = ownerAccount; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** *

The page number. Default value: 1. The value must be an integer that is greater than 0.

* * example: *

1

*/ public Builder pageNumber(Integer pageNumber) { this.putQueryParameter("PageNumber", pageNumber); this.pageNumber = pageNumber; return this; } /** *

The number of entries to return on each page. Default value: 30. Valid values:

*
    *
  • 30
  • *
  • 50
  • *
  • 100
  • *
* * example: *

30

*/ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** *

The ID of the resource group.

* * example: *

rg-************

*/ public Builder resourceGroupId(String resourceGroupId) { this.putQueryParameter("ResourceGroupId", resourceGroupId); this.resourceGroupId = resourceGroupId; return this; } /** * ResourceOwnerAccount. */ public Builder resourceOwnerAccount(String resourceOwnerAccount) { this.putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount); this.resourceOwnerAccount = resourceOwnerAccount; return this; } /** * ResourceOwnerId. */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.putQueryParameter("SecurityToken", securityToken); this.securityToken = securityToken; return this; } @Override public DescribeGlobalDatabaseNetworksRequest build() { return new DescribeGlobalDatabaseNetworksRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy