Group External Storage Compliance Job
Overview
This job initiates an external storage compliance check on all servers in a group.
Job Template ID | Resource Type | Data |
---|---|---|
977139e0-f9d9-4940-9418-e0c321b5a458 | compute-ops-mgmt/group | -- |
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 job does not require the data
property.
Example
Here is an example request payload for creating this job.
Example 1
Check external storage compliance of all servers in a group.
{
"jobTemplateUri": "/compute-ops-mgmt/v1beta2/job-templates/977139e0-f9d9-4940-9418-e0c321b5a458",
"resourceUri": "/compute-ops-mgmt/v1beta2/groups/8a3a2a46-0102-48e2-bdd9-a29ee6909860",
}