| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- // Copyright 2019 Yunion
- //
- // 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.
- package compute
- import "yunion.io/x/onecloud/pkg/apis"
- type SNatSCreateInput struct {
- apis.Meta
- Name string `json:"name"`
- NatgatewayId string `json:"natgateway_id"`
- NetworkId string `json:"network_id"`
- // swagger:ignore
- Ip string `json:"ip"`
- // swagger:ignore
- ExternalIpId string `json:"external_ip_id" yunion-deprecated-by:"eip"`
- Eip string `json:"eip"`
- SourceCidr string `json:"source_cidr"`
- }
- type SNatDCreateInput struct {
- apis.Meta
- Name string `json:"name"`
- NatgatewayId string `json:"natgateway_id"`
- InternalIp string `json:"internal_ip"`
- InternalPort int `json:"internal_port"`
- ExternalIp string `json:"external_ip"`
- Eip string `json:"eip"`
- // swagger:ignore
- ExternalIpId string `json:"external_ip_id" yunion-deprecated-by:"eip"`
- ExternalPort int `json:"external_port"`
- IpProtocol string `json:"ip_protocol"`
- }
- type NatDEntryDetails struct {
- NatEntryDetails
- // SNatDEntry
- }
- type NatSEntryDetails struct {
- NatEntryDetails
- // SNatSEntry
- // SNAT归属网络
- Network SimpleNetwork `json:"network"`
- }
- type SimpleNetwork struct {
- Id string `json:"id"`
- Name string `json:"name"`
- GuestIpStart string `json:"guest_ip_start"`
- GuestIpEnd string `json:"guest_ip_end"`
- GuestIp6Start string `json:"guest_ip6_start"`
- GuestIp6End string `json:"guest_ip6_end"`
- }
- type NatgatewayDetails struct {
- apis.StatusInfrasResourceBaseDetails
- VpcResourceInfo
- SNatGateway
- Network string `json:"network"`
- }
|