source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1ImportFeatureValuesRequest.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.6 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 GoogleCloudAiplatformV1ImportFeatureValuesRequest extends \Google\Collection
21{
22 protected $collection_key = 'featureSpecs';
23 protected $avroSourceType = GoogleCloudAiplatformV1AvroSource::class;
24 protected $avroSourceDataType = '';
25 protected $bigquerySourceType = GoogleCloudAiplatformV1BigQuerySource::class;
26 protected $bigquerySourceDataType = '';
27 protected $csvSourceType = GoogleCloudAiplatformV1CsvSource::class;
28 protected $csvSourceDataType = '';
29 /**
30 * @var bool
31 */
32 public $disableIngestionAnalysis;
33 /**
34 * @var bool
35 */
36 public $disableOnlineServing;
37 /**
38 * @var string
39 */
40 public $entityIdField;
41 protected $featureSpecsType = GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec::class;
42 protected $featureSpecsDataType = 'array';
43 /**
44 * @var string
45 */
46 public $featureTime;
47 /**
48 * @var string
49 */
50 public $featureTimeField;
51 /**
52 * @var int
53 */
54 public $workerCount;
55
56 /**
57 * @param GoogleCloudAiplatformV1AvroSource
58 */
59 public function setAvroSource(GoogleCloudAiplatformV1AvroSource $avroSource)
60 {
61 $this->avroSource = $avroSource;
62 }
63 /**
64 * @return GoogleCloudAiplatformV1AvroSource
65 */
66 public function getAvroSource()
67 {
68 return $this->avroSource;
69 }
70 /**
71 * @param GoogleCloudAiplatformV1BigQuerySource
72 */
73 public function setBigquerySource(GoogleCloudAiplatformV1BigQuerySource $bigquerySource)
74 {
75 $this->bigquerySource = $bigquerySource;
76 }
77 /**
78 * @return GoogleCloudAiplatformV1BigQuerySource
79 */
80 public function getBigquerySource()
81 {
82 return $this->bigquerySource;
83 }
84 /**
85 * @param GoogleCloudAiplatformV1CsvSource
86 */
87 public function setCsvSource(GoogleCloudAiplatformV1CsvSource $csvSource)
88 {
89 $this->csvSource = $csvSource;
90 }
91 /**
92 * @return GoogleCloudAiplatformV1CsvSource
93 */
94 public function getCsvSource()
95 {
96 return $this->csvSource;
97 }
98 /**
99 * @param bool
100 */
101 public function setDisableIngestionAnalysis($disableIngestionAnalysis)
102 {
103 $this->disableIngestionAnalysis = $disableIngestionAnalysis;
104 }
105 /**
106 * @return bool
107 */
108 public function getDisableIngestionAnalysis()
109 {
110 return $this->disableIngestionAnalysis;
111 }
112 /**
113 * @param bool
114 */
115 public function setDisableOnlineServing($disableOnlineServing)
116 {
117 $this->disableOnlineServing = $disableOnlineServing;
118 }
119 /**
120 * @return bool
121 */
122 public function getDisableOnlineServing()
123 {
124 return $this->disableOnlineServing;
125 }
126 /**
127 * @param string
128 */
129 public function setEntityIdField($entityIdField)
130 {
131 $this->entityIdField = $entityIdField;
132 }
133 /**
134 * @return string
135 */
136 public function getEntityIdField()
137 {
138 return $this->entityIdField;
139 }
140 /**
141 * @param GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec[]
142 */
143 public function setFeatureSpecs($featureSpecs)
144 {
145 $this->featureSpecs = $featureSpecs;
146 }
147 /**
148 * @return GoogleCloudAiplatformV1ImportFeatureValuesRequestFeatureSpec[]
149 */
150 public function getFeatureSpecs()
151 {
152 return $this->featureSpecs;
153 }
154 /**
155 * @param string
156 */
157 public function setFeatureTime($featureTime)
158 {
159 $this->featureTime = $featureTime;
160 }
161 /**
162 * @return string
163 */
164 public function getFeatureTime()
165 {
166 return $this->featureTime;
167 }
168 /**
169 * @param string
170 */
171 public function setFeatureTimeField($featureTimeField)
172 {
173 $this->featureTimeField = $featureTimeField;
174 }
175 /**
176 * @return string
177 */
178 public function getFeatureTimeField()
179 {
180 return $this->featureTimeField;
181 }
182 /**
183 * @param int
184 */
185 public function setWorkerCount($workerCount)
186 {
187 $this->workerCount = $workerCount;
188 }
189 /**
190 * @return int
191 */
192 public function getWorkerCount()
193 {
194 return $this->workerCount;
195 }
196}
197
198// Adding a class alias for backwards compatibility with the previous class name.
199class_alias(GoogleCloudAiplatformV1ImportFeatureValuesRequest::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1ImportFeatureValuesRequest');
Note: See TracBrowser for help on using the repository browser.