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

com.pulumi.azure.dns.CaaRecordArgs Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.dns;

import com.pulumi.azure.dns.inputs.CaaRecordRecordArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class CaaRecordArgs extends com.pulumi.resources.ResourceArgs {

    public static final CaaRecordArgs Empty = new CaaRecordArgs();

    /**
     * The name of the DNS CAA Record. If you are creating the record in the apex of the zone use `"{@literal @}"` as the name. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name of the DNS CAA Record. If you are creating the record in the apex of the zone use `"{@literal @}"` as the name. Changing this forces a new resource to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * A list of values that make up the CAA record. Each `record` block supports fields documented below.
     * 
     */
    @Import(name="records", required=true)
    private Output> records;

    /**
     * @return A list of values that make up the CAA record. Each `record` block supports fields documented below.
     * 
     */
    public Output> records() {
        return this.records;
    }

    /**
     * Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * A mapping of tags to assign to the resource.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return A mapping of tags to assign to the resource.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    /**
     * The Time To Live (TTL) of the DNS record in seconds.
     * 
     */
    @Import(name="ttl", required=true)
    private Output ttl;

    /**
     * @return The Time To Live (TTL) of the DNS record in seconds.
     * 
     */
    public Output ttl() {
        return this.ttl;
    }

    /**
     * Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="zoneName", required=true)
    private Output zoneName;

    /**
     * @return Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
     * 
     */
    public Output zoneName() {
        return this.zoneName;
    }

    private CaaRecordArgs() {}

    private CaaRecordArgs(CaaRecordArgs $) {
        this.name = $.name;
        this.records = $.records;
        this.resourceGroupName = $.resourceGroupName;
        this.tags = $.tags;
        this.ttl = $.ttl;
        this.zoneName = $.zoneName;
    }

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

    public static final class Builder {
        private CaaRecordArgs $;

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

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

        /**
         * @param name The name of the DNS CAA Record. If you are creating the record in the apex of the zone use `"{@literal @}"` as the name. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name of the DNS CAA Record. If you are creating the record in the apex of the zone use `"{@literal @}"` as the name. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param records A list of values that make up the CAA record. Each `record` block supports fields documented below.
         * 
         * @return builder
         * 
         */
        public Builder records(Output> records) {
            $.records = records;
            return this;
        }

        /**
         * @param records A list of values that make up the CAA record. Each `record` block supports fields documented below.
         * 
         * @return builder
         * 
         */
        public Builder records(List records) {
            return records(Output.of(records));
        }

        /**
         * @param records A list of values that make up the CAA record. Each `record` block supports fields documented below.
         * 
         * @return builder
         * 
         */
        public Builder records(CaaRecordRecordArgs... records) {
            return records(List.of(records));
        }

        /**
         * @param resourceGroupName Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Specifies the resource group where the DNS Zone (parent resource) exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param tags A mapping of tags to assign to the resource.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags A mapping of tags to assign to the resource.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param ttl The Time To Live (TTL) of the DNS record in seconds.
         * 
         * @return builder
         * 
         */
        public Builder ttl(Output ttl) {
            $.ttl = ttl;
            return this;
        }

        /**
         * @param ttl The Time To Live (TTL) of the DNS record in seconds.
         * 
         * @return builder
         * 
         */
        public Builder ttl(Integer ttl) {
            return ttl(Output.of(ttl));
        }

        /**
         * @param zoneName Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder zoneName(Output zoneName) {
            $.zoneName = zoneName;
            return this;
        }

        /**
         * @param zoneName Specifies the DNS Zone where the resource exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder zoneName(String zoneName) {
            return zoneName(Output.of(zoneName));
        }

        public CaaRecordArgs build() {
            if ($.records == null) {
                throw new MissingRequiredPropertyException("CaaRecordArgs", "records");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("CaaRecordArgs", "resourceGroupName");
            }
            if ($.ttl == null) {
                throw new MissingRequiredPropertyException("CaaRecordArgs", "ttl");
            }
            if ($.zoneName == null) {
                throw new MissingRequiredPropertyException("CaaRecordArgs", "zoneName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy