mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-07-05 17:04:28 +08:00
46 lines
1.5 KiB
Go
46 lines
1.5 KiB
Go
// 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"`
|
|
}
|