github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/controller_node_aggregate_info.go (about)

     1  /* Copyright © 2017 VMware, Inc. All Rights Reserved.
     2     SPDX-License-Identifier: BSD-2-Clause
     3  
     4     Generated by: https://github.com/swagger-api/swagger-codegen.git */
     5  
     6  package administration
     7  
     8  import (
     9  	"github.com/vmware/go-vmware-nsxt/manager"
    10  )
    11  
    12  type ControllerNodeAggregateInfo struct {
    13  
    14  	// Array of Node interface statistic properties
    15  	NodeInterfaceProperties []manager.NodeInterfaceProperties `json:"node_interface_properties,omitempty"`
    16  
    17  	// Array of Node network interface statistic properties
    18  	NodeInterfaceStatistics []manager.NodeInterfaceStatisticsProperties `json:"node_interface_statistics,omitempty"`
    19  
    20  	NodeStatus *ClusterNodeStatus `json:"node_status,omitempty"`
    21  
    22  	// Time series of the node's system properties
    23  	NodeStatusProperties []manager.NodeStatusProperties `json:"node_status_properties,omitempty"`
    24  
    25  	RoleConfig *ControllerClusterRoleConfig `json:"role_config,omitempty"`
    26  }