Register VCF Infra Endpoints

Register VCF Infra Endpoints
Register a VCF infra endpoint (SDDC Manager) in VCFA.

Register a VCF infra endpoint (SDDC Manager) in VCFA.

Request
URI
POST
https://{api_host}/cloudapi/1.0.0/vcfInfraEndpoints
COPY
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
201

Created

Returns VCFInfraEndpoint of type(s) application/json;version=9.1.0
{
    "id": "urn:vcloud:vcfInfraEndpoint:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    "name": "string",
    "hostName": "string",
    "username": "string",
    "password": "string",
    "ipaddress": "string",
    "certificate": "string",
    "version": "string"
}

Code Samples
COPY
                    curl -X POST -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