github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/node_properties.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 manager
     7  
     8  import (
     9  	"github.com/vmware/go-vmware-nsxt/common"
    10  )
    11  
    12  type NodeProperties struct {
    13  
    14  	// The server will populate this field when returing the resource. Ignored on PUT and POST.
    15  	Links []common.ResourceLink `json:"_links,omitempty"`
    16  
    17  	Schema string `json:"_schema,omitempty"`
    18  
    19  	Self *common.SelfResourceLink `json:"_self,omitempty"`
    20  
    21  	// Node BIOS Unique Indentifier
    22  	BiosUuid string `json:"bios_uuid,omitempty"`
    23  
    24  	// NSX CLI inactivity timeout, set to 0 to configure no timeout
    25  	CliTimeout int64 `json:"cli_timeout,omitempty"`
    26  
    27  	// Host name or fully qualified domain name of node
    28  	Hostname string `json:"hostname,omitempty"`
    29  
    30  	// Kernel version
    31  	KernelVersion string `json:"kernel_version,omitempty"`
    32  
    33  	// Node Unique Identifier
    34  	NodeUuid string `json:"node_uuid,omitempty"`
    35  
    36  	// Node version
    37  	NodeVersion string `json:"node_version,omitempty"`
    38  
    39  	// Current time expressed in milliseconds since epoch
    40  	SystemTime int64 `json:"system_time,omitempty"`
    41  
    42  	// Timezone
    43  	Timezone string `json:"timezone,omitempty"`
    44  }