Documentation ¶
Overview ¶
Code generated by "make api"; DO NOT EDIT.
Code generated by "make api"; DO NOT EDIT.
Index ¶
- type Account
- type Client
- func (c *Client) AddAccounts(ctx context.Context, userId string, version uint32, accountIds []string, ...) (*UserUpdateResult, error)
- func (c *Client) ApiClient() *api.Client
- func (c *Client) Create(ctx context.Context, scopeId string, opt ...Option) (*UserCreateResult, error)
- func (c *Client) Delete(ctx context.Context, userId string, opt ...Option) (*UserDeleteResult, error)
- func (c *Client) List(ctx context.Context, scopeId string, opt ...Option) (*UserListResult, error)
- func (c *Client) Read(ctx context.Context, userId string, opt ...Option) (*UserReadResult, error)
- func (c *Client) RemoveAccounts(ctx context.Context, userId string, version uint32, accountIds []string, ...) (*UserUpdateResult, error)
- func (c *Client) SetAccounts(ctx context.Context, userId string, version uint32, accountIds []string, ...) (*UserUpdateResult, error)
- func (c *Client) Update(ctx context.Context, userId string, version uint32, opt ...Option) (*UserUpdateResult, error)
- type Option
- type User
- type UserCreateResult
- type UserDeleteResult
- type UserListResult
- type UserReadResult
- type UserUpdateResult
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is a client for this collection
func NewClient ¶
Creates a new client for this collection. The submitted API client is cloned; modifications to it after generating this client will not have effect. If you need to make changes to the underlying API client, use ApiClient() to access it.
func (*Client) AddAccounts ¶
func (*Client) RemoveAccounts ¶
func (*Client) SetAccounts ¶
type Option ¶
type Option func(*options)
Option is a func that sets optional attributes for a call. This does not need to be used directly, but instead option arguments are built from the functions in this package. WithX options set a value to that given in the argument; DefaultX options indicate that the value should be set to its default. When an API call is made options are processed in ther order they appear in the function call, so for a given argument X, a succession of WithX or DefaultX calls will result in the last call taking effect.
func DefaultDescription ¶
func DefaultDescription() Option
func DefaultName ¶
func DefaultName() Option
func WithAutomaticVersioning ¶
If set, and if the version is zero during an update, the API will perform a fetch to get the current version of the resource and populate it during the update call. This is convenient but opens up the possibility for subtle order-of-modification issues, so use carefully.
func WithDescription ¶
type User ¶
type User struct { Id string `json:"id,omitempty"` ScopeId string `json:"scope_id,omitempty"` Scope *scopes.ScopeInfo `json:"scope,omitempty"` Name string `json:"name,omitempty"` Description string `json:"description,omitempty"` CreatedTime time.Time `json:"created_time,omitempty"` UpdatedTime time.Time `json:"updated_time,omitempty"` Version uint32 `json:"version,omitempty"` AccountIds []string `json:"account_ids,omitempty"` Accounts []*Account `json:"accounts,omitempty"` // contains filtered or unexported fields }
func (User) ResponseBody ¶
func (User) ResponseMap ¶
type UserCreateResult ¶
type UserCreateResult = UserReadResult
type UserDeleteResult ¶
type UserDeleteResult struct {
// contains filtered or unexported fields
}
func (UserDeleteResult) GetResponseBody ¶
func (n UserDeleteResult) GetResponseBody() *bytes.Buffer
func (UserDeleteResult) GetResponseMap ¶
func (n UserDeleteResult) GetResponseMap() map[string]interface{}
type UserListResult ¶
type UserListResult struct { Items []*User // contains filtered or unexported fields }
func (UserListResult) GetItems ¶
func (n UserListResult) GetItems() interface{}
func (UserListResult) GetResponseBody ¶
func (n UserListResult) GetResponseBody() *bytes.Buffer
func (UserListResult) GetResponseMap ¶
func (n UserListResult) GetResponseMap() map[string]interface{}
type UserReadResult ¶
type UserReadResult struct { Item *User // contains filtered or unexported fields }
func (UserReadResult) GetItem ¶
func (n UserReadResult) GetItem() interface{}
func (UserReadResult) GetResponseBody ¶
func (n UserReadResult) GetResponseBody() *bytes.Buffer
func (UserReadResult) GetResponseMap ¶
func (n UserReadResult) GetResponseMap() map[string]interface{}
type UserUpdateResult ¶
type UserUpdateResult = UserReadResult