source: vendor/google/apiclient-services/src/Batch/AgentTask.php@ e3d4e0a

Last change on this file since e3d4e0a 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\Batch;
19
20class AgentTask extends \Google\Model
21{
22 protected $agentTaskSpecType = AgentTaskSpec::class;
23 protected $agentTaskSpecDataType = '';
24 /**
25 * @var string
26 */
27 public $intendedState;
28 /**
29 * @var string
30 */
31 public $reachedBarrier;
32 protected $specType = TaskSpec::class;
33 protected $specDataType = '';
34 protected $statusType = TaskStatus::class;
35 protected $statusDataType = '';
36 /**
37 * @var string
38 */
39 public $task;
40 /**
41 * @var string
42 */
43 public $taskSource;
44
45 /**
46 * @param AgentTaskSpec
47 */
48 public function setAgentTaskSpec(AgentTaskSpec $agentTaskSpec)
49 {
50 $this->agentTaskSpec = $agentTaskSpec;
51 }
52 /**
53 * @return AgentTaskSpec
54 */
55 public function getAgentTaskSpec()
56 {
57 return $this->agentTaskSpec;
58 }
59 /**
60 * @param string
61 */
62 public function setIntendedState($intendedState)
63 {
64 $this->intendedState = $intendedState;
65 }
66 /**
67 * @return string
68 */
69 public function getIntendedState()
70 {
71 return $this->intendedState;
72 }
73 /**
74 * @param string
75 */
76 public function setReachedBarrier($reachedBarrier)
77 {
78 $this->reachedBarrier = $reachedBarrier;
79 }
80 /**
81 * @return string
82 */
83 public function getReachedBarrier()
84 {
85 return $this->reachedBarrier;
86 }
87 /**
88 * @param TaskSpec
89 */
90 public function setSpec(TaskSpec $spec)
91 {
92 $this->spec = $spec;
93 }
94 /**
95 * @return TaskSpec
96 */
97 public function getSpec()
98 {
99 return $this->spec;
100 }
101 /**
102 * @param TaskStatus
103 */
104 public function setStatus(TaskStatus $status)
105 {
106 $this->status = $status;
107 }
108 /**
109 * @return TaskStatus
110 */
111 public function getStatus()
112 {
113 return $this->status;
114 }
115 /**
116 * @param string
117 */
118 public function setTask($task)
119 {
120 $this->task = $task;
121 }
122 /**
123 * @return string
124 */
125 public function getTask()
126 {
127 return $this->task;
128 }
129 /**
130 * @param string
131 */
132 public function setTaskSource($taskSource)
133 {
134 $this->taskSource = $taskSource;
135 }
136 /**
137 * @return string
138 */
139 public function getTaskSource()
140 {
141 return $this->taskSource;
142 }
143}
144
145// Adding a class alias for backwards compatibility with the previous class name.
146class_alias(AgentTask::class, 'Google_Service_Batch_AgentTask');
Note: See TracBrowser for help on using the repository browser.