github.com/wanddynosios/cli/v8@v8.7.9-0.20240221182337-1a92e3a7017f/api/cloudcontroller/ccv3/constant/security_group_lifecycle.go (about)

     1  package constant
     2  
     3  // SecurityGroupLifecycle represents the lifecycle phase of a security group
     4  // binding.
     5  type SecurityGroupLifecycle string
     6  
     7  const (
     8  	// SecurityGroupLifecycleRunning indicates the lifecycle phase running.
     9  	SecurityGroupLifecycleRunning SecurityGroupLifecycle = "running"
    10  
    11  	// SecurityGroupLifecycleStaging indicates the lifecycle phase staging.
    12  	SecurityGroupLifecycleStaging SecurityGroupLifecycle = "staging"
    13  )