com.pulumi.azure.databricks.inputs.GetWorkspacePrivateEndpointConnectionArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.databricks.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetWorkspacePrivateEndpointConnectionArgs extends com.pulumi.resources.InvokeArgs {
public static final GetWorkspacePrivateEndpointConnectionArgs Empty = new GetWorkspacePrivateEndpointConnectionArgs();
/**
* The resource ID of the Private Endpoint.
*
*/
@Import(name="privateEndpointId", required=true)
private Output privateEndpointId;
/**
* @return The resource ID of the Private Endpoint.
*
*/
public Output privateEndpointId() {
return this.privateEndpointId;
}
/**
* The resource ID of the Databricks Workspace.
*
*/
@Import(name="workspaceId", required=true)
private Output workspaceId;
/**
* @return The resource ID of the Databricks Workspace.
*
*/
public Output workspaceId() {
return this.workspaceId;
}
private GetWorkspacePrivateEndpointConnectionArgs() {}
private GetWorkspacePrivateEndpointConnectionArgs(GetWorkspacePrivateEndpointConnectionArgs $) {
this.privateEndpointId = $.privateEndpointId;
this.workspaceId = $.workspaceId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWorkspacePrivateEndpointConnectionArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetWorkspacePrivateEndpointConnectionArgs $;
public Builder() {
$ = new GetWorkspacePrivateEndpointConnectionArgs();
}
public Builder(GetWorkspacePrivateEndpointConnectionArgs defaults) {
$ = new GetWorkspacePrivateEndpointConnectionArgs(Objects.requireNonNull(defaults));
}
/**
* @param privateEndpointId The resource ID of the Private Endpoint.
*
* @return builder
*
*/
public Builder privateEndpointId(Output privateEndpointId) {
$.privateEndpointId = privateEndpointId;
return this;
}
/**
* @param privateEndpointId The resource ID of the Private Endpoint.
*
* @return builder
*
*/
public Builder privateEndpointId(String privateEndpointId) {
return privateEndpointId(Output.of(privateEndpointId));
}
/**
* @param workspaceId The resource ID of the Databricks Workspace.
*
* @return builder
*
*/
public Builder workspaceId(Output workspaceId) {
$.workspaceId = workspaceId;
return this;
}
/**
* @param workspaceId The resource ID of the Databricks Workspace.
*
* @return builder
*
*/
public Builder workspaceId(String workspaceId) {
return workspaceId(Output.of(workspaceId));
}
public GetWorkspacePrivateEndpointConnectionArgs build() {
if ($.privateEndpointId == null) {
throw new MissingRequiredPropertyException("GetWorkspacePrivateEndpointConnectionArgs", "privateEndpointId");
}
if ($.workspaceId == null) {
throw new MissingRequiredPropertyException("GetWorkspacePrivateEndpointConnectionArgs", "workspaceId");
}
return $;
}
}
}