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

com.pulumi.azurenative.hybridcontainerservice.inputs.StorageSpacesPropertiesVmwareStorageProfileArgs Maven / Gradle / Ivy

// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.hybridcontainerservice.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class StorageSpacesPropertiesVmwareStorageProfileArgs extends com.pulumi.resources.ResourceArgs {

    public static final StorageSpacesPropertiesVmwareStorageProfileArgs Empty = new StorageSpacesPropertiesVmwareStorageProfileArgs();

    /**
     * Name of the datacenter in VSphere
     * 
     */
    @Import(name="datacenter")
    private @Nullable Output datacenter;

    /**
     * @return Name of the datacenter in VSphere
     * 
     */
    public Optional> datacenter() {
        return Optional.ofNullable(this.datacenter);
    }

    /**
     * Name of the datastore in VSphere
     * 
     */
    @Import(name="datastore")
    private @Nullable Output datastore;

    /**
     * @return Name of the datastore in VSphere
     * 
     */
    public Optional> datastore() {
        return Optional.ofNullable(this.datastore);
    }

    /**
     * Name of the folder in VSphere
     * 
     */
    @Import(name="folder")
    private @Nullable Output folder;

    /**
     * @return Name of the folder in VSphere
     * 
     */
    public Optional> folder() {
        return Optional.ofNullable(this.folder);
    }

    /**
     * Name of the resource pool in VSphere
     * 
     */
    @Import(name="resourcePool")
    private @Nullable Output resourcePool;

    /**
     * @return Name of the resource pool in VSphere
     * 
     */
    public Optional> resourcePool() {
        return Optional.ofNullable(this.resourcePool);
    }

    private StorageSpacesPropertiesVmwareStorageProfileArgs() {}

    private StorageSpacesPropertiesVmwareStorageProfileArgs(StorageSpacesPropertiesVmwareStorageProfileArgs $) {
        this.datacenter = $.datacenter;
        this.datastore = $.datastore;
        this.folder = $.folder;
        this.resourcePool = $.resourcePool;
    }

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

    public static final class Builder {
        private StorageSpacesPropertiesVmwareStorageProfileArgs $;

        public Builder() {
            $ = new StorageSpacesPropertiesVmwareStorageProfileArgs();
        }

        public Builder(StorageSpacesPropertiesVmwareStorageProfileArgs defaults) {
            $ = new StorageSpacesPropertiesVmwareStorageProfileArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param datacenter Name of the datacenter in VSphere
         * 
         * @return builder
         * 
         */
        public Builder datacenter(@Nullable Output datacenter) {
            $.datacenter = datacenter;
            return this;
        }

        /**
         * @param datacenter Name of the datacenter in VSphere
         * 
         * @return builder
         * 
         */
        public Builder datacenter(String datacenter) {
            return datacenter(Output.of(datacenter));
        }

        /**
         * @param datastore Name of the datastore in VSphere
         * 
         * @return builder
         * 
         */
        public Builder datastore(@Nullable Output datastore) {
            $.datastore = datastore;
            return this;
        }

        /**
         * @param datastore Name of the datastore in VSphere
         * 
         * @return builder
         * 
         */
        public Builder datastore(String datastore) {
            return datastore(Output.of(datastore));
        }

        /**
         * @param folder Name of the folder in VSphere
         * 
         * @return builder
         * 
         */
        public Builder folder(@Nullable Output folder) {
            $.folder = folder;
            return this;
        }

        /**
         * @param folder Name of the folder in VSphere
         * 
         * @return builder
         * 
         */
        public Builder folder(String folder) {
            return folder(Output.of(folder));
        }

        /**
         * @param resourcePool Name of the resource pool in VSphere
         * 
         * @return builder
         * 
         */
        public Builder resourcePool(@Nullable Output resourcePool) {
            $.resourcePool = resourcePool;
            return this;
        }

        /**
         * @param resourcePool Name of the resource pool in VSphere
         * 
         * @return builder
         * 
         */
        public Builder resourcePool(String resourcePool) {
            return resourcePool(Output.of(resourcePool));
        }

        public StorageSpacesPropertiesVmwareStorageProfileArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy