com.huaweicloud.sdk.cdn.v1.model.UpdateBlackWhiteListRequest Maven / Gradle / Ivy
package com.huaweicloud.sdk.cdn.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Request Object
*/
public class UpdateBlackWhiteListRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "domain_id")
private String domainId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "enterprise_project_id")
private String enterpriseProjectId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "body")
private BlackWhiteListBody body;
public UpdateBlackWhiteListRequest withDomainId(String domainId) {
this.domainId = domainId;
return this;
}
/**
* 需要设置IP黑白名单的域名id。获取方法请参见查询加速域名。
* @return domainId
*/
public String getDomainId() {
return domainId;
}
public void setDomainId(String domainId) {
this.domainId = domainId;
}
public UpdateBlackWhiteListRequest withEnterpriseProjectId(String enterpriseProjectId) {
this.enterpriseProjectId = enterpriseProjectId;
return this;
}
/**
* 当用户开启企业项目功能时,该参数生效,表示修改当前企业项目下加速域名的配置,\"all\"代表所有项目。注意:当使用子帐号调用接口时,该参数必传。 您可以通过调用企业项目管理服务(EPS)的查询企业项目列表接口(ListEnterpriseProject)查询企业项目id。
* @return enterpriseProjectId
*/
public String getEnterpriseProjectId() {
return enterpriseProjectId;
}
public void setEnterpriseProjectId(String enterpriseProjectId) {
this.enterpriseProjectId = enterpriseProjectId;
}
public UpdateBlackWhiteListRequest withBody(BlackWhiteListBody body) {
this.body = body;
return this;
}
public UpdateBlackWhiteListRequest withBody(Consumer bodySetter) {
if (this.body == null) {
this.body = new BlackWhiteListBody();
bodySetter.accept(this.body);
}
return this;
}
/**
* Get body
* @return body
*/
public BlackWhiteListBody getBody() {
return body;
}
public void setBody(BlackWhiteListBody body) {
this.body = body;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
UpdateBlackWhiteListRequest that = (UpdateBlackWhiteListRequest) obj;
return Objects.equals(this.domainId, that.domainId)
&& Objects.equals(this.enterpriseProjectId, that.enterpriseProjectId)
&& Objects.equals(this.body, that.body);
}
@Override
public int hashCode() {
return Objects.hash(domainId, enterpriseProjectId, body);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateBlackWhiteListRequest {\n");
sb.append(" domainId: ").append(toIndentedString(domainId)).append("\n");
sb.append(" enterpriseProjectId: ").append(toIndentedString(enterpriseProjectId)).append("\n");
sb.append(" body: ").append(toIndentedString(body)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}