com.pulumi.azurenative.iotoperationsmq.inputs.FabricNamesArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.iotoperationsmq.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;
/**
* Fabric one lake names.
*
*/
public final class FabricNamesArgs extends com.pulumi.resources.ResourceArgs {
public static final FabricNamesArgs Empty = new FabricNamesArgs();
/**
* Fabric one lake house name.
*
*/
@Import(name="lakehouseName", required=true)
private Output lakehouseName;
/**
* @return Fabric one lake house name.
*
*/
public Output lakehouseName() {
return this.lakehouseName;
}
/**
* Fabric one lake workspace name.
*
*/
@Import(name="workspaceName", required=true)
private Output workspaceName;
/**
* @return Fabric one lake workspace name.
*
*/
public Output workspaceName() {
return this.workspaceName;
}
private FabricNamesArgs() {}
private FabricNamesArgs(FabricNamesArgs $) {
this.lakehouseName = $.lakehouseName;
this.workspaceName = $.workspaceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FabricNamesArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private FabricNamesArgs $;
public Builder() {
$ = new FabricNamesArgs();
}
public Builder(FabricNamesArgs defaults) {
$ = new FabricNamesArgs(Objects.requireNonNull(defaults));
}
/**
* @param lakehouseName Fabric one lake house name.
*
* @return builder
*
*/
public Builder lakehouseName(Output lakehouseName) {
$.lakehouseName = lakehouseName;
return this;
}
/**
* @param lakehouseName Fabric one lake house name.
*
* @return builder
*
*/
public Builder lakehouseName(String lakehouseName) {
return lakehouseName(Output.of(lakehouseName));
}
/**
* @param workspaceName Fabric one lake workspace name.
*
* @return builder
*
*/
public Builder workspaceName(Output workspaceName) {
$.workspaceName = workspaceName;
return this;
}
/**
* @param workspaceName Fabric one lake workspace name.
*
* @return builder
*
*/
public Builder workspaceName(String workspaceName) {
return workspaceName(Output.of(workspaceName));
}
public FabricNamesArgs build() {
if ($.lakehouseName == null) {
throw new MissingRequiredPropertyException("FabricNamesArgs", "lakehouseName");
}
if ($.workspaceName == null) {
throw new MissingRequiredPropertyException("FabricNamesArgs", "workspaceName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy