Class: TencentCloud::Wedata::V20210820::RerunOpsMakePlanInstancesRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210820/models.rb

Overview

RerunOpsMakePlanInstances请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(projectid = nil, planid = nil, instanceidlist = nil) ⇒ RerunOpsMakePlanInstancesRequest

Returns a new instance of RerunOpsMakePlanInstancesRequest.



27062
27063
27064
27065
27066
# File 'lib/v20210820/models.rb', line 27062

def initialize(projectid=nil, planid=nil, instanceidlist=nil)
  @ProjectId = projectid
  @PlanId = planid
  @InstanceIdList = instanceidlist
end

Instance Attribute Details

#InstanceIdListObject

Parameters:

  • ProjectId:

    项目ID

  • PlanId:

    补录计划ID

  • InstanceIdList:

    补录实例ID集合,为空则重跑整个补录计划失败实例。实例ID格式为“$TASK_ID_$INSTANCE_DATA_TIME”,即“任务ID_任务实例数据时间”。



27060
27061
27062
# File 'lib/v20210820/models.rb', line 27060

def InstanceIdList
  @InstanceIdList
end

#PlanIdObject

Parameters:

  • ProjectId:

    项目ID

  • PlanId:

    补录计划ID

  • InstanceIdList:

    补录实例ID集合,为空则重跑整个补录计划失败实例。实例ID格式为“$TASK_ID_$INSTANCE_DATA_TIME”,即“任务ID_任务实例数据时间”。



27060
27061
27062
# File 'lib/v20210820/models.rb', line 27060

def PlanId
  @PlanId
end

#ProjectIdObject

Parameters:

  • ProjectId:

    项目ID

  • PlanId:

    补录计划ID

  • InstanceIdList:

    补录实例ID集合,为空则重跑整个补录计划失败实例。实例ID格式为“$TASK_ID_$INSTANCE_DATA_TIME”,即“任务ID_任务实例数据时间”。



27060
27061
27062
# File 'lib/v20210820/models.rb', line 27060

def ProjectId
  @ProjectId
end

Instance Method Details

#deserialize(params) ⇒ Object



27068
27069
27070
27071
27072
# File 'lib/v20210820/models.rb', line 27068

def deserialize(params)
  @ProjectId = params['ProjectId']
  @PlanId = params['PlanId']
  @InstanceIdList = params['InstanceIdList']
end