From 2da90aeb67334afd725abfa45fcddc4b56a09416 Mon Sep 17 00:00:00 2001 From: kent Date: Mon, 19 Feb 2024 16:31:15 -0700 Subject: [PATCH] Host TLS parameters added --- host.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/host.go b/host.go index a6c28ce..df12af4 100644 --- a/host.go +++ b/host.go @@ -62,6 +62,13 @@ type Host struct { ParentTemplateIDs TemplateIDs `json:"parentTemplates,omitempty"` ProxyID string `json:"proxy_hostid,omitempty"` Tags Tags `json:"tags,omitempty"` + + TLSConnect string `json:"tls_connect,omitempty"` + TLSAccept string `json:"tls_accept,omitempty"` + TLSIssuer string `json:"tls_issuer,omitempty"` + TLSSubject string `json:"tls_subject,omitempty"` + TLSPSKIdentity string `json:"tls_psk_identity,omitempty"` + TLSPSK string `json:"tls_psk,omitempty"` } // Hosts is an array of Host