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

com.pulumi.azure.datafactory.inputs.DatasetParquetAzureBlobFsLocationArgs 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.azure.datafactory.inputs;

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


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

    public static final DatasetParquetAzureBlobFsLocationArgs Empty = new DatasetParquetAzureBlobFsLocationArgs();

    /**
     * Is the `file_system` using dynamic expression, function or system variables? Defaults to `false`.
     * 
     */
    @Import(name="dynamicFileSystemEnabled")
    private @Nullable Output dynamicFileSystemEnabled;

    /**
     * @return Is the `file_system` using dynamic expression, function or system variables? Defaults to `false`.
     * 
     */
    public Optional> dynamicFileSystemEnabled() {
        return Optional.ofNullable(this.dynamicFileSystemEnabled);
    }

    /**
     * Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
     * 
     */
    @Import(name="dynamicFilenameEnabled")
    private @Nullable Output dynamicFilenameEnabled;

    /**
     * @return Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
     * 
     */
    public Optional> dynamicFilenameEnabled() {
        return Optional.ofNullable(this.dynamicFilenameEnabled);
    }

    /**
     * Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
     * 
     */
    @Import(name="dynamicPathEnabled")
    private @Nullable Output dynamicPathEnabled;

    /**
     * @return Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
     * 
     */
    public Optional> dynamicPathEnabled() {
        return Optional.ofNullable(this.dynamicPathEnabled);
    }

    /**
     * The container on the Azure Data Lake Storage Account hosting the file.
     * 
     */
    @Import(name="fileSystem")
    private @Nullable Output fileSystem;

    /**
     * @return The container on the Azure Data Lake Storage Account hosting the file.
     * 
     */
    public Optional> fileSystem() {
        return Optional.ofNullable(this.fileSystem);
    }

    /**
     * The filename of the file on the Azure Data Lake Storage Account.
     * 
     */
    @Import(name="filename")
    private @Nullable Output filename;

    /**
     * @return The filename of the file on the Azure Data Lake Storage Account.
     * 
     */
    public Optional> filename() {
        return Optional.ofNullable(this.filename);
    }

    /**
     * The folder path to the file on the Azure Data Lake Storage Account.
     * 
     */
    @Import(name="path")
    private @Nullable Output path;

    /**
     * @return The folder path to the file on the Azure Data Lake Storage Account.
     * 
     */
    public Optional> path() {
        return Optional.ofNullable(this.path);
    }

    private DatasetParquetAzureBlobFsLocationArgs() {}

    private DatasetParquetAzureBlobFsLocationArgs(DatasetParquetAzureBlobFsLocationArgs $) {
        this.dynamicFileSystemEnabled = $.dynamicFileSystemEnabled;
        this.dynamicFilenameEnabled = $.dynamicFilenameEnabled;
        this.dynamicPathEnabled = $.dynamicPathEnabled;
        this.fileSystem = $.fileSystem;
        this.filename = $.filename;
        this.path = $.path;
    }

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

    public static final class Builder {
        private DatasetParquetAzureBlobFsLocationArgs $;

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

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

        /**
         * @param dynamicFileSystemEnabled Is the `file_system` using dynamic expression, function or system variables? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder dynamicFileSystemEnabled(@Nullable Output dynamicFileSystemEnabled) {
            $.dynamicFileSystemEnabled = dynamicFileSystemEnabled;
            return this;
        }

        /**
         * @param dynamicFileSystemEnabled Is the `file_system` using dynamic expression, function or system variables? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder dynamicFileSystemEnabled(Boolean dynamicFileSystemEnabled) {
            return dynamicFileSystemEnabled(Output.of(dynamicFileSystemEnabled));
        }

        /**
         * @param dynamicFilenameEnabled Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder dynamicFilenameEnabled(@Nullable Output dynamicFilenameEnabled) {
            $.dynamicFilenameEnabled = dynamicFilenameEnabled;
            return this;
        }

        /**
         * @param dynamicFilenameEnabled Is the `filename` using dynamic expression, function or system variables? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder dynamicFilenameEnabled(Boolean dynamicFilenameEnabled) {
            return dynamicFilenameEnabled(Output.of(dynamicFilenameEnabled));
        }

        /**
         * @param dynamicPathEnabled Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder dynamicPathEnabled(@Nullable Output dynamicPathEnabled) {
            $.dynamicPathEnabled = dynamicPathEnabled;
            return this;
        }

        /**
         * @param dynamicPathEnabled Is the `path` using dynamic expression, function or system variables? Defaults to `false`.
         * 
         * @return builder
         * 
         */
        public Builder dynamicPathEnabled(Boolean dynamicPathEnabled) {
            return dynamicPathEnabled(Output.of(dynamicPathEnabled));
        }

        /**
         * @param fileSystem The container on the Azure Data Lake Storage Account hosting the file.
         * 
         * @return builder
         * 
         */
        public Builder fileSystem(@Nullable Output fileSystem) {
            $.fileSystem = fileSystem;
            return this;
        }

        /**
         * @param fileSystem The container on the Azure Data Lake Storage Account hosting the file.
         * 
         * @return builder
         * 
         */
        public Builder fileSystem(String fileSystem) {
            return fileSystem(Output.of(fileSystem));
        }

        /**
         * @param filename The filename of the file on the Azure Data Lake Storage Account.
         * 
         * @return builder
         * 
         */
        public Builder filename(@Nullable Output filename) {
            $.filename = filename;
            return this;
        }

        /**
         * @param filename The filename of the file on the Azure Data Lake Storage Account.
         * 
         * @return builder
         * 
         */
        public Builder filename(String filename) {
            return filename(Output.of(filename));
        }

        /**
         * @param path The folder path to the file on the Azure Data Lake Storage Account.
         * 
         * @return builder
         * 
         */
        public Builder path(@Nullable Output path) {
            $.path = path;
            return this;
        }

        /**
         * @param path The folder path to the file on the Azure Data Lake Storage Account.
         * 
         * @return builder
         * 
         */
        public Builder path(String path) {
            return path(Output.of(path));
        }

        public DatasetParquetAzureBlobFsLocationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy