You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an endpoint takes a request body the description does not mention it in the parameters:
// SiloPolicyUpdate: Update a silo's IAM policy//// Parameters:// - `siloName`: The silo's unique name.func (c*Client) SiloPolicyUpdate(siloNameName, j*SiloRolePolicy) (*SiloRolePolicy, error) {
It should look like this:
// SiloPolicyUpdate: Update a silo's IAM policy//// Parameters:// - `siloName`: The silo's unique name.// - `j`: SiloRolePolicy is client view of a [`Policy`], which describes how this resource may be accessedfunc (c*Client) SiloPolicyUpdate(siloNameName, j*SiloRolePolicy) (*SiloRolePolicy, error) {
The text was updated successfully, but these errors were encountered:
When an endpoint takes a request body the description does not mention it in the parameters:
It should look like this:
The text was updated successfully, but these errors were encountered: