com.azure.resourcemanager.dnsresolver.models.DnsForwardingRulesetPatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-dnsresolver Show documentation
Show all versions of azure-resourcemanager-dnsresolver Show documentation
This package contains Microsoft Azure SDK for DnsResolver Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The DNS Resolver Management Client. Package tag package-2022-07.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.dnsresolver.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.SubResource;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.List;
import java.util.Map;
/**
* Describes a DNS forwarding ruleset PATCH operation.
*/
@Fluent
public final class DnsForwardingRulesetPatch implements JsonSerializable {
/*
* The reference to the DNS resolver outbound endpoints that are used to route DNS queries matching the forwarding
* rules in the ruleset to the target DNS servers.
*/
private List dnsResolverOutboundEndpoints;
/*
* Tags for DNS Resolver.
*/
private Map tags;
/**
* Creates an instance of DnsForwardingRulesetPatch class.
*/
public DnsForwardingRulesetPatch() {
}
/**
* Get the dnsResolverOutboundEndpoints property: The reference to the DNS resolver outbound endpoints that are used
* to route DNS queries matching the forwarding rules in the ruleset to the target DNS servers.
*
* @return the dnsResolverOutboundEndpoints value.
*/
public List dnsResolverOutboundEndpoints() {
return this.dnsResolverOutboundEndpoints;
}
/**
* Set the dnsResolverOutboundEndpoints property: The reference to the DNS resolver outbound endpoints that are used
* to route DNS queries matching the forwarding rules in the ruleset to the target DNS servers.
*
* @param dnsResolverOutboundEndpoints the dnsResolverOutboundEndpoints value to set.
* @return the DnsForwardingRulesetPatch object itself.
*/
public DnsForwardingRulesetPatch withDnsResolverOutboundEndpoints(List dnsResolverOutboundEndpoints) {
this.dnsResolverOutboundEndpoints = dnsResolverOutboundEndpoints;
return this;
}
/**
* Get the tags property: Tags for DNS Resolver.
*
* @return the tags value.
*/
public Map tags() {
return this.tags;
}
/**
* Set the tags property: Tags for DNS Resolver.
*
* @param tags the tags value to set.
* @return the DnsForwardingRulesetPatch object itself.
*/
public DnsForwardingRulesetPatch withTags(Map tags) {
this.tags = tags;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeArrayField("dnsResolverOutboundEndpoints", this.dnsResolverOutboundEndpoints,
(writer, element) -> writer.writeJson(element));
jsonWriter.writeMapField("tags", this.tags, (writer, element) -> writer.writeString(element));
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of DnsForwardingRulesetPatch from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of DnsForwardingRulesetPatch if the JsonReader was pointing to an instance of it, or null if
* it was pointing to JSON null.
* @throws IOException If an error occurs while reading the DnsForwardingRulesetPatch.
*/
public static DnsForwardingRulesetPatch fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
DnsForwardingRulesetPatch deserializedDnsForwardingRulesetPatch = new DnsForwardingRulesetPatch();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("dnsResolverOutboundEndpoints".equals(fieldName)) {
List dnsResolverOutboundEndpoints
= reader.readArray(reader1 -> SubResource.fromJson(reader1));
deserializedDnsForwardingRulesetPatch.dnsResolverOutboundEndpoints = dnsResolverOutboundEndpoints;
} else if ("tags".equals(fieldName)) {
Map tags = reader.readMap(reader1 -> reader1.getString());
deserializedDnsForwardingRulesetPatch.tags = tags;
} else {
reader.skipChildren();
}
}
return deserializedDnsForwardingRulesetPatch;
});
}
}