source: vendor/google/apiclient-services/src/Dialogflow/GoogleCloudDialogflowCxV3SecuritySettings.php

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

Upload project files

  • Property mode set to 100644
File size: 4.9 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\Dialogflow;
19
20class GoogleCloudDialogflowCxV3SecuritySettings extends \Google\Collection
21{
22 protected $collection_key = 'purgeDataTypes';
23 protected $audioExportSettingsType = GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings::class;
24 protected $audioExportSettingsDataType = '';
25 /**
26 * @var string
27 */
28 public $deidentifyTemplate;
29 /**
30 * @var string
31 */
32 public $displayName;
33 protected $insightsExportSettingsType = GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings::class;
34 protected $insightsExportSettingsDataType = '';
35 /**
36 * @var string
37 */
38 public $inspectTemplate;
39 /**
40 * @var string
41 */
42 public $name;
43 /**
44 * @var string[]
45 */
46 public $purgeDataTypes;
47 /**
48 * @var string
49 */
50 public $redactionScope;
51 /**
52 * @var string
53 */
54 public $redactionStrategy;
55 /**
56 * @var string
57 */
58 public $retentionStrategy;
59 /**
60 * @var int
61 */
62 public $retentionWindowDays;
63
64 /**
65 * @param GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
66 */
67 public function setAudioExportSettings(GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings $audioExportSettings)
68 {
69 $this->audioExportSettings = $audioExportSettings;
70 }
71 /**
72 * @return GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings
73 */
74 public function getAudioExportSettings()
75 {
76 return $this->audioExportSettings;
77 }
78 /**
79 * @param string
80 */
81 public function setDeidentifyTemplate($deidentifyTemplate)
82 {
83 $this->deidentifyTemplate = $deidentifyTemplate;
84 }
85 /**
86 * @return string
87 */
88 public function getDeidentifyTemplate()
89 {
90 return $this->deidentifyTemplate;
91 }
92 /**
93 * @param string
94 */
95 public function setDisplayName($displayName)
96 {
97 $this->displayName = $displayName;
98 }
99 /**
100 * @return string
101 */
102 public function getDisplayName()
103 {
104 return $this->displayName;
105 }
106 /**
107 * @param GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
108 */
109 public function setInsightsExportSettings(GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings $insightsExportSettings)
110 {
111 $this->insightsExportSettings = $insightsExportSettings;
112 }
113 /**
114 * @return GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
115 */
116 public function getInsightsExportSettings()
117 {
118 return $this->insightsExportSettings;
119 }
120 /**
121 * @param string
122 */
123 public function setInspectTemplate($inspectTemplate)
124 {
125 $this->inspectTemplate = $inspectTemplate;
126 }
127 /**
128 * @return string
129 */
130 public function getInspectTemplate()
131 {
132 return $this->inspectTemplate;
133 }
134 /**
135 * @param string
136 */
137 public function setName($name)
138 {
139 $this->name = $name;
140 }
141 /**
142 * @return string
143 */
144 public function getName()
145 {
146 return $this->name;
147 }
148 /**
149 * @param string[]
150 */
151 public function setPurgeDataTypes($purgeDataTypes)
152 {
153 $this->purgeDataTypes = $purgeDataTypes;
154 }
155 /**
156 * @return string[]
157 */
158 public function getPurgeDataTypes()
159 {
160 return $this->purgeDataTypes;
161 }
162 /**
163 * @param string
164 */
165 public function setRedactionScope($redactionScope)
166 {
167 $this->redactionScope = $redactionScope;
168 }
169 /**
170 * @return string
171 */
172 public function getRedactionScope()
173 {
174 return $this->redactionScope;
175 }
176 /**
177 * @param string
178 */
179 public function setRedactionStrategy($redactionStrategy)
180 {
181 $this->redactionStrategy = $redactionStrategy;
182 }
183 /**
184 * @return string
185 */
186 public function getRedactionStrategy()
187 {
188 return $this->redactionStrategy;
189 }
190 /**
191 * @param string
192 */
193 public function setRetentionStrategy($retentionStrategy)
194 {
195 $this->retentionStrategy = $retentionStrategy;
196 }
197 /**
198 * @return string
199 */
200 public function getRetentionStrategy()
201 {
202 return $this->retentionStrategy;
203 }
204 /**
205 * @param int
206 */
207 public function setRetentionWindowDays($retentionWindowDays)
208 {
209 $this->retentionWindowDays = $retentionWindowDays;
210 }
211 /**
212 * @return int
213 */
214 public function getRetentionWindowDays()
215 {
216 return $this->retentionWindowDays;
217 }
218}
219
220// Adding a class alias for backwards compatibility with the previous class name.
221class_alias(GoogleCloudDialogflowCxV3SecuritySettings::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3SecuritySettings');
Note: See TracBrowser for help on using the repository browser.