Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "list", Short: "Returns a list of Developer Applications", Long: "Returns a list of app IDs within an organization based on app status", RunE: func(cmd *cobra.Command, args []string) (err error) { u, _ := url.Parse(shared.BaseURL) u.Path = path.Join(u.Path, shared.RootArgs.Org, "apps") q := u.Query() if expand { q.Set("expand", "true") } else { q.Set("expand", "false") } if expand && includeCred { q.Set("includeCred", "true") } else if expand && !includeCred { q.Set("includeCred", "false") } if count != "" { q.Set("row", count) } u.RawQuery = q.Encode() _, err = shared.HttpClient(true, u.String()) return }, }
Cmd to list apps
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.