Няма описание

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. class Google_Service_Container_Operation extends Google_Model
  18. {
  19. public $detail;
  20. public $endTime;
  21. public $location;
  22. public $name;
  23. public $operationType;
  24. public $selfLink;
  25. public $startTime;
  26. public $status;
  27. public $statusMessage;
  28. public $targetLink;
  29. public $zone;
  30. public function setDetail($detail)
  31. {
  32. $this->detail = $detail;
  33. }
  34. public function getDetail()
  35. {
  36. return $this->detail;
  37. }
  38. public function setEndTime($endTime)
  39. {
  40. $this->endTime = $endTime;
  41. }
  42. public function getEndTime()
  43. {
  44. return $this->endTime;
  45. }
  46. public function setLocation($location)
  47. {
  48. $this->location = $location;
  49. }
  50. public function getLocation()
  51. {
  52. return $this->location;
  53. }
  54. public function setName($name)
  55. {
  56. $this->name = $name;
  57. }
  58. public function getName()
  59. {
  60. return $this->name;
  61. }
  62. public function setOperationType($operationType)
  63. {
  64. $this->operationType = $operationType;
  65. }
  66. public function getOperationType()
  67. {
  68. return $this->operationType;
  69. }
  70. public function setSelfLink($selfLink)
  71. {
  72. $this->selfLink = $selfLink;
  73. }
  74. public function getSelfLink()
  75. {
  76. return $this->selfLink;
  77. }
  78. public function setStartTime($startTime)
  79. {
  80. $this->startTime = $startTime;
  81. }
  82. public function getStartTime()
  83. {
  84. return $this->startTime;
  85. }
  86. public function setStatus($status)
  87. {
  88. $this->status = $status;
  89. }
  90. public function getStatus()
  91. {
  92. return $this->status;
  93. }
  94. public function setStatusMessage($statusMessage)
  95. {
  96. $this->statusMessage = $statusMessage;
  97. }
  98. public function getStatusMessage()
  99. {
  100. return $this->statusMessage;
  101. }
  102. public function setTargetLink($targetLink)
  103. {
  104. $this->targetLink = $targetLink;
  105. }
  106. public function getTargetLink()
  107. {
  108. return $this->targetLink;
  109. }
  110. public function setZone($zone)
  111. {
  112. $this->zone = $zone;
  113. }
  114. public function getZone()
  115. {
  116. return $this->zone;
  117. }
  118. }