From ca009bdce3188ac01462381ad02bce06b879f64d Mon Sep 17 00:00:00 2001 From: vladhanzha Date: Mon, 29 Jul 2024 17:14:58 +0300 Subject: [PATCH] Add missing `domain` field to hosts --- cloudconnexa/hosts.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cloudconnexa/hosts.go b/cloudconnexa/hosts.go index 672e6f4..d21d574 100644 --- a/cloudconnexa/hosts.go +++ b/cloudconnexa/hosts.go @@ -11,6 +11,7 @@ type Host struct { Id string `json:"id,omitempty"` Name string `json:"name"` Description string `json:"description"` + Domain string `json:"domain"` InternetAccess string `json:"internetAccess"` SystemSubnets []string `json:"systemSubnets"` Connectors []Connector `json:"connectors"`