| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Copyright 2018 JDCLOUD.COM
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- // NOTE: This class is auto generated by the jdcloud code generator program.
- package models
- type ROInstanceProxyAttribute struct {
- /* 只读代理服务 ID (Optional) */
- RoInstanceProxyID string `json:"roInstanceProxyID"`
- /* 只读代理服务名称 (Optional) */
- Name string `json:"name"`
- /* 只读代理服务公网域名 (Optional) */
- PublicDomainName string `json:"publicDomainName"`
- /* 只读代理服务内网域名 (Optional) */
- InternalDomainName string `json:"internalDomainName"`
- /* 只读代理服务访问端口 (Optional) */
- Port string `json:"port"`
- /* 只读代理服务转发策略 (Optional) */
- Strategy string `json:"strategy"`
- /* 绑定的只读实例 ID 列表 (Optional) */
- RoInstanceId []string `json:"roInstanceId"`
- /* 只读实例列表 (Optional) */
- RoInstanceList []RoInstanceList `json:"roInstanceList"`
- }
|