We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type Node struct { Name string json:"name,omitempty" AppService string json:"appService,omitempty" Partition string json:"partition,omitempty" FullPath string json:"fullPath,omitempty" Generation int json:"generation,omitempty" Address string json:"address,omitempty" ConnectionLimit int json:"connectionLimit,omitempty" DynamicRatio int json:"dynamicRatio,omitempty" Logging string json:"logging,omitempty" Monitor string json:"monitor,omitempty" RateLimit string json:"rateLimit,omitempty" Ratio int json:"ratio,omitempty" Session string json:"session,omitempty" State string json:"state,omitempty" FQDN struct { AddressFamily string json:"addressFamily,omitempty" AutoPopulate string json:"autopopulate,omitempty" DownInterval int json:"downInterval,omitempty" Interval string json:"interval,omitempty" Name string json:"tmName,omitempty" } json:"fqdn,omitempty" }
json:"name,omitempty"
json:"appService,omitempty"
json:"partition,omitempty"
json:"fullPath,omitempty"
json:"generation,omitempty"
json:"address,omitempty"
json:"connectionLimit,omitempty"
json:"dynamicRatio,omitempty"
json:"logging,omitempty"
json:"monitor,omitempty"
json:"rateLimit,omitempty"
json:"ratio,omitempty"
json:"session,omitempty"
json:"state,omitempty"
json:"addressFamily,omitempty"
json:"autopopulate,omitempty"
json:"downInterval,omitempty"
json:"interval,omitempty"
json:"tmName,omitempty"
json:"fqdn,omitempty"
FQDN 字段序列化时, 不认为是非零值。 修改为
FQDN *struct { AddressFamily string json:"addressFamily,omitempty" AutoPopulate string json:"autopopulate,omitempty" DownInterval int json:"downInterval,omitempty" Interval string json:"interval,omitempty" Name string json:"tmName,omitempty" } json:"fqdn,omitempty"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
type Node struct {
Name string
json:"name,omitempty"
AppService string
json:"appService,omitempty"
Partition string
json:"partition,omitempty"
FullPath string
json:"fullPath,omitempty"
Generation int
json:"generation,omitempty"
Address string
json:"address,omitempty"
ConnectionLimit int
json:"connectionLimit,omitempty"
DynamicRatio int
json:"dynamicRatio,omitempty"
Logging string
json:"logging,omitempty"
Monitor string
json:"monitor,omitempty"
RateLimit string
json:"rateLimit,omitempty"
Ratio int
json:"ratio,omitempty"
Session string
json:"session,omitempty"
State string
json:"state,omitempty"
FQDN struct {
AddressFamily string
json:"addressFamily,omitempty"
AutoPopulate string
json:"autopopulate,omitempty"
DownInterval int
json:"downInterval,omitempty"
Interval string
json:"interval,omitempty"
Name string
json:"tmName,omitempty"
}
json:"fqdn,omitempty"
}
FQDN 字段序列化时, 不认为是非零值。
修改为
FQDN *struct {
AddressFamily string
json:"addressFamily,omitempty"
AutoPopulate string
json:"autopopulate,omitempty"
DownInterval int
json:"downInterval,omitempty"
Interval string
json:"interval,omitempty"
Name string
json:"tmName,omitempty"
}
json:"fqdn,omitempty"
The text was updated successfully, but these errors were encountered: