
com.pulumi.azurenative.datareplication.inputs.GetDraPlainArgs 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.datareplication.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetDraPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDraPlainArgs Empty = new GetDraPlainArgs();
/**
* The fabric agent (Dra) name.
*
*/
@Import(name="fabricAgentName", required=true)
private String fabricAgentName;
/**
* @return The fabric agent (Dra) name.
*
*/
public String fabricAgentName() {
return this.fabricAgentName;
}
/**
* The fabric name.
*
*/
@Import(name="fabricName", required=true)
private String fabricName;
/**
* @return The fabric name.
*
*/
public String fabricName() {
return this.fabricName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetDraPlainArgs() {}
private GetDraPlainArgs(GetDraPlainArgs $) {
this.fabricAgentName = $.fabricAgentName;
this.fabricName = $.fabricName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDraPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDraPlainArgs $;
public Builder() {
$ = new GetDraPlainArgs();
}
public Builder(GetDraPlainArgs defaults) {
$ = new GetDraPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param fabricAgentName The fabric agent (Dra) name.
*
* @return builder
*
*/
public Builder fabricAgentName(String fabricAgentName) {
$.fabricAgentName = fabricAgentName;
return this;
}
/**
* @param fabricName The fabric name.
*
* @return builder
*
*/
public Builder fabricName(String fabricName) {
$.fabricName = fabricName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetDraPlainArgs build() {
if ($.fabricAgentName == null) {
throw new MissingRequiredPropertyException("GetDraPlainArgs", "fabricAgentName");
}
if ($.fabricName == null) {
throw new MissingRequiredPropertyException("GetDraPlainArgs", "fabricName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetDraPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy