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"`
}
As validated on both v12 and v13, the
Certkeynameparameter for resource Sslcertlink is incorrect and should beCertkey. As is, an error is received Incorrect parameter name. Interestingly, the api docs show it as Certkeyname.Current:
Updated: