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

com.pulumi.azurenative.iotoperationsmq.inputs.DataLakeFabricStorageArgs 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.iotoperationsmq.inputs;

import com.pulumi.azurenative.iotoperationsmq.enums.FabricPathType;
import com.pulumi.azurenative.iotoperationsmq.inputs.DataLakeFabricStorageAuthenticationArgs;
import com.pulumi.azurenative.iotoperationsmq.inputs.FabricGuidsArgs;
import com.pulumi.azurenative.iotoperationsmq.inputs.FabricNamesArgs;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * DataLake Fabric Storage details.
 * 
 */
public final class DataLakeFabricStorageArgs extends com.pulumi.resources.ResourceArgs {

    public static final DataLakeFabricStorageArgs Empty = new DataLakeFabricStorageArgs();

    /**
     * DataLake fabric storage authentication details.
     * 
     */
    @Import(name="authentication", required=true)
    private Output authentication;

    /**
     * @return DataLake fabric storage authentication details.
     * 
     */
    public Output authentication() {
        return this.authentication;
    }

    /**
     * DataLake fabric storage endpoint to use.
     * 
     */
    @Import(name="endpoint", required=true)
    private Output endpoint;

    /**
     * @return DataLake fabric storage endpoint to use.
     * 
     */
    public Output endpoint() {
        return this.endpoint;
    }

    /**
     * Fabric path type to use.
     * 
     */
    @Import(name="fabricPath", required=true)
    private Output> fabricPath;

    /**
     * @return Fabric path type to use.
     * 
     */
    public Output> fabricPath() {
        return this.fabricPath;
    }

    /**
     * Fabric one lake Guids.
     * 
     */
    @Import(name="guids")
    private @Nullable Output guids;

    /**
     * @return Fabric one lake Guids.
     * 
     */
    public Optional> guids() {
        return Optional.ofNullable(this.guids);
    }

    /**
     * Fabric one lake Names.
     * 
     */
    @Import(name="names")
    private @Nullable Output names;

    /**
     * @return Fabric one lake Names.
     * 
     */
    public Optional> names() {
        return Optional.ofNullable(this.names);
    }

    private DataLakeFabricStorageArgs() {}

    private DataLakeFabricStorageArgs(DataLakeFabricStorageArgs $) {
        this.authentication = $.authentication;
        this.endpoint = $.endpoint;
        this.fabricPath = $.fabricPath;
        this.guids = $.guids;
        this.names = $.names;
    }

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

    public static final class Builder {
        private DataLakeFabricStorageArgs $;

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

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

        /**
         * @param authentication DataLake fabric storage authentication details.
         * 
         * @return builder
         * 
         */
        public Builder authentication(Output authentication) {
            $.authentication = authentication;
            return this;
        }

        /**
         * @param authentication DataLake fabric storage authentication details.
         * 
         * @return builder
         * 
         */
        public Builder authentication(DataLakeFabricStorageAuthenticationArgs authentication) {
            return authentication(Output.of(authentication));
        }

        /**
         * @param endpoint DataLake fabric storage endpoint to use.
         * 
         * @return builder
         * 
         */
        public Builder endpoint(Output endpoint) {
            $.endpoint = endpoint;
            return this;
        }

        /**
         * @param endpoint DataLake fabric storage endpoint to use.
         * 
         * @return builder
         * 
         */
        public Builder endpoint(String endpoint) {
            return endpoint(Output.of(endpoint));
        }

        /**
         * @param fabricPath Fabric path type to use.
         * 
         * @return builder
         * 
         */
        public Builder fabricPath(Output> fabricPath) {
            $.fabricPath = fabricPath;
            return this;
        }

        /**
         * @param fabricPath Fabric path type to use.
         * 
         * @return builder
         * 
         */
        public Builder fabricPath(Either fabricPath) {
            return fabricPath(Output.of(fabricPath));
        }

        /**
         * @param fabricPath Fabric path type to use.
         * 
         * @return builder
         * 
         */
        public Builder fabricPath(String fabricPath) {
            return fabricPath(Either.ofLeft(fabricPath));
        }

        /**
         * @param fabricPath Fabric path type to use.
         * 
         * @return builder
         * 
         */
        public Builder fabricPath(FabricPathType fabricPath) {
            return fabricPath(Either.ofRight(fabricPath));
        }

        /**
         * @param guids Fabric one lake Guids.
         * 
         * @return builder
         * 
         */
        public Builder guids(@Nullable Output guids) {
            $.guids = guids;
            return this;
        }

        /**
         * @param guids Fabric one lake Guids.
         * 
         * @return builder
         * 
         */
        public Builder guids(FabricGuidsArgs guids) {
            return guids(Output.of(guids));
        }

        /**
         * @param names Fabric one lake Names.
         * 
         * @return builder
         * 
         */
        public Builder names(@Nullable Output names) {
            $.names = names;
            return this;
        }

        /**
         * @param names Fabric one lake Names.
         * 
         * @return builder
         * 
         */
        public Builder names(FabricNamesArgs names) {
            return names(Output.of(names));
        }

        public DataLakeFabricStorageArgs build() {
            if ($.authentication == null) {
                throw new MissingRequiredPropertyException("DataLakeFabricStorageArgs", "authentication");
            }
            if ($.endpoint == null) {
                throw new MissingRequiredPropertyException("DataLakeFabricStorageArgs", "endpoint");
            }
            if ($.fabricPath == null) {
                throw new MissingRequiredPropertyException("DataLakeFabricStorageArgs", "fabricPath");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy