Skip to content

Commit 9dfa509

Browse files
1 parent 0d94999 commit 9dfa509

3 files changed

Lines changed: 78 additions & 0 deletions

File tree

src/DLP/GooglePrivacyDlpV2DataProfileAction.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ class GooglePrivacyDlpV2DataProfileAction extends \Google\Model
2525
protected $pubSubNotificationDataType = '';
2626
protected $publishToChronicleType = GooglePrivacyDlpV2PublishToChronicle::class;
2727
protected $publishToChronicleDataType = '';
28+
protected $publishToDataplexCatalogType = GooglePrivacyDlpV2PublishToDataplexCatalog::class;
29+
protected $publishToDataplexCatalogDataType = '';
2830
protected $publishToSccType = GooglePrivacyDlpV2PublishToSecurityCommandCenter::class;
2931
protected $publishToSccDataType = '';
3032
protected $tagResourcesType = GooglePrivacyDlpV2TagResources::class;
@@ -72,6 +74,20 @@ public function getPublishToChronicle()
7274
{
7375
return $this->publishToChronicle;
7476
}
77+
/**
78+
* @param GooglePrivacyDlpV2PublishToDataplexCatalog
79+
*/
80+
public function setPublishToDataplexCatalog(GooglePrivacyDlpV2PublishToDataplexCatalog $publishToDataplexCatalog)
81+
{
82+
$this->publishToDataplexCatalog = $publishToDataplexCatalog;
83+
}
84+
/**
85+
* @return GooglePrivacyDlpV2PublishToDataplexCatalog
86+
*/
87+
public function getPublishToDataplexCatalog()
88+
{
89+
return $this->publishToDataplexCatalog;
90+
}
7591
/**
7692
* @param GooglePrivacyDlpV2PublishToSecurityCommandCenter
7793
*/
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
18+
namespace Google\Service\DLP;
19+
20+
class GooglePrivacyDlpV2PublishToDataplexCatalog extends \Google\Model
21+
{
22+
/**
23+
* @var bool
24+
*/
25+
public $lowerDataRiskToLow;
26+
27+
/**
28+
* @param bool
29+
*/
30+
public function setLowerDataRiskToLow($lowerDataRiskToLow)
31+
{
32+
$this->lowerDataRiskToLow = $lowerDataRiskToLow;
33+
}
34+
/**
35+
* @return bool
36+
*/
37+
public function getLowerDataRiskToLow()
38+
{
39+
return $this->lowerDataRiskToLow;
40+
}
41+
}
42+
43+
// Adding a class alias for backwards compatibility with the previous class name.
44+
class_alias(GooglePrivacyDlpV2PublishToDataplexCatalog::class, 'Google_Service_DLP_GooglePrivacyDlpV2PublishToDataplexCatalog');

src/DLP/GooglePrivacyDlpV2TableReference.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ class GooglePrivacyDlpV2TableReference extends \Google\Model
2323
* @var string
2424
*/
2525
public $datasetId;
26+
/**
27+
* @var string
28+
*/
29+
public $projectId;
2630
/**
2731
* @var string
2832
*/
@@ -42,6 +46,20 @@ public function getDatasetId()
4246
{
4347
return $this->datasetId;
4448
}
49+
/**
50+
* @param string
51+
*/
52+
public function setProjectId($projectId)
53+
{
54+
$this->projectId = $projectId;
55+
}
56+
/**
57+
* @return string
58+
*/
59+
public function getProjectId()
60+
{
61+
return $this->projectId;
62+
}
4563
/**
4664
* @param string
4765
*/

0 commit comments

Comments
 (0)