com.aliyun.eventbridge.models.SourceHttpEventResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-client Show documentation
Show all versions of eventbridge-client Show documentation
Alibaba Cloud eventbridge SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eventbridge.models;
import com.aliyun.tea.*;
public class SourceHttpEventResponse extends TeaModel {
@NameInMap("Type")
@Validation(required = true)
public String type;
@NameInMap("Method")
@Validation(required = true)
public java.util.List method;
@NameInMap("SecurityConfig")
@Validation(required = true)
public String securityConfig;
@NameInMap("Ip")
public java.util.List ip;
@NameInMap("Referer")
public java.util.List referer;
@NameInMap("PublicWebHookUrl")
public java.util.List publicWebHookUrl;
@NameInMap("VpcWebHookUrl")
public java.util.List vpcWebHookUrl;
public static SourceHttpEventResponse build(java.util.Map map) {
SourceHttpEventResponse self = new SourceHttpEventResponse();
return TeaModel.build(map, self);
}
public SourceHttpEventResponse setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public SourceHttpEventResponse setMethod(java.util.List method) {
this.method = method;
return this;
}
public java.util.List getMethod() {
return this.method;
}
public SourceHttpEventResponse setSecurityConfig(String securityConfig) {
this.securityConfig = securityConfig;
return this;
}
public String getSecurityConfig() {
return this.securityConfig;
}
public SourceHttpEventResponse setIp(java.util.List ip) {
this.ip = ip;
return this;
}
public java.util.List getIp() {
return this.ip;
}
public SourceHttpEventResponse setReferer(java.util.List referer) {
this.referer = referer;
return this;
}
public java.util.List getReferer() {
return this.referer;
}
public SourceHttpEventResponse setPublicWebHookUrl(java.util.List publicWebHookUrl) {
this.publicWebHookUrl = publicWebHookUrl;
return this;
}
public java.util.List getPublicWebHookUrl() {
return this.publicWebHookUrl;
}
public SourceHttpEventResponse setVpcWebHookUrl(java.util.List vpcWebHookUrl) {
this.vpcWebHookUrl = vpcWebHookUrl;
return this;
}
public java.util.List getVpcWebHookUrl() {
return this.vpcWebHookUrl;
}
}