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 18namespace Google\Service\DLP; 19 20class GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails extends \Google\Model 21{ 22 protected $categoricalStatsResultType = GooglePrivacyDlpV2CategoricalStatsResult::class; 23 protected $categoricalStatsResultDataType = ''; 24 protected $deltaPresenceEstimationResultType = GooglePrivacyDlpV2DeltaPresenceEstimationResult::class; 25 protected $deltaPresenceEstimationResultDataType = ''; 26 protected $kAnonymityResultType = GooglePrivacyDlpV2KAnonymityResult::class; 27 protected $kAnonymityResultDataType = ''; 28 protected $kMapEstimationResultType = GooglePrivacyDlpV2KMapEstimationResult::class; 29 protected $kMapEstimationResultDataType = ''; 30 protected $lDiversityResultType = GooglePrivacyDlpV2LDiversityResult::class; 31 protected $lDiversityResultDataType = ''; 32 protected $numericalStatsResultType = GooglePrivacyDlpV2NumericalStatsResult::class; 33 protected $numericalStatsResultDataType = ''; 34 protected $requestedOptionsType = GooglePrivacyDlpV2RequestedRiskAnalysisOptions::class; 35 protected $requestedOptionsDataType = ''; 36 protected $requestedPrivacyMetricType = GooglePrivacyDlpV2PrivacyMetric::class; 37 protected $requestedPrivacyMetricDataType = ''; 38 protected $requestedSourceTableType = GooglePrivacyDlpV2BigQueryTable::class; 39 protected $requestedSourceTableDataType = ''; 40 41 /** 42 * @param GooglePrivacyDlpV2CategoricalStatsResult 43 */ 44 public function setCategoricalStatsResult(GooglePrivacyDlpV2CategoricalStatsResult $categoricalStatsResult) 45 { 46 $this->categoricalStatsResult = $categoricalStatsResult; 47 } 48 /** 49 * @return GooglePrivacyDlpV2CategoricalStatsResult 50 */ 51 public function getCategoricalStatsResult() 52 { 53 return $this->categoricalStatsResult; 54 } 55 /** 56 * @param GooglePrivacyDlpV2DeltaPresenceEstimationResult 57 */ 58 public function setDeltaPresenceEstimationResult(GooglePrivacyDlpV2DeltaPresenceEstimationResult $deltaPresenceEstimationResult) 59 { 60 $this->deltaPresenceEstimationResult = $deltaPresenceEstimationResult; 61 } 62 /** 63 * @return GooglePrivacyDlpV2DeltaPresenceEstimationResult 64 */ 65 public function getDeltaPresenceEstimationResult() 66 { 67 return $this->deltaPresenceEstimationResult; 68 } 69 /** 70 * @param GooglePrivacyDlpV2KAnonymityResult 71 */ 72 public function setKAnonymityResult(GooglePrivacyDlpV2KAnonymityResult $kAnonymityResult) 73 { 74 $this->kAnonymityResult = $kAnonymityResult; 75 } 76 /** 77 * @return GooglePrivacyDlpV2KAnonymityResult 78 */ 79 public function getKAnonymityResult() 80 { 81 return $this->kAnonymityResult; 82 } 83 /** 84 * @param GooglePrivacyDlpV2KMapEstimationResult 85 */ 86 public function setKMapEstimationResult(GooglePrivacyDlpV2KMapEstimationResult $kMapEstimationResult) 87 { 88 $this->kMapEstimationResult = $kMapEstimationResult; 89 } 90 /** 91 * @return GooglePrivacyDlpV2KMapEstimationResult 92 */ 93 public function getKMapEstimationResult() 94 { 95 return $this->kMapEstimationResult; 96 } 97 /** 98 * @param GooglePrivacyDlpV2LDiversityResult 99 */ 100 public function setLDiversityResult(GooglePrivacyDlpV2LDiversityResult $lDiversityResult) 101 { 102 $this->lDiversityResult = $lDiversityResult; 103 } 104 /** 105 * @return GooglePrivacyDlpV2LDiversityResult 106 */ 107 public function getLDiversityResult() 108 { 109 return $this->lDiversityResult; 110 } 111 /** 112 * @param GooglePrivacyDlpV2NumericalStatsResult 113 */ 114 public function setNumericalStatsResult(GooglePrivacyDlpV2NumericalStatsResult $numericalStatsResult) 115 { 116 $this->numericalStatsResult = $numericalStatsResult; 117 } 118 /** 119 * @return GooglePrivacyDlpV2NumericalStatsResult 120 */ 121 public function getNumericalStatsResult() 122 { 123 return $this->numericalStatsResult; 124 } 125 /** 126 * @param GooglePrivacyDlpV2RequestedRiskAnalysisOptions 127 */ 128 public function setRequestedOptions(GooglePrivacyDlpV2RequestedRiskAnalysisOptions $requestedOptions) 129 { 130 $this->requestedOptions = $requestedOptions; 131 } 132 /** 133 * @return GooglePrivacyDlpV2RequestedRiskAnalysisOptions 134 */ 135 public function getRequestedOptions() 136 { 137 return $this->requestedOptions; 138 } 139 /** 140 * @param GooglePrivacyDlpV2PrivacyMetric 141 */ 142 public function setRequestedPrivacyMetric(GooglePrivacyDlpV2PrivacyMetric $requestedPrivacyMetric) 143 { 144 $this->requestedPrivacyMetric = $requestedPrivacyMetric; 145 } 146 /** 147 * @return GooglePrivacyDlpV2PrivacyMetric 148 */ 149 public function getRequestedPrivacyMetric() 150 { 151 return $this->requestedPrivacyMetric; 152 } 153 /** 154 * @param GooglePrivacyDlpV2BigQueryTable 155 */ 156 public function setRequestedSourceTable(GooglePrivacyDlpV2BigQueryTable $requestedSourceTable) 157 { 158 $this->requestedSourceTable = $requestedSourceTable; 159 } 160 /** 161 * @return GooglePrivacyDlpV2BigQueryTable 162 */ 163 public function getRequestedSourceTable() 164 { 165 return $this->requestedSourceTable; 166 } 167} 168 169// Adding a class alias for backwards compatibility with the previous class name. 170class_alias(GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails::class, 'Google_Service_DLP_GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails'); 171