source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1BatchReadFeatureValuesRequest.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: 3.8 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 GoogleCloudAiplatformV1BatchReadFeatureValuesRequest extends \Google\Collection
21{
22 protected $collection_key = 'passThroughFields';
23 protected $bigqueryReadInstancesType = GoogleCloudAiplatformV1BigQuerySource::class;
24 protected $bigqueryReadInstancesDataType = '';
25 protected $csvReadInstancesType = GoogleCloudAiplatformV1CsvSource::class;
26 protected $csvReadInstancesDataType = '';
27 protected $destinationType = GoogleCloudAiplatformV1FeatureValueDestination::class;
28 protected $destinationDataType = '';
29 protected $entityTypeSpecsType = GoogleCloudAiplatformV1BatchReadFeatureValuesRequestEntityTypeSpec::class;
30 protected $entityTypeSpecsDataType = 'array';
31 protected $passThroughFieldsType = GoogleCloudAiplatformV1BatchReadFeatureValuesRequestPassThroughField::class;
32 protected $passThroughFieldsDataType = 'array';
33 /**
34 * @var string
35 */
36 public $startTime;
37
38 /**
39 * @param GoogleCloudAiplatformV1BigQuerySource
40 */
41 public function setBigqueryReadInstances(GoogleCloudAiplatformV1BigQuerySource $bigqueryReadInstances)
42 {
43 $this->bigqueryReadInstances = $bigqueryReadInstances;
44 }
45 /**
46 * @return GoogleCloudAiplatformV1BigQuerySource
47 */
48 public function getBigqueryReadInstances()
49 {
50 return $this->bigqueryReadInstances;
51 }
52 /**
53 * @param GoogleCloudAiplatformV1CsvSource
54 */
55 public function setCsvReadInstances(GoogleCloudAiplatformV1CsvSource $csvReadInstances)
56 {
57 $this->csvReadInstances = $csvReadInstances;
58 }
59 /**
60 * @return GoogleCloudAiplatformV1CsvSource
61 */
62 public function getCsvReadInstances()
63 {
64 return $this->csvReadInstances;
65 }
66 /**
67 * @param GoogleCloudAiplatformV1FeatureValueDestination
68 */
69 public function setDestination(GoogleCloudAiplatformV1FeatureValueDestination $destination)
70 {
71 $this->destination = $destination;
72 }
73 /**
74 * @return GoogleCloudAiplatformV1FeatureValueDestination
75 */
76 public function getDestination()
77 {
78 return $this->destination;
79 }
80 /**
81 * @param GoogleCloudAiplatformV1BatchReadFeatureValuesRequestEntityTypeSpec[]
82 */
83 public function setEntityTypeSpecs($entityTypeSpecs)
84 {
85 $this->entityTypeSpecs = $entityTypeSpecs;
86 }
87 /**
88 * @return GoogleCloudAiplatformV1BatchReadFeatureValuesRequestEntityTypeSpec[]
89 */
90 public function getEntityTypeSpecs()
91 {
92 return $this->entityTypeSpecs;
93 }
94 /**
95 * @param GoogleCloudAiplatformV1BatchReadFeatureValuesRequestPassThroughField[]
96 */
97 public function setPassThroughFields($passThroughFields)
98 {
99 $this->passThroughFields = $passThroughFields;
100 }
101 /**
102 * @return GoogleCloudAiplatformV1BatchReadFeatureValuesRequestPassThroughField[]
103 */
104 public function getPassThroughFields()
105 {
106 return $this->passThroughFields;
107 }
108 /**
109 * @param string
110 */
111 public function setStartTime($startTime)
112 {
113 $this->startTime = $startTime;
114 }
115 /**
116 * @return string
117 */
118 public function getStartTime()
119 {
120 return $this->startTime;
121 }
122}
123
124// Adding a class alias for backwards compatibility with the previous class name.
125class_alias(GoogleCloudAiplatformV1BatchReadFeatureValuesRequest::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1BatchReadFeatureValuesRequest');
Note: See TracBrowser for help on using the repository browser.