GET /api/v1/connector/vrealizeAuthSources
Use this method to return a list of authorization sources for a specific VMware vRealize Operations Manager resource manager.
Note
This REST API requires Lenovo XClarity Orchestrator v1.3 or later.
Authentication
Authentication with username and password is required.
Resource URI
GET https://{orchestrator_server_IP}/api/v1/connector/vrealizeAuthSources
Query parameters
Parameters | Required / Optional | Description |
---|---|---|
ipAddress={ipAddress} | Required | IP address of the vRealize Operations Manager resource manager |
The following example returns the authorization sources for a specific vRealize Operations Manager resource manager.
GET https://192.0.2.0/api/v1/connector/vrealizeAuthSources?ipAddress=192.0.2.0
Request body
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
404 | Not found | The resource cannot be found. A descriptive error message is returned in the response body. |
Response body
When the request is successful, the following attributes are returned. If the request fails, standard message attributes are returned (see Status messages).
Attributes | Type | Description | ||
---|---|---|---|---|
authSources | Array of strings | List of names of authorization sources | ||
_links | Object | Resource URI (see Links) |
The following example is returned if the request is successful.
{
"authSources": ["All vCenter Servers", "vcenter-1975"],
"_links": {
"rel": "self",
"uri": "/api/v1/connector/vrealizeAuthSources
}
}
Give documentation feedback