![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.sdk.service.edas20170801.models.InsertServiceGroupRequest 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 InsertServiceGroupRequest} extends {@link RequestModel}
*
* InsertServiceGroupRequest
*/
public class InsertServiceGroupRequest extends Request {
@Query
@NameInMap("GroupName")
@Validation(required = true)
private String groupName;
private InsertServiceGroupRequest(Builder builder) {
super(builder);
this.groupName = builder.groupName;
}
public static Builder builder() {
return new Builder();
}
public static InsertServiceGroupRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return groupName
*/
public String getGroupName() {
return this.groupName;
}
public static final class Builder extends Request.Builder {
private String groupName;
private Builder() {
super();
}
private Builder(InsertServiceGroupRequest request) {
super(request);
this.groupName = request.groupName;
}
/**
* The name of the service group that you want to create.
*/
public Builder groupName(String groupName) {
this.putQueryParameter("GroupName", groupName);
this.groupName = groupName;
return this;
}
@Override
public InsertServiceGroupRequest build() {
return new InsertServiceGroupRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy