com.aliyun.pds20220301.models.DeleteGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class DeleteGroupRequest extends TeaModel {
/**
* The group ID.
* This parameter is required.
*
* example:
* g123
*/
@NameInMap("group_id")
public String groupId;
public static DeleteGroupRequest build(java.util.Map map) throws Exception {
DeleteGroupRequest self = new DeleteGroupRequest();
return TeaModel.build(map, self);
}
public DeleteGroupRequest setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
}