(s []string)
| 1098 | } |
| 1099 | |
| 1100 | func excludeEmptyEntries(s []string) []string { |
| 1101 | result := make([]string, 0, len(s)) |
| 1102 | for _, v := range s { |
| 1103 | if v != "" { |
| 1104 | result = append(result, v) |
| 1105 | } |
| 1106 | } |
| 1107 | |
| 1108 | return result |
| 1109 | } |
| 1110 | |
| 1111 | func (c *cli) appPickerOptions(requestOpts ...management.RequestOption) pickerOptionsFunc { |
| 1112 | requestOpts = append(requestOpts, management.Parameter("is_global", "false")) |
no outgoing calls