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

com.azure.resourcemanager.hybridcompute.fluent.models.GatewayProperties Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.hybridcompute.fluent.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 com.azure.resourcemanager.hybridcompute.models.GatewayType;
import com.azure.resourcemanager.hybridcompute.models.ProvisioningState;
import java.io.IOException;
import java.util.List;

/**
 * Describes the properties of a Gateway Profile.
 */
@Fluent
public final class GatewayProperties implements JsonSerializable {
    /*
     * The provisioning state, which only appears in the response.
     */
    private ProvisioningState provisioningState;

    /*
     * A unique, immutable, identifier for the Gateway.
     */
    private String gatewayId;

    /*
     * The type of the Gateway resource.
     */
    private GatewayType gatewayType;

    /*
     * The endpoint fqdn for the Gateway.
     */
    private String gatewayEndpoint;

    /*
     * Specifies the list of features that are enabled for this Gateway.
     */
    private List allowedFeatures;

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

    /**
     * Get the provisioningState property: The provisioning state, which only appears in the response.
     * 
     * @return the provisioningState value.
     */
    public ProvisioningState provisioningState() {
        return this.provisioningState;
    }

    /**
     * Get the gatewayId property: A unique, immutable, identifier for the Gateway.
     * 
     * @return the gatewayId value.
     */
    public String gatewayId() {
        return this.gatewayId;
    }

    /**
     * Get the gatewayType property: The type of the Gateway resource.
     * 
     * @return the gatewayType value.
     */
    public GatewayType gatewayType() {
        return this.gatewayType;
    }

    /**
     * Set the gatewayType property: The type of the Gateway resource.
     * 
     * @param gatewayType the gatewayType value to set.
     * @return the GatewayProperties object itself.
     */
    public GatewayProperties withGatewayType(GatewayType gatewayType) {
        this.gatewayType = gatewayType;
        return this;
    }

    /**
     * Get the gatewayEndpoint property: The endpoint fqdn for the Gateway.
     * 
     * @return the gatewayEndpoint value.
     */
    public String gatewayEndpoint() {
        return this.gatewayEndpoint;
    }

    /**
     * Get the allowedFeatures property: Specifies the list of features that are enabled for this Gateway.
     * 
     * @return the allowedFeatures value.
     */
    public List allowedFeatures() {
        return this.allowedFeatures;
    }

    /**
     * Set the allowedFeatures property: Specifies the list of features that are enabled for this Gateway.
     * 
     * @param allowedFeatures the allowedFeatures value to set.
     * @return the GatewayProperties object itself.
     */
    public GatewayProperties withAllowedFeatures(List allowedFeatures) {
        this.allowedFeatures = allowedFeatures;
        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.writeStringField("gatewayType", this.gatewayType == null ? null : this.gatewayType.toString());
        jsonWriter.writeArrayField("allowedFeatures", this.allowedFeatures,
            (writer, element) -> writer.writeString(element));
        return jsonWriter.writeEndObject();
    }

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

                if ("provisioningState".equals(fieldName)) {
                    deserializedGatewayProperties.provisioningState = ProvisioningState.fromString(reader.getString());
                } else if ("gatewayId".equals(fieldName)) {
                    deserializedGatewayProperties.gatewayId = reader.getString();
                } else if ("gatewayType".equals(fieldName)) {
                    deserializedGatewayProperties.gatewayType = GatewayType.fromString(reader.getString());
                } else if ("gatewayEndpoint".equals(fieldName)) {
                    deserializedGatewayProperties.gatewayEndpoint = reader.getString();
                } else if ("allowedFeatures".equals(fieldName)) {
                    List allowedFeatures = reader.readArray(reader1 -> reader1.getString());
                    deserializedGatewayProperties.allowedFeatures = allowedFeatures;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedGatewayProperties;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy