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

com.pulumi.azurenative.datafactory.outputs.AzureDataExplorerSinkResponse 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.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 AzureDataExplorerSinkResponse {
    /**
     * @return If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
     * 
     */
    private @Nullable Object disableMetricsCollection;
    /**
     * @return If set to true, any aggregation will be skipped. Default is false. Type: boolean.
     * 
     */
    private @Nullable Object flushImmediately;
    /**
     * @return An explicit column mapping description provided in a json format. Type: string.
     * 
     */
    private @Nullable Object ingestionMappingAsJson;
    /**
     * @return A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
     * 
     */
    private @Nullable Object ingestionMappingName;
    /**
     * @return The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
     * 
     */
    private @Nullable Object maxConcurrentConnections;
    /**
     * @return Sink retry count. Type: integer (or Expression with resultType integer).
     * 
     */
    private @Nullable Object sinkRetryCount;
    /**
     * @return Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
     * 
     */
    private @Nullable Object sinkRetryWait;
    /**
     * @return Copy sink type.
     * Expected value is 'AzureDataExplorerSink'.
     * 
     */
    private String type;
    /**
     * @return Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
     * 
     */
    private @Nullable Object writeBatchSize;
    /**
     * @return Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
     * 
     */
    private @Nullable Object writeBatchTimeout;

    private AzureDataExplorerSinkResponse() {}
    /**
     * @return If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
     * 
     */
    public Optional disableMetricsCollection() {
        return Optional.ofNullable(this.disableMetricsCollection);
    }
    /**
     * @return If set to true, any aggregation will be skipped. Default is false. Type: boolean.
     * 
     */
    public Optional flushImmediately() {
        return Optional.ofNullable(this.flushImmediately);
    }
    /**
     * @return An explicit column mapping description provided in a json format. Type: string.
     * 
     */
    public Optional ingestionMappingAsJson() {
        return Optional.ofNullable(this.ingestionMappingAsJson);
    }
    /**
     * @return A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
     * 
     */
    public Optional ingestionMappingName() {
        return Optional.ofNullable(this.ingestionMappingName);
    }
    /**
     * @return The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
     * 
     */
    public Optional maxConcurrentConnections() {
        return Optional.ofNullable(this.maxConcurrentConnections);
    }
    /**
     * @return Sink retry count. Type: integer (or Expression with resultType integer).
     * 
     */
    public Optional sinkRetryCount() {
        return Optional.ofNullable(this.sinkRetryCount);
    }
    /**
     * @return Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
     * 
     */
    public Optional sinkRetryWait() {
        return Optional.ofNullable(this.sinkRetryWait);
    }
    /**
     * @return Copy sink type.
     * Expected value is 'AzureDataExplorerSink'.
     * 
     */
    public String type() {
        return this.type;
    }
    /**
     * @return Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
     * 
     */
    public Optional writeBatchSize() {
        return Optional.ofNullable(this.writeBatchSize);
    }
    /**
     * @return Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
     * 
     */
    public Optional writeBatchTimeout() {
        return Optional.ofNullable(this.writeBatchTimeout);
    }

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

    public static Builder builder(AzureDataExplorerSinkResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Object disableMetricsCollection;
        private @Nullable Object flushImmediately;
        private @Nullable Object ingestionMappingAsJson;
        private @Nullable Object ingestionMappingName;
        private @Nullable Object maxConcurrentConnections;
        private @Nullable Object sinkRetryCount;
        private @Nullable Object sinkRetryWait;
        private String type;
        private @Nullable Object writeBatchSize;
        private @Nullable Object writeBatchTimeout;
        public Builder() {}
        public Builder(AzureDataExplorerSinkResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.disableMetricsCollection = defaults.disableMetricsCollection;
    	      this.flushImmediately = defaults.flushImmediately;
    	      this.ingestionMappingAsJson = defaults.ingestionMappingAsJson;
    	      this.ingestionMappingName = defaults.ingestionMappingName;
    	      this.maxConcurrentConnections = defaults.maxConcurrentConnections;
    	      this.sinkRetryCount = defaults.sinkRetryCount;
    	      this.sinkRetryWait = defaults.sinkRetryWait;
    	      this.type = defaults.type;
    	      this.writeBatchSize = defaults.writeBatchSize;
    	      this.writeBatchTimeout = defaults.writeBatchTimeout;
        }

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

            this.disableMetricsCollection = disableMetricsCollection;
            return this;
        }
        @CustomType.Setter
        public Builder flushImmediately(@Nullable Object flushImmediately) {

            this.flushImmediately = flushImmediately;
            return this;
        }
        @CustomType.Setter
        public Builder ingestionMappingAsJson(@Nullable Object ingestionMappingAsJson) {

            this.ingestionMappingAsJson = ingestionMappingAsJson;
            return this;
        }
        @CustomType.Setter
        public Builder ingestionMappingName(@Nullable Object ingestionMappingName) {

            this.ingestionMappingName = ingestionMappingName;
            return this;
        }
        @CustomType.Setter
        public Builder maxConcurrentConnections(@Nullable Object maxConcurrentConnections) {

            this.maxConcurrentConnections = maxConcurrentConnections;
            return this;
        }
        @CustomType.Setter
        public Builder sinkRetryCount(@Nullable Object sinkRetryCount) {

            this.sinkRetryCount = sinkRetryCount;
            return this;
        }
        @CustomType.Setter
        public Builder sinkRetryWait(@Nullable Object sinkRetryWait) {

            this.sinkRetryWait = sinkRetryWait;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("AzureDataExplorerSinkResponse", "type");
            }
            this.type = type;
            return this;
        }
        @CustomType.Setter
        public Builder writeBatchSize(@Nullable Object writeBatchSize) {

            this.writeBatchSize = writeBatchSize;
            return this;
        }
        @CustomType.Setter
        public Builder writeBatchTimeout(@Nullable Object writeBatchTimeout) {

            this.writeBatchTimeout = writeBatchTimeout;
            return this;
        }
        public AzureDataExplorerSinkResponse build() {
            final var _resultValue = new AzureDataExplorerSinkResponse();
            _resultValue.disableMetricsCollection = disableMetricsCollection;
            _resultValue.flushImmediately = flushImmediately;
            _resultValue.ingestionMappingAsJson = ingestionMappingAsJson;
            _resultValue.ingestionMappingName = ingestionMappingName;
            _resultValue.maxConcurrentConnections = maxConcurrentConnections;
            _resultValue.sinkRetryCount = sinkRetryCount;
            _resultValue.sinkRetryWait = sinkRetryWait;
            _resultValue.type = type;
            _resultValue.writeBatchSize = writeBatchSize;
            _resultValue.writeBatchTimeout = writeBatchTimeout;
            return _resultValue;
        }
    }
}