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

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

Upload project files

  • Property mode set to 100644
File size: 4.5 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 GoogleCloudAiplatformV1Tensorboard extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $blobStoragePathPrefix;
26 /**
27 * @var string
28 */
29 public $createTime;
30 /**
31 * @var string
32 */
33 public $description;
34 /**
35 * @var string
36 */
37 public $displayName;
38 protected $encryptionSpecType = GoogleCloudAiplatformV1EncryptionSpec::class;
39 protected $encryptionSpecDataType = '';
40 /**
41 * @var string
42 */
43 public $etag;
44 /**
45 * @var bool
46 */
47 public $isDefault;
48 /**
49 * @var string[]
50 */
51 public $labels;
52 /**
53 * @var string
54 */
55 public $name;
56 /**
57 * @var int
58 */
59 public $runCount;
60 /**
61 * @var bool
62 */
63 public $satisfiesPzi;
64 /**
65 * @var bool
66 */
67 public $satisfiesPzs;
68 /**
69 * @var string
70 */
71 public $updateTime;
72
73 /**
74 * @param string
75 */
76 public function setBlobStoragePathPrefix($blobStoragePathPrefix)
77 {
78 $this->blobStoragePathPrefix = $blobStoragePathPrefix;
79 }
80 /**
81 * @return string
82 */
83 public function getBlobStoragePathPrefix()
84 {
85 return $this->blobStoragePathPrefix;
86 }
87 /**
88 * @param string
89 */
90 public function setCreateTime($createTime)
91 {
92 $this->createTime = $createTime;
93 }
94 /**
95 * @return string
96 */
97 public function getCreateTime()
98 {
99 return $this->createTime;
100 }
101 /**
102 * @param string
103 */
104 public function setDescription($description)
105 {
106 $this->description = $description;
107 }
108 /**
109 * @return string
110 */
111 public function getDescription()
112 {
113 return $this->description;
114 }
115 /**
116 * @param string
117 */
118 public function setDisplayName($displayName)
119 {
120 $this->displayName = $displayName;
121 }
122 /**
123 * @return string
124 */
125 public function getDisplayName()
126 {
127 return $this->displayName;
128 }
129 /**
130 * @param GoogleCloudAiplatformV1EncryptionSpec
131 */
132 public function setEncryptionSpec(GoogleCloudAiplatformV1EncryptionSpec $encryptionSpec)
133 {
134 $this->encryptionSpec = $encryptionSpec;
135 }
136 /**
137 * @return GoogleCloudAiplatformV1EncryptionSpec
138 */
139 public function getEncryptionSpec()
140 {
141 return $this->encryptionSpec;
142 }
143 /**
144 * @param string
145 */
146 public function setEtag($etag)
147 {
148 $this->etag = $etag;
149 }
150 /**
151 * @return string
152 */
153 public function getEtag()
154 {
155 return $this->etag;
156 }
157 /**
158 * @param bool
159 */
160 public function setIsDefault($isDefault)
161 {
162 $this->isDefault = $isDefault;
163 }
164 /**
165 * @return bool
166 */
167 public function getIsDefault()
168 {
169 return $this->isDefault;
170 }
171 /**
172 * @param string[]
173 */
174 public function setLabels($labels)
175 {
176 $this->labels = $labels;
177 }
178 /**
179 * @return string[]
180 */
181 public function getLabels()
182 {
183 return $this->labels;
184 }
185 /**
186 * @param string
187 */
188 public function setName($name)
189 {
190 $this->name = $name;
191 }
192 /**
193 * @return string
194 */
195 public function getName()
196 {
197 return $this->name;
198 }
199 /**
200 * @param int
201 */
202 public function setRunCount($runCount)
203 {
204 $this->runCount = $runCount;
205 }
206 /**
207 * @return int
208 */
209 public function getRunCount()
210 {
211 return $this->runCount;
212 }
213 /**
214 * @param bool
215 */
216 public function setSatisfiesPzi($satisfiesPzi)
217 {
218 $this->satisfiesPzi = $satisfiesPzi;
219 }
220 /**
221 * @return bool
222 */
223 public function getSatisfiesPzi()
224 {
225 return $this->satisfiesPzi;
226 }
227 /**
228 * @param bool
229 */
230 public function setSatisfiesPzs($satisfiesPzs)
231 {
232 $this->satisfiesPzs = $satisfiesPzs;
233 }
234 /**
235 * @return bool
236 */
237 public function getSatisfiesPzs()
238 {
239 return $this->satisfiesPzs;
240 }
241 /**
242 * @param string
243 */
244 public function setUpdateTime($updateTime)
245 {
246 $this->updateTime = $updateTime;
247 }
248 /**
249 * @return string
250 */
251 public function getUpdateTime()
252 {
253 return $this->updateTime;
254 }
255}
256
257// Adding a class alias for backwards compatibility with the previous class name.
258class_alias(GoogleCloudAiplatformV1Tensorboard::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1Tensorboard');
Note: See TracBrowser for help on using the repository browser.