[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 GoogleCloudAiplatformV1MigrateResourceRequest extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | protected $migrateAutomlDatasetConfigType = GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlDatasetConfig::class;
|
---|
| 23 | protected $migrateAutomlDatasetConfigDataType = '';
|
---|
| 24 | protected $migrateAutomlModelConfigType = GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig::class;
|
---|
| 25 | protected $migrateAutomlModelConfigDataType = '';
|
---|
| 26 | protected $migrateDataLabelingDatasetConfigType = GoogleCloudAiplatformV1MigrateResourceRequestMigrateDataLabelingDatasetConfig::class;
|
---|
| 27 | protected $migrateDataLabelingDatasetConfigDataType = '';
|
---|
| 28 | protected $migrateMlEngineModelVersionConfigType = GoogleCloudAiplatformV1MigrateResourceRequestMigrateMlEngineModelVersionConfig::class;
|
---|
| 29 | protected $migrateMlEngineModelVersionConfigDataType = '';
|
---|
| 30 |
|
---|
| 31 | /**
|
---|
| 32 | * @param GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlDatasetConfig
|
---|
| 33 | */
|
---|
| 34 | public function setMigrateAutomlDatasetConfig(GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlDatasetConfig $migrateAutomlDatasetConfig)
|
---|
| 35 | {
|
---|
| 36 | $this->migrateAutomlDatasetConfig = $migrateAutomlDatasetConfig;
|
---|
| 37 | }
|
---|
| 38 | /**
|
---|
| 39 | * @return GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlDatasetConfig
|
---|
| 40 | */
|
---|
| 41 | public function getMigrateAutomlDatasetConfig()
|
---|
| 42 | {
|
---|
| 43 | return $this->migrateAutomlDatasetConfig;
|
---|
| 44 | }
|
---|
| 45 | /**
|
---|
| 46 | * @param GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig
|
---|
| 47 | */
|
---|
| 48 | public function setMigrateAutomlModelConfig(GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig $migrateAutomlModelConfig)
|
---|
| 49 | {
|
---|
| 50 | $this->migrateAutomlModelConfig = $migrateAutomlModelConfig;
|
---|
| 51 | }
|
---|
| 52 | /**
|
---|
| 53 | * @return GoogleCloudAiplatformV1MigrateResourceRequestMigrateAutomlModelConfig
|
---|
| 54 | */
|
---|
| 55 | public function getMigrateAutomlModelConfig()
|
---|
| 56 | {
|
---|
| 57 | return $this->migrateAutomlModelConfig;
|
---|
| 58 | }
|
---|
| 59 | /**
|
---|
| 60 | * @param GoogleCloudAiplatformV1MigrateResourceRequestMigrateDataLabelingDatasetConfig
|
---|
| 61 | */
|
---|
| 62 | public function setMigrateDataLabelingDatasetConfig(GoogleCloudAiplatformV1MigrateResourceRequestMigrateDataLabelingDatasetConfig $migrateDataLabelingDatasetConfig)
|
---|
| 63 | {
|
---|
| 64 | $this->migrateDataLabelingDatasetConfig = $migrateDataLabelingDatasetConfig;
|
---|
| 65 | }
|
---|
| 66 | /**
|
---|
| 67 | * @return GoogleCloudAiplatformV1MigrateResourceRequestMigrateDataLabelingDatasetConfig
|
---|
| 68 | */
|
---|
| 69 | public function getMigrateDataLabelingDatasetConfig()
|
---|
| 70 | {
|
---|
| 71 | return $this->migrateDataLabelingDatasetConfig;
|
---|
| 72 | }
|
---|
| 73 | /**
|
---|
| 74 | * @param GoogleCloudAiplatformV1MigrateResourceRequestMigrateMlEngineModelVersionConfig
|
---|
| 75 | */
|
---|
| 76 | public function setMigrateMlEngineModelVersionConfig(GoogleCloudAiplatformV1MigrateResourceRequestMigrateMlEngineModelVersionConfig $migrateMlEngineModelVersionConfig)
|
---|
| 77 | {
|
---|
| 78 | $this->migrateMlEngineModelVersionConfig = $migrateMlEngineModelVersionConfig;
|
---|
| 79 | }
|
---|
| 80 | /**
|
---|
| 81 | * @return GoogleCloudAiplatformV1MigrateResourceRequestMigrateMlEngineModelVersionConfig
|
---|
| 82 | */
|
---|
| 83 | public function getMigrateMlEngineModelVersionConfig()
|
---|
| 84 | {
|
---|
| 85 | return $this->migrateMlEngineModelVersionConfig;
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 90 | class_alias(GoogleCloudAiplatformV1MigrateResourceRequest::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1MigrateResourceRequest');
|
---|