Skip to content

Instantly share code, notes, and snippets.

@chriskuech
Created April 13, 2019 22:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriskuech/7a5382f416fdc09b370a5b664b6e4b10 to your computer and use it in GitHub Desktop.
Save chriskuech/7a5382f416fdc09b370a5b664b6e4b10 to your computer and use it in GitHub Desktop.
class Cluster {
[ValidatePattern("^[a-z]+$")]
[string] $Service
[ValidateSet("TEST", "STAGE", "CANARY", "PROD")]
[string] $FlightingRing
[ValidateSet("eastus", "westus", "northeurope")]
[string] $Region
[ValidateRange(0, 255)]
[int] $Index
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment