JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\Dataflow; class StreamingComputationTask extends \Google\Collection { /** * The streaming computation task is unknown, or unspecified. */ public const TASK_TYPE_STREAMING_COMPUTATION_TASK_UNKNOWN = 'STREAMING_COMPUTATION_TASK_UNKNOWN'; /** * Stop processing specified streaming computation range(s). */ public const TASK_TYPE_STREAMING_COMPUTATION_TASK_STOP = 'STREAMING_COMPUTATION_TASK_STOP'; /** * Start processing specified streaming computation range(s). */ public const TASK_TYPE_STREAMING_COMPUTATION_TASK_START = 'STREAMING_COMPUTATION_TASK_START'; protected $collection_key = 'dataDisks'; protected $computationRangesType = StreamingComputationRanges::class; protected $computationRangesDataType = 'array'; protected $dataDisksType = MountedDataDisk::class; protected $dataDisksDataType = 'array'; /** * A type of streaming computation task. * * @var string */ public $taskType; /** * Contains ranges of a streaming computation this task should apply to. * * @param StreamingComputationRanges[] $computationRanges */ public function setComputationRanges($computationRanges) { $this->computationRanges = $computationRanges; } /** * @return StreamingComputationRanges[] */ public function getComputationRanges() { return $this->computationRanges; } /** * Describes the set of data disks this task should apply to. * * @param MountedDataDisk[] $dataDisks */ public function setDataDisks($dataDisks) { $this->dataDisks = $dataDisks; } /** * @return MountedDataDisk[] */ public function getDataDisks() { return $this->dataDisks; } /** * A type of streaming computation task. * * Accepted values: STREAMING_COMPUTATION_TASK_UNKNOWN, * STREAMING_COMPUTATION_TASK_STOP, STREAMING_COMPUTATION_TASK_START * * @param self::TASK_TYPE_* $taskType */ public function setTaskType($taskType) { $this->taskType = $taskType; } /** * @return self::TASK_TYPE_* */ public function getTaskType() { return $this->taskType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(StreamingComputationTask::class, 'Google_Service_Dataflow_StreamingComputationTask');