![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.sdk.service.edas20170801.models.UpdateApplicationBaseInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-edas20170801 Show documentation
Show all versions of alibabacloud-edas20170801 Show documentation
Alibaba Cloud Edas (20170801) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.edas20170801.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UpdateApplicationBaseInfoRequest} extends {@link RequestModel}
*
* UpdateApplicationBaseInfoRequest
*/
public class UpdateApplicationBaseInfoRequest extends Request {
@Query
@NameInMap("AppId")
@Validation(required = true)
private String appId;
@Query
@NameInMap("AppName")
private String appName;
@Query
@NameInMap("Desc")
private String desc;
@Query
@NameInMap("Owner")
private String owner;
private UpdateApplicationBaseInfoRequest(Builder builder) {
super(builder);
this.appId = builder.appId;
this.appName = builder.appName;
this.desc = builder.desc;
this.owner = builder.owner;
}
public static Builder builder() {
return new Builder();
}
public static UpdateApplicationBaseInfoRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return appId
*/
public String getAppId() {
return this.appId;
}
/**
* @return appName
*/
public String getAppName() {
return this.appName;
}
/**
* @return desc
*/
public String getDesc() {
return this.desc;
}
/**
* @return owner
*/
public String getOwner() {
return this.owner;
}
public static final class Builder extends Request.Builder {
private String appId;
private String appName;
private String desc;
private String owner;
private Builder() {
super();
}
private Builder(UpdateApplicationBaseInfoRequest request) {
super(request);
this.appId = request.appId;
this.appName = request.appName;
this.desc = request.desc;
this.owner = request.owner;
}
/**
* The ID of the application.
*/
public Builder appId(String appId) {
this.putQueryParameter("AppId", appId);
this.appId = appId;
return this;
}
/**
* The name of the application. The name must start with a letter, and can contain letters, digits, underscores (\_), and hyphens (-). The name can be up to 36 characters in length.
*/
public Builder appName(String appName) {
this.putQueryParameter("AppName", appName);
this.appName = appName;
return this;
}
/**
* The description of the application. The description can be up to 256 characters in length.
*/
public Builder desc(String desc) {
this.putQueryParameter("Desc", desc);
this.desc = desc;
return this;
}
/**
* The owner of the application. The value can be up to 127 characters in length.
*/
public Builder owner(String owner) {
this.putQueryParameter("Owner", owner);
this.owner = owner;
return this;
}
@Override
public UpdateApplicationBaseInfoRequest build() {
return new UpdateApplicationBaseInfoRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy