com.azure.resourcemanager.network.models.PrivateDnsZoneConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.network.fluent.models.PrivateDnsZonePropertiesFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* PrivateDnsZoneConfig resource.
*/
@Fluent
public final class PrivateDnsZoneConfig {
/*
* Name of the resource that is unique within a resource group. This name can be used to access the resource.
*/
@JsonProperty(value = "name")
private String name;
/*
* Properties of the private dns zone configuration.
*/
@JsonProperty(value = "properties")
private PrivateDnsZonePropertiesFormat innerProperties;
/**
* Creates an instance of PrivateDnsZoneConfig class.
*/
public PrivateDnsZoneConfig() {
}
/**
* Get the name property: Name of the resource that is unique within a resource group. This name can be used to
* access the resource.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: Name of the resource that is unique within a resource group. This name can be used to
* access the resource.
*
* @param name the name value to set.
* @return the PrivateDnsZoneConfig object itself.
*/
public PrivateDnsZoneConfig withName(String name) {
this.name = name;
return this;
}
/**
* Get the innerProperties property: Properties of the private dns zone configuration.
*
* @return the innerProperties value.
*/
private PrivateDnsZonePropertiesFormat innerProperties() {
return this.innerProperties;
}
/**
* Get the privateDnsZoneId property: The resource id of the private dns zone.
*
* @return the privateDnsZoneId value.
*/
public String privateDnsZoneId() {
return this.innerProperties() == null ? null : this.innerProperties().privateDnsZoneId();
}
/**
* Set the privateDnsZoneId property: The resource id of the private dns zone.
*
* @param privateDnsZoneId the privateDnsZoneId value to set.
* @return the PrivateDnsZoneConfig object itself.
*/
public PrivateDnsZoneConfig withPrivateDnsZoneId(String privateDnsZoneId) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateDnsZonePropertiesFormat();
}
this.innerProperties().withPrivateDnsZoneId(privateDnsZoneId);
return this;
}
/**
* Get the recordSets property: A collection of information regarding a recordSet, holding information to identify
* private resources.
*
* @return the recordSets value.
*/
public List recordSets() {
return this.innerProperties() == null ? null : this.innerProperties().recordSets();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
}