source: vendor/google/apiclient-services/src/DLP/GooglePrivacyDlpV2InspectConfig.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 4.1 KB
Line 
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 GooglePrivacyDlpV2InspectConfig extends \Google\Collection
21{
22 protected $collection_key = 'ruleSet';
23 /**
24 * @var string[]
25 */
26 public $contentOptions;
27 protected $customInfoTypesType = GooglePrivacyDlpV2CustomInfoType::class;
28 protected $customInfoTypesDataType = 'array';
29 /**
30 * @var bool
31 */
32 public $excludeInfoTypes;
33 /**
34 * @var bool
35 */
36 public $includeQuote;
37 protected $infoTypesType = GooglePrivacyDlpV2InfoType::class;
38 protected $infoTypesDataType = 'array';
39 protected $limitsType = GooglePrivacyDlpV2FindingLimits::class;
40 protected $limitsDataType = '';
41 /**
42 * @var string
43 */
44 public $minLikelihood;
45 protected $minLikelihoodPerInfoTypeType = GooglePrivacyDlpV2InfoTypeLikelihood::class;
46 protected $minLikelihoodPerInfoTypeDataType = 'array';
47 protected $ruleSetType = GooglePrivacyDlpV2InspectionRuleSet::class;
48 protected $ruleSetDataType = 'array';
49
50 /**
51 * @param string[]
52 */
53 public function setContentOptions($contentOptions)
54 {
55 $this->contentOptions = $contentOptions;
56 }
57 /**
58 * @return string[]
59 */
60 public function getContentOptions()
61 {
62 return $this->contentOptions;
63 }
64 /**
65 * @param GooglePrivacyDlpV2CustomInfoType[]
66 */
67 public function setCustomInfoTypes($customInfoTypes)
68 {
69 $this->customInfoTypes = $customInfoTypes;
70 }
71 /**
72 * @return GooglePrivacyDlpV2CustomInfoType[]
73 */
74 public function getCustomInfoTypes()
75 {
76 return $this->customInfoTypes;
77 }
78 /**
79 * @param bool
80 */
81 public function setExcludeInfoTypes($excludeInfoTypes)
82 {
83 $this->excludeInfoTypes = $excludeInfoTypes;
84 }
85 /**
86 * @return bool
87 */
88 public function getExcludeInfoTypes()
89 {
90 return $this->excludeInfoTypes;
91 }
92 /**
93 * @param bool
94 */
95 public function setIncludeQuote($includeQuote)
96 {
97 $this->includeQuote = $includeQuote;
98 }
99 /**
100 * @return bool
101 */
102 public function getIncludeQuote()
103 {
104 return $this->includeQuote;
105 }
106 /**
107 * @param GooglePrivacyDlpV2InfoType[]
108 */
109 public function setInfoTypes($infoTypes)
110 {
111 $this->infoTypes = $infoTypes;
112 }
113 /**
114 * @return GooglePrivacyDlpV2InfoType[]
115 */
116 public function getInfoTypes()
117 {
118 return $this->infoTypes;
119 }
120 /**
121 * @param GooglePrivacyDlpV2FindingLimits
122 */
123 public function setLimits(GooglePrivacyDlpV2FindingLimits $limits)
124 {
125 $this->limits = $limits;
126 }
127 /**
128 * @return GooglePrivacyDlpV2FindingLimits
129 */
130 public function getLimits()
131 {
132 return $this->limits;
133 }
134 /**
135 * @param string
136 */
137 public function setMinLikelihood($minLikelihood)
138 {
139 $this->minLikelihood = $minLikelihood;
140 }
141 /**
142 * @return string
143 */
144 public function getMinLikelihood()
145 {
146 return $this->minLikelihood;
147 }
148 /**
149 * @param GooglePrivacyDlpV2InfoTypeLikelihood[]
150 */
151 public function setMinLikelihoodPerInfoType($minLikelihoodPerInfoType)
152 {
153 $this->minLikelihoodPerInfoType = $minLikelihoodPerInfoType;
154 }
155 /**
156 * @return GooglePrivacyDlpV2InfoTypeLikelihood[]
157 */
158 public function getMinLikelihoodPerInfoType()
159 {
160 return $this->minLikelihoodPerInfoType;
161 }
162 /**
163 * @param GooglePrivacyDlpV2InspectionRuleSet[]
164 */
165 public function setRuleSet($ruleSet)
166 {
167 $this->ruleSet = $ruleSet;
168 }
169 /**
170 * @return GooglePrivacyDlpV2InspectionRuleSet[]
171 */
172 public function getRuleSet()
173 {
174 return $this->ruleSet;
175 }
176}
177
178// Adding a class alias for backwards compatibility with the previous class name.
179class_alias(GooglePrivacyDlpV2InspectConfig::class, 'Google_Service_DLP_GooglePrivacyDlpV2InspectConfig');
Note: See TracBrowser for help on using the repository browser.