github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/node_service_status_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 administration 7 8 import ( 9 "github.com/vmware/go-vmware-nsxt/common" 10 ) 11 12 type NodeServiceStatusProperties 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 // Service monitor process id 22 MonitorPid int64 `json:"monitor_pid,omitempty"` 23 24 // Service monitor runtime state 25 MonitorRuntimeState string `json:"monitor_runtime_state,omitempty"` 26 27 // Service process ids 28 Pids []int64 `json:"pids,omitempty"` 29 30 // Service runtime state 31 RuntimeState string `json:"runtime_state,omitempty"` 32 }