com.azure.resourcemanager.cosmos.models.ServiceSize Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.cosmos.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Instance type for the service.
*/
public final class ServiceSize extends ExpandableStringEnum {
/**
* Static value Cosmos.D4s for ServiceSize.
*/
public static final ServiceSize COSMOS_D4S = fromString("Cosmos.D4s");
/**
* Static value Cosmos.D8s for ServiceSize.
*/
public static final ServiceSize COSMOS_D8S = fromString("Cosmos.D8s");
/**
* Static value Cosmos.D16s for ServiceSize.
*/
public static final ServiceSize COSMOS_D16S = fromString("Cosmos.D16s");
/**
* Creates a new instance of ServiceSize value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ServiceSize() {
}
/**
* Creates or finds a ServiceSize from its string representation.
*
* @param name a name to look for.
* @return the corresponding ServiceSize.
*/
public static ServiceSize fromString(String name) {
return fromString(name, ServiceSize.class);
}
/**
* Gets known ServiceSize values.
*
* @return known ServiceSize values.
*/
public static Collection values() {
return values(ServiceSize.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy