-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathThrottleState.php
More file actions
71 lines (62 loc) · 1.95 KB
/
ThrottleState.php
File metadata and controls
71 lines (62 loc) · 1.95 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
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/bigquery/storage/v1/storage.proto
namespace Google\Cloud\BigQuery\Storage\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Information on if the current connection is being throttled.
*
* Generated from protobuf message <code>google.cloud.bigquery.storage.v1.ThrottleState</code>
*/
class ThrottleState extends \Google\Protobuf\Internal\Message
{
/**
* How much this connection is being throttled. Zero means no throttling,
* 100 means fully throttled.
*
* Generated from protobuf field <code>int32 throttle_percent = 1;</code>
*/
protected $throttle_percent = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $throttle_percent
* How much this connection is being throttled. Zero means no throttling,
* 100 means fully throttled.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Bigquery\Storage\V1\Storage::initOnce();
parent::__construct($data);
}
/**
* How much this connection is being throttled. Zero means no throttling,
* 100 means fully throttled.
*
* Generated from protobuf field <code>int32 throttle_percent = 1;</code>
* @return int
*/
public function getThrottlePercent()
{
return $this->throttle_percent;
}
/**
* How much this connection is being throttled. Zero means no throttling,
* 100 means fully throttled.
*
* Generated from protobuf field <code>int32 throttle_percent = 1;</code>
* @param int $var
* @return $this
*/
public function setThrottlePercent($var)
{
GPBUtil::checkInt32($var);
$this->throttle_percent = $var;
return $this;
}
}