
com.tencentcloudapi.cdb.v20170320.models.DescribeAuditPoliciesRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.tencentcloudapi.cdb.v20170320.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeAuditPoliciesRequest extends AbstractModel {
/**
* Instance ID in the format of cdb-c1nl9rpv or cdbro-c1nl9rpv. It is the same as the instance ID displayed in the TencentDB console.
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* Audit policy ID.
*/
@SerializedName("PolicyId")
@Expose
private String PolicyId;
/**
* Audit policy name. Fuzzy match query is supported.
*/
@SerializedName("PolicyName")
@Expose
private String PolicyName;
/**
* Number of entries per page. Value range: 1-100. Default value: 20.
*/
@SerializedName("Limit")
@Expose
private Long Limit;
/**
* Pagination offset
*/
@SerializedName("Offset")
@Expose
private Long Offset;
/**
* Audit rule ID, which can be used to query its associated audit policies.
Note: At least one of the parameters (“RuleId”, “PolicyId”, PolicyId”, or “PolicyName”) must be passed in.
*/
@SerializedName("RuleId")
@Expose
private String RuleId;
/**
* Instance name
*/
@SerializedName("InstanceName")
@Expose
private String InstanceName;
/**
* Get Instance ID in the format of cdb-c1nl9rpv or cdbro-c1nl9rpv. It is the same as the instance ID displayed in the TencentDB console.
* @return InstanceId Instance ID in the format of cdb-c1nl9rpv or cdbro-c1nl9rpv. It is the same as the instance ID displayed in the TencentDB console.
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set Instance ID in the format of cdb-c1nl9rpv or cdbro-c1nl9rpv. It is the same as the instance ID displayed in the TencentDB console.
* @param InstanceId Instance ID in the format of cdb-c1nl9rpv or cdbro-c1nl9rpv. It is the same as the instance ID displayed in the TencentDB console.
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get Audit policy ID.
* @return PolicyId Audit policy ID.
*/
public String getPolicyId() {
return this.PolicyId;
}
/**
* Set Audit policy ID.
* @param PolicyId Audit policy ID.
*/
public void setPolicyId(String PolicyId) {
this.PolicyId = PolicyId;
}
/**
* Get Audit policy name. Fuzzy match query is supported.
* @return PolicyName Audit policy name. Fuzzy match query is supported.
*/
public String getPolicyName() {
return this.PolicyName;
}
/**
* Set Audit policy name. Fuzzy match query is supported.
* @param PolicyName Audit policy name. Fuzzy match query is supported.
*/
public void setPolicyName(String PolicyName) {
this.PolicyName = PolicyName;
}
/**
* Get Number of entries per page. Value range: 1-100. Default value: 20.
* @return Limit Number of entries per page. Value range: 1-100. Default value: 20.
*/
public Long getLimit() {
return this.Limit;
}
/**
* Set Number of entries per page. Value range: 1-100. Default value: 20.
* @param Limit Number of entries per page. Value range: 1-100. Default value: 20.
*/
public void setLimit(Long Limit) {
this.Limit = Limit;
}
/**
* Get Pagination offset
* @return Offset Pagination offset
*/
public Long getOffset() {
return this.Offset;
}
/**
* Set Pagination offset
* @param Offset Pagination offset
*/
public void setOffset(Long Offset) {
this.Offset = Offset;
}
/**
* Get Audit rule ID, which can be used to query its associated audit policies.
Note: At least one of the parameters (“RuleId”, “PolicyId”, PolicyId”, or “PolicyName”) must be passed in.
* @return RuleId Audit rule ID, which can be used to query its associated audit policies.
Note: At least one of the parameters (“RuleId”, “PolicyId”, PolicyId”, or “PolicyName”) must be passed in.
*/
public String getRuleId() {
return this.RuleId;
}
/**
* Set Audit rule ID, which can be used to query its associated audit policies.
Note: At least one of the parameters (“RuleId”, “PolicyId”, PolicyId”, or “PolicyName”) must be passed in.
* @param RuleId Audit rule ID, which can be used to query its associated audit policies.
Note: At least one of the parameters (“RuleId”, “PolicyId”, PolicyId”, or “PolicyName”) must be passed in.
*/
public void setRuleId(String RuleId) {
this.RuleId = RuleId;
}
/**
* Get Instance name
* @return InstanceName Instance name
*/
public String getInstanceName() {
return this.InstanceName;
}
/**
* Set Instance name
* @param InstanceName Instance name
*/
public void setInstanceName(String InstanceName) {
this.InstanceName = InstanceName;
}
public DescribeAuditPoliciesRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeAuditPoliciesRequest(DescribeAuditPoliciesRequest source) {
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.PolicyId != null) {
this.PolicyId = new String(source.PolicyId);
}
if (source.PolicyName != null) {
this.PolicyName = new String(source.PolicyName);
}
if (source.Limit != null) {
this.Limit = new Long(source.Limit);
}
if (source.Offset != null) {
this.Offset = new Long(source.Offset);
}
if (source.RuleId != null) {
this.RuleId = new String(source.RuleId);
}
if (source.InstanceName != null) {
this.InstanceName = new String(source.InstanceName);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.setParamSimple(map, prefix + "PolicyId", this.PolicyId);
this.setParamSimple(map, prefix + "PolicyName", this.PolicyName);
this.setParamSimple(map, prefix + "Limit", this.Limit);
this.setParamSimple(map, prefix + "Offset", this.Offset);
this.setParamSimple(map, prefix + "RuleId", this.RuleId);
this.setParamSimple(map, prefix + "InstanceName", this.InstanceName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy