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

com.azure.resourcemanager.appplatform.fluent.models.AvailableRuntimeVersionsInner Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure App Platform Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.42.0
Show 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.appplatform.fluent.models;

import com.azure.core.annotation.Immutable;
import com.azure.resourcemanager.appplatform.models.SupportedRuntimeVersion;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/**
 * The AvailableRuntimeVersions model.
 */
@Immutable
public final class AvailableRuntimeVersionsInner {
    /*
     * A list of all supported runtime versions.
     */
    @JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY)
    private List value;

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

    /**
     * Get the value property: A list of all supported runtime versions.
     * 
     * @return the value value.
     */
    public List value() {
        return this.value;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (value() != null) {
            value().forEach(e -> e.validate());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy