Açıklama Yok

GooglePrivacyDlpV2DeidentifyContentRequest.php 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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_GooglePrivacyDlpV2DeidentifyContentRequest extends Google_Model
  18. {
  19. protected $deidentifyConfigType = 'Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig';
  20. protected $deidentifyConfigDataType = '';
  21. public $deidentifyTemplateName;
  22. protected $inspectConfigType = 'Google_Service_DLP_GooglePrivacyDlpV2InspectConfig';
  23. protected $inspectConfigDataType = '';
  24. public $inspectTemplateName;
  25. protected $itemType = 'Google_Service_DLP_GooglePrivacyDlpV2ContentItem';
  26. protected $itemDataType = '';
  27. /**
  28. * @param Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig
  29. */
  30. public function setDeidentifyConfig(Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig $deidentifyConfig)
  31. {
  32. $this->deidentifyConfig = $deidentifyConfig;
  33. }
  34. /**
  35. * @return Google_Service_DLP_GooglePrivacyDlpV2DeidentifyConfig
  36. */
  37. public function getDeidentifyConfig()
  38. {
  39. return $this->deidentifyConfig;
  40. }
  41. public function setDeidentifyTemplateName($deidentifyTemplateName)
  42. {
  43. $this->deidentifyTemplateName = $deidentifyTemplateName;
  44. }
  45. public function getDeidentifyTemplateName()
  46. {
  47. return $this->deidentifyTemplateName;
  48. }
  49. /**
  50. * @param Google_Service_DLP_GooglePrivacyDlpV2InspectConfig
  51. */
  52. public function setInspectConfig(Google_Service_DLP_GooglePrivacyDlpV2InspectConfig $inspectConfig)
  53. {
  54. $this->inspectConfig = $inspectConfig;
  55. }
  56. /**
  57. * @return Google_Service_DLP_GooglePrivacyDlpV2InspectConfig
  58. */
  59. public function getInspectConfig()
  60. {
  61. return $this->inspectConfig;
  62. }
  63. public function setInspectTemplateName($inspectTemplateName)
  64. {
  65. $this->inspectTemplateName = $inspectTemplateName;
  66. }
  67. public function getInspectTemplateName()
  68. {
  69. return $this->inspectTemplateName;
  70. }
  71. /**
  72. * @param Google_Service_DLP_GooglePrivacyDlpV2ContentItem
  73. */
  74. public function setItem(Google_Service_DLP_GooglePrivacyDlpV2ContentItem $item)
  75. {
  76. $this->item = $item;
  77. }
  78. /**
  79. * @return Google_Service_DLP_GooglePrivacyDlpV2ContentItem
  80. */
  81. public function getItem()
  82. {
  83. return $this->item;
  84. }
  85. }