com.azure.resourcemanager.security.models.InheritFromParentState 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.security.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Update Settings.
*
* Enabled - Resource should inherit configurations from parent.
* Disabled - Resource should not inherit configurations from parent.
*/
public final class InheritFromParentState extends ExpandableStringEnum {
/**
* Static value Disabled for InheritFromParentState.
*/
public static final InheritFromParentState DISABLED = fromString("Disabled");
/**
* Static value Enabled for InheritFromParentState.
*/
public static final InheritFromParentState ENABLED = fromString("Enabled");
/**
* Creates a new instance of InheritFromParentState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public InheritFromParentState() {
}
/**
* Creates or finds a InheritFromParentState from its string representation.
*
* @param name a name to look for.
* @return the corresponding InheritFromParentState.
*/
public static InheritFromParentState fromString(String name) {
return fromString(name, InheritFromParentState.class);
}
/**
* Gets known InheritFromParentState values.
*
* @return known InheritFromParentState values.
*/
public static Collection values() {
return values(InheritFromParentState.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy