com.aliyun.sas20181203.models.DescribeSimilarEventScenariosRequest 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 DescribeSimilarEventScenariosRequest extends TeaModel {
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
/**
* This parameter is required.
*
* example:
* 12321
*/
@NameInMap("SecurityEventId")
public Long securityEventId;
/**
* example:
* 1.2.XX.XX
*/
@NameInMap("SourceIp")
public String sourceIp;
public static DescribeSimilarEventScenariosRequest build(java.util.Map map) throws Exception {
DescribeSimilarEventScenariosRequest self = new DescribeSimilarEventScenariosRequest();
return TeaModel.build(map, self);
}
public DescribeSimilarEventScenariosRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public DescribeSimilarEventScenariosRequest setSecurityEventId(Long securityEventId) {
this.securityEventId = securityEventId;
return this;
}
public Long getSecurityEventId() {
return this.securityEventId;
}
public DescribeSimilarEventScenariosRequest setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
return this;
}
public String getSourceIp() {
return this.sourceIp;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy