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

com.pulumi.azurenative.costmanagement.outputs.FileDestinationResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.costmanagement.outputs;

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

@CustomType
public final class FileDestinationResponse {
    /**
     * @return Destination of the view data. Currently only CSV format is supported.
     * 
     */
    private @Nullable List fileFormats;

    private FileDestinationResponse() {}
    /**
     * @return Destination of the view data. Currently only CSV format is supported.
     * 
     */
    public List fileFormats() {
        return this.fileFormats == null ? List.of() : this.fileFormats;
    }

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

    public static Builder builder(FileDestinationResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List fileFormats;
        public Builder() {}
        public Builder(FileDestinationResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.fileFormats = defaults.fileFormats;
        }

        @CustomType.Setter
        public Builder fileFormats(@Nullable List fileFormats) {

            this.fileFormats = fileFormats;
            return this;
        }
        public Builder fileFormats(String... fileFormats) {
            return fileFormats(List.of(fileFormats));
        }
        public FileDestinationResponse build() {
            final var _resultValue = new FileDestinationResponse();
            _resultValue.fileFormats = fileFormats;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy