You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/vendor/github.com/ucloud/ucloud-sdk-go/services/vpc/create_vpcintercom.go

63 lines
1.9 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//Code is generated by ucloud code generator, don't modify it by hand, it will cause undefined behaviors.
//go:generate ucloud-gen-go-api VPC CreateVPCIntercom
package vpc
import (
"github.com/ucloud/ucloud-sdk-go/ucloud/request"
"github.com/ucloud/ucloud-sdk-go/ucloud/response"
)
// CreateVPCIntercomRequest is request schema for CreateVPCIntercom action
type CreateVPCIntercomRequest struct {
request.CommonBase
// [公共参数] 源VPC所在地域。 参见 [地域和可用区列表](../summary/regionlist.html)
// Region *string `required:"true"`
// [公共参数] 源VPC所在项目ID。不填写为默认项目子帐号必须填写。 请参考[GetProjectList接口](../summary/get_project_list.html)
// ProjectId *string `required:"false"`
// 源VPC短ID
VPCId *string `required:"true"`
// 目的VPC短ID
DstVPCId *string `required:"true"`
// 目的VPC所在地域默认与源VPC同地域。
DstRegion *string `required:"false"`
// 目的VPC项目ID。默认与源VPC同项目。
DstProjectId *string `required:"false"`
}
// CreateVPCIntercomResponse is response schema for CreateVPCIntercom action
type CreateVPCIntercomResponse struct {
response.CommonBase
}
// NewCreateVPCIntercomRequest will create request of CreateVPCIntercom action.
func (c *VPCClient) NewCreateVPCIntercomRequest() *CreateVPCIntercomRequest {
req := &CreateVPCIntercomRequest{}
// setup request with client config
c.Client.SetupRequest(req)
// setup retryable with default retry policy (retry for non-create action and common error)
req.SetRetryable(false)
return req
}
// CreateVPCIntercom - 新建VPC互通关系
func (c *VPCClient) CreateVPCIntercom(req *CreateVPCIntercomRequest) (*CreateVPCIntercomResponse, error) {
var err error
var res CreateVPCIntercomResponse
err = c.Client.InvokeAction("CreateVPCIntercom", req, &res)
if err != nil {
return &res, err
}
return &res, nil
}