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