Skip to content

Commit 4955bb4

Browse files
1 parent 4cb2ba6 commit 4955bb4

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

src/DLP/GooglePrivacyDlpV2Action.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ class GooglePrivacyDlpV2Action extends \Google\Model
2727
protected $pubSubDataType = '';
2828
protected $publishFindingsToCloudDataCatalogType = GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog::class;
2929
protected $publishFindingsToCloudDataCatalogDataType = '';
30+
protected $publishFindingsToDataplexCatalogType = GooglePrivacyDlpV2PublishFindingsToDataplexCatalog::class;
31+
protected $publishFindingsToDataplexCatalogDataType = '';
3032
protected $publishSummaryToCsccType = GooglePrivacyDlpV2PublishSummaryToCscc::class;
3133
protected $publishSummaryToCsccDataType = '';
3234
protected $publishToStackdriverType = GooglePrivacyDlpV2PublishToStackdriver::class;
@@ -90,6 +92,20 @@ public function getPublishFindingsToCloudDataCatalog()
9092
{
9193
return $this->publishFindingsToCloudDataCatalog;
9294
}
95+
/**
96+
* @param GooglePrivacyDlpV2PublishFindingsToDataplexCatalog
97+
*/
98+
public function setPublishFindingsToDataplexCatalog(GooglePrivacyDlpV2PublishFindingsToDataplexCatalog $publishFindingsToDataplexCatalog)
99+
{
100+
$this->publishFindingsToDataplexCatalog = $publishFindingsToDataplexCatalog;
101+
}
102+
/**
103+
* @return GooglePrivacyDlpV2PublishFindingsToDataplexCatalog
104+
*/
105+
public function getPublishFindingsToDataplexCatalog()
106+
{
107+
return $this->publishFindingsToDataplexCatalog;
108+
}
93109
/**
94110
* @param GooglePrivacyDlpV2PublishSummaryToCscc
95111
*/
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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 GooglePrivacyDlpV2PublishFindingsToDataplexCatalog extends \Google\Model
21+
{
22+
}
23+
24+
// Adding a class alias for backwards compatibility with the previous class name.
25+
class_alias(GooglePrivacyDlpV2PublishFindingsToDataplexCatalog::class, 'Google_Service_DLP_GooglePrivacyDlpV2PublishFindingsToDataplexCatalog');

0 commit comments

Comments
 (0)