github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/vpc/renew_vpn_gateway.go (about)

     1  package vpc
     2  
     3  import (
     4  	github_com_morlay_goqcloud "github.com/morlay/goqcloud"
     5  )
     6  
     7  // 续费VPN网关
     8  // https://cloud.tencent.com/document/api/215/17506
     9  
    10  type RenewVpnGatewayRequest struct {
    11  	// 预付费计费模式。
    12  	InstanceChargePrepaid InstanceChargePrepaid `name:"InstanceChargePrepaid"`
    13  	// 区域
    14  	Region string `name:"Region"`
    15  	// VPN网关实例ID。
    16  	VpnGatewayId string `name:"VpnGatewayId"`
    17  }
    18  
    19  func (req *RenewVpnGatewayRequest) Invoke(client github_com_morlay_goqcloud.Client) (*RenewVpnGatewayResponse, error) {
    20  	resp := &RenewVpnGatewayResponse{}
    21  	err := client.Request("vpc", "RenewVpnGateway", "2017-03-12").Do(req, resp)
    22  	return resp, err
    23  }
    24  
    25  type RenewVpnGatewayResponse struct {
    26  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    27  }