All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nutanix.dp1.mic.microseg.v4.config.IntraEntityGroupRuleAction Maven / Gradle / Ivy

The newest version!
/*
 * Generated file ..
 *
 * Product version: 4.0.1-beta-1
 *
 * Part of the Nutanix Microseg Versioned APIs
 *
 * (c) 2024 Nutanix Inc.  All rights reserved
 *
 */

package com.nutanix.dp1.mic.microseg.v4.config;


import javax.validation.constraints.*;


import static com.nutanix.dp1.mic.deserializers.MicDeserializerUtils.*;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.Map;

/**
 * A specification to whether traffic between intra secured group entities should be allowed or denied.
 */

public enum IntraEntityGroupRuleAction {

  
  $UNKNOWN,
    
  $REDACTED,
    /**
    * Allow traffic between Intra Entity Groups.
    */
  ALLOW,
    /**
    * Deny traffic between Intra Entity Groups.
    */
  DENY  ;

  private static final Map lookup = new LinkedHashMap();

  static {
    lookup.put("$UNKNOWN", $UNKNOWN);
    lookup.put("$REDACTED", $REDACTED);
    lookup.put("ALLOW", ALLOW);
    lookup.put("DENY", DENY);
  }

  @JsonCreator
  public static IntraEntityGroupRuleAction fromString(String enumTypeVar) {
    return lookup.getOrDefault(enumTypeVar, IntraEntityGroupRuleAction.$UNKNOWN);
  }

  @JsonValue
  public String fromEnum() {
    for (Map.Entry entry : lookup.entrySet()) {
      if (entry.getValue() == this) {
        return entry.getKey();
      }
    }
    return "$UNKNOWN";
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy