com.azure.resourcemanager.elasticsan.models.VirtualNetworkRule Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.elasticsan.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Virtual Network rule.
*/
@Fluent
public final class VirtualNetworkRule implements JsonSerializable {
/*
* Resource ID of a subnet, for example:
* /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}
* /subnets/{subnetName}.
*/
private String virtualNetworkResourceId;
/*
* The action of virtual network rule.
*/
private Action action;
/**
* Creates an instance of VirtualNetworkRule class.
*/
public VirtualNetworkRule() {
}
/**
* Get the virtualNetworkResourceId property: Resource ID of a subnet, for example:
* /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
*
* @return the virtualNetworkResourceId value.
*/
public String virtualNetworkResourceId() {
return this.virtualNetworkResourceId;
}
/**
* Set the virtualNetworkResourceId property: Resource ID of a subnet, for example:
* /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
*
* @param virtualNetworkResourceId the virtualNetworkResourceId value to set.
* @return the VirtualNetworkRule object itself.
*/
public VirtualNetworkRule withVirtualNetworkResourceId(String virtualNetworkResourceId) {
this.virtualNetworkResourceId = virtualNetworkResourceId;
return this;
}
/**
* Get the action property: The action of virtual network rule.
*
* @return the action value.
*/
public Action action() {
return this.action;
}
/**
* Set the action property: The action of virtual network rule.
*
* @param action the action value to set.
* @return the VirtualNetworkRule object itself.
*/
public VirtualNetworkRule withAction(Action action) {
this.action = action;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (virtualNetworkResourceId() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property virtualNetworkResourceId in model VirtualNetworkRule"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(VirtualNetworkRule.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("id", this.virtualNetworkResourceId);
jsonWriter.writeStringField("action", this.action == null ? null : this.action.toString());
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VirtualNetworkRule from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VirtualNetworkRule if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the VirtualNetworkRule.
*/
public static VirtualNetworkRule fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VirtualNetworkRule deserializedVirtualNetworkRule = new VirtualNetworkRule();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedVirtualNetworkRule.virtualNetworkResourceId = reader.getString();
} else if ("action".equals(fieldName)) {
deserializedVirtualNetworkRule.action = Action.fromString(reader.getString());
} else {
reader.skipChildren();
}
}
return deserializedVirtualNetworkRule;
});
}
}