source: vendor/google/apiclient-services/src/DLP/GooglePrivacyDlpV2DlpJob.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.6 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 GooglePrivacyDlpV2DlpJob extends \Google\Collection
21{
22 protected $collection_key = 'errors';
23 protected $actionDetailsType = GooglePrivacyDlpV2ActionDetails::class;
24 protected $actionDetailsDataType = 'array';
25 /**
26 * @var string
27 */
28 public $createTime;
29 /**
30 * @var string
31 */
32 public $endTime;
33 protected $errorsType = GooglePrivacyDlpV2Error::class;
34 protected $errorsDataType = 'array';
35 protected $inspectDetailsType = GooglePrivacyDlpV2InspectDataSourceDetails::class;
36 protected $inspectDetailsDataType = '';
37 /**
38 * @var string
39 */
40 public $jobTriggerName;
41 /**
42 * @var string
43 */
44 public $lastModified;
45 /**
46 * @var string
47 */
48 public $name;
49 protected $riskDetailsType = GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails::class;
50 protected $riskDetailsDataType = '';
51 /**
52 * @var string
53 */
54 public $startTime;
55 /**
56 * @var string
57 */
58 public $state;
59 /**
60 * @var string
61 */
62 public $type;
63
64 /**
65 * @param GooglePrivacyDlpV2ActionDetails[]
66 */
67 public function setActionDetails($actionDetails)
68 {
69 $this->actionDetails = $actionDetails;
70 }
71 /**
72 * @return GooglePrivacyDlpV2ActionDetails[]
73 */
74 public function getActionDetails()
75 {
76 return $this->actionDetails;
77 }
78 /**
79 * @param string
80 */
81 public function setCreateTime($createTime)
82 {
83 $this->createTime = $createTime;
84 }
85 /**
86 * @return string
87 */
88 public function getCreateTime()
89 {
90 return $this->createTime;
91 }
92 /**
93 * @param string
94 */
95 public function setEndTime($endTime)
96 {
97 $this->endTime = $endTime;
98 }
99 /**
100 * @return string
101 */
102 public function getEndTime()
103 {
104 return $this->endTime;
105 }
106 /**
107 * @param GooglePrivacyDlpV2Error[]
108 */
109 public function setErrors($errors)
110 {
111 $this->errors = $errors;
112 }
113 /**
114 * @return GooglePrivacyDlpV2Error[]
115 */
116 public function getErrors()
117 {
118 return $this->errors;
119 }
120 /**
121 * @param GooglePrivacyDlpV2InspectDataSourceDetails
122 */
123 public function setInspectDetails(GooglePrivacyDlpV2InspectDataSourceDetails $inspectDetails)
124 {
125 $this->inspectDetails = $inspectDetails;
126 }
127 /**
128 * @return GooglePrivacyDlpV2InspectDataSourceDetails
129 */
130 public function getInspectDetails()
131 {
132 return $this->inspectDetails;
133 }
134 /**
135 * @param string
136 */
137 public function setJobTriggerName($jobTriggerName)
138 {
139 $this->jobTriggerName = $jobTriggerName;
140 }
141 /**
142 * @return string
143 */
144 public function getJobTriggerName()
145 {
146 return $this->jobTriggerName;
147 }
148 /**
149 * @param string
150 */
151 public function setLastModified($lastModified)
152 {
153 $this->lastModified = $lastModified;
154 }
155 /**
156 * @return string
157 */
158 public function getLastModified()
159 {
160 return $this->lastModified;
161 }
162 /**
163 * @param string
164 */
165 public function setName($name)
166 {
167 $this->name = $name;
168 }
169 /**
170 * @return string
171 */
172 public function getName()
173 {
174 return $this->name;
175 }
176 /**
177 * @param GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails
178 */
179 public function setRiskDetails(GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails $riskDetails)
180 {
181 $this->riskDetails = $riskDetails;
182 }
183 /**
184 * @return GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails
185 */
186 public function getRiskDetails()
187 {
188 return $this->riskDetails;
189 }
190 /**
191 * @param string
192 */
193 public function setStartTime($startTime)
194 {
195 $this->startTime = $startTime;
196 }
197 /**
198 * @return string
199 */
200 public function getStartTime()
201 {
202 return $this->startTime;
203 }
204 /**
205 * @param string
206 */
207 public function setState($state)
208 {
209 $this->state = $state;
210 }
211 /**
212 * @return string
213 */
214 public function getState()
215 {
216 return $this->state;
217 }
218 /**
219 * @param string
220 */
221 public function setType($type)
222 {
223 $this->type = $type;
224 }
225 /**
226 * @return string
227 */
228 public function getType()
229 {
230 return $this->type;
231 }
232}
233
234// Adding a class alias for backwards compatibility with the previous class name.
235class_alias(GooglePrivacyDlpV2DlpJob::class, 'Google_Service_DLP_GooglePrivacyDlpV2DlpJob');
Note: See TracBrowser for help on using the repository browser.