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

com.pulumi.azurenative.iotoperations.outputs.DataFlowEndpointFabricOneLakeResponse Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.azurenative.iotoperations.outputs.DataFlowEndpointFabricOneLakeNamesResponse;
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 DataFlowEndpointFabricOneLakeResponse {
    /**
     * @return Batching configuration.
     * 
     */
    private @Nullable BatchingConfigurationResponse batching;
    /**
     * @return Host of the Microsoft Fabric in the form of https://<host>.fabric.microsoft.com.
     * 
     */
    private String host;
    /**
     * @return Names of the workspace and lakehouse.
     * 
     */
    private DataFlowEndpointFabricOneLakeNamesResponse names;
    /**
     * @return Type of location of the data in the workspace. Can be either tables or files.
     * 
     */
    private String oneLakePathType;

    private DataFlowEndpointFabricOneLakeResponse() {}
    /**
     * @return Batching configuration.
     * 
     */
    public Optional batching() {
        return Optional.ofNullable(this.batching);
    }
    /**
     * @return Host of the Microsoft Fabric in the form of https://<host>.fabric.microsoft.com.
     * 
     */
    public String host() {
        return this.host;
    }
    /**
     * @return Names of the workspace and lakehouse.
     * 
     */
    public DataFlowEndpointFabricOneLakeNamesResponse names() {
        return this.names;
    }
    /**
     * @return Type of location of the data in the workspace. Can be either tables or files.
     * 
     */
    public String oneLakePathType() {
        return this.oneLakePathType;
    }

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

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

        @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("DataFlowEndpointFabricOneLakeResponse", "host");
            }
            this.host = host;
            return this;
        }
        @CustomType.Setter
        public Builder names(DataFlowEndpointFabricOneLakeNamesResponse names) {
            if (names == null) {
              throw new MissingRequiredPropertyException("DataFlowEndpointFabricOneLakeResponse", "names");
            }
            this.names = names;
            return this;
        }
        @CustomType.Setter
        public Builder oneLakePathType(String oneLakePathType) {
            if (oneLakePathType == null) {
              throw new MissingRequiredPropertyException("DataFlowEndpointFabricOneLakeResponse", "oneLakePathType");
            }
            this.oneLakePathType = oneLakePathType;
            return this;
        }
        public DataFlowEndpointFabricOneLakeResponse build() {
            final var _resultValue = new DataFlowEndpointFabricOneLakeResponse();
            _resultValue.batching = batching;
            _resultValue.host = host;
            _resultValue.names = names;
            _resultValue.oneLakePathType = oneLakePathType;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy