com.aliyun.sdk.service.cloudapi20160701.models.ModifyApiGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160701 Show documentation
Show all versions of alibabacloud-cloudapi20160701 Show documentation
Alibaba Cloud CloudAPI (20160701) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160701.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ModifyApiGroupRequest} extends {@link RequestModel}
*
* ModifyApiGroupRequest
*/
public class ModifyApiGroupRequest extends Request {
@Query
@NameInMap("CompatibleFlags")
private String compatibleFlags;
@Query
@NameInMap("CustomTraceConfig")
private String customTraceConfig;
@Query
@NameInMap("DefaultDomain")
private String defaultDomain;
@Query
@NameInMap("Description")
private String description;
@Query
@NameInMap("GroupId")
@Validation(required = true)
private String groupId;
@Query
@NameInMap("GroupName")
private String groupName;
@Query
@NameInMap("PassthroughHeaders")
private String passthroughHeaders;
@Query
@NameInMap("RpcPattern")
private String rpcPattern;
@Query
@NameInMap("SecurityToken")
private String securityToken;
@Query
@NameInMap("UserLogConfig")
private String userLogConfig;
private ModifyApiGroupRequest(Builder builder) {
super(builder);
this.compatibleFlags = builder.compatibleFlags;
this.customTraceConfig = builder.customTraceConfig;
this.defaultDomain = builder.defaultDomain;
this.description = builder.description;
this.groupId = builder.groupId;
this.groupName = builder.groupName;
this.passthroughHeaders = builder.passthroughHeaders;
this.rpcPattern = builder.rpcPattern;
this.securityToken = builder.securityToken;
this.userLogConfig = builder.userLogConfig;
}
public static Builder builder() {
return new Builder();
}
public static ModifyApiGroupRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return compatibleFlags
*/
public String getCompatibleFlags() {
return this.compatibleFlags;
}
/**
* @return customTraceConfig
*/
public String getCustomTraceConfig() {
return this.customTraceConfig;
}
/**
* @return defaultDomain
*/
public String getDefaultDomain() {
return this.defaultDomain;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return groupId
*/
public String getGroupId() {
return this.groupId;
}
/**
* @return groupName
*/
public String getGroupName() {
return this.groupName;
}
/**
* @return passthroughHeaders
*/
public String getPassthroughHeaders() {
return this.passthroughHeaders;
}
/**
* @return rpcPattern
*/
public String getRpcPattern() {
return this.rpcPattern;
}
/**
* @return securityToken
*/
public String getSecurityToken() {
return this.securityToken;
}
/**
* @return userLogConfig
*/
public String getUserLogConfig() {
return this.userLogConfig;
}
public static final class Builder extends Request.Builder {
private String compatibleFlags;
private String customTraceConfig;
private String defaultDomain;
private String description;
private String groupId;
private String groupName;
private String passthroughHeaders;
private String rpcPattern;
private String securityToken;
private String userLogConfig;
private Builder() {
super();
}
private Builder(ModifyApiGroupRequest request) {
super(request);
this.compatibleFlags = request.compatibleFlags;
this.customTraceConfig = request.customTraceConfig;
this.defaultDomain = request.defaultDomain;
this.description = request.description;
this.groupId = request.groupId;
this.groupName = request.groupName;
this.passthroughHeaders = request.passthroughHeaders;
this.rpcPattern = request.rpcPattern;
this.securityToken = request.securityToken;
this.userLogConfig = request.userLogConfig;
}
/**
* CompatibleFlags.
*/
public Builder compatibleFlags(String compatibleFlags) {
this.putQueryParameter("CompatibleFlags", compatibleFlags);
this.compatibleFlags = compatibleFlags;
return this;
}
/**
* CustomTraceConfig.
*/
public Builder customTraceConfig(String customTraceConfig) {
this.putQueryParameter("CustomTraceConfig", customTraceConfig);
this.customTraceConfig = customTraceConfig;
return this;
}
/**
* DefaultDomain.
*/
public Builder defaultDomain(String defaultDomain) {
this.putQueryParameter("DefaultDomain", defaultDomain);
this.defaultDomain = defaultDomain;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.putQueryParameter("Description", description);
this.description = description;
return this;
}
/**
* GroupId.
*/
public Builder groupId(String groupId) {
this.putQueryParameter("GroupId", groupId);
this.groupId = groupId;
return this;
}
/**
* GroupName.
*/
public Builder groupName(String groupName) {
this.putQueryParameter("GroupName", groupName);
this.groupName = groupName;
return this;
}
/**
* PassthroughHeaders.
*/
public Builder passthroughHeaders(String passthroughHeaders) {
this.putQueryParameter("PassthroughHeaders", passthroughHeaders);
this.passthroughHeaders = passthroughHeaders;
return this;
}
/**
* RpcPattern.
*/
public Builder rpcPattern(String rpcPattern) {
this.putQueryParameter("RpcPattern", rpcPattern);
this.rpcPattern = rpcPattern;
return this;
}
/**
* SecurityToken.
*/
public Builder securityToken(String securityToken) {
this.putQueryParameter("SecurityToken", securityToken);
this.securityToken = securityToken;
return this;
}
/**
* UserLogConfig.
*/
public Builder userLogConfig(String userLogConfig) {
this.putQueryParameter("UserLogConfig", userLogConfig);
this.userLogConfig = userLogConfig;
return this;
}
@Override
public ModifyApiGroupRequest build() {
return new ModifyApiGroupRequest(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy