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

com.pulumi.azurenative.iotoperations.outputs.DataFlowEndpointDataLakeStorageResponse 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.iotoperations.outputs;

import com.pulumi.azurenative.iotoperations.outputs.BatchingConfigurationResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class DataFlowEndpointDataLakeStorageResponse {
    /**
     * @return Azure Data Lake endpoint batching configuration.
     * 
     */
    private @Nullable BatchingConfigurationResponse batching;
    /**
     * @return Host of the Azure Data Lake in the form of <account>.blob.core.windows.net .
     * 
     */
    private String host;

    private DataFlowEndpointDataLakeStorageResponse() {}
    /**
     * @return Azure Data Lake endpoint batching configuration.
     * 
     */
    public Optional batching() {
        return Optional.ofNullable(this.batching);
    }
    /**
     * @return Host of the Azure Data Lake in the form of <account>.blob.core.windows.net .
     * 
     */
    public String host() {
        return this.host;
    }

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

    public static Builder builder(DataFlowEndpointDataLakeStorageResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable BatchingConfigurationResponse batching;
        private String host;
        public Builder() {}
        public Builder(DataFlowEndpointDataLakeStorageResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.batching = defaults.batching;
    	      this.host = defaults.host;
        }

        @CustomType.Setter
        public Builder batching(@Nullable BatchingConfigurationResponse batching) {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy