returns service plan of Service.ibmcloud.ibm.com
(objMap map[string]interface{})
| 548 | |
| 549 | // returns service plan of Service.ibmcloud.ibm.com |
| 550 | func getPlan(objMap map[string]interface{}) string { |
| 551 | if spec, ok := objMap[spec].(map[string]interface{}); ok { |
| 552 | if plan, ok := spec["plan"].(string); ok { |
| 553 | return plan |
| 554 | } |
| 555 | } |
| 556 | return "" |
| 557 | } |
no outgoing calls
no test coverage detected