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

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

Upload project files

  • Property mode set to 100644
File size: 3.7 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 GooglePrivacyDlpV2ProjectDataProfile extends \Google\Model
21{
22 protected $dataRiskLevelType = GooglePrivacyDlpV2DataRiskLevel::class;
23 protected $dataRiskLevelDataType = '';
24 /**
25 * @var string
26 */
27 public $fileStoreDataProfileCount;
28 /**
29 * @var string
30 */
31 public $name;
32 /**
33 * @var string
34 */
35 public $profileLastGenerated;
36 protected $profileStatusType = GooglePrivacyDlpV2ProfileStatus::class;
37 protected $profileStatusDataType = '';
38 /**
39 * @var string
40 */
41 public $projectId;
42 protected $sensitivityScoreType = GooglePrivacyDlpV2SensitivityScore::class;
43 protected $sensitivityScoreDataType = '';
44 /**
45 * @var string
46 */
47 public $tableDataProfileCount;
48
49 /**
50 * @param GooglePrivacyDlpV2DataRiskLevel
51 */
52 public function setDataRiskLevel(GooglePrivacyDlpV2DataRiskLevel $dataRiskLevel)
53 {
54 $this->dataRiskLevel = $dataRiskLevel;
55 }
56 /**
57 * @return GooglePrivacyDlpV2DataRiskLevel
58 */
59 public function getDataRiskLevel()
60 {
61 return $this->dataRiskLevel;
62 }
63 /**
64 * @param string
65 */
66 public function setFileStoreDataProfileCount($fileStoreDataProfileCount)
67 {
68 $this->fileStoreDataProfileCount = $fileStoreDataProfileCount;
69 }
70 /**
71 * @return string
72 */
73 public function getFileStoreDataProfileCount()
74 {
75 return $this->fileStoreDataProfileCount;
76 }
77 /**
78 * @param string
79 */
80 public function setName($name)
81 {
82 $this->name = $name;
83 }
84 /**
85 * @return string
86 */
87 public function getName()
88 {
89 return $this->name;
90 }
91 /**
92 * @param string
93 */
94 public function setProfileLastGenerated($profileLastGenerated)
95 {
96 $this->profileLastGenerated = $profileLastGenerated;
97 }
98 /**
99 * @return string
100 */
101 public function getProfileLastGenerated()
102 {
103 return $this->profileLastGenerated;
104 }
105 /**
106 * @param GooglePrivacyDlpV2ProfileStatus
107 */
108 public function setProfileStatus(GooglePrivacyDlpV2ProfileStatus $profileStatus)
109 {
110 $this->profileStatus = $profileStatus;
111 }
112 /**
113 * @return GooglePrivacyDlpV2ProfileStatus
114 */
115 public function getProfileStatus()
116 {
117 return $this->profileStatus;
118 }
119 /**
120 * @param string
121 */
122 public function setProjectId($projectId)
123 {
124 $this->projectId = $projectId;
125 }
126 /**
127 * @return string
128 */
129 public function getProjectId()
130 {
131 return $this->projectId;
132 }
133 /**
134 * @param GooglePrivacyDlpV2SensitivityScore
135 */
136 public function setSensitivityScore(GooglePrivacyDlpV2SensitivityScore $sensitivityScore)
137 {
138 $this->sensitivityScore = $sensitivityScore;
139 }
140 /**
141 * @return GooglePrivacyDlpV2SensitivityScore
142 */
143 public function getSensitivityScore()
144 {
145 return $this->sensitivityScore;
146 }
147 /**
148 * @param string
149 */
150 public function setTableDataProfileCount($tableDataProfileCount)
151 {
152 $this->tableDataProfileCount = $tableDataProfileCount;
153 }
154 /**
155 * @return string
156 */
157 public function getTableDataProfileCount()
158 {
159 return $this->tableDataProfileCount;
160 }
161}
162
163// Adding a class alias for backwards compatibility with the previous class name.
164class_alias(GooglePrivacyDlpV2ProjectDataProfile::class, 'Google_Service_DLP_GooglePrivacyDlpV2ProjectDataProfile');
Note: See TracBrowser for help on using the repository browser.