Virtual Resource Web Services
Universal Controller supports the following RESTful-based web services for Virtual Resource operations, which are listed alphabetically on this page.
- Create a Virtual Resource
- Delete a Virtual Resource
- List Virtual Resources
- List Virtual Resources - Advanced
- Modify a Virtual Resource
- Read a Virtual Resource
- Set Limit on a Virtual Resource
Formatting specifications for each web service, including details about parameter requirements, are provided.
Create a Virtual Resource
Description | |
|---|---|
URI | http://host_name/uc/resources/virtual |
HTTP Method | POST |
Description | Creates a Virtual Resource. |
Example URI | |
Consumes Content-Type | application/xml, application/json |
Produces Content-Type | n/a |
Example | |
Properties | |
Example Response |
|
Virtual Resource: XML and JSON Examples
The excludeRelated and retainsSysIds properties are specified as attributes in the XML.
- JSON
- XML
JSON
{
"exportReleaseLevel": "7.2.0.0",
"exportTable": "ops_virtual_resource",
"limit": 5,
"name": "test",
"opswiseGroups": [
"1"
],
"retainSysIds": true,
"summary": "Resource with limit of only 1.",
"sysId": "416d78bac0a801c901de14704e00fa75",
"type": "Renewable"
}
XML
<virtualResource exportReleaseLevel="7.2.0.0" exportTable="ops_virtual_resource" retainSysIds="true">
<limit>1</limit>
<name>test</name>
<opswiseGroups>
<opswiseGroup>1</opswiseGroup>
</opswiseGroups>
<summary>Resource with limit of only 1.</summary>
<sysId>416d78bac0a801c901de14704e00fa75</sysId>
<type>Renewable</type>
</virtualResource>
Virtual Resource Properties
Property | UI Field Name | Description | Specifications | Required |
|---|---|---|---|---|
| n/a | Universal Controller release that the record was exported from. | read only | N |
| n/a | Record table information. | read only | N |
| Resource Limit | Number of resources available for the specific resource type. | Integer; Default is 10. | N |
| Name | Name used within the Controller to identify this Virtual Resource. | Contains a maximum of 40 alphanumerics. | Y |
| Member of Business Services | Business Services that this record belongs to. XML JSON | N | |
| n/a | For Create web services; specification for whether or not the web service should persist the sysId property.
info In XML, | Valid values: true/false (default is true). | N |
| Description | User-defined; description of this record. | N | |
| N/A | System ID field in the database for a record. | Persisted only if retainSysIds is set to true. | N |
| Resource Type | Type of Virtual Resource. | Valid values:
Default is Renewable (1). | N |
| n/a | For Read and List web services; specification of the version being read or listed. info In XML web services, | Y |
Delete a Virtual Resource
Description | |
|---|---|
URI | http://host_name/uc/resources/virtual |
HTTP Method | DELETE |
Description | Deletes a Virtual Resource. |
URI Parameters | See Delete a Virtual Resource: URI Parameters. |
Example URI | http://localhost:8080/uc/resources/virtual?resourceid=77171434c0a801c9016d5b2b5d17ddee |
Example Response |
|
Delete a Virtual Resource: URI Parameters
Parameter | Description | Specifications | Required | Mutually Exclusive With |
|---|---|---|---|---|
| ID used within the Controller to identify this Virtual Resource. | String; URI parameter. | Y (unless |
|
| Name used within the Controller to identify this Virtual Resource. | String; URI parameter. | Y (unless |
|
List Virtual Resources
Description | |
|---|---|
URI | http://host_name/uc/resources/virtual/list |
HTTP Method | GET |
Description | Retrieves information on all Virtual Resources. |
URI Parameters | See List Virtual Resources: URI Parameters. |
Example URI | http://localhost:8080/uc/resources/virtual/list?resourcename=test*&type=renewable |
Authentication | HTTP Basic |
Consumes Content-Type | n/a |
Produces Content-Type | application/xml, application/json |
Response Example | |
Response Properties |
List Virtual Resources: URI Parameters
Parameter | Description | Specifications | Required |
|---|---|---|---|
| Name of the resource. | Wildcards are supported. | N |
| Type of this Virtual Resource. | Valid Values:
If | N |
List Virtual Resources: XML and JSON Response Examples
- JSON
- XML
JSON
[ {
"limit": 8,
"name": "test",
"sysId": "416d78bac0a801c901de14704e00fa75",
"type": "Renewable",
"used": 1,
"usedByTasks": [ {
"amount": 1,
"taskInstanceName": "uc - Sleep 60"
} ],
"version": 1
},
{
"limit": 10,
"name": "test2",
"sysId": "416d78bac0a801c901de14704e00fa76",
"type": "Renewable",
"used": 1,
"usedByTasks": [ {
"amount": 1,
"taskInstanceName": "uc - Sleep 60"
} ],
"version": 1
}
]
XML
<virtual-resources>
<virtual-resource>
<limit>8</limit>
<name>test1</name>
<sysId>416d78bac0a801c901de14704e00fa75</sysId>
<type>Renewable</type>
<used>1</used>
<used-by-tasks>
<task>
<amount>1</amount>
<taskInstanceName>uc - Sleep 60</taskInstanceName>
</task>
</used-by-tasks>
<version>1</version>
</virtual-resource>
<virtual-resource>
<limit>10</limit>
<name>test2</name>
<sysId>416d78bac0a801c901de14704e00fa76</sysId>
<type>Renewable</type>
<used>1</used>
<used-by-tasks>
<task>
<amount>1</amount>
<taskInstanceName>uc - Sleep 60</taskInstanceName>
</task>
</used-by-tasks>
<version>1</version>
</virtual-resource>
</virtual-resources>
List Virtual Resources: Response Properties
Property | UI Field Name | Description |
|---|---|---|
| Resource Limit | Number of resources available for the specific resource type. |
| Name | Name used within the Controller to identify this Virtual Resource. |
| n/a | System ID field in the database for a record. |
| Resource Type | Type of Virtual Resource. |
| Resource Used | System-supplied if |
| Currently in Use | List of task instances that have acquired this virtual resource, and the number of units acquired, at the time the web service was executed. info
|
| Version | System-supplied; version number of the virtual resource. |
List Virtual Resources - Advanced
Description | |
|---|---|
URI | http://host_name/uc/resources/virtual/listadv |
HTTP Method | GET |
Description | Retrieves information on all Virtual Resources. |
URI Parameters | See List Virtual Resources Details: URI Parameters. |
Example URI | |
Authentication | HTTP Basic |
Consumes Content-Type | n/a |
Produces Content-Type | application/xml, application/json |
Response Example | See List Virtual Resources - Advanced: XML and JSON Response Examples. |
List Virtual Resources - Advanced: URI Parameters
Parameter | Description | Specifications | Required |
|---|---|---|---|
| Name of this Virtual Resource. | String; URI wild card parameter (that is, | N |
| Type of this Virtual Resource. | Valid Values:
If | N |
| Business Services that this Virtual Resource belongs to. | String value of comma-separated Business Services. | N |
List Virtual Resources - Advanced: XML and JSON Response Examples
- JSON
- XML
JSON
[
{
"exportReleaseLevel": "7.2.0.0",
"exportTable": "ops_virtual_resource",
"limit": 1,
"name": "VR-1",
"opswiseGroups": [
"A"
],
"retainSysIds": true,
"summary": "VR test 1",
"sysId": "10e1664d8fe44a4482c6b6d6a64ecc05",
"type": "Renewable",
"version": 3
},
{
"exportReleaseLevel": "7.2.0.0",
"exportTable": "ops_virtual_resource",
"limit": 1,
"name": "VR-2",
"opswiseGroups": [
"B"
],
"retainSysIds": true,
"summary": "VR test 2",
"sysId": "459020efeff3476682be1a6c8df8f799",
"type": "Boundary",
"version": 2
},
{
"exportReleaseLevel": "7.2.0.0",
"exportTable": "ops_virtual_resource",
"limit": 1,
"name": "VR-3",
"opswiseGroups": [
"C"
],
"retainSysIds": true,
"summary": "test 3",
"sysId": "f4bfd4882af24948b6f7abd7baad91b1",
"type": "Depletable",
"version": 1
}
]
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<virtualResources>
<virtualResource exportReleaseLevel="7.2.0.0" exportTable="ops_virtual_resource" retainSysIds="true" version="3">
<limit>1</limit>
<name>VR-1</name>
<opswiseGroups>
<opswiseGroup>A</opswiseGroup>
</opswiseGroups>
<summary>VR test 1</summary>
<sysId>10e1664d8fe44a4482c6b6d6a64ecc05</sysId>
<type>Renewable</type>
</virtualResource>
<virtualResource retainSysIds="true" version="2">
<limit>1</limit>
<name>VR-2</name>
<opswiseGroups>
<opswiseGroup>B</opswiseGroup>
</opswiseGroups>
<summary>VR test 2</summary>
<sysId>459020efeff3476682be1a6c8df8f799</sysId>
<type>Boundary</type>
</virtualResource>
<virtualResource exportReleaseLevel="7.2.0.0" exportTable="ops_virtual_resource" retainSysIds="true" version="1">
<limit>1</limit>
<name>VR-3</name>
<opswiseGroups>
<opswiseGroup>C</opswiseGroup>
</opswiseGroups>
<summary>test 3</summary>
<sysId>f4bfd4882af24948b6f7abd7baad91b1</sysId>
<type>Depletable</type>
</virtualResource>
</virtualResources>
Modify a Virtual Resource
Description | |
|---|---|
URI | http://host_name/uc/resources/virtual |
HTTP Method | PUT |
Description | Modifies the Virtual Resource specified by the |
Example URI | |
Consumes Content-Type | application/xml, application/json |
Produces Content-Type | n/a |
Example | |
Properties | |
Example Response |
|
Read a Virtual Resource
Description | |
|---|---|
URI | http://host_name/uc/resources/virtual |
HTTP Method | GET |
Description | Retrieves information on a specified Virtual Resource. |
Example URI | http://localhost:8080/uc/resources/virtual?resourcename=test |
Consumes Content-Type | n/a |
Produces Content-Type | application/xml, application/json |
Example | |
Properties |
Read a Virtual Resource: URI Parameters
Parameter | Description | Specifications | Required | Mutually Exclusive With |
|---|---|---|---|---|
| ID used within the Controller to identify this Virtual Resource. | String; URI parameter. | Y (unless |
|
| Name used within the Controller to identify this Virtual Resource. | String; URI parameter. | Y (unless |
|
Set Limit on a Virtual Resource
Description | |
|---|---|
URI | http://host_name/uc/resources/virtual/ops-update-resource-limit |
HTTP Method | POST |
Description | Updates resource limit for virtual resources. |
Example URI | http://localhost:8080/uc/resources/virtual/ops-update-resource-limit |
Authentication | HTTP Basic |
Consumes Content-Type | application/xml, application/json |
Produces Content-Type | application/xml, application/json |
Example Request | |
Request Properties | |
Example Response |
Set Limit on a Virtual Resource: XML and JSON Examples
- JSON
- XML
Set Limit on a Virtual Resource: Request Properties
Property | UI Field Name | Description | Specifications | Required |
|---|---|---|---|---|
| Resource Name | Name used within the Controller to identify this resource. | Maximum 40 alphanumerics. | Y (unless |
| Resource Limit | Maximum number of units available for this resource. | Y | |
| N/A | System ID field in the database for a record. | Y (unless |