Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect parameter name for sslcertlink resource #67

Closed
gdbarron opened this issue Nov 19, 2022 · 0 comments · Fixed by gdbarron/adc-nitro-go#1 · May be fixed by #68
Closed

Incorrect parameter name for sslcertlink resource #67

gdbarron opened this issue Nov 19, 2022 · 0 comments · Fixed by gdbarron/adc-nitro-go#1 · May be fixed by #68

Comments

@gdbarron
Copy link

As validated on both v12 and v13, the Certkeyname parameter for resource Sslcertlink is incorrect and should be Certkey. As is, an error is received Incorrect parameter name. Interestingly, the api docs show it as Certkeyname.

Current:

type Sslcertlink struct {

	//------- Read only Parameter ---------;

	Certkeyname         string `json:"certkeyname,omitempty"`
	Linkcertkeyname string `json:"linkcertkeyname,omitempty"`
}

Updated:

type Sslcertlink struct {

	//------- Read only Parameter ---------;

	Certkey         string `json:"certkey,omitempty"`
	Linkcertkeyname string `json:"linkcertkeyname,omitempty"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant