[e3d4e0a] | 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 |
|
---|
| 18 | namespace Google\Service\Aiplatform;
|
---|
| 19 |
|
---|
| 20 | class GoogleCloudAiplatformV1InputDataConfig extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | /**
|
---|
| 23 | * @var string
|
---|
| 24 | */
|
---|
| 25 | public $annotationSchemaUri;
|
---|
| 26 | /**
|
---|
| 27 | * @var string
|
---|
| 28 | */
|
---|
| 29 | public $annotationsFilter;
|
---|
| 30 | protected $bigqueryDestinationType = GoogleCloudAiplatformV1BigQueryDestination::class;
|
---|
| 31 | protected $bigqueryDestinationDataType = '';
|
---|
| 32 | /**
|
---|
| 33 | * @var string
|
---|
| 34 | */
|
---|
| 35 | public $datasetId;
|
---|
| 36 | protected $filterSplitType = GoogleCloudAiplatformV1FilterSplit::class;
|
---|
| 37 | protected $filterSplitDataType = '';
|
---|
| 38 | protected $fractionSplitType = GoogleCloudAiplatformV1FractionSplit::class;
|
---|
| 39 | protected $fractionSplitDataType = '';
|
---|
| 40 | protected $gcsDestinationType = GoogleCloudAiplatformV1GcsDestination::class;
|
---|
| 41 | protected $gcsDestinationDataType = '';
|
---|
| 42 | /**
|
---|
| 43 | * @var bool
|
---|
| 44 | */
|
---|
| 45 | public $persistMlUseAssignment;
|
---|
| 46 | protected $predefinedSplitType = GoogleCloudAiplatformV1PredefinedSplit::class;
|
---|
| 47 | protected $predefinedSplitDataType = '';
|
---|
| 48 | /**
|
---|
| 49 | * @var string
|
---|
| 50 | */
|
---|
| 51 | public $savedQueryId;
|
---|
| 52 | protected $stratifiedSplitType = GoogleCloudAiplatformV1StratifiedSplit::class;
|
---|
| 53 | protected $stratifiedSplitDataType = '';
|
---|
| 54 | protected $timestampSplitType = GoogleCloudAiplatformV1TimestampSplit::class;
|
---|
| 55 | protected $timestampSplitDataType = '';
|
---|
| 56 |
|
---|
| 57 | /**
|
---|
| 58 | * @param string
|
---|
| 59 | */
|
---|
| 60 | public function setAnnotationSchemaUri($annotationSchemaUri)
|
---|
| 61 | {
|
---|
| 62 | $this->annotationSchemaUri = $annotationSchemaUri;
|
---|
| 63 | }
|
---|
| 64 | /**
|
---|
| 65 | * @return string
|
---|
| 66 | */
|
---|
| 67 | public function getAnnotationSchemaUri()
|
---|
| 68 | {
|
---|
| 69 | return $this->annotationSchemaUri;
|
---|
| 70 | }
|
---|
| 71 | /**
|
---|
| 72 | * @param string
|
---|
| 73 | */
|
---|
| 74 | public function setAnnotationsFilter($annotationsFilter)
|
---|
| 75 | {
|
---|
| 76 | $this->annotationsFilter = $annotationsFilter;
|
---|
| 77 | }
|
---|
| 78 | /**
|
---|
| 79 | * @return string
|
---|
| 80 | */
|
---|
| 81 | public function getAnnotationsFilter()
|
---|
| 82 | {
|
---|
| 83 | return $this->annotationsFilter;
|
---|
| 84 | }
|
---|
| 85 | /**
|
---|
| 86 | * @param GoogleCloudAiplatformV1BigQueryDestination
|
---|
| 87 | */
|
---|
| 88 | public function setBigqueryDestination(GoogleCloudAiplatformV1BigQueryDestination $bigqueryDestination)
|
---|
| 89 | {
|
---|
| 90 | $this->bigqueryDestination = $bigqueryDestination;
|
---|
| 91 | }
|
---|
| 92 | /**
|
---|
| 93 | * @return GoogleCloudAiplatformV1BigQueryDestination
|
---|
| 94 | */
|
---|
| 95 | public function getBigqueryDestination()
|
---|
| 96 | {
|
---|
| 97 | return $this->bigqueryDestination;
|
---|
| 98 | }
|
---|
| 99 | /**
|
---|
| 100 | * @param string
|
---|
| 101 | */
|
---|
| 102 | public function setDatasetId($datasetId)
|
---|
| 103 | {
|
---|
| 104 | $this->datasetId = $datasetId;
|
---|
| 105 | }
|
---|
| 106 | /**
|
---|
| 107 | * @return string
|
---|
| 108 | */
|
---|
| 109 | public function getDatasetId()
|
---|
| 110 | {
|
---|
| 111 | return $this->datasetId;
|
---|
| 112 | }
|
---|
| 113 | /**
|
---|
| 114 | * @param GoogleCloudAiplatformV1FilterSplit
|
---|
| 115 | */
|
---|
| 116 | public function setFilterSplit(GoogleCloudAiplatformV1FilterSplit $filterSplit)
|
---|
| 117 | {
|
---|
| 118 | $this->filterSplit = $filterSplit;
|
---|
| 119 | }
|
---|
| 120 | /**
|
---|
| 121 | * @return GoogleCloudAiplatformV1FilterSplit
|
---|
| 122 | */
|
---|
| 123 | public function getFilterSplit()
|
---|
| 124 | {
|
---|
| 125 | return $this->filterSplit;
|
---|
| 126 | }
|
---|
| 127 | /**
|
---|
| 128 | * @param GoogleCloudAiplatformV1FractionSplit
|
---|
| 129 | */
|
---|
| 130 | public function setFractionSplit(GoogleCloudAiplatformV1FractionSplit $fractionSplit)
|
---|
| 131 | {
|
---|
| 132 | $this->fractionSplit = $fractionSplit;
|
---|
| 133 | }
|
---|
| 134 | /**
|
---|
| 135 | * @return GoogleCloudAiplatformV1FractionSplit
|
---|
| 136 | */
|
---|
| 137 | public function getFractionSplit()
|
---|
| 138 | {
|
---|
| 139 | return $this->fractionSplit;
|
---|
| 140 | }
|
---|
| 141 | /**
|
---|
| 142 | * @param GoogleCloudAiplatformV1GcsDestination
|
---|
| 143 | */
|
---|
| 144 | public function setGcsDestination(GoogleCloudAiplatformV1GcsDestination $gcsDestination)
|
---|
| 145 | {
|
---|
| 146 | $this->gcsDestination = $gcsDestination;
|
---|
| 147 | }
|
---|
| 148 | /**
|
---|
| 149 | * @return GoogleCloudAiplatformV1GcsDestination
|
---|
| 150 | */
|
---|
| 151 | public function getGcsDestination()
|
---|
| 152 | {
|
---|
| 153 | return $this->gcsDestination;
|
---|
| 154 | }
|
---|
| 155 | /**
|
---|
| 156 | * @param bool
|
---|
| 157 | */
|
---|
| 158 | public function setPersistMlUseAssignment($persistMlUseAssignment)
|
---|
| 159 | {
|
---|
| 160 | $this->persistMlUseAssignment = $persistMlUseAssignment;
|
---|
| 161 | }
|
---|
| 162 | /**
|
---|
| 163 | * @return bool
|
---|
| 164 | */
|
---|
| 165 | public function getPersistMlUseAssignment()
|
---|
| 166 | {
|
---|
| 167 | return $this->persistMlUseAssignment;
|
---|
| 168 | }
|
---|
| 169 | /**
|
---|
| 170 | * @param GoogleCloudAiplatformV1PredefinedSplit
|
---|
| 171 | */
|
---|
| 172 | public function setPredefinedSplit(GoogleCloudAiplatformV1PredefinedSplit $predefinedSplit)
|
---|
| 173 | {
|
---|
| 174 | $this->predefinedSplit = $predefinedSplit;
|
---|
| 175 | }
|
---|
| 176 | /**
|
---|
| 177 | * @return GoogleCloudAiplatformV1PredefinedSplit
|
---|
| 178 | */
|
---|
| 179 | public function getPredefinedSplit()
|
---|
| 180 | {
|
---|
| 181 | return $this->predefinedSplit;
|
---|
| 182 | }
|
---|
| 183 | /**
|
---|
| 184 | * @param string
|
---|
| 185 | */
|
---|
| 186 | public function setSavedQueryId($savedQueryId)
|
---|
| 187 | {
|
---|
| 188 | $this->savedQueryId = $savedQueryId;
|
---|
| 189 | }
|
---|
| 190 | /**
|
---|
| 191 | * @return string
|
---|
| 192 | */
|
---|
| 193 | public function getSavedQueryId()
|
---|
| 194 | {
|
---|
| 195 | return $this->savedQueryId;
|
---|
| 196 | }
|
---|
| 197 | /**
|
---|
| 198 | * @param GoogleCloudAiplatformV1StratifiedSplit
|
---|
| 199 | */
|
---|
| 200 | public function setStratifiedSplit(GoogleCloudAiplatformV1StratifiedSplit $stratifiedSplit)
|
---|
| 201 | {
|
---|
| 202 | $this->stratifiedSplit = $stratifiedSplit;
|
---|
| 203 | }
|
---|
| 204 | /**
|
---|
| 205 | * @return GoogleCloudAiplatformV1StratifiedSplit
|
---|
| 206 | */
|
---|
| 207 | public function getStratifiedSplit()
|
---|
| 208 | {
|
---|
| 209 | return $this->stratifiedSplit;
|
---|
| 210 | }
|
---|
| 211 | /**
|
---|
| 212 | * @param GoogleCloudAiplatformV1TimestampSplit
|
---|
| 213 | */
|
---|
| 214 | public function setTimestampSplit(GoogleCloudAiplatformV1TimestampSplit $timestampSplit)
|
---|
| 215 | {
|
---|
| 216 | $this->timestampSplit = $timestampSplit;
|
---|
| 217 | }
|
---|
| 218 | /**
|
---|
| 219 | * @return GoogleCloudAiplatformV1TimestampSplit
|
---|
| 220 | */
|
---|
| 221 | public function getTimestampSplit()
|
---|
| 222 | {
|
---|
| 223 | return $this->timestampSplit;
|
---|
| 224 | }
|
---|
| 225 | }
|
---|
| 226 |
|
---|
| 227 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 228 | class_alias(GoogleCloudAiplatformV1InputDataConfig::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1InputDataConfig');
|
---|