github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/manager/firewall_section_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 type FirewallSectionState struct { 9 10 // Array of configuration state of various sub systems 11 Details []ConfigurationStateElement `json:"details,omitempty"` 12 13 // Error code 14 FailureCode int64 `json:"failure_code,omitempty"` 15 16 // Error message in case of failure 17 FailureMessage string `json:"failure_message,omitempty"` 18 19 // Gives details of state of desired configuration 20 State string `json:"state,omitempty"` 21 22 // revision number of the desired state 23 RevisionDesired int64 `json:"revision_desired,omitempty"` 24 }