Update Nsp Configuration
Updates an existing NSP configuration. Modifies the public access URL
Updatable Parameters:
- baseProxyUrl: Public URL for HCX access
- cloudType: Cloud platform type (cannot change type after initial setup)
- isVcdGatewaysEnabled: VCD gateways enablement flag
Important Notes:
- Changing baseProxyUrl may break connectivity temporarily
- Ensure new URL is accessible before applying
- May require HCX services restart for changes to take effect
UUID of the NSP configuration to update
550e8400-e29b-41d4-a716-446655440000
{
"data": {
"items": [
{
"config": {
"baseProxyUrl": "string",
"extensibilityExchange": "string",
"cloudType": "string",
"isVcdGatewaysEnabled": false,
"isDefault": false,
"UUID": "string"
}
}
]
}
}
data
NSP configuration updated successfully
{
"data": {
"items": [
{
"config": {
"baseProxyUrl": "string",
"extensibilityExchange": "string",
"cloudType": "string",
"isVcdGatewaysEnabled": false,
"isDefault": false,
"UUID": "string"
},
"section": "string"
}
]
}
}
data
Bad request - invalid NSP configuration
{
"isSuccess": false,
"message": "Request schema validation failed",
"httpStatusCode": 400
}
Indicates if the operation was successful
Human-readable error message
HTTP status code
NSP configuration with specified UUID not found
{
"isSuccess": false,
"message": "Request schema validation failed",
"httpStatusCode": 400
}
Indicates if the operation was successful
Human-readable error message
HTTP status code
Internal server error while updating NSP configuration
"ErrorResponse Object"
Indicates if the operation was successful
Human-readable error message
HTTP status code
curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/api/admin/global/config/nsp/{uuid}