You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/api/users/update.gen.go

53 lines
1.2 KiB

// Code generated by "make api"; DO NOT EDIT.
package users
import (
"context"
"fmt"
"github.com/hashicorp/watchtower/api"
)
func (s User) UpdateUser(ctx context.Context, r *User) (*User, *api.Error, error) {
if r == nil {
}
if r.Id == "" {
return nil, nil, fmt.Errorf("empty User ID field in CreateUser request")
}
if s.Client == nil {
return nil, nil, fmt.Errorf("nil client in CreateUser request")
}
var opts []api.Option
if s.Scope.Id != "" {
// If it's explicitly set here, override anything that might be in the
// client
opts = append(opts, api.WithScopeId(s.Scope.Id))
}
id := r.Id
r.Id = ""
req, err := s.Client.NewRequest(ctx, "PATCH", fmt.Sprintf("%s/%s", "users", id), r, opts...)
if err != nil {
return nil, nil, fmt.Errorf("error creating CreateUser request: %w", err)
}
resp, err := s.Client.Do(req)
if err != nil {
return nil, nil, fmt.Errorf("error performing client request during UpdateUser call: %w", err)
}
target := new(User)
apiErr, err := resp.Decode(target)
if err != nil {
return nil, nil, fmt.Errorf("error decoding UpdateUser repsonse: %w", err)
}
target.Client = s.Client
return target, apiErr, nil
}