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

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

There is a newer version: 2.89.2
Show newest version
// *** 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 StorageSpacesPropertiesHciStorageProfileArgs extends com.pulumi.resources.ResourceArgs {

    public static final StorageSpacesPropertiesHciStorageProfileArgs Empty = new StorageSpacesPropertiesHciStorageProfileArgs();

    /**
     * Resource group in MOC(Microsoft On-premises Cloud)
     * 
     */
    @Import(name="mocGroup")
    private @Nullable Output mocGroup;

    /**
     * @return Resource group in MOC(Microsoft On-premises Cloud)
     * 
     */
    public Optional> mocGroup() {
        return Optional.ofNullable(this.mocGroup);
    }

    /**
     * Location in MOC(Microsoft On-premises Cloud)
     * 
     */
    @Import(name="mocLocation")
    private @Nullable Output mocLocation;

    /**
     * @return Location in MOC(Microsoft On-premises Cloud)
     * 
     */
    public Optional> mocLocation() {
        return Optional.ofNullable(this.mocLocation);
    }

    /**
     * Name of the storage container in MOC(Microsoft On-premises Cloud)
     * 
     */
    @Import(name="mocStorageContainer")
    private @Nullable Output mocStorageContainer;

    /**
     * @return Name of the storage container in MOC(Microsoft On-premises Cloud)
     * 
     */
    public Optional> mocStorageContainer() {
        return Optional.ofNullable(this.mocStorageContainer);
    }

    private StorageSpacesPropertiesHciStorageProfileArgs() {}

    private StorageSpacesPropertiesHciStorageProfileArgs(StorageSpacesPropertiesHciStorageProfileArgs $) {
        this.mocGroup = $.mocGroup;
        this.mocLocation = $.mocLocation;
        this.mocStorageContainer = $.mocStorageContainer;
    }

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

    public static final class Builder {
        private StorageSpacesPropertiesHciStorageProfileArgs $;

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

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

        /**
         * @param mocGroup Resource group in MOC(Microsoft On-premises Cloud)
         * 
         * @return builder
         * 
         */
        public Builder mocGroup(@Nullable Output mocGroup) {
            $.mocGroup = mocGroup;
            return this;
        }

        /**
         * @param mocGroup Resource group in MOC(Microsoft On-premises Cloud)
         * 
         * @return builder
         * 
         */
        public Builder mocGroup(String mocGroup) {
            return mocGroup(Output.of(mocGroup));
        }

        /**
         * @param mocLocation Location in MOC(Microsoft On-premises Cloud)
         * 
         * @return builder
         * 
         */
        public Builder mocLocation(@Nullable Output mocLocation) {
            $.mocLocation = mocLocation;
            return this;
        }

        /**
         * @param mocLocation Location in MOC(Microsoft On-premises Cloud)
         * 
         * @return builder
         * 
         */
        public Builder mocLocation(String mocLocation) {
            return mocLocation(Output.of(mocLocation));
        }

        /**
         * @param mocStorageContainer Name of the storage container in MOC(Microsoft On-premises Cloud)
         * 
         * @return builder
         * 
         */
        public Builder mocStorageContainer(@Nullable Output mocStorageContainer) {
            $.mocStorageContainer = mocStorageContainer;
            return this;
        }

        /**
         * @param mocStorageContainer Name of the storage container in MOC(Microsoft On-premises Cloud)
         * 
         * @return builder
         * 
         */
        public Builder mocStorageContainer(String mocStorageContainer) {
            return mocStorageContainer(Output.of(mocStorageContainer));
        }

        public StorageSpacesPropertiesHciStorageProfileArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy