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

com.microsoft.graph.models.ServicePrincipalAddKeyParameterSet Maven / Gradle / Ivy

// Template Source: BaseMethodParameterSet.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models;

import com.microsoft.graph.models.KeyCredential;
import com.microsoft.graph.models.PasswordCredential;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.google.gson.JsonObject;
import java.util.EnumSet;
import java.util.ArrayList;

// **NOTE** This file was generated by a tool and any changes will be overwritten.

/**
 * The class for the Service Principal Add Key Parameter Set.
 */
public class ServicePrincipalAddKeyParameterSet {
    /**
     * The key Credential.
     * 
     */
    @SerializedName(value = "keyCredential", alternate = {"KeyCredential"})
    @Expose
	@Nullable
    public KeyCredential keyCredential;

    /**
     * The password Credential.
     * 
     */
    @SerializedName(value = "passwordCredential", alternate = {"PasswordCredential"})
    @Expose
	@Nullable
    public PasswordCredential passwordCredential;

    /**
     * The proof.
     * 
     */
    @SerializedName(value = "proof", alternate = {"Proof"})
    @Expose
	@Nullable
    public String proof;


    /**
     * Instiaciates a new ServicePrincipalAddKeyParameterSet
     */
    public ServicePrincipalAddKeyParameterSet() {}
    /**
     * Instiaciates a new ServicePrincipalAddKeyParameterSet
     * @param builder builder bearing the parameters to initialize from
     */
    protected ServicePrincipalAddKeyParameterSet(@Nonnull final ServicePrincipalAddKeyParameterSetBuilder builder) {
        this.keyCredential = builder.keyCredential;
        this.passwordCredential = builder.passwordCredential;
        this.proof = builder.proof;
    }
    /**
     * Gets a new builder for the body
     * @return a new builder
     */
    @Nonnull
    public static ServicePrincipalAddKeyParameterSetBuilder newBuilder() {
        return new ServicePrincipalAddKeyParameterSetBuilder();
    }
    /**
     * Fluent builder for the ServicePrincipalAddKeyParameterSet
     */
    public static final class ServicePrincipalAddKeyParameterSetBuilder {
        /**
         * The keyCredential parameter value
         */
        @Nullable
        protected KeyCredential keyCredential;
        /**
         * Sets the KeyCredential
         * @param val the value to set it to
         * @return the current builder object
         */
        @Nonnull
        public ServicePrincipalAddKeyParameterSetBuilder withKeyCredential(@Nullable final KeyCredential val) {
            this.keyCredential = val;
            return this;
        }
        /**
         * The passwordCredential parameter value
         */
        @Nullable
        protected PasswordCredential passwordCredential;
        /**
         * Sets the PasswordCredential
         * @param val the value to set it to
         * @return the current builder object
         */
        @Nonnull
        public ServicePrincipalAddKeyParameterSetBuilder withPasswordCredential(@Nullable final PasswordCredential val) {
            this.passwordCredential = val;
            return this;
        }
        /**
         * The proof parameter value
         */
        @Nullable
        protected String proof;
        /**
         * Sets the Proof
         * @param val the value to set it to
         * @return the current builder object
         */
        @Nonnull
        public ServicePrincipalAddKeyParameterSetBuilder withProof(@Nullable final String val) {
            this.proof = val;
            return this;
        }
        /**
         * Instanciates a new ServicePrincipalAddKeyParameterSetBuilder
         */
        @Nullable
        protected ServicePrincipalAddKeyParameterSetBuilder(){}
        /**
         * Buils the resulting body object to be passed to the request
         * @return the body object to pass to the request
         */
        @Nonnull
        public ServicePrincipalAddKeyParameterSet build() {
            return new ServicePrincipalAddKeyParameterSet(this);
        }
    }
    /**
     * Gets the functions options from the properties that have been set
     * @return a list of function options for the request
     */
    @Nonnull
    public java.util.List getFunctionOptions() {
        final ArrayList result = new ArrayList<>();
        if(this.keyCredential != null) {
            result.add(new com.microsoft.graph.options.FunctionOption("keyCredential", keyCredential));
        }
        if(this.passwordCredential != null) {
            result.add(new com.microsoft.graph.options.FunctionOption("passwordCredential", passwordCredential));
        }
        if(this.proof != null) {
            result.add(new com.microsoft.graph.options.FunctionOption("proof", proof));
        }
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy