source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1ExportFeatureValuesRequest.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.4 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 GoogleCloudAiplatformV1ExportFeatureValuesRequest extends \Google\Collection
21{
22 protected $collection_key = 'settings';
23 protected $destinationType = GoogleCloudAiplatformV1FeatureValueDestination::class;
24 protected $destinationDataType = '';
25 protected $featureSelectorType = GoogleCloudAiplatformV1FeatureSelector::class;
26 protected $featureSelectorDataType = '';
27 protected $fullExportType = GoogleCloudAiplatformV1ExportFeatureValuesRequestFullExport::class;
28 protected $fullExportDataType = '';
29 protected $settingsType = GoogleCloudAiplatformV1DestinationFeatureSetting::class;
30 protected $settingsDataType = 'array';
31 protected $snapshotExportType = GoogleCloudAiplatformV1ExportFeatureValuesRequestSnapshotExport::class;
32 protected $snapshotExportDataType = '';
33
34 /**
35 * @param GoogleCloudAiplatformV1FeatureValueDestination
36 */
37 public function setDestination(GoogleCloudAiplatformV1FeatureValueDestination $destination)
38 {
39 $this->destination = $destination;
40 }
41 /**
42 * @return GoogleCloudAiplatformV1FeatureValueDestination
43 */
44 public function getDestination()
45 {
46 return $this->destination;
47 }
48 /**
49 * @param GoogleCloudAiplatformV1FeatureSelector
50 */
51 public function setFeatureSelector(GoogleCloudAiplatformV1FeatureSelector $featureSelector)
52 {
53 $this->featureSelector = $featureSelector;
54 }
55 /**
56 * @return GoogleCloudAiplatformV1FeatureSelector
57 */
58 public function getFeatureSelector()
59 {
60 return $this->featureSelector;
61 }
62 /**
63 * @param GoogleCloudAiplatformV1ExportFeatureValuesRequestFullExport
64 */
65 public function setFullExport(GoogleCloudAiplatformV1ExportFeatureValuesRequestFullExport $fullExport)
66 {
67 $this->fullExport = $fullExport;
68 }
69 /**
70 * @return GoogleCloudAiplatformV1ExportFeatureValuesRequestFullExport
71 */
72 public function getFullExport()
73 {
74 return $this->fullExport;
75 }
76 /**
77 * @param GoogleCloudAiplatformV1DestinationFeatureSetting[]
78 */
79 public function setSettings($settings)
80 {
81 $this->settings = $settings;
82 }
83 /**
84 * @return GoogleCloudAiplatformV1DestinationFeatureSetting[]
85 */
86 public function getSettings()
87 {
88 return $this->settings;
89 }
90 /**
91 * @param GoogleCloudAiplatformV1ExportFeatureValuesRequestSnapshotExport
92 */
93 public function setSnapshotExport(GoogleCloudAiplatformV1ExportFeatureValuesRequestSnapshotExport $snapshotExport)
94 {
95 $this->snapshotExport = $snapshotExport;
96 }
97 /**
98 * @return GoogleCloudAiplatformV1ExportFeatureValuesRequestSnapshotExport
99 */
100 public function getSnapshotExport()
101 {
102 return $this->snapshotExport;
103 }
104}
105
106// Adding a class alias for backwards compatibility with the previous class name.
107class_alias(GoogleCloudAiplatformV1ExportFeatureValuesRequest::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1ExportFeatureValuesRequest');
Note: See TracBrowser for help on using the repository browser.