Update VCF Infra Endpoint

Update VCF Infra Endpoint

Update the registered VCF infra endpoint in VCFA.

Request
URI
PUT
https://{api_host}/cloudapi/1.0.0/vcfInfraEndpoints/{id}
COPY
Path Parameters
string
id
Required

id of the VCF InfraEndpoint


Request Body
VCFInfraEndpoint of type(s) application/json
Optional

Show optional properties

{
    "name": "string",
    "hostName": "string",
    "username": "string",
    "password": "string",
    "version": "string"
}
{
    "id": "urn:vcloud:vcfInfraEndpoint:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "name": "string",
    "hostName": "string",
    "username": "string",
    "password": "string",
    "ipaddress": "string",
    "certificate": "string",
    "version": "string"
}
Authentication
This operation uses the following authentication methods.
Responses
200
Returns VCFInfraEndpoint of type(s) */*;version=40.0
"VCFInfraEndpoint Object"
string
id
Optional

The URN of the registered VCF Infra endpoint.

string
name
Required

The name of the registered VCF Infra endpoint object.

string
hostName
Required

The host name of the registered VCF Infra endpoint object.

string
username
Required

The service account user name.

string
password
Required

The service account password.

string
ipaddress
Optional

The IP address of the VCF Infra endpoint object.

string
certificate
Optional

The security certificate of the VCF Infra endpoint object.

string
version
Required

The version of the VCF Infra endpoint object.


Code Samples
COPY
                    curl -X PUT -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"hostName:"string","name:"string","password:"string","username:"string","version:"string"}' https://{api_host}/cloudapi/1.0.0/vcfInfraEndpoints/{id}