com.pulumi.azure.privatedns.inputs.GetARecordArgs 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.privatedns.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 GetARecordArgs extends com.pulumi.resources.InvokeArgs {
public static final GetARecordArgs Empty = new GetARecordArgs();
/**
* The name of the Private DNS A Record.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the Private DNS A Record.
*
*/
public Output name() {
return this.name;
}
/**
* Specifies the resource group where the Private DNS Zone (parent resource) exists.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return Specifies the resource group where the Private DNS Zone (parent resource) exists.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* Specifies the Private DNS Zone where the resource exists.
*
*/
@Import(name="zoneName", required=true)
private Output zoneName;
/**
* @return Specifies the Private DNS Zone where the resource exists.
*
*/
public Output zoneName() {
return this.zoneName;
}
private GetARecordArgs() {}
private GetARecordArgs(GetARecordArgs $) {
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
this.zoneName = $.zoneName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetARecordArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetARecordArgs $;
public Builder() {
$ = new GetARecordArgs();
}
public Builder(GetARecordArgs defaults) {
$ = new GetARecordArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the Private DNS A Record.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the Private DNS A Record.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param resourceGroupName Specifies the resource group where the Private DNS Zone (parent resource) exists.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName Specifies the resource group where the Private DNS Zone (parent resource) exists.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param zoneName Specifies the Private DNS Zone where the resource exists.
*
* @return builder
*
*/
public Builder zoneName(Output zoneName) {
$.zoneName = zoneName;
return this;
}
/**
* @param zoneName Specifies the Private DNS Zone where the resource exists.
*
* @return builder
*
*/
public Builder zoneName(String zoneName) {
return zoneName(Output.of(zoneName));
}
public GetARecordArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("GetARecordArgs", "name");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetARecordArgs", "resourceGroupName");
}
if ($.zoneName == null) {
throw new MissingRequiredPropertyException("GetARecordArgs", "zoneName");
}
return $;
}
}
}