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

com.pulumi.googlenative.dataflow.v1b3.outputs.FileIODetailsResponse 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.googlenative.dataflow.v1b3.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class FileIODetailsResponse {
    /**
     * @return File Pattern used to access files by the connector.
     * 
     */
    private String filePattern;

    private FileIODetailsResponse() {}
    /**
     * @return File Pattern used to access files by the connector.
     * 
     */
    public String filePattern() {
        return this.filePattern;
    }

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

    public static Builder builder(FileIODetailsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String filePattern;
        public Builder() {}
        public Builder(FileIODetailsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.filePattern = defaults.filePattern;
        }

        @CustomType.Setter
        public Builder filePattern(String filePattern) {
            this.filePattern = Objects.requireNonNull(filePattern);
            return this;
        }
        public FileIODetailsResponse build() {
            final var o = new FileIODetailsResponse();
            o.filePattern = filePattern;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy