source: vendor/google/apiclient-services/src/TPU/QueuedResourceState.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 4.2 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\TPU;
19
20class QueuedResourceState extends \Google\Model
21{
22 protected $acceptedDataType = AcceptedData::class;
23 protected $acceptedDataDataType = '';
24 protected $activeDataType = ActiveData::class;
25 protected $activeDataDataType = '';
26 protected $creatingDataType = CreatingData::class;
27 protected $creatingDataDataType = '';
28 protected $deletingDataType = DeletingData::class;
29 protected $deletingDataDataType = '';
30 protected $failedDataType = FailedData::class;
31 protected $failedDataDataType = '';
32 protected $provisioningDataType = ProvisioningData::class;
33 protected $provisioningDataDataType = '';
34 /**
35 * @var string
36 */
37 public $state;
38 /**
39 * @var string
40 */
41 public $stateInitiator;
42 protected $suspendedDataType = SuspendedData::class;
43 protected $suspendedDataDataType = '';
44 protected $suspendingDataType = SuspendingData::class;
45 protected $suspendingDataDataType = '';
46
47 /**
48 * @param AcceptedData
49 */
50 public function setAcceptedData(AcceptedData $acceptedData)
51 {
52 $this->acceptedData = $acceptedData;
53 }
54 /**
55 * @return AcceptedData
56 */
57 public function getAcceptedData()
58 {
59 return $this->acceptedData;
60 }
61 /**
62 * @param ActiveData
63 */
64 public function setActiveData(ActiveData $activeData)
65 {
66 $this->activeData = $activeData;
67 }
68 /**
69 * @return ActiveData
70 */
71 public function getActiveData()
72 {
73 return $this->activeData;
74 }
75 /**
76 * @param CreatingData
77 */
78 public function setCreatingData(CreatingData $creatingData)
79 {
80 $this->creatingData = $creatingData;
81 }
82 /**
83 * @return CreatingData
84 */
85 public function getCreatingData()
86 {
87 return $this->creatingData;
88 }
89 /**
90 * @param DeletingData
91 */
92 public function setDeletingData(DeletingData $deletingData)
93 {
94 $this->deletingData = $deletingData;
95 }
96 /**
97 * @return DeletingData
98 */
99 public function getDeletingData()
100 {
101 return $this->deletingData;
102 }
103 /**
104 * @param FailedData
105 */
106 public function setFailedData(FailedData $failedData)
107 {
108 $this->failedData = $failedData;
109 }
110 /**
111 * @return FailedData
112 */
113 public function getFailedData()
114 {
115 return $this->failedData;
116 }
117 /**
118 * @param ProvisioningData
119 */
120 public function setProvisioningData(ProvisioningData $provisioningData)
121 {
122 $this->provisioningData = $provisioningData;
123 }
124 /**
125 * @return ProvisioningData
126 */
127 public function getProvisioningData()
128 {
129 return $this->provisioningData;
130 }
131 /**
132 * @param string
133 */
134 public function setState($state)
135 {
136 $this->state = $state;
137 }
138 /**
139 * @return string
140 */
141 public function getState()
142 {
143 return $this->state;
144 }
145 /**
146 * @param string
147 */
148 public function setStateInitiator($stateInitiator)
149 {
150 $this->stateInitiator = $stateInitiator;
151 }
152 /**
153 * @return string
154 */
155 public function getStateInitiator()
156 {
157 return $this->stateInitiator;
158 }
159 /**
160 * @param SuspendedData
161 */
162 public function setSuspendedData(SuspendedData $suspendedData)
163 {
164 $this->suspendedData = $suspendedData;
165 }
166 /**
167 * @return SuspendedData
168 */
169 public function getSuspendedData()
170 {
171 return $this->suspendedData;
172 }
173 /**
174 * @param SuspendingData
175 */
176 public function setSuspendingData(SuspendingData $suspendingData)
177 {
178 $this->suspendingData = $suspendingData;
179 }
180 /**
181 * @return SuspendingData
182 */
183 public function getSuspendingData()
184 {
185 return $this->suspendingData;
186 }
187}
188
189// Adding a class alias for backwards compatibility with the previous class name.
190class_alias(QueuedResourceState::class, 'Google_Service_TPU_QueuedResourceState');
Note: See TracBrowser for help on using the repository browser.