-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathMountedDataDisk.php
More file actions
79 lines (70 loc) · 2.3 KB
/
MountedDataDisk.php
File metadata and controls
79 lines (70 loc) · 2.3 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
68
69
70
71
72
73
74
75
76
77
78
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/dataflow/v1beta3/streaming.proto
namespace Google\Cloud\Dataflow\V1beta3;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Describes mounted data disk.
*
* Generated from protobuf message <code>google.dataflow.v1beta3.MountedDataDisk</code>
*/
class MountedDataDisk extends \Google\Protobuf\Internal\Message
{
/**
* The name of the data disk.
* This name is local to the Google Cloud Platform project and uniquely
* identifies the disk within that project, for example
* "myproject-1014-104817-4c2-harness-0-disk-1".
*
* Generated from protobuf field <code>string data_disk = 1;</code>
*/
protected $data_disk = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $data_disk
* The name of the data disk.
* This name is local to the Google Cloud Platform project and uniquely
* identifies the disk within that project, for example
* "myproject-1014-104817-4c2-harness-0-disk-1".
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Dataflow\V1Beta3\Streaming::initOnce();
parent::__construct($data);
}
/**
* The name of the data disk.
* This name is local to the Google Cloud Platform project and uniquely
* identifies the disk within that project, for example
* "myproject-1014-104817-4c2-harness-0-disk-1".
*
* Generated from protobuf field <code>string data_disk = 1;</code>
* @return string
*/
public function getDataDisk()
{
return $this->data_disk;
}
/**
* The name of the data disk.
* This name is local to the Google Cloud Platform project and uniquely
* identifies the disk within that project, for example
* "myproject-1014-104817-4c2-harness-0-disk-1".
*
* Generated from protobuf field <code>string data_disk = 1;</code>
* @param string $var
* @return $this
*/
public function setDataDisk($var)
{
GPBUtil::checkString($var, True);
$this->data_disk = $var;
return $this;
}
}