github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/configuration_state_element.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  type ConfigurationStateElement struct {
     9  
    10  	// Error code
    11  	FailureCode int64 `json:"failure_code,omitempty"`
    12  
    13  	// Error message in case of failure
    14  	FailureMessage string `json:"failure_message,omitempty"`
    15  
    16  	// State of configuration on this sub system
    17  	State string `json:"state,omitempty"`
    18  
    19  	// URI of backing resource on sub system
    20  	SubSystemAddress string `json:"sub_system_address,omitempty"`
    21  
    22  	// Identifier of backing resource on sub system
    23  	SubSystemId string `json:"sub_system_id,omitempty"`
    24  
    25  	// Type of backing resource on sub system
    26  	SubSystemType string `json:"sub_system_type,omitempty"`
    27  }