mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
Removed unused query params
This commit is contained in:
parent
d73575ab05
commit
d877f9b18f
1 changed files with 12 additions and 15 deletions
|
|
@ -37,21 +37,18 @@ const (
|
||||||
// takes an object as an argument. However, the implementation may not
|
// takes an object as an argument. However, the implementation may not
|
||||||
// use all of the properties within the object.
|
// use all of the properties within the object.
|
||||||
type QueryParams struct {
|
type QueryParams struct {
|
||||||
Host string // set by the 'host' flag
|
Host string // set by the 'host' flag
|
||||||
Port int // set by the 'port' flag
|
Port int // set by the 'port' flag
|
||||||
Protocol string // set by the 'protocol' flag
|
Protocol string // set by the 'protocol' flag
|
||||||
Username string // set the BMC username with the 'username' flag
|
Username string // set the BMC username with the 'username' flag
|
||||||
Password string // set the BMC password with the 'password' flag
|
Password string // set the BMC password with the 'password' flag
|
||||||
Drivers []string // DEPRECATED: TO BE REMOVED!!!
|
Concurrency int // set the of concurrent jobs with the 'concurrency' flag
|
||||||
Concurrency int // set the of concurrent jobs with the 'concurrency' flag
|
Timeout int // set the timeout with the 'timeout' flag
|
||||||
Preferred string // DEPRECATED: TO BE REMOVED!!!
|
CaCertPath string // set the cert path with the 'cacert' flag
|
||||||
Timeout int // set the timeout with the 'timeout' flag
|
Verbose bool // set whether to include verbose output with 'verbose' flag
|
||||||
CaCertPath string // set the cert path with the 'cacert' flag
|
OutputPath string // set the path to save output with 'output' flag
|
||||||
Verbose bool // set whether to include verbose output with 'verbose' flag
|
ForceUpdate bool // set whether to force updating SMD with 'force-update' flag
|
||||||
IpmitoolPath string // DEPRECATED: TO BE REMOVE!!!
|
AccessToken string // set the access token to include in request with 'access-token' flag
|
||||||
OutputPath string // set the path to save output with 'output' flag
|
|
||||||
ForceUpdate bool // set whether to force updating SMD with 'force-update' flag
|
|
||||||
AccessToken string // set the access token to include in request with 'access-token' flag
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// This is the main function used to collect information from the BMC nodes via Redfish.
|
// This is the main function used to collect information from the BMC nodes via Redfish.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue