github.com/IBM-Cloud/bluemix-go@v0.0.0-20240423071914-9e96525baef4/examples/resource/controller/service-alias/README.md (about) 1 # Resource service-instance -alias example 2 3 This example shows how to perform CRUD operation on resource service-instance-alias 4 5 This creates a service instance of specified service offering, plan type, location in specified resource-group if provided else creates in default resource group. After successfull creation , it creates a alias of the instance in specified org and space and then deletes service instance alias and service instance. 6 7 Example: 8 9 ``` 10 go run main.go -service "cloud-object-storage" -plan "lite" -location "global" -name test -alias testalias -org abc@in.ibm.com -space prod 11 ``` 12 13 14 15