yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/hcso/loadbalancer_healthcheck.go (about) 1 // Copyright 2019 Yunion 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package hcso 16 17 type SElbHealthCheck struct { 18 region *SRegion 19 20 Name string `json:"name"` 21 AdminStateUp bool `json:"admin_state_up"` 22 TenantID string `json:"tenant_id"` 23 ProjectID string `json:"project_id"` 24 DomainName string `json:"domain_name"` 25 Delay int `json:"delay"` 26 ExpectedCodes string `json:"expected_codes"` 27 MaxRetries int `json:"max_retries"` 28 HTTPMethod string `json:"http_method"` 29 Timeout int `json:"timeout"` 30 Pools []Pool `json:"pools"` 31 URLPath string `json:"url_path"` 32 Type string `json:"type"` 33 ID string `json:"id"` 34 MonitorPort int `json:"monitor_port"` 35 }