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\MigrationCenterAPI;
|
---|
19 |
|
---|
20 | class ReportSummaryGroupPreferenceSetFinding extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $computeEngineFindingType = ReportSummaryComputeEngineFinding::class;
|
---|
23 | protected $computeEngineFindingDataType = '';
|
---|
24 | /**
|
---|
25 | * @var string
|
---|
26 | */
|
---|
27 | public $description;
|
---|
28 | /**
|
---|
29 | * @var string
|
---|
30 | */
|
---|
31 | public $displayName;
|
---|
32 | protected $machinePreferencesType = VirtualMachinePreferences::class;
|
---|
33 | protected $machinePreferencesDataType = '';
|
---|
34 | protected $monthlyCostComputeType = Money::class;
|
---|
35 | protected $monthlyCostComputeDataType = '';
|
---|
36 | protected $monthlyCostNetworkEgressType = Money::class;
|
---|
37 | protected $monthlyCostNetworkEgressDataType = '';
|
---|
38 | protected $monthlyCostOsLicenseType = Money::class;
|
---|
39 | protected $monthlyCostOsLicenseDataType = '';
|
---|
40 | protected $monthlyCostOtherType = Money::class;
|
---|
41 | protected $monthlyCostOtherDataType = '';
|
---|
42 | protected $monthlyCostStorageType = Money::class;
|
---|
43 | protected $monthlyCostStorageDataType = '';
|
---|
44 | protected $monthlyCostTotalType = Money::class;
|
---|
45 | protected $monthlyCostTotalDataType = '';
|
---|
46 | protected $soleTenantFindingType = ReportSummarySoleTenantFinding::class;
|
---|
47 | protected $soleTenantFindingDataType = '';
|
---|
48 | protected $vmwareEngineFindingType = ReportSummaryVmwareEngineFinding::class;
|
---|
49 | protected $vmwareEngineFindingDataType = '';
|
---|
50 |
|
---|
51 | /**
|
---|
52 | * @param ReportSummaryComputeEngineFinding
|
---|
53 | */
|
---|
54 | public function setComputeEngineFinding(ReportSummaryComputeEngineFinding $computeEngineFinding)
|
---|
55 | {
|
---|
56 | $this->computeEngineFinding = $computeEngineFinding;
|
---|
57 | }
|
---|
58 | /**
|
---|
59 | * @return ReportSummaryComputeEngineFinding
|
---|
60 | */
|
---|
61 | public function getComputeEngineFinding()
|
---|
62 | {
|
---|
63 | return $this->computeEngineFinding;
|
---|
64 | }
|
---|
65 | /**
|
---|
66 | * @param string
|
---|
67 | */
|
---|
68 | public function setDescription($description)
|
---|
69 | {
|
---|
70 | $this->description = $description;
|
---|
71 | }
|
---|
72 | /**
|
---|
73 | * @return string
|
---|
74 | */
|
---|
75 | public function getDescription()
|
---|
76 | {
|
---|
77 | return $this->description;
|
---|
78 | }
|
---|
79 | /**
|
---|
80 | * @param string
|
---|
81 | */
|
---|
82 | public function setDisplayName($displayName)
|
---|
83 | {
|
---|
84 | $this->displayName = $displayName;
|
---|
85 | }
|
---|
86 | /**
|
---|
87 | * @return string
|
---|
88 | */
|
---|
89 | public function getDisplayName()
|
---|
90 | {
|
---|
91 | return $this->displayName;
|
---|
92 | }
|
---|
93 | /**
|
---|
94 | * @param VirtualMachinePreferences
|
---|
95 | */
|
---|
96 | public function setMachinePreferences(VirtualMachinePreferences $machinePreferences)
|
---|
97 | {
|
---|
98 | $this->machinePreferences = $machinePreferences;
|
---|
99 | }
|
---|
100 | /**
|
---|
101 | * @return VirtualMachinePreferences
|
---|
102 | */
|
---|
103 | public function getMachinePreferences()
|
---|
104 | {
|
---|
105 | return $this->machinePreferences;
|
---|
106 | }
|
---|
107 | /**
|
---|
108 | * @param Money
|
---|
109 | */
|
---|
110 | public function setMonthlyCostCompute(Money $monthlyCostCompute)
|
---|
111 | {
|
---|
112 | $this->monthlyCostCompute = $monthlyCostCompute;
|
---|
113 | }
|
---|
114 | /**
|
---|
115 | * @return Money
|
---|
116 | */
|
---|
117 | public function getMonthlyCostCompute()
|
---|
118 | {
|
---|
119 | return $this->monthlyCostCompute;
|
---|
120 | }
|
---|
121 | /**
|
---|
122 | * @param Money
|
---|
123 | */
|
---|
124 | public function setMonthlyCostNetworkEgress(Money $monthlyCostNetworkEgress)
|
---|
125 | {
|
---|
126 | $this->monthlyCostNetworkEgress = $monthlyCostNetworkEgress;
|
---|
127 | }
|
---|
128 | /**
|
---|
129 | * @return Money
|
---|
130 | */
|
---|
131 | public function getMonthlyCostNetworkEgress()
|
---|
132 | {
|
---|
133 | return $this->monthlyCostNetworkEgress;
|
---|
134 | }
|
---|
135 | /**
|
---|
136 | * @param Money
|
---|
137 | */
|
---|
138 | public function setMonthlyCostOsLicense(Money $monthlyCostOsLicense)
|
---|
139 | {
|
---|
140 | $this->monthlyCostOsLicense = $monthlyCostOsLicense;
|
---|
141 | }
|
---|
142 | /**
|
---|
143 | * @return Money
|
---|
144 | */
|
---|
145 | public function getMonthlyCostOsLicense()
|
---|
146 | {
|
---|
147 | return $this->monthlyCostOsLicense;
|
---|
148 | }
|
---|
149 | /**
|
---|
150 | * @param Money
|
---|
151 | */
|
---|
152 | public function setMonthlyCostOther(Money $monthlyCostOther)
|
---|
153 | {
|
---|
154 | $this->monthlyCostOther = $monthlyCostOther;
|
---|
155 | }
|
---|
156 | /**
|
---|
157 | * @return Money
|
---|
158 | */
|
---|
159 | public function getMonthlyCostOther()
|
---|
160 | {
|
---|
161 | return $this->monthlyCostOther;
|
---|
162 | }
|
---|
163 | /**
|
---|
164 | * @param Money
|
---|
165 | */
|
---|
166 | public function setMonthlyCostStorage(Money $monthlyCostStorage)
|
---|
167 | {
|
---|
168 | $this->monthlyCostStorage = $monthlyCostStorage;
|
---|
169 | }
|
---|
170 | /**
|
---|
171 | * @return Money
|
---|
172 | */
|
---|
173 | public function getMonthlyCostStorage()
|
---|
174 | {
|
---|
175 | return $this->monthlyCostStorage;
|
---|
176 | }
|
---|
177 | /**
|
---|
178 | * @param Money
|
---|
179 | */
|
---|
180 | public function setMonthlyCostTotal(Money $monthlyCostTotal)
|
---|
181 | {
|
---|
182 | $this->monthlyCostTotal = $monthlyCostTotal;
|
---|
183 | }
|
---|
184 | /**
|
---|
185 | * @return Money
|
---|
186 | */
|
---|
187 | public function getMonthlyCostTotal()
|
---|
188 | {
|
---|
189 | return $this->monthlyCostTotal;
|
---|
190 | }
|
---|
191 | /**
|
---|
192 | * @param ReportSummarySoleTenantFinding
|
---|
193 | */
|
---|
194 | public function setSoleTenantFinding(ReportSummarySoleTenantFinding $soleTenantFinding)
|
---|
195 | {
|
---|
196 | $this->soleTenantFinding = $soleTenantFinding;
|
---|
197 | }
|
---|
198 | /**
|
---|
199 | * @return ReportSummarySoleTenantFinding
|
---|
200 | */
|
---|
201 | public function getSoleTenantFinding()
|
---|
202 | {
|
---|
203 | return $this->soleTenantFinding;
|
---|
204 | }
|
---|
205 | /**
|
---|
206 | * @param ReportSummaryVmwareEngineFinding
|
---|
207 | */
|
---|
208 | public function setVmwareEngineFinding(ReportSummaryVmwareEngineFinding $vmwareEngineFinding)
|
---|
209 | {
|
---|
210 | $this->vmwareEngineFinding = $vmwareEngineFinding;
|
---|
211 | }
|
---|
212 | /**
|
---|
213 | * @return ReportSummaryVmwareEngineFinding
|
---|
214 | */
|
---|
215 | public function getVmwareEngineFinding()
|
---|
216 | {
|
---|
217 | return $this->vmwareEngineFinding;
|
---|
218 | }
|
---|
219 | }
|
---|
220 |
|
---|
221 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
222 | class_alias(ReportSummaryGroupPreferenceSetFinding::class, 'Google_Service_MigrationCenterAPI_ReportSummaryGroupPreferenceSetFinding');
|
---|