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

com.aliyun.sdk.service.polardb20170801.models.DeleteMaskingRulesRequest 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 DeleteMaskingRulesRequest} extends {@link RequestModel}
 *
 * 

DeleteMaskingRulesRequest

*/ public class DeleteMaskingRulesRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DBClusterId") @com.aliyun.core.annotation.Validation(required = true) private String DBClusterId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("RuleNameList") @com.aliyun.core.annotation.Validation(required = true) private String ruleNameList; private DeleteMaskingRulesRequest(Builder builder) { super(builder); this.DBClusterId = builder.DBClusterId; this.ruleNameList = builder.ruleNameList; } public static Builder builder() { return new Builder(); } public static DeleteMaskingRulesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return DBClusterId */ public String getDBClusterId() { return this.DBClusterId; } /** * @return ruleNameList */ public String getRuleNameList() { return this.ruleNameList; } public static final class Builder extends Request.Builder { private String DBClusterId; private String ruleNameList; private Builder() { super(); } private Builder(DeleteMaskingRulesRequest request) { super(request); this.DBClusterId = request.DBClusterId; this.ruleNameList = request.ruleNameList; } /** *

The ID of the cluster.

*
*

You can call the DescribeDBClusters operation to query the details of the clusters that belong to your Alibaba Cloud account, such as cluster IDs.

*
*

This parameter is required.

* * example: *

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

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

The name of the masking rule. You can specify multiple masking rules at a time. Separate the masking rules with commas (,).

*
*

You can call the DescribeMaskingRules operation to query details of all the masking rules for a specified cluster, such as the names of the masking rules.

*
*

This parameter is required.

* * example: *

testrule

*/ public Builder ruleNameList(String ruleNameList) { this.putQueryParameter("RuleNameList", ruleNameList); this.ruleNameList = ruleNameList; return this; } @Override public DeleteMaskingRulesRequest build() { return new DeleteMaskingRulesRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy