-
Notifications
You must be signed in to change notification settings - Fork 460
Expand file tree
/
Copy pathJobExecutionInfo.php
More file actions
68 lines (59 loc) · 2.12 KB
/
JobExecutionInfo.php
File metadata and controls
68 lines (59 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/dataflow/v1beta3/jobs.proto
namespace Google\Cloud\Dataflow\V1beta3;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Additional information about how a Cloud Dataflow job will be executed that
* isn't contained in the submitted job.
*
* Generated from protobuf message <code>google.dataflow.v1beta3.JobExecutionInfo</code>
*/
class JobExecutionInfo extends \Google\Protobuf\Internal\Message
{
/**
* A mapping from each stage to the information about that stage.
*
* Generated from protobuf field <code>map<string, .google.dataflow.v1beta3.JobExecutionStageInfo> stages = 1;</code>
*/
private $stages;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array|\Google\Protobuf\Internal\MapField $stages
* A mapping from each stage to the information about that stage.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Dataflow\V1Beta3\Jobs::initOnce();
parent::__construct($data);
}
/**
* A mapping from each stage to the information about that stage.
*
* Generated from protobuf field <code>map<string, .google.dataflow.v1beta3.JobExecutionStageInfo> stages = 1;</code>
* @return \Google\Protobuf\Internal\MapField
*/
public function getStages()
{
return $this->stages;
}
/**
* A mapping from each stage to the information about that stage.
*
* Generated from protobuf field <code>map<string, .google.dataflow.v1beta3.JobExecutionStageInfo> stages = 1;</code>
* @param array|\Google\Protobuf\Internal\MapField $var
* @return $this
*/
public function setStages($var)
{
$arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Dataflow\V1beta3\JobExecutionStageInfo::class);
$this->stages = $arr;
return $this;
}
}