source: vendor/google/apiclient-services/src/DLP/GooglePrivacyDlpV2Action.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: 4.2 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 GooglePrivacyDlpV2Action extends \Google\Model
21{
22 protected $deidentifyType = GooglePrivacyDlpV2Deidentify::class;
23 protected $deidentifyDataType = '';
24 protected $jobNotificationEmailsType = GooglePrivacyDlpV2JobNotificationEmails::class;
25 protected $jobNotificationEmailsDataType = '';
26 protected $pubSubType = GooglePrivacyDlpV2PublishToPubSub::class;
27 protected $pubSubDataType = '';
28 protected $publishFindingsToCloudDataCatalogType = GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog::class;
29 protected $publishFindingsToCloudDataCatalogDataType = '';
30 protected $publishSummaryToCsccType = GooglePrivacyDlpV2PublishSummaryToCscc::class;
31 protected $publishSummaryToCsccDataType = '';
32 protected $publishToStackdriverType = GooglePrivacyDlpV2PublishToStackdriver::class;
33 protected $publishToStackdriverDataType = '';
34 protected $saveFindingsType = GooglePrivacyDlpV2SaveFindings::class;
35 protected $saveFindingsDataType = '';
36
37 /**
38 * @param GooglePrivacyDlpV2Deidentify
39 */
40 public function setDeidentify(GooglePrivacyDlpV2Deidentify $deidentify)
41 {
42 $this->deidentify = $deidentify;
43 }
44 /**
45 * @return GooglePrivacyDlpV2Deidentify
46 */
47 public function getDeidentify()
48 {
49 return $this->deidentify;
50 }
51 /**
52 * @param GooglePrivacyDlpV2JobNotificationEmails
53 */
54 public function setJobNotificationEmails(GooglePrivacyDlpV2JobNotificationEmails $jobNotificationEmails)
55 {
56 $this->jobNotificationEmails = $jobNotificationEmails;
57 }
58 /**
59 * @return GooglePrivacyDlpV2JobNotificationEmails
60 */
61 public function getJobNotificationEmails()
62 {
63 return $this->jobNotificationEmails;
64 }
65 /**
66 * @param GooglePrivacyDlpV2PublishToPubSub
67 */
68 public function setPubSub(GooglePrivacyDlpV2PublishToPubSub $pubSub)
69 {
70 $this->pubSub = $pubSub;
71 }
72 /**
73 * @return GooglePrivacyDlpV2PublishToPubSub
74 */
75 public function getPubSub()
76 {
77 return $this->pubSub;
78 }
79 /**
80 * @param GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog
81 */
82 public function setPublishFindingsToCloudDataCatalog(GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog $publishFindingsToCloudDataCatalog)
83 {
84 $this->publishFindingsToCloudDataCatalog = $publishFindingsToCloudDataCatalog;
85 }
86 /**
87 * @return GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog
88 */
89 public function getPublishFindingsToCloudDataCatalog()
90 {
91 return $this->publishFindingsToCloudDataCatalog;
92 }
93 /**
94 * @param GooglePrivacyDlpV2PublishSummaryToCscc
95 */
96 public function setPublishSummaryToCscc(GooglePrivacyDlpV2PublishSummaryToCscc $publishSummaryToCscc)
97 {
98 $this->publishSummaryToCscc = $publishSummaryToCscc;
99 }
100 /**
101 * @return GooglePrivacyDlpV2PublishSummaryToCscc
102 */
103 public function getPublishSummaryToCscc()
104 {
105 return $this->publishSummaryToCscc;
106 }
107 /**
108 * @param GooglePrivacyDlpV2PublishToStackdriver
109 */
110 public function setPublishToStackdriver(GooglePrivacyDlpV2PublishToStackdriver $publishToStackdriver)
111 {
112 $this->publishToStackdriver = $publishToStackdriver;
113 }
114 /**
115 * @return GooglePrivacyDlpV2PublishToStackdriver
116 */
117 public function getPublishToStackdriver()
118 {
119 return $this->publishToStackdriver;
120 }
121 /**
122 * @param GooglePrivacyDlpV2SaveFindings
123 */
124 public function setSaveFindings(GooglePrivacyDlpV2SaveFindings $saveFindings)
125 {
126 $this->saveFindings = $saveFindings;
127 }
128 /**
129 * @return GooglePrivacyDlpV2SaveFindings
130 */
131 public function getSaveFindings()
132 {
133 return $this->saveFindings;
134 }
135}
136
137// Adding a class alias for backwards compatibility with the previous class name.
138class_alias(GooglePrivacyDlpV2Action::class, 'Google_Service_DLP_GooglePrivacyDlpV2Action');
Note: See TracBrowser for help on using the repository browser.