TlsEndpointResponse

data class TlsEndpointResponse(val credentials: UsernamePasswordCredentialsResponse, val trustedCertificates: PemCertificateListResponse? = null, val tunnel: SecureIotDeviceRemoteTunnelResponse? = null, val type: String, val url: String, val validationOptions: TlsValidationOptionsResponse? = null)

TLS endpoint describes an endpoint that the pipeline can connect to over TLS transport (data is encrypted in transit).

Constructors

Link copied to clipboard
constructor(credentials: UsernamePasswordCredentialsResponse, trustedCertificates: PemCertificateListResponse? = null, tunnel: SecureIotDeviceRemoteTunnelResponse? = null, type: String, url: String, validationOptions: TlsValidationOptionsResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Credentials to be presented to the endpoint.

Link copied to clipboard

List of trusted certificate authorities when authenticating a TLS connection. A null list designates that Azure Video Analyzer's list of trusted authorities should be used.

Link copied to clipboard

Describes the tunnel through which Video Analyzer can connect to the endpoint URL. This is an optional property, typically used when the endpoint is behind a firewall.

Link copied to clipboard

The discriminator for derived types. Expected value is '#Microsoft.VideoAnalyzer.TlsEndpoint'.

Link copied to clipboard
val url: String

The endpoint URL for Video Analyzer to connect to.

Link copied to clipboard

Validation options to use when authenticating a TLS connection. By default, strict validation is used.