- Home
- Resources
- AuthServiceRolesResource
GET /cm/authService/roles
List all roles of the Authentication Services.
Response Body
media type |
data type |
description |
application/json |
ApiRoleList
(JSON) |
List of roles. |
POST /cm/authService/roles
Create new roles in the Authentication Services.
Request Body
media type |
data type |
description |
application/json |
ApiRoleList
(JSON) |
Roles to create. |
Response Body
media type |
data type |
description |
application/json |
ApiRoleList
(JSON) |
List of created roles. |
DELETE /cm/authService/roles/{roleName}
Delete a role from the Authentication Services.
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role name. |
n/a |
Response Body
media type |
data type |
description |
application/json |
ApiRole
(JSON) |
The details of the deleted role. |
GET /cm/authService/roles/{roleName}
Retrieve detailed information about a Authentication Services role.
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role name. |
n/a |
Response Body
media type |
data type |
description |
application/json |
ApiRole
(JSON) |
The details of the role. |
GET /cm/authService/roles/{roleName}/commands
List active role commands.
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role name. |
n/a |
view |
query |
The view of the data to materialize,
either "summary" or "full". |
summary |
Response Body
media type |
data type |
description |
application/json |
ApiCommandList
(JSON) |
A list of active role commands. |
GET /cm/authService/roles/{roleName}/config
Retrieve the configuration of a specific Authentication Services role.
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role to look up. |
n/a |
view |
query |
The view of the data to materialize,
either "summary" or "full". |
summary |
Response Body
media type |
data type |
description |
application/json |
ApiConfigList
(JSON) |
List with configured and available configuration options. |
PUT /cm/authService/roles/{roleName}/config
Update the configuration of a Authentication Services role.
If a value is set in the given configuration, it will be added
to the role's configuration, replacing any existing entries.
If a value is unset (its value is null), the existing
configuration for the attribute will be erased, if any.
Attributes that are not listed in the input will maintain their
current values in the configuration.
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role to modify. |
n/a |
message |
query |
Optional message describing the changes. |
n/a |
Request Body
media type |
data type |
description |
application/json |
ApiConfigList
(JSON) |
Configuration changes. |
Response Body
media type |
data type |
description |
application/json |
ApiConfigList
(JSON) |
The new service configuration. |
POST /cm/authService/roles/{roleName}/commands/enterMaintenanceMode
Put the Authentication Service role into maintenance mode.This is a
synchronous command. The result is known immediately upon return.
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role name. |
n/a |
Response Body
media type |
data type |
description |
application/json |
ApiCommand
(JSON) |
Synchronous command result. |
POST /cm/authService/roles/{roleName}/commands/exitMaintenanceMode
Take the Authentication Service role out of maintenance mode. This is
a synchronous command. The result is known immediately upon return.
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role name. |
n/a |
Response Body
media type |
data type |
description |
application/json |
ApiCommand
(JSON) |
Synchronous command result. |
GET /cm/authService/roles/{roleName}/logs/full
Retrieves the log file for the role's main process.
If the role is not started, this will be the log file associated with
the last time the role was run.
Log files are returned as plain text (type "text/plain").
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role to fetch logs from. |
n/a |
Response Body
media type |
data type |
description |
text/plain |
(custom)
|
Contents of the role's log file. |
GET /cm/authService/roles/{roleName}/logs/stacks
Retrieves the stacks log file, if any, for the role's main process. Note
that not all roles support periodic stacks collection.
The log files are returned as plain text (type "text/plain").
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role to fetch stacks logs from. |
n/a |
Response Body
media type |
data type |
description |
text/plain |
(custom)
|
Contents of the role's log file. |
GET /cm/authService/roles/{roleName}/logs/stacksBundle
Download a zip-compressed archive of role stacks logs. Note that not all
roles support periodic stacks collection.
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role to fetch the stacks logs bundle from. |
n/a |
Response Body
media type |
data type |
description |
application/octet-stream |
(custom)
|
The archive data. |
GET /cm/authService/roles/{roleName}/logs/stderr
Retrieves the role's standard error output.
If the role is not started, this will be the output associated with
the last time the role was run.
Log files are returned as plain text (type "text/plain").
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role to fetch stderr from. |
n/a |
Response Body
media type |
data type |
description |
text/plain |
(custom)
|
Contents of the role's standard error output. |
GET /cm/authService/roles/{roleName}/logs/stdout
Retrieves the role's standard output.
If the role is not started, this will be the output associated with
the last time the role was run.
Log files are returned as plain text (type "text/plain").
Request Parameters
name |
type |
description |
default |
roleName |
path |
The role to fetch stdout from. |
n/a |
Response Body
media type |
data type |
description |
text/plain |
(custom)
|
Contents of the role's standard output. |