Task_InfrastructureSpec_BatchComputeResources constructor

Task_InfrastructureSpec_BatchComputeResources({
  1. int? executorsCount,
  2. int? maxExecutorsCount,
})

Implementation

factory Task_InfrastructureSpec_BatchComputeResources({
  $core.int? executorsCount,
  $core.int? maxExecutorsCount,
}) {
  final $result = create();
  if (executorsCount != null) {
    $result.executorsCount = executorsCount;
  }
  if (maxExecutorsCount != null) {
    $result.maxExecutorsCount = maxExecutorsCount;
  }
  return $result;
}