
com.pulumi.azurenative.kusto.inputs.GetEventHubConnectionPlainArgs 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.kusto.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetEventHubConnectionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetEventHubConnectionPlainArgs Empty = new GetEventHubConnectionPlainArgs();
/**
* The name of the Kusto cluster.
*
*/
@Import(name="clusterName", required=true)
private String clusterName;
/**
* @return The name of the Kusto cluster.
*
*/
public String clusterName() {
return this.clusterName;
}
/**
* The name of the database in the Kusto cluster.
*
*/
@Import(name="databaseName", required=true)
private String databaseName;
/**
* @return The name of the database in the Kusto cluster.
*
*/
public String databaseName() {
return this.databaseName;
}
/**
* The name of the event hub connection.
*
*/
@Import(name="eventHubConnectionName", required=true)
private String eventHubConnectionName;
/**
* @return The name of the event hub connection.
*
*/
public String eventHubConnectionName() {
return this.eventHubConnectionName;
}
/**
* The name of the resource group containing the Kusto cluster.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group containing the Kusto cluster.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetEventHubConnectionPlainArgs() {}
private GetEventHubConnectionPlainArgs(GetEventHubConnectionPlainArgs $) {
this.clusterName = $.clusterName;
this.databaseName = $.databaseName;
this.eventHubConnectionName = $.eventHubConnectionName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetEventHubConnectionPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetEventHubConnectionPlainArgs $;
public Builder() {
$ = new GetEventHubConnectionPlainArgs();
}
public Builder(GetEventHubConnectionPlainArgs defaults) {
$ = new GetEventHubConnectionPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param clusterName The name of the Kusto cluster.
*
* @return builder
*
*/
public Builder clusterName(String clusterName) {
$.clusterName = clusterName;
return this;
}
/**
* @param databaseName The name of the database in the Kusto cluster.
*
* @return builder
*
*/
public Builder databaseName(String databaseName) {
$.databaseName = databaseName;
return this;
}
/**
* @param eventHubConnectionName The name of the event hub connection.
*
* @return builder
*
*/
public Builder eventHubConnectionName(String eventHubConnectionName) {
$.eventHubConnectionName = eventHubConnectionName;
return this;
}
/**
* @param resourceGroupName The name of the resource group containing the Kusto cluster.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetEventHubConnectionPlainArgs build() {
if ($.clusterName == null) {
throw new MissingRequiredPropertyException("GetEventHubConnectionPlainArgs", "clusterName");
}
if ($.databaseName == null) {
throw new MissingRequiredPropertyException("GetEventHubConnectionPlainArgs", "databaseName");
}
if ($.eventHubConnectionName == null) {
throw new MissingRequiredPropertyException("GetEventHubConnectionPlainArgs", "eventHubConnectionName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetEventHubConnectionPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy