Zero-based resource offset to start the response from
HPE Compute Ops Management API (latest)
HPE Compute Operations Management provides a Restful API to customers who want to manage their devices programmatically or through a command line. The API enables customers to invoke operations or tasks such as list devices, see device details, device health, and manage their device's firmware.
UPDATED API ENDPOINTS
Compute Ops Management now supports the HPE GreenLake API endpoints (<region>.api.greenlake.hpe.com
). The Guide contains more information about this change.
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/
https://us-west.api.greenlake.hpe.com/
https://eu-central.api.greenlake.hpe.com/
https://ap-northeast.api.greenlake.hpe.com/
Request
Retrieve a paginated collection of schedule resources.
URI PATH PREFIX RENAME
This API now supports the URI path prefix /compute-ops-mgmt
which used to be /compute-ops
. The /compute-ops
prefix is deprecated and might become unresponsive after Tuesday, April 1, 2025. The Guide provides more information about this change.
Limit the resources operated on by an endpoint or when used with a multiple-GET endpoint, return only the subset of resources that match the filter. The filter grammar is a subset of OData 4.0.
NOTE: The filter query parameter must use URL encoding. Most clients do this automatically with inputs provided to them specifically as query parameters. Encoding must be done manually for any query parameters provided as part of the URL.
The reserved characters !
#
$
&
'
(
)
*
+
,
/
:
;
=
?
@
[
]
must be encoded with percent encoded equivalents. Server IDs contain a +
, which must be encoded as %2B
.
For example: the value P06760-B21+2M212504P8
must be encoded as P06760-B21%2B2M212504P8
when it is used in a query parameter.
CLASS | EXAMPLES |
---|---|
Types | integer, decimal, timestamp, string, boolean, null |
Operations | eq, ne, gt, ge, lt, le, in |
Logic | and, or, not |
Schedules can be filtered by:
- createdAt
- generation
- historyUri
- id
- nextStartAt
- operation/body
- operation/headers
- operation/method
- operation/query
- operation/timeoutInSec
- operation/type
- operation/uri
- resourceUri
- schedule/intervalInSec
- schedule/startAt
- type
- updatedAt
The following examples are not an exhaustive list of all possible filtering options.
Return schedules where a property equals a value. <property> eq <value>
Return schedules where a nested property equals a value. <property>/<nestedProperty> eq <value>
Return schedules where a property equals a value, using a url. <property>%20eq%20%27<value>
Return schedules where a property does not equal a value not <property> eq <value>
Return schedules with populated property. not <property> eq null
Return schedules where property contains a value. contains(<property>, <value>)
Return schedules where property is populated and property contains value. not <property> eq null and contains(<property>, <value>)
Return schedules where property is one of multiple values. <property>/<nestedProperty> in (<value>,<value>)
The order in which to return the resources in the collection.
The value of the sort query parameter is a comma separated list of sort expressions. Each sort expression is a property name optionally followed by a direction indicator asc (ascending) or desc (descending).
The first sort expression in the list defines the primary sort order, the second defines the secondary sort order, and so on. If a direciton indicator is omitted the default direction is ascending.
Order resources ascending by name
Order resources ascending by name and then by descending by createdAt
Tenant-Acid header can be used by an MSP workspace to make API calls on behalf of their tenant by specifying the tenant's application customer ID.
In order to make such an API call, the Bearer token must belong to an MSP workspace and this header value must be the application customer ID of a tenant within the MSP workspace. Use the /compute-ops-mgmt/v1beta1/accounts
API to determine the application customer IDs for your tenant accounts.
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X GET \
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
OK
Total number of items in the collection that match the filter query, if one was provided in the request
Array of schedule resources in the page of the collection.
Primary identifier for the schedule resource given by the system.
The display name of the schedule. Note that multiple schedules can have the same name, so schedules should likely always also be displayed with their start time.
When to execute the scheduled operation.
For a one-time schedule, the time the schedule should be executed. For a fixed interval schedule, the time the schedule should first be executed. The start must be within a year of the current time.
The action executed by the schedule.
The type of the operation executed by the schedule.
Timeout for the operation. If the operation takes longer, it will be aborted.
HTTP method for the request.
Relative URI for the request.
HTTP request headers for the request.
Query parameters for the request.
A longer description of the schedule provided by the client.
A machine-readable category for the schedule.
Another compute-ops resource the schedule is associated with. If the resource associated with a schedule is deleted, the schedule is also deleted.
Time of schedule resource creation.
Time of the last update to the schedule resource.
URI to the schedule resource itself (i.e. a self link).
URI of collection of history entries for the schedule.
The time the operation is scheduled to execute next, or null
if no future executions are scheduled.
{ "offset": 0, "count": 1, "total": 12, "items": [ { … } ] }
Request
Create a new schedule resource. This endpoint requires permission to call the uri
endpoint specified in the operation
of the request.
URI PATH PREFIX RENAME
This API now supports the URI path prefix /compute-ops-mgmt
which used to be /compute-ops
. The /compute-ops
prefix is deprecated and might become unresponsive after Tuesday, April 1, 2025. The Guide provides more information about this change.
Content-Type header must designate 'application/json' in order for the request to be performed.
A unique value generated by the client which the server uses to recognize subsequent retries of the same request.
Tenant-Acid header can be used by an MSP workspace to make API calls on behalf of their tenant by specifying the tenant's application customer ID.
In order to make such an API call, the Bearer token must belong to an MSP workspace and this header value must be the application customer ID of a tenant within the MSP workspace. Use the /compute-ops-mgmt/v1beta1/accounts
API to determine the application customer IDs for your tenant accounts.
The display name of the schedule. Note that multiple schedules can have the same name, so schedules should likely always also be displayed with their start time.
A longer description of the schedule provided by the client.
Another compute-ops resource the schedule is associated with. If the resource associated with a schedule is deleted, the schedule is also deleted.
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X POST \
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{}'
Successful Response
Primary identifier for the schedule resource given by the system.
The display name of the schedule. Note that multiple schedules can have the same name, so schedules should likely always also be displayed with their start time.
When to execute the scheduled operation.
For a one-time schedule, the time the schedule should be executed. For a fixed interval schedule, the time the schedule should first be executed. The start must be within a year of the current time.
The action executed by the schedule.
The type of the operation executed by the schedule.
Timeout for the operation. If the operation takes longer, it will be aborted.
HTTP method for the request.
Relative URI for the request.
HTTP request headers for the request.
A longer description of the schedule provided by the client.
Another compute-ops resource the schedule is associated with. If the resource associated with a schedule is deleted, the schedule is also deleted.
Time of schedule resource creation.
Time of the last update to the schedule resource.
URI to the schedule resource itself (i.e. a self link).
URI of collection of history entries for the schedule.
The time the operation is scheduled to execute next, or null
if no future executions are scheduled.
{ "schedule": { "interval": "P7D", "startAt": "2022-02-14T04:35:00.000000+00:00" }, "operation": { "headers": { … }, "query": { … }, "method": "POST", "uri": "/compute-ops-mgmt/v1beta3/jobs", "body": null, "type": "REST", "timeoutInSec": 20 }, "description": "string", "purpose": "string", "associatedResourceUri": "/compute-ops/v1beta2/groups/cad23390-5209-43d1-b38d-bc96258b47e5", "id": "37f66ae4-20a1-48f1-b552-b515457639ca", "type": "compute-ops-mgmt/schedule", "generation": 1, "createdAt": "2022-02-11T01:04:20.799937+00:00", "updatedAt": "2022-02-11T01:04:20.799937+00:00", "resourceUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca", "historyUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca/history", "name": "string", "nextStartAt": "2022-02-14T04:35:00.000000+00:00", "lastRun": { "operationType": "REST", "type": "compute-ops-mgmt/schedule/history", "id": "b7bac910-fec8-4907-ab78-f42b499d9041", "resourceUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca/history/b7bac910-fec8-4907-ab78-f42b499d9041", "scheduleId": "37f66ae4-20a1-48f1-b552-b515457639ca", "scheduleUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca", "startedAt": "2022-02-14T04:35:00.051732+00:00", "succeeded": true, "summary": "OK", "debugId": "13628947084908729803 14233605946314091555", "durationInSec": 0.035, "generation": 1, "createdAt": "2022-02-14T04:35:00.051732+00:00", "updatedAt": "2022-02-14T04:35:00.051732+00:00", "status": 200, "headers": { … }, "body": null } }
Request
Retrieve a single schedule resource by ID.
URI PATH PREFIX RENAME
This API now supports the URI path prefix /compute-ops-mgmt
which used to be /compute-ops
. The /compute-ops
prefix is deprecated and might become unresponsive after Tuesday, April 1, 2025. The Guide provides more information about this change.
Tenant-Acid header can be used by an MSP workspace to make API calls on behalf of their tenant by specifying the tenant's application customer ID.
In order to make such an API call, the Bearer token must belong to an MSP workspace and this header value must be the application customer ID of a tenant within the MSP workspace. Use the /compute-ops-mgmt/v1beta1/accounts
API to determine the application customer IDs for your tenant accounts.
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X GET \
'https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
OK
Primary identifier for the schedule resource given by the system.
The display name of the schedule. Note that multiple schedules can have the same name, so schedules should likely always also be displayed with their start time.
When to execute the scheduled operation.
For a one-time schedule, the time the schedule should be executed. For a fixed interval schedule, the time the schedule should first be executed. The start must be within a year of the current time.
The action executed by the schedule.
The type of the operation executed by the schedule.
Timeout for the operation. If the operation takes longer, it will be aborted.
HTTP method for the request.
Relative URI for the request.
HTTP request headers for the request.
A longer description of the schedule provided by the client.
Another compute-ops resource the schedule is associated with. If the resource associated with a schedule is deleted, the schedule is also deleted.
Time of schedule resource creation.
Time of the last update to the schedule resource.
URI to the schedule resource itself (i.e. a self link).
URI of collection of history entries for the schedule.
The time the operation is scheduled to execute next, or null
if no future executions are scheduled.
{ "schedule": { "interval": "P7D", "startAt": "2022-02-14T04:35:00.000000+00:00" }, "operation": { "headers": { … }, "query": { … }, "method": "POST", "uri": "/compute-ops-mgmt/v1beta3/jobs", "body": null, "type": "REST", "timeoutInSec": 20 }, "description": "string", "purpose": "string", "associatedResourceUri": "/compute-ops/v1beta2/groups/cad23390-5209-43d1-b38d-bc96258b47e5", "id": "37f66ae4-20a1-48f1-b552-b515457639ca", "type": "compute-ops-mgmt/schedule", "generation": 1, "createdAt": "2022-02-11T01:04:20.799937+00:00", "updatedAt": "2022-02-11T01:04:20.799937+00:00", "resourceUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca", "historyUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca/history", "name": "string", "nextStartAt": "2022-02-14T04:35:00.000000+00:00", "lastRun": { "operationType": "REST", "type": "compute-ops-mgmt/schedule/history", "id": "b7bac910-fec8-4907-ab78-f42b499d9041", "resourceUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca/history/b7bac910-fec8-4907-ab78-f42b499d9041", "scheduleId": "37f66ae4-20a1-48f1-b552-b515457639ca", "scheduleUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca", "startedAt": "2022-02-14T04:35:00.051732+00:00", "succeeded": true, "summary": "OK", "debugId": "13628947084908729803 14233605946314091555", "durationInSec": 0.035, "generation": 1, "createdAt": "2022-02-14T04:35:00.051732+00:00", "updatedAt": "2022-02-14T04:35:00.051732+00:00", "status": 200, "headers": { … }, "body": null } }
Request
Delete a schedule resource and its associated history.
URI PATH PREFIX RENAME
This API now supports the URI path prefix /compute-ops-mgmt
which used to be /compute-ops
. The /compute-ops
prefix is deprecated and might become unresponsive after Tuesday, April 1, 2025. The Guide provides more information about this change.
Tenant-Acid header can be used by an MSP workspace to make API calls on behalf of their tenant by specifying the tenant's application customer ID.
In order to make such an API call, the Bearer token must belong to an MSP workspace and this header value must be the application customer ID of a tenant within the MSP workspace. Use the /compute-ops-mgmt/v1beta1/accounts
API to determine the application customer IDs for your tenant accounts.
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X DELETE \
'https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Request
A update a schedule resource, using the RFC 7396 (JSON Merge Patch) format.
URI PATH PREFIX RENAME
This API now supports the URI path prefix /compute-ops-mgmt
which used to be /compute-ops
. The /compute-ops
prefix is deprecated and might become unresponsive after Tuesday, April 1, 2025. The Guide provides more information about this change.
Content-Type header must designate 'application/merge-patch+json' in order for the request to be performed.
Value which must match the "generation" property of the resource in order for the request to be performed.
Tenant-Acid header can be used by an MSP workspace to make API calls on behalf of their tenant by specifying the tenant's application customer ID.
In order to make such an API call, the Bearer token must belong to an MSP workspace and this header value must be the application customer ID of a tenant within the MSP workspace. Use the /compute-ops-mgmt/v1beta1/accounts
API to determine the application customer IDs for your tenant accounts.
The display name of the schedule. Note that multiple schedules can have the same name, so schedules should likely always also be displayed with their start time.
A longer description of the schedule provided by the client.
Another compute-ops resource the schedule is associated with. If the resource associated with a schedule is deleted, the schedule is also deleted.
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X PATCH \
'https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/merge-patch+json' \
-d '{}'
OK
Primary identifier for the schedule resource given by the system.
The display name of the schedule. Note that multiple schedules can have the same name, so schedules should likely always also be displayed with their start time.
When to execute the scheduled operation.
For a one-time schedule, the time the schedule should be executed. For a fixed interval schedule, the time the schedule should first be executed. The start must be within a year of the current time.
The action executed by the schedule.
The type of the operation executed by the schedule.
Timeout for the operation. If the operation takes longer, it will be aborted.
HTTP method for the request.
Relative URI for the request.
HTTP request headers for the request.
A longer description of the schedule provided by the client.
Another compute-ops resource the schedule is associated with. If the resource associated with a schedule is deleted, the schedule is also deleted.
Time of schedule resource creation.
Time of the last update to the schedule resource.
URI to the schedule resource itself (i.e. a self link).
URI of collection of history entries for the schedule.
The time the operation is scheduled to execute next, or null
if no future executions are scheduled.
{ "schedule": { "interval": "P7D", "startAt": "2022-02-14T04:35:00.000000+00:00" }, "operation": { "headers": { … }, "query": { … }, "method": "POST", "uri": "/compute-ops-mgmt/v1beta3/jobs", "body": null, "type": "REST", "timeoutInSec": 20 }, "description": "string", "purpose": "string", "associatedResourceUri": "/compute-ops/v1beta2/groups/cad23390-5209-43d1-b38d-bc96258b47e5", "id": "37f66ae4-20a1-48f1-b552-b515457639ca", "type": "compute-ops-mgmt/schedule", "generation": 1, "createdAt": "2022-02-11T01:04:20.799937+00:00", "updatedAt": "2022-02-11T01:04:20.799937+00:00", "resourceUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca", "historyUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca/history", "name": "string", "nextStartAt": "2022-02-14T04:35:00.000000+00:00", "lastRun": { "operationType": "REST", "type": "compute-ops-mgmt/schedule/history", "id": "b7bac910-fec8-4907-ab78-f42b499d9041", "resourceUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca/history/b7bac910-fec8-4907-ab78-f42b499d9041", "scheduleId": "37f66ae4-20a1-48f1-b552-b515457639ca", "scheduleUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca", "startedAt": "2022-02-14T04:35:00.051732+00:00", "succeeded": true, "summary": "OK", "debugId": "13628947084908729803 14233605946314091555", "durationInSec": 0.035, "generation": 1, "createdAt": "2022-02-14T04:35:00.051732+00:00", "updatedAt": "2022-02-14T04:35:00.051732+00:00", "status": 200, "headers": { … }, "body": null } }
Request
Retrieve a paginated collection of history entries for a schedule resource.
URI PATH PREFIX RENAME
This API now supports the URI path prefix /compute-ops-mgmt
which used to be /compute-ops
. The /compute-ops
prefix is deprecated and might become unresponsive after Tuesday, April 1, 2025. The Guide provides more information about this change.
Limit the resources operated on by an endpoint or when used with a multiple-GET endpoint, return only the subset of resources that match the filter. The filter grammar is a subset of OData 4.0.
NOTE: The filter query parameter must use URL encoding. Most clients do this automatically with inputs provided to them specifically as query parameters. Encoding must be done manually for any query parameters provided as part of the URL.
The reserved characters !
#
$
&
'
(
)
*
+
,
/
:
;
=
?
@
[
]
must be encoded with percent encoded equivalents. Server IDs contain a +
, which must be encoded as %2B
.
For example: the value P06760-B21+2M212504P8
must be encoded as P06760-B21%2B2M212504P8
when it is used in a query parameter.
CLASS | EXAMPLES |
---|---|
Types | integer, decimal, timestamp, string, boolean, null |
Operations | eq, ne, gt, ge, lt, le, in |
Logic | and, or, not |
Schedules can be filtered by:
- createdAt
- generation
- historyUri
- id
- nextStartAt
- operation/body
- operation/headers
- operation/method
- operation/query
- operation/timeoutInSec
- operation/type
- operation/uri
- resourceUri
- schedule/intervalInSec
- schedule/startAt
- type
- updatedAt
The following examples are not an exhaustive list of all possible filtering options.
Return schedules where a property equals a value. <property> eq <value>
Return schedules where a nested property equals a value. <property>/<nestedProperty> eq <value>
Return schedules where a property equals a value, using a url. <property>%20eq%20%27<value>
Return schedules where a property does not equal a value not <property> eq <value>
Return schedules with populated property. not <property> eq null
Return schedules where property contains a value. contains(<property>, <value>)
Return schedules where property is populated and property contains value. not <property> eq null and contains(<property>, <value>)
Return schedules where property is one of multiple values. <property>/<nestedProperty> in (<value>,<value>)
The order in which to return the resources in the collection.
The value of the sort query parameter is a comma separated list of sort expressions. Each sort expression is a property name optionally followed by a direction indicator asc (ascending) or desc (descending).
The first sort expression in the list defines the primary sort order, the second defines the secondary sort order, and so on. If a direciton indicator is omitted the default direction is ascending.
Order resources ascending by name
Order resources ascending by name and then by descending by createdAt
Tenant-Acid header can be used by an MSP workspace to make API calls on behalf of their tenant by specifying the tenant's application customer ID.
In order to make such an API call, the Bearer token must belong to an MSP workspace and this header value must be the application customer ID of a tenant within the MSP workspace. Use the /compute-ops-mgmt/v1beta1/accounts
API to determine the application customer IDs for your tenant accounts.
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}/history
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}/history
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}/history
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}/history
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X GET \
'https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}/history' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
OK
Total number of items in the collection that match the filter query, if one was provided in the request
Array of history entires in the page of the collection.
HTTP status code of the response, or null
if there was an error without a status code.
The HTTP response headers.
The type of operation that was executed.
A unique identifier for the execution of the schedule.
The URI of the history resource.
The ID of the schedule resource that owns the history resource.
The URI of the schedule resource that owns the history resource.
The time the execution of the schedule started.
true
if the operation was successful, e.g. if the REST request received a 2xx response.
A Human readable summary, e.g. for a REST request, the HTTP status line or short connection error.
A unique identifier for the execution of the schedule, to be used to help with troubleshooting.
Amount of time between the operation took to complete.
Monotonically increasing update counter. Since history resources are immutable, the value is always 1.
Time of history resource creation.
Time of the last update to the history resource.
{ "offset": 0, "count": 1, "total": 12, "items": [ { … } ] }
Request
Retrieve a single history entry for a schedule resource.
URI PATH PREFIX RENAME
This API now supports the URI path prefix /compute-ops-mgmt
which used to be /compute-ops
. The /compute-ops
prefix is deprecated and might become unresponsive after Tuesday, April 1, 2025. The Guide provides more information about this change.
Tenant-Acid header can be used by an MSP workspace to make API calls on behalf of their tenant by specifying the tenant's application customer ID.
In order to make such an API call, the Bearer token must belong to an MSP workspace and this header value must be the application customer ID of a tenant within the MSP workspace. Use the /compute-ops-mgmt/v1beta1/accounts
API to determine the application customer IDs for your tenant accounts.
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}/history/{history-id}
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}/history/{history-id}
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}/history/{history-id}
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta2/schedules/{id}/history/{history-id}
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X GET \
'https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta2/schedules/{id}/history/{history-id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
OK
HTTP status code of the response, or null
if there was an error without a status code.
The HTTP response headers.
A unique identifier for the execution of the schedule.
The URI of the history resource.
The ID of the schedule resource that owns the history resource.
The URI of the schedule resource that owns the history resource.
The time the execution of the schedule started.
true
if the operation was successful, e.g. if the REST request received a 2xx response.
A Human readable summary, e.g. for a REST request, the HTTP status line or short connection error.
A unique identifier for the execution of the schedule, to be used to help with troubleshooting.
Monotonically increasing update counter. Since history resources are immutable, the value is always 1.
Time of history resource creation.
Time of the last update to the history resource.
{ "operationType": "REST", "type": "compute-ops-mgmt/schedule/history", "id": "b7bac910-fec8-4907-ab78-f42b499d9041", "resourceUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca/history/b7bac910-fec8-4907-ab78-f42b499d9041", "scheduleId": "37f66ae4-20a1-48f1-b552-b515457639ca", "scheduleUri": "/compute-ops-mgmt/v1beta2/schedules/37f66ae4-20a1-48f1-b552-b515457639ca", "startedAt": "2022-02-14T04:35:00.051732+00:00", "succeeded": true, "summary": "OK", "debugId": "13628947084908729803 14233605946314091555", "durationInSec": 0.035, "generation": 1, "createdAt": "2022-02-14T04:35:00.051732+00:00", "updatedAt": "2022-02-14T04:35:00.051732+00:00", "status": 200, "headers": { "Location": "/api/compute/v1/jobs/01b7269f-d2c4-4da8-a66a-4675ef5787d1" }, "body": null }