No Description

DataSource.php 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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_BigQueryDataTransfer_DataSource extends Google_Collection
  18. {
  19. protected $collection_key = 'scopes';
  20. public $authorizationType;
  21. public $clientId;
  22. public $dataRefreshType;
  23. public $dataSourceId;
  24. public $defaultDataRefreshWindowDays;
  25. public $defaultSchedule;
  26. public $description;
  27. public $displayName;
  28. public $helpUrl;
  29. public $manualRunsDisabled;
  30. public $minimumScheduleInterval;
  31. public $name;
  32. protected $parametersType = 'Google_Service_BigQueryDataTransfer_DataSourceParameter';
  33. protected $parametersDataType = 'array';
  34. public $scopes;
  35. public $supportsCustomSchedule;
  36. public $supportsMultipleTransfers;
  37. public $transferType;
  38. public $updateDeadlineSeconds;
  39. public function setAuthorizationType($authorizationType)
  40. {
  41. $this->authorizationType = $authorizationType;
  42. }
  43. public function getAuthorizationType()
  44. {
  45. return $this->authorizationType;
  46. }
  47. public function setClientId($clientId)
  48. {
  49. $this->clientId = $clientId;
  50. }
  51. public function getClientId()
  52. {
  53. return $this->clientId;
  54. }
  55. public function setDataRefreshType($dataRefreshType)
  56. {
  57. $this->dataRefreshType = $dataRefreshType;
  58. }
  59. public function getDataRefreshType()
  60. {
  61. return $this->dataRefreshType;
  62. }
  63. public function setDataSourceId($dataSourceId)
  64. {
  65. $this->dataSourceId = $dataSourceId;
  66. }
  67. public function getDataSourceId()
  68. {
  69. return $this->dataSourceId;
  70. }
  71. public function setDefaultDataRefreshWindowDays($defaultDataRefreshWindowDays)
  72. {
  73. $this->defaultDataRefreshWindowDays = $defaultDataRefreshWindowDays;
  74. }
  75. public function getDefaultDataRefreshWindowDays()
  76. {
  77. return $this->defaultDataRefreshWindowDays;
  78. }
  79. public function setDefaultSchedule($defaultSchedule)
  80. {
  81. $this->defaultSchedule = $defaultSchedule;
  82. }
  83. public function getDefaultSchedule()
  84. {
  85. return $this->defaultSchedule;
  86. }
  87. public function setDescription($description)
  88. {
  89. $this->description = $description;
  90. }
  91. public function getDescription()
  92. {
  93. return $this->description;
  94. }
  95. public function setDisplayName($displayName)
  96. {
  97. $this->displayName = $displayName;
  98. }
  99. public function getDisplayName()
  100. {
  101. return $this->displayName;
  102. }
  103. public function setHelpUrl($helpUrl)
  104. {
  105. $this->helpUrl = $helpUrl;
  106. }
  107. public function getHelpUrl()
  108. {
  109. return $this->helpUrl;
  110. }
  111. public function setManualRunsDisabled($manualRunsDisabled)
  112. {
  113. $this->manualRunsDisabled = $manualRunsDisabled;
  114. }
  115. public function getManualRunsDisabled()
  116. {
  117. return $this->manualRunsDisabled;
  118. }
  119. public function setMinimumScheduleInterval($minimumScheduleInterval)
  120. {
  121. $this->minimumScheduleInterval = $minimumScheduleInterval;
  122. }
  123. public function getMinimumScheduleInterval()
  124. {
  125. return $this->minimumScheduleInterval;
  126. }
  127. public function setName($name)
  128. {
  129. $this->name = $name;
  130. }
  131. public function getName()
  132. {
  133. return $this->name;
  134. }
  135. /**
  136. * @param Google_Service_BigQueryDataTransfer_DataSourceParameter
  137. */
  138. public function setParameters($parameters)
  139. {
  140. $this->parameters = $parameters;
  141. }
  142. /**
  143. * @return Google_Service_BigQueryDataTransfer_DataSourceParameter
  144. */
  145. public function getParameters()
  146. {
  147. return $this->parameters;
  148. }
  149. public function setScopes($scopes)
  150. {
  151. $this->scopes = $scopes;
  152. }
  153. public function getScopes()
  154. {
  155. return $this->scopes;
  156. }
  157. public function setSupportsCustomSchedule($supportsCustomSchedule)
  158. {
  159. $this->supportsCustomSchedule = $supportsCustomSchedule;
  160. }
  161. public function getSupportsCustomSchedule()
  162. {
  163. return $this->supportsCustomSchedule;
  164. }
  165. public function setSupportsMultipleTransfers($supportsMultipleTransfers)
  166. {
  167. $this->supportsMultipleTransfers = $supportsMultipleTransfers;
  168. }
  169. public function getSupportsMultipleTransfers()
  170. {
  171. return $this->supportsMultipleTransfers;
  172. }
  173. public function setTransferType($transferType)
  174. {
  175. $this->transferType = $transferType;
  176. }
  177. public function getTransferType()
  178. {
  179. return $this->transferType;
  180. }
  181. public function setUpdateDeadlineSeconds($updateDeadlineSeconds)
  182. {
  183. $this->updateDeadlineSeconds = $updateDeadlineSeconds;
  184. }
  185. public function getUpdateDeadlineSeconds()
  186. {
  187. return $this->updateDeadlineSeconds;
  188. }
  189. }