com.aliyun.sas20181203.models.DescribeDomainDetailRequest 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 DescribeDomainDetailRequest extends TeaModel {
/**
* The domain name or the name of website that you want to query.
*
* Fuzzy match is not supported. You must enter a complete domain name or a website.
*
* This parameter is required.
*
* example:
* example.com
*/
@NameInMap("DomainName")
public String domainName;
/**
* The source IP address of the request.
*
* example:
* 1.2.XX.XX
*/
@NameInMap("SourceIp")
public String sourceIp;
public static DescribeDomainDetailRequest build(java.util.Map map) throws Exception {
DescribeDomainDetailRequest self = new DescribeDomainDetailRequest();
return TeaModel.build(map, self);
}
public DescribeDomainDetailRequest setDomainName(String domainName) {
this.domainName = domainName;
return this;
}
public String getDomainName() {
return this.domainName;
}
public DescribeDomainDetailRequest setSourceIp(String sourceIp) {
this.sourceIp = sourceIp;
return this;
}
public String getSourceIp() {
return this.sourceIp;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy