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