Get Config
Get the current setting for the specified configuration property.
Request
URI
GET
https://{api_host}/cloudapi/1.0.0/site/configurations/{urn}
COPY
Path Parameters
string
urn
Required
URN containing the name of the configuration property such as (urn:vcloud:configuration:
Responses
200
OK
Returns
Config
of type(s)
application/json;version=39.1
{
"name": "string",
"typedValue": {
"value": {},
"type": "string"
},
"description": "string",
"defaultValue": {},
"restartRequired": false,
"minValue": "number",
"maxValue": "number",
"timestamp": "string"
}
string
name
Required
Name of the configuration property.
object
typedValue
Optional
Value with type information
string
description
Optional
A string describing the configuration property.
object
defaultValue
Optional
Default value of the configuration property.
boolean
restartRequired
Optional
Represents if the cell needs to be rebooted for a change to this property to take effect.
number As double
As double
minValue
Optional
Minimum value for this configuration property.
number As double
As double
maxValue
Optional
Maximum value for this configuration property.
string As date-time
As date-time
timestamp
Optional
Maximum value for this configuration property.
Code Samples
COPY
curl -H 'Authorization: <value>' https://{api_host}/cloudapi/1.0.0/site/configurations/{urn}