
com.tencentcloudapi.dsgc.v20190723.models.DescribeDSPADiscoveryRulesRequest 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.dsgc.v20190723.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 DescribeDSPADiscoveryRulesRequest extends AbstractModel {
/**
* DSPA实例ID
*/
@SerializedName("DspaId")
@Expose
private String DspaId;
/**
* 偏移量
*/
@SerializedName("Offset")
@Expose
private Long Offset;
/**
* 返回上限,默认值10, 最大值10000。
*/
@SerializedName("Limit")
@Expose
private Long Limit;
/**
* 规则ID
*/
@SerializedName("RuleId")
@Expose
private Long RuleId;
/**
* 规则名称
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 是否需要过滤别名
*/
@SerializedName("FilterRuleSource")
@Expose
private Boolean FilterRuleSource;
/**
* Get DSPA实例ID
* @return DspaId DSPA实例ID
*/
public String getDspaId() {
return this.DspaId;
}
/**
* Set DSPA实例ID
* @param DspaId DSPA实例ID
*/
public void setDspaId(String DspaId) {
this.DspaId = DspaId;
}
/**
* Get 偏移量
* @return Offset 偏移量
*/
public Long getOffset() {
return this.Offset;
}
/**
* Set 偏移量
* @param Offset 偏移量
*/
public void setOffset(Long Offset) {
this.Offset = Offset;
}
/**
* Get 返回上限,默认值10, 最大值10000。
* @return Limit 返回上限,默认值10, 最大值10000。
*/
public Long getLimit() {
return this.Limit;
}
/**
* Set 返回上限,默认值10, 最大值10000。
* @param Limit 返回上限,默认值10, 最大值10000。
*/
public void setLimit(Long Limit) {
this.Limit = Limit;
}
/**
* Get 规则ID
* @return RuleId 规则ID
*/
public Long getRuleId() {
return this.RuleId;
}
/**
* Set 规则ID
* @param RuleId 规则ID
*/
public void setRuleId(Long RuleId) {
this.RuleId = RuleId;
}
/**
* Get 规则名称
* @return Name 规则名称
*/
public String getName() {
return this.Name;
}
/**
* Set 规则名称
* @param Name 规则名称
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 是否需要过滤别名
* @return FilterRuleSource 是否需要过滤别名
*/
public Boolean getFilterRuleSource() {
return this.FilterRuleSource;
}
/**
* Set 是否需要过滤别名
* @param FilterRuleSource 是否需要过滤别名
*/
public void setFilterRuleSource(Boolean FilterRuleSource) {
this.FilterRuleSource = FilterRuleSource;
}
public DescribeDSPADiscoveryRulesRequest() {
}
/**
* 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 DescribeDSPADiscoveryRulesRequest(DescribeDSPADiscoveryRulesRequest source) {
if (source.DspaId != null) {
this.DspaId = new String(source.DspaId);
}
if (source.Offset != null) {
this.Offset = new Long(source.Offset);
}
if (source.Limit != null) {
this.Limit = new Long(source.Limit);
}
if (source.RuleId != null) {
this.RuleId = new Long(source.RuleId);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.FilterRuleSource != null) {
this.FilterRuleSource = new Boolean(source.FilterRuleSource);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "DspaId", this.DspaId);
this.setParamSimple(map, prefix + "Offset", this.Offset);
this.setParamSimple(map, prefix + "Limit", this.Limit);
this.setParamSimple(map, prefix + "RuleId", this.RuleId);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "FilterRuleSource", this.FilterRuleSource);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy