type CreateGlobalRoleBindingInput struct {
Name string `json:"name" jsonschema:"Global Role Binding name"`
Role string `json:"role" jsonschema:"Name of the GlobalRole to bind"`
Subjects []string `json:"subjects" jsonschema:"List of user names to bind to the role"`
}
type UpdateGlobalRoleBindingInput struct {
Name string `json:"name" jsonschema:"Global Role Binding name"`
Role string `json:"role" jsonschema:"Name of the GlobalRole to bind"`
Subjects []string `json:"subjects" jsonschema:"List of user names to bind to the role"`
}