![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.keyvault.models.ActionsRequired Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.keyvault.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* A message indicating if changes on the service provider require any updates on the consumer.
*/
public final class ActionsRequired extends ExpandableStringEnum {
/**
* Static value None for ActionsRequired.
*/
public static final ActionsRequired NONE = fromString("None");
/**
* Creates a new instance of ActionsRequired value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ActionsRequired() {
}
/**
* Creates or finds a ActionsRequired from its string representation.
*
* @param name a name to look for.
* @return the corresponding ActionsRequired.
*/
public static ActionsRequired fromString(String name) {
return fromString(name, ActionsRequired.class);
}
/**
* Gets known ActionsRequired values.
*
* @return known ActionsRequired values.
*/
public static Collection values() {
return values(ActionsRequired.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy