com.azure.resourcemanager.dashboard.models.ZoneRedundancy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-dashboard Show documentation
Show all versions of azure-resourcemanager-dashboard Show documentation
This package contains Microsoft Azure SDK for Dashboard Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Microsoft.Dashboard Rest API spec. Package tag package-2021-09-01-preview.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.dashboard.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for ZoneRedundancy. */
public final class ZoneRedundancy extends ExpandableStringEnum {
/** Static value Disabled for ZoneRedundancy. */
public static final ZoneRedundancy DISABLED = fromString("Disabled");
/** Static value Enabled for ZoneRedundancy. */
public static final ZoneRedundancy ENABLED = fromString("Enabled");
/**
* Creates or finds a ZoneRedundancy from its string representation.
*
* @param name a name to look for.
* @return the corresponding ZoneRedundancy.
*/
@JsonCreator
public static ZoneRedundancy fromString(String name) {
return fromString(name, ZoneRedundancy.class);
}
/** @return known ZoneRedundancy values. */
public static Collection values() {
return values(ZoneRedundancy.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy