All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.dataphin_public20230630.models.RemoveUserGroupMemberRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.dataphin_public20230630.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link RemoveUserGroupMemberRequest} extends {@link RequestModel}
 *
 * 

RemoveUserGroupMemberRequest

*/ public class RemoveUserGroupMemberRequest extends Request { @com.aliyun.core.annotation.Host @com.aliyun.core.annotation.NameInMap("RegionId") private String regionId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OpTenantId") @com.aliyun.core.annotation.Validation(required = true) private Long opTenantId; @com.aliyun.core.annotation.Body @com.aliyun.core.annotation.NameInMap("RemoveCommand") @com.aliyun.core.annotation.Validation(required = true) private RemoveCommand removeCommand; private RemoveUserGroupMemberRequest(Builder builder) { super(builder); this.regionId = builder.regionId; this.opTenantId = builder.opTenantId; this.removeCommand = builder.removeCommand; } public static Builder builder() { return new Builder(); } public static RemoveUserGroupMemberRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return opTenantId */ public Long getOpTenantId() { return this.opTenantId; } /** * @return removeCommand */ public RemoveCommand getRemoveCommand() { return this.removeCommand; } public static final class Builder extends Request.Builder { private String regionId; private Long opTenantId; private RemoveCommand removeCommand; private Builder() { super(); } private Builder(RemoveUserGroupMemberRequest request) { super(request); this.regionId = request.regionId; this.opTenantId = request.opTenantId; this.removeCommand = request.removeCommand; } /** * RegionId. */ public Builder regionId(String regionId) { this.putHostParameter("RegionId", regionId); this.regionId = regionId; return this; } /** *

This parameter is required.

* * example: *

30001011

*/ public Builder opTenantId(Long opTenantId) { this.putQueryParameter("OpTenantId", opTenantId); this.opTenantId = opTenantId; return this; } /** *

This parameter is required.

*/ public Builder removeCommand(RemoveCommand removeCommand) { String removeCommandShrink = shrink(removeCommand, "RemoveCommand", "json"); this.putBodyParameter("RemoveCommand", removeCommandShrink); this.removeCommand = removeCommand; return this; } @Override public RemoveUserGroupMemberRequest build() { return new RemoveUserGroupMemberRequest(this); } } /** * * {@link RemoveUserGroupMemberRequest} extends {@link TeaModel} * *

RemoveUserGroupMemberRequest

*/ public static class RemoveCommand extends TeaModel { @com.aliyun.core.annotation.NameInMap("UserGroupId") @com.aliyun.core.annotation.Validation(required = true) private String userGroupId; @com.aliyun.core.annotation.NameInMap("UserIdList") @com.aliyun.core.annotation.Validation(required = true) private java.util.List userIdList; private RemoveCommand(Builder builder) { this.userGroupId = builder.userGroupId; this.userIdList = builder.userIdList; } public static Builder builder() { return new Builder(); } public static RemoveCommand create() { return builder().build(); } /** * @return userGroupId */ public String getUserGroupId() { return this.userGroupId; } /** * @return userIdList */ public java.util.List getUserIdList() { return this.userIdList; } public static final class Builder { private String userGroupId; private java.util.List userIdList; /** *

This parameter is required.

* * example: *

2311

*/ public Builder userGroupId(String userGroupId) { this.userGroupId = userGroupId; return this; } /** *

This parameter is required.

*/ public Builder userIdList(java.util.List userIdList) { this.userIdList = userIdList; return this; } public RemoveCommand build() { return new RemoveCommand(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy