Açıklama Yok

GooglePrivacyDlpV2DlpJob.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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_DLP_GooglePrivacyDlpV2DlpJob extends Google_Collection
  18. {
  19. protected $collection_key = 'errors';
  20. public $createTime;
  21. public $endTime;
  22. protected $errorsType = 'Google_Service_DLP_GooglePrivacyDlpV2Error';
  23. protected $errorsDataType = 'array';
  24. protected $inspectDetailsType = 'Google_Service_DLP_GooglePrivacyDlpV2InspectDataSourceDetails';
  25. protected $inspectDetailsDataType = '';
  26. public $jobTriggerName;
  27. public $name;
  28. protected $riskDetailsType = 'Google_Service_DLP_GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails';
  29. protected $riskDetailsDataType = '';
  30. public $startTime;
  31. public $state;
  32. public $type;
  33. public function setCreateTime($createTime)
  34. {
  35. $this->createTime = $createTime;
  36. }
  37. public function getCreateTime()
  38. {
  39. return $this->createTime;
  40. }
  41. public function setEndTime($endTime)
  42. {
  43. $this->endTime = $endTime;
  44. }
  45. public function getEndTime()
  46. {
  47. return $this->endTime;
  48. }
  49. /**
  50. * @param Google_Service_DLP_GooglePrivacyDlpV2Error
  51. */
  52. public function setErrors($errors)
  53. {
  54. $this->errors = $errors;
  55. }
  56. /**
  57. * @return Google_Service_DLP_GooglePrivacyDlpV2Error
  58. */
  59. public function getErrors()
  60. {
  61. return $this->errors;
  62. }
  63. /**
  64. * @param Google_Service_DLP_GooglePrivacyDlpV2InspectDataSourceDetails
  65. */
  66. public function setInspectDetails(Google_Service_DLP_GooglePrivacyDlpV2InspectDataSourceDetails $inspectDetails)
  67. {
  68. $this->inspectDetails = $inspectDetails;
  69. }
  70. /**
  71. * @return Google_Service_DLP_GooglePrivacyDlpV2InspectDataSourceDetails
  72. */
  73. public function getInspectDetails()
  74. {
  75. return $this->inspectDetails;
  76. }
  77. public function setJobTriggerName($jobTriggerName)
  78. {
  79. $this->jobTriggerName = $jobTriggerName;
  80. }
  81. public function getJobTriggerName()
  82. {
  83. return $this->jobTriggerName;
  84. }
  85. public function setName($name)
  86. {
  87. $this->name = $name;
  88. }
  89. public function getName()
  90. {
  91. return $this->name;
  92. }
  93. /**
  94. * @param Google_Service_DLP_GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails
  95. */
  96. public function setRiskDetails(Google_Service_DLP_GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails $riskDetails)
  97. {
  98. $this->riskDetails = $riskDetails;
  99. }
  100. /**
  101. * @return Google_Service_DLP_GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails
  102. */
  103. public function getRiskDetails()
  104. {
  105. return $this->riskDetails;
  106. }
  107. public function setStartTime($startTime)
  108. {
  109. $this->startTime = $startTime;
  110. }
  111. public function getStartTime()
  112. {
  113. return $this->startTime;
  114. }
  115. public function setState($state)
  116. {
  117. $this->state = $state;
  118. }
  119. public function getState()
  120. {
  121. return $this->state;
  122. }
  123. public function setType($type)
  124. {
  125. $this->type = $type;
  126. }
  127. public function getType()
  128. {
  129. return $this->type;
  130. }
  131. }