source: vendor/google/apiclient-services/src/VMMigrationService/Source.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: 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\VMMigrationService;
19
20class Source extends \Google\Model
21{
22 protected $awsType = AwsSourceDetails::class;
23 protected $awsDataType = '';
24 protected $azureType = AzureSourceDetails::class;
25 protected $azureDataType = '';
26 /**
27 * @var string
28 */
29 public $createTime;
30 /**
31 * @var string
32 */
33 public $description;
34 protected $encryptionType = Encryption::class;
35 protected $encryptionDataType = '';
36 /**
37 * @var string[]
38 */
39 public $labels;
40 /**
41 * @var string
42 */
43 public $name;
44 /**
45 * @var string
46 */
47 public $updateTime;
48 protected $vmwareType = VmwareSourceDetails::class;
49 protected $vmwareDataType = '';
50
51 /**
52 * @param AwsSourceDetails
53 */
54 public function setAws(AwsSourceDetails $aws)
55 {
56 $this->aws = $aws;
57 }
58 /**
59 * @return AwsSourceDetails
60 */
61 public function getAws()
62 {
63 return $this->aws;
64 }
65 /**
66 * @param AzureSourceDetails
67 */
68 public function setAzure(AzureSourceDetails $azure)
69 {
70 $this->azure = $azure;
71 }
72 /**
73 * @return AzureSourceDetails
74 */
75 public function getAzure()
76 {
77 return $this->azure;
78 }
79 /**
80 * @param string
81 */
82 public function setCreateTime($createTime)
83 {
84 $this->createTime = $createTime;
85 }
86 /**
87 * @return string
88 */
89 public function getCreateTime()
90 {
91 return $this->createTime;
92 }
93 /**
94 * @param string
95 */
96 public function setDescription($description)
97 {
98 $this->description = $description;
99 }
100 /**
101 * @return string
102 */
103 public function getDescription()
104 {
105 return $this->description;
106 }
107 /**
108 * @param Encryption
109 */
110 public function setEncryption(Encryption $encryption)
111 {
112 $this->encryption = $encryption;
113 }
114 /**
115 * @return Encryption
116 */
117 public function getEncryption()
118 {
119 return $this->encryption;
120 }
121 /**
122 * @param string[]
123 */
124 public function setLabels($labels)
125 {
126 $this->labels = $labels;
127 }
128 /**
129 * @return string[]
130 */
131 public function getLabels()
132 {
133 return $this->labels;
134 }
135 /**
136 * @param string
137 */
138 public function setName($name)
139 {
140 $this->name = $name;
141 }
142 /**
143 * @return string
144 */
145 public function getName()
146 {
147 return $this->name;
148 }
149 /**
150 * @param string
151 */
152 public function setUpdateTime($updateTime)
153 {
154 $this->updateTime = $updateTime;
155 }
156 /**
157 * @return string
158 */
159 public function getUpdateTime()
160 {
161 return $this->updateTime;
162 }
163 /**
164 * @param VmwareSourceDetails
165 */
166 public function setVmware(VmwareSourceDetails $vmware)
167 {
168 $this->vmware = $vmware;
169 }
170 /**
171 * @return VmwareSourceDetails
172 */
173 public function getVmware()
174 {
175 return $this->vmware;
176 }
177}
178
179// Adding a class alias for backwards compatibility with the previous class name.
180class_alias(Source::class, 'Google_Service_VMMigrationService_Source');
Note: See TracBrowser for help on using the repository browser.