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

com.pulumi.azure.dns.outputs.GetZoneResult 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.outputs;

import com.pulumi.core.annotations.CustomType;
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;

@CustomType
public final class GetZoneResult {
    /**
     * @return The provider-assigned unique ID for this managed resource.
     * 
     */
    private String id;
    /**
     * @return Maximum number of Records in the zone.
     * 
     */
    private Integer maxNumberOfRecordSets;
    private String name;
    /**
     * @return A list of values that make up the NS record for the zone.
     * 
     */
    private List nameServers;
    /**
     * @return The number of records already in the zone.
     * 
     */
    private Integer numberOfRecordSets;
    private String resourceGroupName;
    /**
     * @return A mapping of tags assigned to the DNS Zone.
     * 
     */
    private Map tags;

    private GetZoneResult() {}
    /**
     * @return The provider-assigned unique ID for this managed resource.
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return Maximum number of Records in the zone.
     * 
     */
    public Integer maxNumberOfRecordSets() {
        return this.maxNumberOfRecordSets;
    }
    public String name() {
        return this.name;
    }
    /**
     * @return A list of values that make up the NS record for the zone.
     * 
     */
    public List nameServers() {
        return this.nameServers;
    }
    /**
     * @return The number of records already in the zone.
     * 
     */
    public Integer numberOfRecordSets() {
        return this.numberOfRecordSets;
    }
    public String resourceGroupName() {
        return this.resourceGroupName;
    }
    /**
     * @return A mapping of tags assigned to the DNS Zone.
     * 
     */
    public Map tags() {
        return this.tags;
    }

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

    public static Builder builder(GetZoneResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String id;
        private Integer maxNumberOfRecordSets;
        private String name;
        private List nameServers;
        private Integer numberOfRecordSets;
        private String resourceGroupName;
        private Map tags;
        public Builder() {}
        public Builder(GetZoneResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.id = defaults.id;
    	      this.maxNumberOfRecordSets = defaults.maxNumberOfRecordSets;
    	      this.name = defaults.name;
    	      this.nameServers = defaults.nameServers;
    	      this.numberOfRecordSets = defaults.numberOfRecordSets;
    	      this.resourceGroupName = defaults.resourceGroupName;
    	      this.tags = defaults.tags;
        }

        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetZoneResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder maxNumberOfRecordSets(Integer maxNumberOfRecordSets) {
            if (maxNumberOfRecordSets == null) {
              throw new MissingRequiredPropertyException("GetZoneResult", "maxNumberOfRecordSets");
            }
            this.maxNumberOfRecordSets = maxNumberOfRecordSets;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetZoneResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder nameServers(List nameServers) {
            if (nameServers == null) {
              throw new MissingRequiredPropertyException("GetZoneResult", "nameServers");
            }
            this.nameServers = nameServers;
            return this;
        }
        public Builder nameServers(String... nameServers) {
            return nameServers(List.of(nameServers));
        }
        @CustomType.Setter
        public Builder numberOfRecordSets(Integer numberOfRecordSets) {
            if (numberOfRecordSets == null) {
              throw new MissingRequiredPropertyException("GetZoneResult", "numberOfRecordSets");
            }
            this.numberOfRecordSets = numberOfRecordSets;
            return this;
        }
        @CustomType.Setter
        public Builder resourceGroupName(String resourceGroupName) {
            if (resourceGroupName == null) {
              throw new MissingRequiredPropertyException("GetZoneResult", "resourceGroupName");
            }
            this.resourceGroupName = resourceGroupName;
            return this;
        }
        @CustomType.Setter
        public Builder tags(Map tags) {
            if (tags == null) {
              throw new MissingRequiredPropertyException("GetZoneResult", "tags");
            }
            this.tags = tags;
            return this;
        }
        public GetZoneResult build() {
            final var _resultValue = new GetZoneResult();
            _resultValue.id = id;
            _resultValue.maxNumberOfRecordSets = maxNumberOfRecordSets;
            _resultValue.name = name;
            _resultValue.nameServers = nameServers;
            _resultValue.numberOfRecordSets = numberOfRecordSets;
            _resultValue.resourceGroupName = resourceGroupName;
            _resultValue.tags = tags;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy