Documentation
¶
Index ¶
- type Client
- func (c *Client) BulkUpdate(ctx context.Context, request *management.BulkUpdateAculRequestContent, ...) (*management.BulkUpdateAculResponseContent, error)
- func (c *Client) Get(ctx context.Context, prompt *management.PromptGroupNameEnum, ...) (*management.GetAculResponseContent, error)
- func (c *Client) List(ctx context.Context, request *management.ListAculsRequestParameters, ...) (*core.Page[*management.AculResponseContent], error)
- func (c *Client) Update(ctx context.Context, prompt *management.PromptGroupNameEnum, ...) (*management.UpdateAculResponseContent, error)
- type RawClient
- func (r *RawClient) BulkUpdate(ctx context.Context, request *management.BulkUpdateAculRequestContent, ...) (*core.Response[*management.BulkUpdateAculResponseContent], error)
- func (r *RawClient) Get(ctx context.Context, prompt *management.PromptGroupNameEnum, ...) (*core.Response[*management.GetAculResponseContent], error)
- func (r *RawClient) Update(ctx context.Context, prompt *management.PromptGroupNameEnum, ...) (*core.Response[*management.UpdateAculResponseContent], 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) BulkUpdate ¶ added in v2.1.0
func (c *Client) BulkUpdate( ctx context.Context, request *management.BulkUpdateAculRequestContent, opts ...option.RequestOption, ) (*management.BulkUpdateAculResponseContent, error)
Learn more about <a href='https://auth0.com/docs/customize/login-pages/advanced-customizations/getting-started/configure-acul-screens'>configuring render settings</a> for advanced customization.
<p>
Example <code>head_tags</code> array. See our <a href='https://auth0.com/docs/customize/login-pages/advanced-customizations/getting-started/configure-acul-screens'>documentation</a> on using Liquid variables within head tags.
</p>
<pre>{
"head_tags": [
{
"tag": "script",
"attributes": {
"defer": true,
"src": "URL_TO_ASSET",
"async": true,
"integrity": [
"ASSET_SHA"
]
}
},
{
"tag": "link",
"attributes": {
"href": "URL_TO_ASSET",
"rel": "stylesheet"
}
}
]
}
</pre>
func (*Client) Get ¶
func (c *Client) Get( ctx context.Context, prompt *management.PromptGroupNameEnum, screen *management.ScreenGroupNameEnum, opts ...option.RequestOption, ) (*management.GetAculResponseContent, error)
Get render settings for a screen.
func (*Client) List ¶
func (c *Client) List( ctx context.Context, request *management.ListAculsRequestParameters, opts ...option.RequestOption, ) (*core.Page[*management.AculResponseContent], error)
Get render setting configurations for all screens.
func (*Client) Update ¶
func (c *Client) Update( ctx context.Context, prompt *management.PromptGroupNameEnum, screen *management.ScreenGroupNameEnum, request *management.UpdateAculRequestContent, opts ...option.RequestOption, ) (*management.UpdateAculResponseContent, error)
Learn more about <a href='https://auth0.com/docs/customize/login-pages/advanced-customizations/getting-started/configure-acul-screens'>configuring render settings</a> for advanced customization.
<p>
Example <code>head_tags</code> array. See our <a href='https://auth0.com/docs/customize/login-pages/advanced-customizations/getting-started/configure-acul-screens'>documentation</a> on using Liquid variables within head tags.
</p>
<pre>{
"head_tags": [
{
"tag": "script",
"attributes": {
"defer": true,
"src": "URL_TO_ASSET",
"async": true,
"integrity": [
"ASSET_SHA"
]
}
},
{
"tag": "link",
"attributes": {
"href": "URL_TO_ASSET",
"rel": "stylesheet"
}
}
]
}
</pre>
type RawClient ¶
type RawClient struct {
// contains filtered or unexported fields
}
func NewRawClient ¶
func NewRawClient(options *core.RequestOptions) *RawClient
func (*RawClient) BulkUpdate ¶ added in v2.1.0
func (r *RawClient) BulkUpdate( ctx context.Context, request *management.BulkUpdateAculRequestContent, opts ...option.RequestOption, ) (*core.Response[*management.BulkUpdateAculResponseContent], error)
func (*RawClient) Get ¶
func (r *RawClient) Get( ctx context.Context, prompt *management.PromptGroupNameEnum, screen *management.ScreenGroupNameEnum, opts ...option.RequestOption, ) (*core.Response[*management.GetAculResponseContent], error)
func (*RawClient) Update ¶
func (r *RawClient) Update( ctx context.Context, prompt *management.PromptGroupNameEnum, screen *management.ScreenGroupNameEnum, request *management.UpdateAculRequestContent, opts ...option.RequestOption, ) (*core.Response[*management.UpdateAculResponseContent], error)
Click to show internal directories.
Click to hide internal directories.