com.pulumi.azurenative.iotoperations.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.iotoperations.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();
/**
* Name of Instance dataflowProfile dataflow resource
*
*/
@Import(name="dataflowName", required=true)
private Output dataflowName;
/**
* @return Name of Instance dataflowProfile dataflow resource
*
*/
public Output dataflowName() {
return this.dataflowName;
}
/**
* Name of Instance dataflowProfile resource
*
*/
@Import(name="dataflowProfileName", required=true)
private Output dataflowProfileName;
/**
* @return Name of Instance dataflowProfile resource
*
*/
public Output dataflowProfileName() {
return this.dataflowProfileName;
}
/**
* Name of instance.
*
*/
@Import(name="instanceName", required=true)
private Output instanceName;
/**
* @return Name of instance.
*
*/
public Output instanceName() {
return this.instanceName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetDataFlowArgs() {}
private GetDataFlowArgs(GetDataFlowArgs $) {
this.dataflowName = $.dataflowName;
this.dataflowProfileName = $.dataflowProfileName;
this.instanceName = $.instanceName;
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 Name of Instance dataflowProfile dataflow resource
*
* @return builder
*
*/
public Builder dataflowName(Output dataflowName) {
$.dataflowName = dataflowName;
return this;
}
/**
* @param dataflowName Name of Instance dataflowProfile dataflow resource
*
* @return builder
*
*/
public Builder dataflowName(String dataflowName) {
return dataflowName(Output.of(dataflowName));
}
/**
* @param dataflowProfileName Name of Instance dataflowProfile resource
*
* @return builder
*
*/
public Builder dataflowProfileName(Output dataflowProfileName) {
$.dataflowProfileName = dataflowProfileName;
return this;
}
/**
* @param dataflowProfileName Name of Instance dataflowProfile resource
*
* @return builder
*
*/
public Builder dataflowProfileName(String dataflowProfileName) {
return dataflowProfileName(Output.of(dataflowProfileName));
}
/**
* @param instanceName Name of instance.
*
* @return builder
*
*/
public Builder instanceName(Output instanceName) {
$.instanceName = instanceName;
return this;
}
/**
* @param instanceName Name of instance.
*
* @return builder
*
*/
public Builder instanceName(String instanceName) {
return instanceName(Output.of(instanceName));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetDataFlowArgs build() {
if ($.dataflowName == null) {
throw new MissingRequiredPropertyException("GetDataFlowArgs", "dataflowName");
}
if ($.dataflowProfileName == null) {
throw new MissingRequiredPropertyException("GetDataFlowArgs", "dataflowProfileName");
}
if ($.instanceName == null) {
throw new MissingRequiredPropertyException("GetDataFlowArgs", "instanceName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetDataFlowArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy