Library_Item_TransferEndpoint

Library_Item_TransferEndpoint
Library_Item_TransferEndpoint

The TransferEndpoint structure encapsulates a URI along with extra information about it.

JSON Example
{
    "uri": "string",
    "ssl_certificate_thumbprint": "string"
}
string As uri
uri
Required

Transfer endpoint URI. The supported URI schemes are: http, https, and ds. An endpoint URI with the ds scheme specifies the location of the file on the datastore. The format of the datastore URI is:

  • ds:///vmfs/volumes/uuid/path

When the transfer endpoint is a datastore location, the server can import the file directly from the storage backing without the overhead of streaming over HTTP.

string
ssl_certificate_thumbprint
Optional

Thumbprint of the expected SSL certificate for this endpoint. Only used for HTTPS connections. The thumbprint is the SHA-1 hash of the DER encoding of the remote endpoint's SSL certificate. If set, the remote endpoint's SSL certificate is only accepted if it matches this thumbprint, and no other certificate validation is performed. The specified sslCertificateThumbprint will not be checked for SSL certificate validation if {TransferEndpoint#sslCertificate} is also set. If unset, standard certificate validation is performed.