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.
/** * 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.
/** * Defines values for GpuSku. */
public final class GpuSku extends ExpandableStringEnum<GpuSku> {
Static value K80 for GpuSku.
/** Static value K80 for GpuSku. */
public static final GpuSku K80 = fromString("K80");
Static value P100 for GpuSku.
/** Static value P100 for GpuSku. */
public static final GpuSku P100 = fromString("P100");
Static value V100 for GpuSku.
/** Static value V100 for GpuSku. */
public static final GpuSku V100 = fromString("V100");
Creates or finds a GpuSku from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding GpuSku
/** * 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); }
Returns:known GpuSku values
/** * @return known GpuSku values */
public static Collection<GpuSku> values() { return values(GpuSku.class); } }