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

com.pulumi.azurenative.costmanagement.inputs.ExportDatasetConfigurationArgs 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.costmanagement.inputs;

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


/**
 * The export dataset configuration. Allows columns to be selected for the export. If not provided then the export will include all available columns.
 * 
 */
public final class ExportDatasetConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final ExportDatasetConfigurationArgs Empty = new ExportDatasetConfigurationArgs();

    /**
     * Array of column names to be included in the export. If not provided then the export will include all available columns. The available columns can vary by customer channel (see examples).
     * 
     */
    @Import(name="columns")
    private @Nullable Output> columns;

    /**
     * @return Array of column names to be included in the export. If not provided then the export will include all available columns. The available columns can vary by customer channel (see examples).
     * 
     */
    public Optional>> columns() {
        return Optional.ofNullable(this.columns);
    }

    private ExportDatasetConfigurationArgs() {}

    private ExportDatasetConfigurationArgs(ExportDatasetConfigurationArgs $) {
        this.columns = $.columns;
    }

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

    public static final class Builder {
        private ExportDatasetConfigurationArgs $;

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

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

        /**
         * @param columns Array of column names to be included in the export. If not provided then the export will include all available columns. The available columns can vary by customer channel (see examples).
         * 
         * @return builder
         * 
         */
        public Builder columns(@Nullable Output> columns) {
            $.columns = columns;
            return this;
        }

        /**
         * @param columns Array of column names to be included in the export. If not provided then the export will include all available columns. The available columns can vary by customer channel (see examples).
         * 
         * @return builder
         * 
         */
        public Builder columns(List columns) {
            return columns(Output.of(columns));
        }

        /**
         * @param columns Array of column names to be included in the export. If not provided then the export will include all available columns. The available columns can vary by customer channel (see examples).
         * 
         * @return builder
         * 
         */
        public Builder columns(String... columns) {
            return columns(List.of(columns));
        }

        public ExportDatasetConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy