com.azure.resourcemanager.compute.models.LinuxVMGuestPatchMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management 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.compute.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine
* scale set with OrchestrationMode as Flexible.<br /><br /> Possible values are:<br /><br />
* **ImageDefault** - The virtual machine's default patching configuration is used. <br /><br />
* **AutomaticByPlatform** - The virtual machine will be automatically updated by the platform. The property
* provisionVMAgent must be true.
*/
public final class LinuxVMGuestPatchMode extends ExpandableStringEnum {
/**
* Static value ImageDefault for LinuxVMGuestPatchMode.
*/
public static final LinuxVMGuestPatchMode IMAGE_DEFAULT = fromString("ImageDefault");
/**
* Static value AutomaticByPlatform for LinuxVMGuestPatchMode.
*/
public static final LinuxVMGuestPatchMode AUTOMATIC_BY_PLATFORM = fromString("AutomaticByPlatform");
/**
* Creates a new instance of LinuxVMGuestPatchMode value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public LinuxVMGuestPatchMode() {
}
/**
* Creates or finds a LinuxVMGuestPatchMode from its string representation.
*
* @param name a name to look for.
* @return the corresponding LinuxVMGuestPatchMode.
*/
public static LinuxVMGuestPatchMode fromString(String name) {
return fromString(name, LinuxVMGuestPatchMode.class);
}
/**
* Gets known LinuxVMGuestPatchMode values.
*
* @return known LinuxVMGuestPatchMode values.
*/
public static Collection values() {
return values(LinuxVMGuestPatchMode.class);
}
}