-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathNetworkSettings.php
More file actions
68 lines (59 loc) · 1.99 KB
/
NetworkSettings.php
File metadata and controls
68 lines (59 loc) · 1.99 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/appengine/v1/network_settings.proto
namespace Google\Cloud\AppEngine\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* A NetworkSettings resource is a container for ingress settings for a version
* or service.
*
* Generated from protobuf message <code>google.appengine.v1.NetworkSettings</code>
*/
class NetworkSettings extends \Google\Protobuf\Internal\Message
{
/**
* The ingress settings for version or service.
*
* Generated from protobuf field <code>.google.appengine.v1.NetworkSettings.IngressTrafficAllowed ingress_traffic_allowed = 1;</code>
*/
protected $ingress_traffic_allowed = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $ingress_traffic_allowed
* The ingress settings for version or service.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Appengine\V1\NetworkSettings::initOnce();
parent::__construct($data);
}
/**
* The ingress settings for version or service.
*
* Generated from protobuf field <code>.google.appengine.v1.NetworkSettings.IngressTrafficAllowed ingress_traffic_allowed = 1;</code>
* @return int
*/
public function getIngressTrafficAllowed()
{
return $this->ingress_traffic_allowed;
}
/**
* The ingress settings for version or service.
*
* Generated from protobuf field <code>.google.appengine.v1.NetworkSettings.IngressTrafficAllowed ingress_traffic_allowed = 1;</code>
* @param int $var
* @return $this
*/
public function setIngressTrafficAllowed($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\AppEngine\V1\NetworkSettings\IngressTrafficAllowed::class);
$this->ingress_traffic_allowed = $var;
return $this;
}
}