com.azure.resourcemanager.hybridcompute.models.PatchOperationStartedBy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-05.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.hybridcompute.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Indicates if operation was triggered by user or by platform.
*/
public final class PatchOperationStartedBy extends ExpandableStringEnum {
/**
* Static value User for PatchOperationStartedBy.
*/
public static final PatchOperationStartedBy USER = fromString("User");
/**
* Static value Platform for PatchOperationStartedBy.
*/
public static final PatchOperationStartedBy PLATFORM = fromString("Platform");
/**
* Creates a new instance of PatchOperationStartedBy value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public PatchOperationStartedBy() {
}
/**
* Creates or finds a PatchOperationStartedBy from its string representation.
*
* @param name a name to look for.
* @return the corresponding PatchOperationStartedBy.
*/
public static PatchOperationStartedBy fromString(String name) {
return fromString(name, PatchOperationStartedBy.class);
}
/**
* Gets known PatchOperationStartedBy values.
*
* @return known PatchOperationStartedBy values.
*/
public static Collection values() {
return values(PatchOperationStartedBy.class);
}
}