source: vendor/google/apiclient-services/src/MigrationCenterAPI/GuestRuntimeDetails.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\MigrationCenterAPI;
19
20class GuestRuntimeDetails extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $domain;
26 protected $installedAppsType = GuestInstalledApplicationList::class;
27 protected $installedAppsDataType = '';
28 /**
29 * @var string
30 */
31 public $lastBootTime;
32 /**
33 * @var string
34 */
35 public $machineName;
36 protected $networkType = RuntimeNetworkInfo::class;
37 protected $networkDataType = '';
38 protected $openFileListType = OpenFileList::class;
39 protected $openFileListDataType = '';
40 protected $processesType = RunningProcessList::class;
41 protected $processesDataType = '';
42 protected $servicesType = RunningServiceList::class;
43 protected $servicesDataType = '';
44
45 /**
46 * @param string
47 */
48 public function setDomain($domain)
49 {
50 $this->domain = $domain;
51 }
52 /**
53 * @return string
54 */
55 public function getDomain()
56 {
57 return $this->domain;
58 }
59 /**
60 * @param GuestInstalledApplicationList
61 */
62 public function setInstalledApps(GuestInstalledApplicationList $installedApps)
63 {
64 $this->installedApps = $installedApps;
65 }
66 /**
67 * @return GuestInstalledApplicationList
68 */
69 public function getInstalledApps()
70 {
71 return $this->installedApps;
72 }
73 /**
74 * @param string
75 */
76 public function setLastBootTime($lastBootTime)
77 {
78 $this->lastBootTime = $lastBootTime;
79 }
80 /**
81 * @return string
82 */
83 public function getLastBootTime()
84 {
85 return $this->lastBootTime;
86 }
87 /**
88 * @param string
89 */
90 public function setMachineName($machineName)
91 {
92 $this->machineName = $machineName;
93 }
94 /**
95 * @return string
96 */
97 public function getMachineName()
98 {
99 return $this->machineName;
100 }
101 /**
102 * @param RuntimeNetworkInfo
103 */
104 public function setNetwork(RuntimeNetworkInfo $network)
105 {
106 $this->network = $network;
107 }
108 /**
109 * @return RuntimeNetworkInfo
110 */
111 public function getNetwork()
112 {
113 return $this->network;
114 }
115 /**
116 * @param OpenFileList
117 */
118 public function setOpenFileList(OpenFileList $openFileList)
119 {
120 $this->openFileList = $openFileList;
121 }
122 /**
123 * @return OpenFileList
124 */
125 public function getOpenFileList()
126 {
127 return $this->openFileList;
128 }
129 /**
130 * @param RunningProcessList
131 */
132 public function setProcesses(RunningProcessList $processes)
133 {
134 $this->processes = $processes;
135 }
136 /**
137 * @return RunningProcessList
138 */
139 public function getProcesses()
140 {
141 return $this->processes;
142 }
143 /**
144 * @param RunningServiceList
145 */
146 public function setServices(RunningServiceList $services)
147 {
148 $this->services = $services;
149 }
150 /**
151 * @return RunningServiceList
152 */
153 public function getServices()
154 {
155 return $this->services;
156 }
157}
158
159// Adding a class alias for backwards compatibility with the previous class name.
160class_alias(GuestRuntimeDetails::class, 'Google_Service_MigrationCenterAPI_GuestRuntimeDetails');
Note: See TracBrowser for help on using the repository browser.