github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/node_capability.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  // Capability of a fabric node
     9  type NodeCapability struct {
    10  
    11  	// Description of this capability that can be displayed in UI
    12  	Description string `json:"description,omitempty"`
    13  
    14  	// String that identifies the base capability for all nodes
    15  	Key string `json:"key,omitempty"`
    16  
    17  	// Provider of this capability for the node
    18  	Provider string `json:"provider,omitempty"`
    19  
    20  	// Value of this capability
    21  	Value string `json:"value,omitempty"`
    22  
    23  	// Version of the capability
    24  	Version int32 `json:"version,omitempty"`
    25  }