설명 없음

UrlMap.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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_Compute_UrlMap extends Google_Collection
  18. {
  19. protected $collection_key = 'tests';
  20. public $creationTimestamp;
  21. public $defaultService;
  22. public $description;
  23. public $fingerprint;
  24. protected $hostRulesType = 'Google_Service_Compute_HostRule';
  25. protected $hostRulesDataType = 'array';
  26. public $id;
  27. public $kind;
  28. public $name;
  29. protected $pathMatchersType = 'Google_Service_Compute_PathMatcher';
  30. protected $pathMatchersDataType = 'array';
  31. public $selfLink;
  32. protected $testsType = 'Google_Service_Compute_UrlMapTest';
  33. protected $testsDataType = 'array';
  34. public function setCreationTimestamp($creationTimestamp)
  35. {
  36. $this->creationTimestamp = $creationTimestamp;
  37. }
  38. public function getCreationTimestamp()
  39. {
  40. return $this->creationTimestamp;
  41. }
  42. public function setDefaultService($defaultService)
  43. {
  44. $this->defaultService = $defaultService;
  45. }
  46. public function getDefaultService()
  47. {
  48. return $this->defaultService;
  49. }
  50. public function setDescription($description)
  51. {
  52. $this->description = $description;
  53. }
  54. public function getDescription()
  55. {
  56. return $this->description;
  57. }
  58. public function setFingerprint($fingerprint)
  59. {
  60. $this->fingerprint = $fingerprint;
  61. }
  62. public function getFingerprint()
  63. {
  64. return $this->fingerprint;
  65. }
  66. /**
  67. * @param Google_Service_Compute_HostRule
  68. */
  69. public function setHostRules($hostRules)
  70. {
  71. $this->hostRules = $hostRules;
  72. }
  73. /**
  74. * @return Google_Service_Compute_HostRule
  75. */
  76. public function getHostRules()
  77. {
  78. return $this->hostRules;
  79. }
  80. public function setId($id)
  81. {
  82. $this->id = $id;
  83. }
  84. public function getId()
  85. {
  86. return $this->id;
  87. }
  88. public function setKind($kind)
  89. {
  90. $this->kind = $kind;
  91. }
  92. public function getKind()
  93. {
  94. return $this->kind;
  95. }
  96. public function setName($name)
  97. {
  98. $this->name = $name;
  99. }
  100. public function getName()
  101. {
  102. return $this->name;
  103. }
  104. /**
  105. * @param Google_Service_Compute_PathMatcher
  106. */
  107. public function setPathMatchers($pathMatchers)
  108. {
  109. $this->pathMatchers = $pathMatchers;
  110. }
  111. /**
  112. * @return Google_Service_Compute_PathMatcher
  113. */
  114. public function getPathMatchers()
  115. {
  116. return $this->pathMatchers;
  117. }
  118. public function setSelfLink($selfLink)
  119. {
  120. $this->selfLink = $selfLink;
  121. }
  122. public function getSelfLink()
  123. {
  124. return $this->selfLink;
  125. }
  126. /**
  127. * @param Google_Service_Compute_UrlMapTest
  128. */
  129. public function setTests($tests)
  130. {
  131. $this->tests = $tests;
  132. }
  133. /**
  134. * @return Google_Service_Compute_UrlMapTest
  135. */
  136. public function getTests()
  137. {
  138. return $this->tests;
  139. }
  140. }