All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.privatedns.inputs.GetSrvRecordPlainArgs 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.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 GetSrvRecordPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetSrvRecordPlainArgs Empty = new GetSrvRecordPlainArgs();

    /**
     * The name of the Private DNS SRV Record.
     * 
     */
    @Import(name="name", required=true)
    private String name;

    /**
     * @return The name of the Private DNS SRV 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 GetSrvRecordPlainArgs() {}

    private GetSrvRecordPlainArgs(GetSrvRecordPlainArgs $) {
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
        this.zoneName = $.zoneName;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(GetSrvRecordPlainArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GetSrvRecordPlainArgs $;

        public Builder() {
            $ = new GetSrvRecordPlainArgs();
        }

        public Builder(GetSrvRecordPlainArgs defaults) {
            $ = new GetSrvRecordPlainArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param name The name of the Private DNS SRV 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 GetSrvRecordPlainArgs build() {
            if ($.name == null) {
                throw new MissingRequiredPropertyException("GetSrvRecordPlainArgs", "name");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetSrvRecordPlainArgs", "resourceGroupName");
            }
            if ($.zoneName == null) {
                throw new MissingRequiredPropertyException("GetSrvRecordPlainArgs", "zoneName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy