Class/Orbit.Enums.ps1

# Module: Orbit
# Function: Enums
# Author: David Eberhardt
# Updated: 10-JUL 2023
# Status: Live




# GeoRegion
Add-Type -TypeDefinition @'
  public enum GeoRegion {
    AMER,
    EMEA,
    APAC,
  }
'@


# Show-OrbitFunctionStatus
Add-Type -TypeDefinition @'
  public enum OrbitFunctionStatus {
  Live,
  RC,
  Beta,
  Alpha,
  Deprecated,
  Unmanaged,
  }
'@