You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// OrganizationID: organization owning the resource
649
+
OrganizationIDstring`json:"organization_id"`
650
650
}
651
651
652
652
// DeviceMessageFilters: device message filters
@@ -686,12 +686,8 @@ type FunctionsRoute struct {
686
686
687
687
// Hub: hub
688
688
typeHubstruct {
689
-
// Region: region of the Hub
690
-
Region scw.Region`json:"region"`
691
689
// ID: hub ID
692
690
IDstring`json:"id"`
693
-
// OrganizationID: organization owning the resource
694
-
OrganizationIDstring`json:"organization_id"`
695
691
// Name: hub name
696
692
Namestring`json:"name"`
697
693
// Status: current status of the Hub
@@ -702,24 +698,28 @@ type Hub struct {
702
698
//
703
699
// Default value: plan_unknown
704
700
ProductPlanProductPlan`json:"product_plan"`
705
-
// Endpoint: host to connect your devices to
706
-
//
707
-
// Devices should be connected to this host, port may be 1883 (MQTT), 8883 (MQTT over TLS), 80 (MQTT over Websocket) or 443 (MQTT over Websocket over TLS).
708
-
Endpointstring`json:"endpoint"`
709
-
// CreatedAt: hub creation date
710
-
CreatedAt*time.Time`json:"created_at"`
711
-
// UpdatedAt: hub last modification date
712
-
UpdatedAt*time.Time`json:"updated_at"`
713
701
// Enabled: whether the hub has been enabled
714
702
Enabledbool`json:"enabled"`
715
703
// DeviceCount: number of registered devices
716
704
DeviceCountuint64`json:"device_count"`
717
705
// ConnectedDeviceCount: number of currently connected devices
// Devices should be connected to this host, port may be 1883 (MQTT), 8883 (MQTT over TLS), 80 (MQTT over Websocket) or 443 (MQTT over Websocket over TLS).
710
+
Endpointstring`json:"endpoint"`
719
711
// EventsEnabled: wether Hub events are enabled or not
0 commit comments