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

com.pulumi.azurenative.healthcareapis.outputs.IotEventHubIngestionEndpointConfigurationResponse 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.azurenative.healthcareapis.outputs;

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

@CustomType
public final class IotEventHubIngestionEndpointConfigurationResponse {
    /**
     * @return Consumer group of the event hub to connected to.
     * 
     */
    private @Nullable String consumerGroup;
    /**
     * @return Event Hub name to connect to.
     * 
     */
    private @Nullable String eventHubName;
    /**
     * @return Fully qualified namespace of the Event Hub to connect to.
     * 
     */
    private @Nullable String fullyQualifiedEventHubNamespace;

    private IotEventHubIngestionEndpointConfigurationResponse() {}
    /**
     * @return Consumer group of the event hub to connected to.
     * 
     */
    public Optional consumerGroup() {
        return Optional.ofNullable(this.consumerGroup);
    }
    /**
     * @return Event Hub name to connect to.
     * 
     */
    public Optional eventHubName() {
        return Optional.ofNullable(this.eventHubName);
    }
    /**
     * @return Fully qualified namespace of the Event Hub to connect to.
     * 
     */
    public Optional fullyQualifiedEventHubNamespace() {
        return Optional.ofNullable(this.fullyQualifiedEventHubNamespace);
    }

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

    public static Builder builder(IotEventHubIngestionEndpointConfigurationResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String consumerGroup;
        private @Nullable String eventHubName;
        private @Nullable String fullyQualifiedEventHubNamespace;
        public Builder() {}
        public Builder(IotEventHubIngestionEndpointConfigurationResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.consumerGroup = defaults.consumerGroup;
    	      this.eventHubName = defaults.eventHubName;
    	      this.fullyQualifiedEventHubNamespace = defaults.fullyQualifiedEventHubNamespace;
        }

        @CustomType.Setter
        public Builder consumerGroup(@Nullable String consumerGroup) {

            this.consumerGroup = consumerGroup;
            return this;
        }
        @CustomType.Setter
        public Builder eventHubName(@Nullable String eventHubName) {

            this.eventHubName = eventHubName;
            return this;
        }
        @CustomType.Setter
        public Builder fullyQualifiedEventHubNamespace(@Nullable String fullyQualifiedEventHubNamespace) {

            this.fullyQualifiedEventHubNamespace = fullyQualifiedEventHubNamespace;
            return this;
        }
        public IotEventHubIngestionEndpointConfigurationResponse build() {
            final var _resultValue = new IotEventHubIngestionEndpointConfigurationResponse();
            _resultValue.consumerGroup = consumerGroup;
            _resultValue.eventHubName = eventHubName;
            _resultValue.fullyQualifiedEventHubNamespace = fullyQualifiedEventHubNamespace;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy