source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1StudySpecParameterSpec.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 4.5 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 GoogleCloudAiplatformV1StudySpecParameterSpec extends \Google\Collection
21{
22 protected $collection_key = 'conditionalParameterSpecs';
23 protected $categoricalValueSpecType = GoogleCloudAiplatformV1StudySpecParameterSpecCategoricalValueSpec::class;
24 protected $categoricalValueSpecDataType = '';
25 protected $conditionalParameterSpecsType = GoogleCloudAiplatformV1StudySpecParameterSpecConditionalParameterSpec::class;
26 protected $conditionalParameterSpecsDataType = 'array';
27 protected $discreteValueSpecType = GoogleCloudAiplatformV1StudySpecParameterSpecDiscreteValueSpec::class;
28 protected $discreteValueSpecDataType = '';
29 protected $doubleValueSpecType = GoogleCloudAiplatformV1StudySpecParameterSpecDoubleValueSpec::class;
30 protected $doubleValueSpecDataType = '';
31 protected $integerValueSpecType = GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec::class;
32 protected $integerValueSpecDataType = '';
33 /**
34 * @var string
35 */
36 public $parameterId;
37 /**
38 * @var string
39 */
40 public $scaleType;
41
42 /**
43 * @param GoogleCloudAiplatformV1StudySpecParameterSpecCategoricalValueSpec
44 */
45 public function setCategoricalValueSpec(GoogleCloudAiplatformV1StudySpecParameterSpecCategoricalValueSpec $categoricalValueSpec)
46 {
47 $this->categoricalValueSpec = $categoricalValueSpec;
48 }
49 /**
50 * @return GoogleCloudAiplatformV1StudySpecParameterSpecCategoricalValueSpec
51 */
52 public function getCategoricalValueSpec()
53 {
54 return $this->categoricalValueSpec;
55 }
56 /**
57 * @param GoogleCloudAiplatformV1StudySpecParameterSpecConditionalParameterSpec[]
58 */
59 public function setConditionalParameterSpecs($conditionalParameterSpecs)
60 {
61 $this->conditionalParameterSpecs = $conditionalParameterSpecs;
62 }
63 /**
64 * @return GoogleCloudAiplatformV1StudySpecParameterSpecConditionalParameterSpec[]
65 */
66 public function getConditionalParameterSpecs()
67 {
68 return $this->conditionalParameterSpecs;
69 }
70 /**
71 * @param GoogleCloudAiplatformV1StudySpecParameterSpecDiscreteValueSpec
72 */
73 public function setDiscreteValueSpec(GoogleCloudAiplatformV1StudySpecParameterSpecDiscreteValueSpec $discreteValueSpec)
74 {
75 $this->discreteValueSpec = $discreteValueSpec;
76 }
77 /**
78 * @return GoogleCloudAiplatformV1StudySpecParameterSpecDiscreteValueSpec
79 */
80 public function getDiscreteValueSpec()
81 {
82 return $this->discreteValueSpec;
83 }
84 /**
85 * @param GoogleCloudAiplatformV1StudySpecParameterSpecDoubleValueSpec
86 */
87 public function setDoubleValueSpec(GoogleCloudAiplatformV1StudySpecParameterSpecDoubleValueSpec $doubleValueSpec)
88 {
89 $this->doubleValueSpec = $doubleValueSpec;
90 }
91 /**
92 * @return GoogleCloudAiplatformV1StudySpecParameterSpecDoubleValueSpec
93 */
94 public function getDoubleValueSpec()
95 {
96 return $this->doubleValueSpec;
97 }
98 /**
99 * @param GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec
100 */
101 public function setIntegerValueSpec(GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec $integerValueSpec)
102 {
103 $this->integerValueSpec = $integerValueSpec;
104 }
105 /**
106 * @return GoogleCloudAiplatformV1StudySpecParameterSpecIntegerValueSpec
107 */
108 public function getIntegerValueSpec()
109 {
110 return $this->integerValueSpec;
111 }
112 /**
113 * @param string
114 */
115 public function setParameterId($parameterId)
116 {
117 $this->parameterId = $parameterId;
118 }
119 /**
120 * @return string
121 */
122 public function getParameterId()
123 {
124 return $this->parameterId;
125 }
126 /**
127 * @param string
128 */
129 public function setScaleType($scaleType)
130 {
131 $this->scaleType = $scaleType;
132 }
133 /**
134 * @return string
135 */
136 public function getScaleType()
137 {
138 return $this->scaleType;
139 }
140}
141
142// Adding a class alias for backwards compatibility with the previous class name.
143class_alias(GoogleCloudAiplatformV1StudySpecParameterSpec::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1StudySpecParameterSpec');
Note: See TracBrowser for help on using the repository browser.