github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/integration/helpers/quota.go (about)

     1  package helpers
     2  
     3  func QuotaName(name ...string) string {
     4  	if len(name) > 0 {
     5  		return PrefixedRandomName("INTEGRATION-QUOTA-" + name[0])
     6  	}
     7  	return PrefixedRandomName("INTEGRATION-QUOTA")
     8  }