github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/server/port_forwarding_rule.go (about)

     1  /*
     2   * server
     3   *
     4   * <br/>https://ncloud.apigw.ntruss.com/server/v2
     5   *
     6   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     7   */
     8  
     9  package server
    10  
    11  type PortForwardingRule struct {
    12  
    13  	// 포트포워딩설정번호
    14  PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo,omitempty"`
    15  
    16  	// 포트포워딩공인IP
    17  PortForwardingPublicIp *string `json:"portForwardingPublicIp,omitempty"`
    18  
    19  	// ZONE
    20  Zone *Zone `json:"zone,omitempty"`
    21  
    22  	// 포트포워딩외부포트
    23  PortForwardingExternalPort *int32 `json:"portForwardingExternalPort,omitempty"`
    24  
    25  	// 포트포워딩내부포트
    26  PortForwardingInternalPort *int32 `json:"portForwardingInternalPort,omitempty"`
    27  
    28  	// 서버인스턴스
    29  ServerInstance *ServerInstance `json:"serverInstance,omitempty"`
    30  }