com.aliyun.sas20181203.models.GetCommonSwitchConfigRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class GetCommonSwitchConfigRequest extends TeaModel {
/**
* The type of the common switch.
*
* You can call the ListClientUserDefineRules or ListSystemClientRules operation to obtain the switch type from the response parameter SwitchId.
*
*
* example:
* USER-DEFINE-RULE-SWITCH-TYPE_180****
*/
@NameInMap("Type")
public String type;
public static GetCommonSwitchConfigRequest build(java.util.Map map) throws Exception {
GetCommonSwitchConfigRequest self = new GetCommonSwitchConfigRequest();
return TeaModel.build(map, self);
}
public GetCommonSwitchConfigRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy