Enum KnownLinuxVirtualMachineImage
- java.lang.Object
-
- java.lang.Enum<KnownLinuxVirtualMachineImage>
-
- com.azure.resourcemanager.compute.models.KnownLinuxVirtualMachineImage
-
- All Implemented Interfaces:
Serializable,Comparable<KnownLinuxVirtualMachineImage>
public enum KnownLinuxVirtualMachineImage extends Enum<KnownLinuxVirtualMachineImage>
The popular Azure Linux images.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CENTOS_8_1CentOS 8.1.CENTOS_8_3CentOS 8.3.DEBIAN_10Debian 10.DEBIAN_9Debian 9.OPENSUSE_LEAP_15OpenSUSE-Leap 15.OPENSUSE_LEAP_15_1Deprecated.use OPENSUSE_LEAP_15.ORACLE_LINUX_8_1Oracle Linux 8.1.REDHAT_RHEL_8_2RedHat RHEL 8.2.SLES_15SLES 15.SLES_15_SP1Deprecated.use SLES_15.UBUNTU_SERVER_16_04_LTSUbuntuServer 16.04LTS.UBUNTU_SERVER_18_04_LTSUbuntuServer 18.04LTS.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ImageReferenceimageReference()Stringoffer()Stringpublisher()Stringsku()static KnownLinuxVirtualMachineImagevalueOf(String name)Returns the enum constant of this type with the specified name.static KnownLinuxVirtualMachineImage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UBUNTU_SERVER_16_04_LTS
public static final KnownLinuxVirtualMachineImage UBUNTU_SERVER_16_04_LTS
UbuntuServer 16.04LTS.
-
UBUNTU_SERVER_18_04_LTS
public static final KnownLinuxVirtualMachineImage UBUNTU_SERVER_18_04_LTS
UbuntuServer 18.04LTS.
-
DEBIAN_9
public static final KnownLinuxVirtualMachineImage DEBIAN_9
Debian 9.
-
DEBIAN_10
public static final KnownLinuxVirtualMachineImage DEBIAN_10
Debian 10.
-
CENTOS_8_1
public static final KnownLinuxVirtualMachineImage CENTOS_8_1
CentOS 8.1.
-
CENTOS_8_3
public static final KnownLinuxVirtualMachineImage CENTOS_8_3
CentOS 8.3.
-
OPENSUSE_LEAP_15_1
@Deprecated public static final KnownLinuxVirtualMachineImage OPENSUSE_LEAP_15_1
Deprecated.use OPENSUSE_LEAP_15.OpenSUSE-Leap 15.1.
-
OPENSUSE_LEAP_15
public static final KnownLinuxVirtualMachineImage OPENSUSE_LEAP_15
OpenSUSE-Leap 15.
-
SLES_15_SP1
@Deprecated public static final KnownLinuxVirtualMachineImage SLES_15_SP1
Deprecated.use SLES_15.SLES 15-SP1-gen1.
-
SLES_15
public static final KnownLinuxVirtualMachineImage SLES_15
SLES 15.
-
REDHAT_RHEL_8_2
public static final KnownLinuxVirtualMachineImage REDHAT_RHEL_8_2
RedHat RHEL 8.2.
-
ORACLE_LINUX_8_1
public static final KnownLinuxVirtualMachineImage ORACLE_LINUX_8_1
Oracle Linux 8.1.
-
-
Method Detail
-
values
public static KnownLinuxVirtualMachineImage[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KnownLinuxVirtualMachineImage c : KnownLinuxVirtualMachineImage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KnownLinuxVirtualMachineImage valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
publisher
public String publisher()
- Returns:
- the name of the image publisher
-
offer
public String offer()
- Returns:
- the name of the image offer
-
sku
public String sku()
- Returns:
- the name of the image SKU
-
imageReference
public ImageReference imageReference()
- Returns:
- the image reference
-
-