Нет описания

Dataset.php 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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_Bigquery_Dataset extends Google_Collection
  18. {
  19. protected $collection_key = 'access';
  20. protected $accessType = 'Google_Service_Bigquery_DatasetAccess';
  21. protected $accessDataType = 'array';
  22. public $creationTime;
  23. protected $datasetReferenceType = 'Google_Service_Bigquery_DatasetReference';
  24. protected $datasetReferenceDataType = '';
  25. public $defaultTableExpirationMs;
  26. public $description;
  27. public $etag;
  28. public $friendlyName;
  29. public $id;
  30. public $kind;
  31. public $labels;
  32. public $lastModifiedTime;
  33. public $location;
  34. public $selfLink;
  35. /**
  36. * @param Google_Service_Bigquery_DatasetAccess
  37. */
  38. public function setAccess($access)
  39. {
  40. $this->access = $access;
  41. }
  42. /**
  43. * @return Google_Service_Bigquery_DatasetAccess
  44. */
  45. public function getAccess()
  46. {
  47. return $this->access;
  48. }
  49. public function setCreationTime($creationTime)
  50. {
  51. $this->creationTime = $creationTime;
  52. }
  53. public function getCreationTime()
  54. {
  55. return $this->creationTime;
  56. }
  57. /**
  58. * @param Google_Service_Bigquery_DatasetReference
  59. */
  60. public function setDatasetReference(Google_Service_Bigquery_DatasetReference $datasetReference)
  61. {
  62. $this->datasetReference = $datasetReference;
  63. }
  64. /**
  65. * @return Google_Service_Bigquery_DatasetReference
  66. */
  67. public function getDatasetReference()
  68. {
  69. return $this->datasetReference;
  70. }
  71. public function setDefaultTableExpirationMs($defaultTableExpirationMs)
  72. {
  73. $this->defaultTableExpirationMs = $defaultTableExpirationMs;
  74. }
  75. public function getDefaultTableExpirationMs()
  76. {
  77. return $this->defaultTableExpirationMs;
  78. }
  79. public function setDescription($description)
  80. {
  81. $this->description = $description;
  82. }
  83. public function getDescription()
  84. {
  85. return $this->description;
  86. }
  87. public function setEtag($etag)
  88. {
  89. $this->etag = $etag;
  90. }
  91. public function getEtag()
  92. {
  93. return $this->etag;
  94. }
  95. public function setFriendlyName($friendlyName)
  96. {
  97. $this->friendlyName = $friendlyName;
  98. }
  99. public function getFriendlyName()
  100. {
  101. return $this->friendlyName;
  102. }
  103. public function setId($id)
  104. {
  105. $this->id = $id;
  106. }
  107. public function getId()
  108. {
  109. return $this->id;
  110. }
  111. public function setKind($kind)
  112. {
  113. $this->kind = $kind;
  114. }
  115. public function getKind()
  116. {
  117. return $this->kind;
  118. }
  119. public function setLabels($labels)
  120. {
  121. $this->labels = $labels;
  122. }
  123. public function getLabels()
  124. {
  125. return $this->labels;
  126. }
  127. public function setLastModifiedTime($lastModifiedTime)
  128. {
  129. $this->lastModifiedTime = $lastModifiedTime;
  130. }
  131. public function getLastModifiedTime()
  132. {
  133. return $this->lastModifiedTime;
  134. }
  135. public function setLocation($location)
  136. {
  137. $this->location = $location;
  138. }
  139. public function getLocation()
  140. {
  141. return $this->location;
  142. }
  143. public function setSelfLink($selfLink)
  144. {
  145. $this->selfLink = $selfLink;
  146. }
  147. public function getSelfLink()
  148. {
  149. return $this->selfLink;
  150. }
  151. }