com.microsoft.azure.management.containerinstance.GpuSku Maven / Gradle / Ivy
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.containerinstance;
import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;
/**
* Defines values for GpuSku.
*/
public final class GpuSku extends ExpandableStringEnum {
/** Static value K80 for GpuSku. */
public static final GpuSku K80 = fromString("K80");
/** Static value P100 for GpuSku. */
public static final GpuSku P100 = fromString("P100");
/** Static value V100 for GpuSku. */
public static final GpuSku V100 = fromString("V100");
/**
* Creates or finds a GpuSku from its string representation.
* @param name a name to look for
* @return the corresponding GpuSku
*/
@JsonCreator
public static GpuSku fromString(String name) {
return fromString(name, GpuSku.class);
}
/**
* @return known GpuSku values
*/
public static Collection values() {
return values(GpuSku.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy