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

     1  package iotcloud
     2  
     3  import (
     4  	github_com_morlay_goqcloud "github.com/morlay/goqcloud"
     5  )
     6  
     7  // 创建多个设备
     8  // https://cloud.tencent.com/document/api/634/19495
     9  
    10  type CreateMultiDeviceRequest struct {
    11  	// 批量创建的设备名数组,单次最多创建 100 个设备。命名规则:[a-zA-Z0-9:_-]{1,48}
    12  	DeviceNames []*string `name:"DeviceNames"`
    13  	// 产品 ID。创建产品时腾讯云为用户分配全局唯一的 ID
    14  	ProductId string `name:"ProductId"`
    15  	// 区域
    16  	Region string `name:"Region"`
    17  }
    18  
    19  func (req *CreateMultiDeviceRequest) Invoke(client github_com_morlay_goqcloud.Client) (*CreateMultiDeviceResponse, error) {
    20  	resp := &CreateMultiDeviceResponse{}
    21  	err := client.Request("iotcloud", "CreateMultiDevice", "2018-06-14").Do(req, resp)
    22  	return resp, err
    23  }
    24  
    25  type CreateMultiDeviceResponse struct {
    26  	github_com_morlay_goqcloud.TencentCloudBaseResponse
    27  	// 任务ID,腾讯云生成全局唯一的任务 ID,有效期一个月,一个月之后任务失效。可以调用获取创建多设备任务状态接口获取该任务的执行状态,当状态为成功时,可以调用获取创建多设备任务结果接口获取该任务的结果
    28  	TaskId string `json:"TaskId"`
    29  }