source: vendor/google/apiclient-services/src/MigrationCenterAPI/PlatformDetails.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: 2.8 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\MigrationCenterAPI;
19
20class PlatformDetails extends \Google\Model
21{
22 protected $awsEc2DetailsType = AwsEc2PlatformDetails::class;
23 protected $awsEc2DetailsDataType = '';
24 protected $azureVmDetailsType = AzureVmPlatformDetails::class;
25 protected $azureVmDetailsDataType = '';
26 protected $genericDetailsType = GenericPlatformDetails::class;
27 protected $genericDetailsDataType = '';
28 protected $physicalDetailsType = PhysicalPlatformDetails::class;
29 protected $physicalDetailsDataType = '';
30 protected $vmwareDetailsType = VmwarePlatformDetails::class;
31 protected $vmwareDetailsDataType = '';
32
33 /**
34 * @param AwsEc2PlatformDetails
35 */
36 public function setAwsEc2Details(AwsEc2PlatformDetails $awsEc2Details)
37 {
38 $this->awsEc2Details = $awsEc2Details;
39 }
40 /**
41 * @return AwsEc2PlatformDetails
42 */
43 public function getAwsEc2Details()
44 {
45 return $this->awsEc2Details;
46 }
47 /**
48 * @param AzureVmPlatformDetails
49 */
50 public function setAzureVmDetails(AzureVmPlatformDetails $azureVmDetails)
51 {
52 $this->azureVmDetails = $azureVmDetails;
53 }
54 /**
55 * @return AzureVmPlatformDetails
56 */
57 public function getAzureVmDetails()
58 {
59 return $this->azureVmDetails;
60 }
61 /**
62 * @param GenericPlatformDetails
63 */
64 public function setGenericDetails(GenericPlatformDetails $genericDetails)
65 {
66 $this->genericDetails = $genericDetails;
67 }
68 /**
69 * @return GenericPlatformDetails
70 */
71 public function getGenericDetails()
72 {
73 return $this->genericDetails;
74 }
75 /**
76 * @param PhysicalPlatformDetails
77 */
78 public function setPhysicalDetails(PhysicalPlatformDetails $physicalDetails)
79 {
80 $this->physicalDetails = $physicalDetails;
81 }
82 /**
83 * @return PhysicalPlatformDetails
84 */
85 public function getPhysicalDetails()
86 {
87 return $this->physicalDetails;
88 }
89 /**
90 * @param VmwarePlatformDetails
91 */
92 public function setVmwareDetails(VmwarePlatformDetails $vmwareDetails)
93 {
94 $this->vmwareDetails = $vmwareDetails;
95 }
96 /**
97 * @return VmwarePlatformDetails
98 */
99 public function getVmwareDetails()
100 {
101 return $this->vmwareDetails;
102 }
103}
104
105// Adding a class alias for backwards compatibility with the previous class name.
106class_alias(PlatformDetails::class, 'Google_Service_MigrationCenterAPI_PlatformDetails');
Note: See TracBrowser for help on using the repository browser.