source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1FeatureView.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 5.7 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Aiplatform;
19
20class GoogleCloudAiplatformV1FeatureView extends \Google\Model
21{
22 protected $bigQuerySourceType = GoogleCloudAiplatformV1FeatureViewBigQuerySource::class;
23 protected $bigQuerySourceDataType = '';
24 /**
25 * @var string
26 */
27 public $createTime;
28 /**
29 * @var string
30 */
31 public $etag;
32 protected $featureRegistrySourceType = GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource::class;
33 protected $featureRegistrySourceDataType = '';
34 protected $indexConfigType = GoogleCloudAiplatformV1FeatureViewIndexConfig::class;
35 protected $indexConfigDataType = '';
36 /**
37 * @var string[]
38 */
39 public $labels;
40 /**
41 * @var string
42 */
43 public $name;
44 protected $optimizedConfigType = GoogleCloudAiplatformV1FeatureViewOptimizedConfig::class;
45 protected $optimizedConfigDataType = '';
46 /**
47 * @var bool
48 */
49 public $satisfiesPzi;
50 /**
51 * @var bool
52 */
53 public $satisfiesPzs;
54 protected $syncConfigType = GoogleCloudAiplatformV1FeatureViewSyncConfig::class;
55 protected $syncConfigDataType = '';
56 /**
57 * @var string
58 */
59 public $updateTime;
60 protected $vertexRagSourceType = GoogleCloudAiplatformV1FeatureViewVertexRagSource::class;
61 protected $vertexRagSourceDataType = '';
62
63 /**
64 * @param GoogleCloudAiplatformV1FeatureViewBigQuerySource
65 */
66 public function setBigQuerySource(GoogleCloudAiplatformV1FeatureViewBigQuerySource $bigQuerySource)
67 {
68 $this->bigQuerySource = $bigQuerySource;
69 }
70 /**
71 * @return GoogleCloudAiplatformV1FeatureViewBigQuerySource
72 */
73 public function getBigQuerySource()
74 {
75 return $this->bigQuerySource;
76 }
77 /**
78 * @param string
79 */
80 public function setCreateTime($createTime)
81 {
82 $this->createTime = $createTime;
83 }
84 /**
85 * @return string
86 */
87 public function getCreateTime()
88 {
89 return $this->createTime;
90 }
91 /**
92 * @param string
93 */
94 public function setEtag($etag)
95 {
96 $this->etag = $etag;
97 }
98 /**
99 * @return string
100 */
101 public function getEtag()
102 {
103 return $this->etag;
104 }
105 /**
106 * @param GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource
107 */
108 public function setFeatureRegistrySource(GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource $featureRegistrySource)
109 {
110 $this->featureRegistrySource = $featureRegistrySource;
111 }
112 /**
113 * @return GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource
114 */
115 public function getFeatureRegistrySource()
116 {
117 return $this->featureRegistrySource;
118 }
119 /**
120 * @param GoogleCloudAiplatformV1FeatureViewIndexConfig
121 */
122 public function setIndexConfig(GoogleCloudAiplatformV1FeatureViewIndexConfig $indexConfig)
123 {
124 $this->indexConfig = $indexConfig;
125 }
126 /**
127 * @return GoogleCloudAiplatformV1FeatureViewIndexConfig
128 */
129 public function getIndexConfig()
130 {
131 return $this->indexConfig;
132 }
133 /**
134 * @param string[]
135 */
136 public function setLabels($labels)
137 {
138 $this->labels = $labels;
139 }
140 /**
141 * @return string[]
142 */
143 public function getLabels()
144 {
145 return $this->labels;
146 }
147 /**
148 * @param string
149 */
150 public function setName($name)
151 {
152 $this->name = $name;
153 }
154 /**
155 * @return string
156 */
157 public function getName()
158 {
159 return $this->name;
160 }
161 /**
162 * @param GoogleCloudAiplatformV1FeatureViewOptimizedConfig
163 */
164 public function setOptimizedConfig(GoogleCloudAiplatformV1FeatureViewOptimizedConfig $optimizedConfig)
165 {
166 $this->optimizedConfig = $optimizedConfig;
167 }
168 /**
169 * @return GoogleCloudAiplatformV1FeatureViewOptimizedConfig
170 */
171 public function getOptimizedConfig()
172 {
173 return $this->optimizedConfig;
174 }
175 /**
176 * @param bool
177 */
178 public function setSatisfiesPzi($satisfiesPzi)
179 {
180 $this->satisfiesPzi = $satisfiesPzi;
181 }
182 /**
183 * @return bool
184 */
185 public function getSatisfiesPzi()
186 {
187 return $this->satisfiesPzi;
188 }
189 /**
190 * @param bool
191 */
192 public function setSatisfiesPzs($satisfiesPzs)
193 {
194 $this->satisfiesPzs = $satisfiesPzs;
195 }
196 /**
197 * @return bool
198 */
199 public function getSatisfiesPzs()
200 {
201 return $this->satisfiesPzs;
202 }
203 /**
204 * @param GoogleCloudAiplatformV1FeatureViewSyncConfig
205 */
206 public function setSyncConfig(GoogleCloudAiplatformV1FeatureViewSyncConfig $syncConfig)
207 {
208 $this->syncConfig = $syncConfig;
209 }
210 /**
211 * @return GoogleCloudAiplatformV1FeatureViewSyncConfig
212 */
213 public function getSyncConfig()
214 {
215 return $this->syncConfig;
216 }
217 /**
218 * @param string
219 */
220 public function setUpdateTime($updateTime)
221 {
222 $this->updateTime = $updateTime;
223 }
224 /**
225 * @return string
226 */
227 public function getUpdateTime()
228 {
229 return $this->updateTime;
230 }
231 /**
232 * @param GoogleCloudAiplatformV1FeatureViewVertexRagSource
233 */
234 public function setVertexRagSource(GoogleCloudAiplatformV1FeatureViewVertexRagSource $vertexRagSource)
235 {
236 $this->vertexRagSource = $vertexRagSource;
237 }
238 /**
239 * @return GoogleCloudAiplatformV1FeatureViewVertexRagSource
240 */
241 public function getVertexRagSource()
242 {
243 return $this->vertexRagSource;
244 }
245}
246
247// Adding a class alias for backwards compatibility with the previous class name.
248class_alias(GoogleCloudAiplatformV1FeatureView::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1FeatureView');
Note: See TracBrowser for help on using the repository browser.