-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathBigtable.php
More file actions
158 lines (138 loc) · 5.5 KB
/
Bigtable.php
File metadata and controls
158 lines (138 loc) · 5.5 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/aiplatform/v1/feature_online_store.proto
namespace Google\Cloud\AIPlatform\V1\FeatureOnlineStore;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Generated from protobuf message <code>google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable</code>
*/
class Bigtable extends \Google\Protobuf\Internal\Message
{
/**
* Required. Autoscaling config applied to Bigtable Instance.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable.AutoScaling auto_scaling = 1 [(.google.api.field_behavior) = REQUIRED];</code>
*/
protected $auto_scaling = null;
/**
* Optional. Whether direct access to the Bigtable instance is enabled or
* not.
*
* Generated from protobuf field <code>bool enable_direct_bigtable_access = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $enable_direct_bigtable_access = false;
/**
* Output only. Metadata of the Bigtable instance. Output only.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable.BigtableMetadata bigtable_metadata = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $bigtable_metadata = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\AIPlatform\V1\FeatureOnlineStore\Bigtable\AutoScaling $auto_scaling
* Required. Autoscaling config applied to Bigtable Instance.
* @type bool $enable_direct_bigtable_access
* Optional. Whether direct access to the Bigtable instance is enabled or
* not.
* @type \Google\Cloud\AIPlatform\V1\FeatureOnlineStore\Bigtable\BigtableMetadata $bigtable_metadata
* Output only. Metadata of the Bigtable instance. Output only.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Aiplatform\V1\FeatureOnlineStore::initOnce();
parent::__construct($data);
}
/**
* Required. Autoscaling config applied to Bigtable Instance.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable.AutoScaling auto_scaling = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @return \Google\Cloud\AIPlatform\V1\FeatureOnlineStore\Bigtable\AutoScaling|null
*/
public function getAutoScaling()
{
return $this->auto_scaling;
}
public function hasAutoScaling()
{
return isset($this->auto_scaling);
}
public function clearAutoScaling()
{
unset($this->auto_scaling);
}
/**
* Required. Autoscaling config applied to Bigtable Instance.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable.AutoScaling auto_scaling = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @param \Google\Cloud\AIPlatform\V1\FeatureOnlineStore\Bigtable\AutoScaling $var
* @return $this
*/
public function setAutoScaling($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\AIPlatform\V1\FeatureOnlineStore\Bigtable\AutoScaling::class);
$this->auto_scaling = $var;
return $this;
}
/**
* Optional. Whether direct access to the Bigtable instance is enabled or
* not.
*
* Generated from protobuf field <code>bool enable_direct_bigtable_access = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return bool
*/
public function getEnableDirectBigtableAccess()
{
return $this->enable_direct_bigtable_access;
}
/**
* Optional. Whether direct access to the Bigtable instance is enabled or
* not.
*
* Generated from protobuf field <code>bool enable_direct_bigtable_access = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param bool $var
* @return $this
*/
public function setEnableDirectBigtableAccess($var)
{
GPBUtil::checkBool($var);
$this->enable_direct_bigtable_access = $var;
return $this;
}
/**
* Output only. Metadata of the Bigtable instance. Output only.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable.BigtableMetadata bigtable_metadata = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Cloud\AIPlatform\V1\FeatureOnlineStore\Bigtable\BigtableMetadata|null
*/
public function getBigtableMetadata()
{
return $this->bigtable_metadata;
}
public function hasBigtableMetadata()
{
return isset($this->bigtable_metadata);
}
public function clearBigtableMetadata()
{
unset($this->bigtable_metadata);
}
/**
* Output only. Metadata of the Bigtable instance. Output only.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.FeatureOnlineStore.Bigtable.BigtableMetadata bigtable_metadata = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Cloud\AIPlatform\V1\FeatureOnlineStore\Bigtable\BigtableMetadata $var
* @return $this
*/
public function setBigtableMetadata($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\AIPlatform\V1\FeatureOnlineStore\Bigtable\BigtableMetadata::class);
$this->bigtable_metadata = $var;
return $this;
}
}