Configure Ignore Risk settings
Overview
This job is used to configure ignore iLO security risk settings.
Job Template ID | Resource Type | Data |
---|---|---|
e1d69e76-38cc-4079-9192-a380baea2973 | compute-ops-mgmt/server | See Data section |
Create Job
A job can be created by issuing a POST
to the /compute-ops-mgmt/v1beta3/jobs
endpoint with the correct payload for the job.
The following properties are used when creating a job:
Property | JSON Type | Description | Required? |
---|---|---|---|
jobTemplateUri |
string (uri) | A job-template URI with the durable Template ID of the job | Yes |
resourceUri |
string (uri) | A resource URI that the job will operate on | Yes |
data |
object | Any additional data required by the job | No |
If the job was created successfully, a 201 Created
response is returned. The response includes the job resource which has a
job resourceUri
that you can use to track the progress of the job.
Data
This table summarizes the supported properties in data
.
Property | JSON Type | Values | Required? |
---|---|---|---|
ignoreSecuritySettings |
array | See IgnoreSecuritySettings section | yes |
IgnoreSecuritySettings
This table summarizes the supported properties in ignoresecuritysettings
.
Property | JSON Type | Values | Required? |
---|---|---|---|
name |
string | name of the parameter | yes |
ignore |
boolean | perform ignore action | yes |
id |
string | parameter id | yes |
Data properties
-
name
: This is the name of the parameter which need to be updated. It need to be same as it is in security parameters list under servers. -
ignore
: This flag allows to configure ilo security ignore risk settings. -
id
: This is the Id of the parameter.
Examples
Configure ignore iLO security risk settings request payload examples for creating this job.
Example 1
This will configure ilo security settings of 2 parameters to ignore true
{
"jobTemplateUri": "/compute-ops-mgmt/v1beta2/job-templates/e1d69e76-38cc-4079-9192-a380baea2973",
"resourceUri": "/compute-ops-mgmt/v1beta2/servers/854361-001+2C201515GR",
"data": {
"ignoreSecuritySettings": [
{
"name": "Authentication Failure Logging",
"ignore": true,
"id": "4"
},
{
"name": "Secure Boot",
"ignore": true,
"id": "5"
}
]
}
}
Example 2
This will configure ilo security settings of 2 parameters to ignore false
{
"jobTemplateUri": "/compute-ops-mgmt/v1beta2/job-templates/e1d69e76-38cc-4079-9192-a380baea2973",
"resourceUri": "/compute-ops-mgmt/v1beta2/servers/854361-001+2C201515GR",
"data": {
"ignoreSecuritySettings": [
{
"name": "Authentication Failure Logging",
"ignore": false,
"id": "4"
},
{
"name": "Secure Boot",
"ignore": false,
"id": "5"
}
]
}
}