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

com.pulumi.azurenative.datafactory.outputs.JsonWriteSettingsResponse Maven / Gradle / Ivy

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

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class JsonWriteSettingsResponse {
    /**
     * @return File pattern of JSON. This setting controls the way a collection of JSON objects will be treated. The default value is 'setOfObjects'. It is case-sensitive.
     * 
     */
    private @Nullable Object filePattern;
    /**
     * @return The write setting type.
     * Expected value is 'JsonWriteSettings'.
     * 
     */
    private String type;

    private JsonWriteSettingsResponse() {}
    /**
     * @return File pattern of JSON. This setting controls the way a collection of JSON objects will be treated. The default value is 'setOfObjects'. It is case-sensitive.
     * 
     */
    public Optional filePattern() {
        return Optional.ofNullable(this.filePattern);
    }
    /**
     * @return The write setting type.
     * Expected value is 'JsonWriteSettings'.
     * 
     */
    public String type() {
        return this.type;
    }

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

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

        @CustomType.Setter
        public Builder filePattern(@Nullable Object filePattern) {

            this.filePattern = filePattern;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("JsonWriteSettingsResponse", "type");
            }
            this.type = type;
            return this;
        }
        public JsonWriteSettingsResponse build() {
            final var _resultValue = new JsonWriteSettingsResponse();
            _resultValue.filePattern = filePattern;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}