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

com.azure.resourcemanager.delegatednetwork.models.OrchestratorKind Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for DelegatedNetwork Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. DNC web api provides way to create, get and delete dnc controller. Package tag package-2021-03-15.

There is a newer version: 1.0.0-beta.3
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.delegatednetwork.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/** Defines values for OrchestratorKind. */
public final class OrchestratorKind extends ExpandableStringEnum {
    /** Static value Kubernetes for OrchestratorKind. */
    public static final OrchestratorKind KUBERNETES = fromString("Kubernetes");

    /**
     * Creates or finds a OrchestratorKind from its string representation.
     *
     * @param name a name to look for.
     * @return the corresponding OrchestratorKind.
     */
    @JsonCreator
    public static OrchestratorKind fromString(String name) {
        return fromString(name, OrchestratorKind.class);
    }

    /** @return known OrchestratorKind values. */
    public static Collection values() {
        return values(OrchestratorKind.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy