github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/transport_node_template_state.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  // transport node template application state
     9  type TransportNodeTemplateState struct {
    10  
    11  	// node id
    12  	NodeId string `json:"node_id"`
    13  
    14  	// Transport node template state on individual hosts of ComputeCollection which enabled automated transport code creation. 'FAILED_TO_CREATE' means transport node isn't created. 'IN_PROGRESS' means transport node is in progress of creation. 'FAILED_TO_REALIZE' means transport node has been created, but failed on host realization, it will repush to host by NSX later. 'SUCCESS' means transport node creation is succeeded.
    15  	State string `json:"state,omitempty"`
    16  
    17  	// transport node id
    18  	TransportNodeId string `json:"transport_node_id,omitempty"`
    19  }