github.com/IBM-Cloud/bluemix-go@v0.0.0-20240314082800-4e02a69b84b2/examples/mccp/service/README.md (about) 1 # Service Instance example 2 3 This example shows how to perform CRUD operation on cloud foundry service instance and how to associates a service key. 4 5 This creates a service instance of specified service offering and plan type. After successfull creation it associates a service key, deletes service key and service instance. 6 7 Example: 8 9 ``` 10 go run main.go -org example.com -space test 11 ``` 12 13 If user doesn't want to delete service instance and service key 14 15 Example: 16 17 ``` 18 go run main.go -org example.com -space test -no-delete true 19 ``` 20 21 22