source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1MigratableResource.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.7 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 GoogleCloudAiplatformV1MigratableResource extends \Google\Model
21{
22 protected $automlDatasetType = GoogleCloudAiplatformV1MigratableResourceAutomlDataset::class;
23 protected $automlDatasetDataType = '';
24 protected $automlModelType = GoogleCloudAiplatformV1MigratableResourceAutomlModel::class;
25 protected $automlModelDataType = '';
26 protected $dataLabelingDatasetType = GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset::class;
27 protected $dataLabelingDatasetDataType = '';
28 /**
29 * @var string
30 */
31 public $lastMigrateTime;
32 /**
33 * @var string
34 */
35 public $lastUpdateTime;
36 protected $mlEngineModelVersionType = GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion::class;
37 protected $mlEngineModelVersionDataType = '';
38
39 /**
40 * @param GoogleCloudAiplatformV1MigratableResourceAutomlDataset
41 */
42 public function setAutomlDataset(GoogleCloudAiplatformV1MigratableResourceAutomlDataset $automlDataset)
43 {
44 $this->automlDataset = $automlDataset;
45 }
46 /**
47 * @return GoogleCloudAiplatformV1MigratableResourceAutomlDataset
48 */
49 public function getAutomlDataset()
50 {
51 return $this->automlDataset;
52 }
53 /**
54 * @param GoogleCloudAiplatformV1MigratableResourceAutomlModel
55 */
56 public function setAutomlModel(GoogleCloudAiplatformV1MigratableResourceAutomlModel $automlModel)
57 {
58 $this->automlModel = $automlModel;
59 }
60 /**
61 * @return GoogleCloudAiplatformV1MigratableResourceAutomlModel
62 */
63 public function getAutomlModel()
64 {
65 return $this->automlModel;
66 }
67 /**
68 * @param GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset
69 */
70 public function setDataLabelingDataset(GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset $dataLabelingDataset)
71 {
72 $this->dataLabelingDataset = $dataLabelingDataset;
73 }
74 /**
75 * @return GoogleCloudAiplatformV1MigratableResourceDataLabelingDataset
76 */
77 public function getDataLabelingDataset()
78 {
79 return $this->dataLabelingDataset;
80 }
81 /**
82 * @param string
83 */
84 public function setLastMigrateTime($lastMigrateTime)
85 {
86 $this->lastMigrateTime = $lastMigrateTime;
87 }
88 /**
89 * @return string
90 */
91 public function getLastMigrateTime()
92 {
93 return $this->lastMigrateTime;
94 }
95 /**
96 * @param string
97 */
98 public function setLastUpdateTime($lastUpdateTime)
99 {
100 $this->lastUpdateTime = $lastUpdateTime;
101 }
102 /**
103 * @return string
104 */
105 public function getLastUpdateTime()
106 {
107 return $this->lastUpdateTime;
108 }
109 /**
110 * @param GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion
111 */
112 public function setMlEngineModelVersion(GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion $mlEngineModelVersion)
113 {
114 $this->mlEngineModelVersion = $mlEngineModelVersion;
115 }
116 /**
117 * @return GoogleCloudAiplatformV1MigratableResourceMlEngineModelVersion
118 */
119 public function getMlEngineModelVersion()
120 {
121 return $this->mlEngineModelVersion;
122 }
123}
124
125// Adding a class alias for backwards compatibility with the previous class name.
126class_alias(GoogleCloudAiplatformV1MigratableResource::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1MigratableResource');
Note: See TracBrowser for help on using the repository browser.