com.azure.resourcemanager.hybridcompute.models.AccessRuleDirection 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-07.
// 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 com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/**
* Indicates direction of an access rule.
*/
public final class AccessRuleDirection extends ExpandableStringEnum {
/**
* Static value Inbound for AccessRuleDirection.
*/
public static final AccessRuleDirection INBOUND = fromString("Inbound");
/**
* Static value Outbound for AccessRuleDirection.
*/
public static final AccessRuleDirection OUTBOUND = fromString("Outbound");
/**
* Creates a new instance of AccessRuleDirection value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public AccessRuleDirection() {
}
/**
* Creates or finds a AccessRuleDirection from its string representation.
*
* @param name a name to look for.
* @return the corresponding AccessRuleDirection.
*/
@JsonCreator
public static AccessRuleDirection fromString(String name) {
return fromString(name, AccessRuleDirection.class);
}
/**
* Gets known AccessRuleDirection values.
*
* @return known AccessRuleDirection values.
*/
public static Collection values() {
return values(AccessRuleDirection.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy