
com.pulumi.azurenative.datafactory.inputs.GetDataFlowArgs 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.datafactory.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 GetDataFlowArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDataFlowArgs Empty = new GetDataFlowArgs();
/**
* The data flow name.
*
*/
@Import(name="dataFlowName", required=true)
private Output dataFlowName;
/**
* @return The data flow name.
*
*/
public Output dataFlowName() {
return this.dataFlowName;
}
/**
* The factory name.
*
*/
@Import(name="factoryName", required=true)
private Output factoryName;
/**
* @return The factory name.
*
*/
public Output factoryName() {
return this.factoryName;
}
/**
* The resource group name.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The resource group name.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetDataFlowArgs() {}
private GetDataFlowArgs(GetDataFlowArgs $) {
this.dataFlowName = $.dataFlowName;
this.factoryName = $.factoryName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDataFlowArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDataFlowArgs $;
public Builder() {
$ = new GetDataFlowArgs();
}
public Builder(GetDataFlowArgs defaults) {
$ = new GetDataFlowArgs(Objects.requireNonNull(defaults));
}
/**
* @param dataFlowName The data flow name.
*
* @return builder
*
*/
public Builder dataFlowName(Output dataFlowName) {
$.dataFlowName = dataFlowName;
return this;
}
/**
* @param dataFlowName The data flow name.
*
* @return builder
*
*/
public Builder dataFlowName(String dataFlowName) {
return dataFlowName(Output.of(dataFlowName));
}
/**
* @param factoryName The factory name.
*
* @return builder
*
*/
public Builder factoryName(Output factoryName) {
$.factoryName = factoryName;
return this;
}
/**
* @param factoryName The factory name.
*
* @return builder
*
*/
public Builder factoryName(String factoryName) {
return factoryName(Output.of(factoryName));
}
/**
* @param resourceGroupName The resource group name.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The resource group name.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetDataFlowArgs build() {
if ($.dataFlowName == null) {
throw new MissingRequiredPropertyException("GetDataFlowArgs", "dataFlowName");
}
if ($.factoryName == null) {
throw new MissingRequiredPropertyException("GetDataFlowArgs", "factoryName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetDataFlowArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy