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

com.azure.resourcemanager.datafactory.models.ManagedVirtualNetwork 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.datafactory.models;

import com.azure.core.annotation.Fluent;
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.LinkedHashMap;
import java.util.Map;

/**
 * A managed Virtual Network associated with the Azure Data Factory.
 */
@Fluent
public final class ManagedVirtualNetwork implements JsonSerializable {
    /*
     * Managed Virtual Network ID.
     */
    private String vNetId;

    /*
     * Managed Virtual Network alias.
     */
    private String alias;

    /*
     * A managed Virtual Network associated with the Azure Data Factory
     */
    private Map additionalProperties;

    /**
     * Creates an instance of ManagedVirtualNetwork class.
     */
    public ManagedVirtualNetwork() {
    }

    /**
     * Get the vNetId property: Managed Virtual Network ID.
     * 
     * @return the vNetId value.
     */
    public String vNetId() {
        return this.vNetId;
    }

    /**
     * Get the alias property: Managed Virtual Network alias.
     * 
     * @return the alias value.
     */
    public String alias() {
        return this.alias;
    }

    /**
     * Get the additionalProperties property: A managed Virtual Network associated with the Azure Data Factory.
     * 
     * @return the additionalProperties value.
     */
    public Map additionalProperties() {
        return this.additionalProperties;
    }

    /**
     * Set the additionalProperties property: A managed Virtual Network associated with the Azure Data Factory.
     * 
     * @param additionalProperties the additionalProperties value to set.
     * @return the ManagedVirtualNetwork object itself.
     */
    public ManagedVirtualNetwork withAdditionalProperties(Map additionalProperties) {
        this.additionalProperties = additionalProperties;
        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();
        if (additionalProperties != null) {
            for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
                jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
            }
        }
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of ManagedVirtualNetwork from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of ManagedVirtualNetwork 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 ManagedVirtualNetwork.
     */
    public static ManagedVirtualNetwork fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            ManagedVirtualNetwork deserializedManagedVirtualNetwork = new ManagedVirtualNetwork();
            Map additionalProperties = null;
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("vNetId".equals(fieldName)) {
                    deserializedManagedVirtualNetwork.vNetId = reader.getString();
                } else if ("alias".equals(fieldName)) {
                    deserializedManagedVirtualNetwork.alias = reader.getString();
                } else {
                    if (additionalProperties == null) {
                        additionalProperties = new LinkedHashMap<>();
                    }

                    additionalProperties.put(fieldName, reader.readUntyped());
                }
            }
            deserializedManagedVirtualNetwork.additionalProperties = additionalProperties;

            return deserializedManagedVirtualNetwork;
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy