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

com.aliyun.sdk.service.ververica20220718.models.DeleteMemberRequest Maven / Gradle / Ivy

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

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

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

DeleteMemberRequest

*/ public class DeleteMemberRequest extends Request { @com.aliyun.core.annotation.Path @com.aliyun.core.annotation.NameInMap("namespace") @com.aliyun.core.annotation.Validation(required = true) private String namespace; @com.aliyun.core.annotation.Path @com.aliyun.core.annotation.NameInMap("member") @com.aliyun.core.annotation.Validation(required = true) private String member; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private DeleteMemberRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.member = builder.member; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static DeleteMemberRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return member */ public String getMember() { return this.member; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder { private String namespace; private String member; private String workspace; private Builder() { super(); } private Builder(DeleteMemberRequest request) { super(request); this.namespace = request.namespace; this.member = request.member; this.workspace = request.workspace; } /** * The name of the namespace. */ public Builder namespace(String namespace) { this.putPathParameter("namespace", namespace); this.namespace = namespace; return this; } /** * The member ID. */ public Builder member(String member) { this.putPathParameter("member", member); this.member = member; return this; } /** * The workspace ID. */ public Builder workspace(String workspace) { this.putHeaderParameter("workspace", workspace); this.workspace = workspace; return this; } @Override public DeleteMemberRequest build() { return new DeleteMemberRequest(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy