
com.pulumi.azurenative.sql.inputs.GetManagedServerDnsAliasArgs 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.sql.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 GetManagedServerDnsAliasArgs extends com.pulumi.resources.InvokeArgs {
public static final GetManagedServerDnsAliasArgs Empty = new GetManagedServerDnsAliasArgs();
@Import(name="dnsAliasName", required=true)
private Output dnsAliasName;
public Output dnsAliasName() {
return this.dnsAliasName;
}
/**
* The name of the managed instance.
*
*/
@Import(name="managedInstanceName", required=true)
private Output managedInstanceName;
/**
* @return The name of the managed instance.
*
*/
public Output managedInstanceName() {
return this.managedInstanceName;
}
/**
* The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetManagedServerDnsAliasArgs() {}
private GetManagedServerDnsAliasArgs(GetManagedServerDnsAliasArgs $) {
this.dnsAliasName = $.dnsAliasName;
this.managedInstanceName = $.managedInstanceName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetManagedServerDnsAliasArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetManagedServerDnsAliasArgs $;
public Builder() {
$ = new GetManagedServerDnsAliasArgs();
}
public Builder(GetManagedServerDnsAliasArgs defaults) {
$ = new GetManagedServerDnsAliasArgs(Objects.requireNonNull(defaults));
}
public Builder dnsAliasName(Output dnsAliasName) {
$.dnsAliasName = dnsAliasName;
return this;
}
public Builder dnsAliasName(String dnsAliasName) {
return dnsAliasName(Output.of(dnsAliasName));
}
/**
* @param managedInstanceName The name of the managed instance.
*
* @return builder
*
*/
public Builder managedInstanceName(Output managedInstanceName) {
$.managedInstanceName = managedInstanceName;
return this;
}
/**
* @param managedInstanceName The name of the managed instance.
*
* @return builder
*
*/
public Builder managedInstanceName(String managedInstanceName) {
return managedInstanceName(Output.of(managedInstanceName));
}
/**
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetManagedServerDnsAliasArgs build() {
if ($.dnsAliasName == null) {
throw new MissingRequiredPropertyException("GetManagedServerDnsAliasArgs", "dnsAliasName");
}
if ($.managedInstanceName == null) {
throw new MissingRequiredPropertyException("GetManagedServerDnsAliasArgs", "managedInstanceName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetManagedServerDnsAliasArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy