source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset.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: 3.2 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 GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset extends \Google\Model
21{
22 protected $bigquerySourceType = GoogleCloudAiplatformV1BigQuerySource::class;
23 protected $bigquerySourceDataType = '';
24 /**
25 * @var string
26 */
27 public $dataFormat;
28 /**
29 * @var string
30 */
31 public $dataset;
32 protected $gcsSourceType = GoogleCloudAiplatformV1GcsSource::class;
33 protected $gcsSourceDataType = '';
34 protected $loggingSamplingStrategyType = GoogleCloudAiplatformV1SamplingStrategy::class;
35 protected $loggingSamplingStrategyDataType = '';
36 /**
37 * @var string
38 */
39 public $targetField;
40
41 /**
42 * @param GoogleCloudAiplatformV1BigQuerySource
43 */
44 public function setBigquerySource(GoogleCloudAiplatformV1BigQuerySource $bigquerySource)
45 {
46 $this->bigquerySource = $bigquerySource;
47 }
48 /**
49 * @return GoogleCloudAiplatformV1BigQuerySource
50 */
51 public function getBigquerySource()
52 {
53 return $this->bigquerySource;
54 }
55 /**
56 * @param string
57 */
58 public function setDataFormat($dataFormat)
59 {
60 $this->dataFormat = $dataFormat;
61 }
62 /**
63 * @return string
64 */
65 public function getDataFormat()
66 {
67 return $this->dataFormat;
68 }
69 /**
70 * @param string
71 */
72 public function setDataset($dataset)
73 {
74 $this->dataset = $dataset;
75 }
76 /**
77 * @return string
78 */
79 public function getDataset()
80 {
81 return $this->dataset;
82 }
83 /**
84 * @param GoogleCloudAiplatformV1GcsSource
85 */
86 public function setGcsSource(GoogleCloudAiplatformV1GcsSource $gcsSource)
87 {
88 $this->gcsSource = $gcsSource;
89 }
90 /**
91 * @return GoogleCloudAiplatformV1GcsSource
92 */
93 public function getGcsSource()
94 {
95 return $this->gcsSource;
96 }
97 /**
98 * @param GoogleCloudAiplatformV1SamplingStrategy
99 */
100 public function setLoggingSamplingStrategy(GoogleCloudAiplatformV1SamplingStrategy $loggingSamplingStrategy)
101 {
102 $this->loggingSamplingStrategy = $loggingSamplingStrategy;
103 }
104 /**
105 * @return GoogleCloudAiplatformV1SamplingStrategy
106 */
107 public function getLoggingSamplingStrategy()
108 {
109 return $this->loggingSamplingStrategy;
110 }
111 /**
112 * @param string
113 */
114 public function setTargetField($targetField)
115 {
116 $this->targetField = $targetField;
117 }
118 /**
119 * @return string
120 */
121 public function getTargetField()
122 {
123 return $this->targetField;
124 }
125}
126
127// Adding a class alias for backwards compatibility with the previous class name.
128class_alias(GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigTrainingDataset');
Note: See TracBrowser for help on using the repository browser.