Documentation
¶
Index ¶
- type Client
- func (c *Client) Create(ctx context.Context, ...) (*management.CreateUserAttributeProfileResponseContent, error)
- func (c *Client) Delete(ctx context.Context, id string, opts ...option.RequestOption) error
- func (c *Client) Get(ctx context.Context, id string, opts ...option.RequestOption) (*management.GetUserAttributeProfileResponseContent, error)
- func (c *Client) GetTemplate(ctx context.Context, id string, opts ...option.RequestOption) (*management.GetUserAttributeProfileTemplateResponseContent, error)
- func (c *Client) List(ctx context.Context, ...) (...)
- func (c *Client) ListTemplates(ctx context.Context, opts ...option.RequestOption) (*management.ListUserAttributeProfileTemplateResponseContent, error)
- func (c *Client) Update(ctx context.Context, id string, ...) (*management.UpdateUserAttributeProfileResponseContent, error)
- type RawClient
- func (r *RawClient) Create(ctx context.Context, ...) (*core.Response[*management.CreateUserAttributeProfileResponseContent], error)
- func (r *RawClient) Delete(ctx context.Context, id string, opts ...option.RequestOption) (*core.Response[any], error)
- func (r *RawClient) Get(ctx context.Context, id string, opts ...option.RequestOption) (*core.Response[*management.GetUserAttributeProfileResponseContent], error)
- func (r *RawClient) GetTemplate(ctx context.Context, id string, opts ...option.RequestOption) (*core.Response[*management.GetUserAttributeProfileTemplateResponseContent], ...)
- func (r *RawClient) ListTemplates(ctx context.Context, opts ...option.RequestOption) (*core.Response[*management.ListUserAttributeProfileTemplateResponseContent], ...)
- func (r *RawClient) Update(ctx context.Context, id string, ...) (*core.Response[*management.UpdateUserAttributeProfileResponseContent], error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
WithRawResponse *RawClient
// contains filtered or unexported fields
}
func NewClient ¶
func NewClient(options *core.RequestOptions) *Client
func (*Client) Create ¶
func (c *Client) Create( ctx context.Context, request *management.CreateUserAttributeProfileRequestContent, opts ...option.RequestOption, ) (*management.CreateUserAttributeProfileResponseContent, error)
Create a User Attribute Profile.
func (*Client) Get ¶
func (c *Client) Get( ctx context.Context, id string, opts ...option.RequestOption, ) (*management.GetUserAttributeProfileResponseContent, error)
Retrieve details about a single User Attribute Profile specified by ID.
func (*Client) GetTemplate ¶
func (c *Client) GetTemplate( ctx context.Context, id string, opts ...option.RequestOption, ) (*management.GetUserAttributeProfileTemplateResponseContent, error)
Retrieve a User Attribute Profile Template.
func (*Client) List ¶
func (c *Client) List( ctx context.Context, request *management.ListUserAttributeProfileRequestParameters, opts ...option.RequestOption, ) (*core.Page[*string, *management.UserAttributeProfile, *management.ListUserAttributeProfilesPaginatedResponseContent], error)
Retrieve a list of User Attribute Profiles. This endpoint supports Checkpoint pagination.
func (*Client) ListTemplates ¶
func (c *Client) ListTemplates( ctx context.Context, opts ...option.RequestOption, ) (*management.ListUserAttributeProfileTemplateResponseContent, error)
Retrieve a list of User Attribute Profile Templates.
func (*Client) Update ¶
func (c *Client) Update( ctx context.Context, id string, request *management.UpdateUserAttributeProfileRequestContent, opts ...option.RequestOption, ) (*management.UpdateUserAttributeProfileResponseContent, error)
Update the details of a specific User attribute profile, such as name, user_id and user_attributes.
type RawClient ¶
type RawClient struct {
// contains filtered or unexported fields
}
func NewRawClient ¶
func NewRawClient(options *core.RequestOptions) *RawClient
func (*RawClient) Create ¶
func (r *RawClient) Create( ctx context.Context, request *management.CreateUserAttributeProfileRequestContent, opts ...option.RequestOption, ) (*core.Response[*management.CreateUserAttributeProfileResponseContent], error)
func (*RawClient) Get ¶
func (r *RawClient) Get( ctx context.Context, id string, opts ...option.RequestOption, ) (*core.Response[*management.GetUserAttributeProfileResponseContent], error)
func (*RawClient) GetTemplate ¶
func (r *RawClient) GetTemplate( ctx context.Context, id string, opts ...option.RequestOption, ) (*core.Response[*management.GetUserAttributeProfileTemplateResponseContent], error)
func (*RawClient) ListTemplates ¶
func (r *RawClient) ListTemplates( ctx context.Context, opts ...option.RequestOption, ) (*core.Response[*management.ListUserAttributeProfileTemplateResponseContent], error)
func (*RawClient) Update ¶
func (r *RawClient) Update( ctx context.Context, id string, request *management.UpdateUserAttributeProfileRequestContent, opts ...option.RequestOption, ) (*core.Response[*management.UpdateUserAttributeProfileResponseContent], error)
Click to show internal directories.
Click to hide internal directories.