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

com.solidfire.element.api.AddClusterAdminRequest Maven / Gradle / Ivy

There is a newer version: 1.5.0.89
Show newest version
/*
 * Copyright © 2014-2016 NetApp, Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
 * DO NOT EDIT THIS CODE BY HAND! It has been generated with jsvcgen.
 */
package com.solidfire.element.api;

import com.solidfire.gson.annotations.SerializedName;
import com.solidfire.jsvcgen.annotation.Since;
import com.solidfire.jsvcgen.client.ApiException;
import com.solidfire.jsvcgen.javautil.Optional;

import java.net.URL;

import java.io.Serializable;

import java.util.Arrays;
import java.util.Objects;
import java.util.TreeMap;

import static com.solidfire.jsvcgen.javautil.Optional.of;


/**
 * The Request object for the "AddClusterAdmin" API Service call.
 **/
public class AddClusterAdminRequest  implements Serializable  {

    private static final long serialVersionUID = -1312202061L;

    @SerializedName("username") private final String username;
    @SerializedName("password") private final String password;
    @SerializedName("access") private final String[] access;
    @SerializedName("acceptEula") private final Optional acceptEula;
    @SerializedName("attributes") private final Optional> attributes;

    /**
     * The Request object for the "AddClusterAdmin" API Service call.
     * @param username [required] Unique username for this Cluster Admin.
     * @param password [required] Password used to authenticate this Cluster Admin.
     * @param access [required] Controls which methods this Cluster Admin can use. For more details on the levels of access, see "Access Control" in the Element API Guide.
     * @param acceptEula (optional) Indicate your acceptance of the End User License Agreement when creating this cluster admin. To accept the EULA, set this parameter to true.
     * @param attributes (optional) List of Name/Value pairs in JSON object format.
     * @since 7.0
     **/
    @Since("7.0")
    public AddClusterAdminRequest(String username, String password, String[] access, Optional acceptEula, Optional> attributes) {
        this.username = username;
        this.attributes = (attributes == null) ? Optional.>empty() : attributes;
        this.acceptEula = (acceptEula == null) ? Optional.empty() : acceptEula;
        this.access = access;
        this.password = password;
    }


    /**
     * Unique username for this Cluster Admin.
     **/
    public String getUsername() {
        return this.username;
    }

    /**
     * Password used to authenticate this Cluster Admin.
     **/
    public String getPassword() {
        return this.password;
    }

    /**
     * Controls which methods this Cluster Admin can use. For more details on the levels of access, see "Access Control" in the Element API Guide.
     **/
    public String[] getAccess() {
        return this.access;
    }

    /**
     * Indicate your acceptance of the End User License Agreement when creating this cluster admin. To accept the EULA, set this parameter to true.
     **/
    public Optional getAcceptEula() {
        return this.acceptEula;
    }

    /**
     * List of Name/Value pairs in JSON object format.
     **/
    public Optional> getAttributes() {
        return this.attributes;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        AddClusterAdminRequest that = (AddClusterAdminRequest) o;
        

        return Objects.equals( username , that.username )
            && Objects.equals( password , that.password )
            && Objects.deepEquals( access , that.access )
            && Objects.equals( acceptEula , that.acceptEula )
            && Objects.equals( attributes , that.attributes );
    }

    @Override
    public int hashCode() {
        return Objects.hash( username, password, access, acceptEula, attributes );
    }


    @Override
    public String toString() {
        final StringBuilder sb = new StringBuilder();
        sb.append( "{ " );

        sb.append(" username : ").append(username).append(",");
        sb.append(" password : ").append(password).append(",");
        sb.append(" access : ").append(Arrays.toString(access)).append(",");
        if(null != acceptEula && acceptEula.isPresent())
            sb.append(" acceptEula : ").append(acceptEula.get()).append(",");
        if(null != attributes && attributes.isPresent())
            sb.append(" attributes : ").append(attributes.get());
        sb.append( " }" );

        if(sb.lastIndexOf(", }") != -1)
            sb.deleteCharAt(sb.lastIndexOf(", }"));

        return sb.toString();
    }

    public static Builder builder() {
        return new Builder();
    }

    public final Builder asBuilder() {
        return new Builder().buildFrom(this);
    }

    public static class Builder {
        private String username;
        private String password;
        private String[] access;
        private Optional acceptEula;
        private Optional> attributes;

        private Builder() { }

        public AddClusterAdminRequest build() {
            return new AddClusterAdminRequest (
                         this.username,
                         this.password,
                         this.access,
                         this.acceptEula,
                         this.attributes            );
        }

        private AddClusterAdminRequest.Builder buildFrom(final AddClusterAdminRequest req) {
            this.username = req.username;
            this.password = req.password;
            this.access = req.access;
            this.acceptEula = req.acceptEula;
            this.attributes = req.attributes;

            return this;
        }

        public AddClusterAdminRequest.Builder username(final String username) {
            this.username = username;
            return this;
        }

        public AddClusterAdminRequest.Builder password(final String password) {
            this.password = password;
            return this;
        }

        public AddClusterAdminRequest.Builder access(final String[] access) {
            this.access = access;
            return this;
        }

        public AddClusterAdminRequest.Builder optionalAcceptEula(final Boolean acceptEula) {
            this.acceptEula = (acceptEula == null) ? Optional.empty() : Optional.of(acceptEula);
            return this;
        }

        public AddClusterAdminRequest.Builder optionalAttributes(final java.util.Map attributes) {
            this.attributes = (attributes == null) ? Optional.>empty() : Optional.of(attributes);
            return this;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy