source: vendor/google/apiclient-services/src/DLP/GooglePrivacyDlpV2BigQueryDiscoveryTarget.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 2.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 GooglePrivacyDlpV2BigQueryDiscoveryTarget extends \Google\Model
21{
22 protected $cadenceType = GooglePrivacyDlpV2DiscoveryGenerationCadence::class;
23 protected $cadenceDataType = '';
24 protected $conditionsType = GooglePrivacyDlpV2DiscoveryBigQueryConditions::class;
25 protected $conditionsDataType = '';
26 protected $disabledType = GooglePrivacyDlpV2Disabled::class;
27 protected $disabledDataType = '';
28 protected $filterType = GooglePrivacyDlpV2DiscoveryBigQueryFilter::class;
29 protected $filterDataType = '';
30
31 /**
32 * @param GooglePrivacyDlpV2DiscoveryGenerationCadence
33 */
34 public function setCadence(GooglePrivacyDlpV2DiscoveryGenerationCadence $cadence)
35 {
36 $this->cadence = $cadence;
37 }
38 /**
39 * @return GooglePrivacyDlpV2DiscoveryGenerationCadence
40 */
41 public function getCadence()
42 {
43 return $this->cadence;
44 }
45 /**
46 * @param GooglePrivacyDlpV2DiscoveryBigQueryConditions
47 */
48 public function setConditions(GooglePrivacyDlpV2DiscoveryBigQueryConditions $conditions)
49 {
50 $this->conditions = $conditions;
51 }
52 /**
53 * @return GooglePrivacyDlpV2DiscoveryBigQueryConditions
54 */
55 public function getConditions()
56 {
57 return $this->conditions;
58 }
59 /**
60 * @param GooglePrivacyDlpV2Disabled
61 */
62 public function setDisabled(GooglePrivacyDlpV2Disabled $disabled)
63 {
64 $this->disabled = $disabled;
65 }
66 /**
67 * @return GooglePrivacyDlpV2Disabled
68 */
69 public function getDisabled()
70 {
71 return $this->disabled;
72 }
73 /**
74 * @param GooglePrivacyDlpV2DiscoveryBigQueryFilter
75 */
76 public function setFilter(GooglePrivacyDlpV2DiscoveryBigQueryFilter $filter)
77 {
78 $this->filter = $filter;
79 }
80 /**
81 * @return GooglePrivacyDlpV2DiscoveryBigQueryFilter
82 */
83 public function getFilter()
84 {
85 return $this->filter;
86 }
87}
88
89// Adding a class alias for backwards compatibility with the previous class name.
90class_alias(GooglePrivacyDlpV2BigQueryDiscoveryTarget::class, 'Google_Service_DLP_GooglePrivacyDlpV2BigQueryDiscoveryTarget');
Note: See TracBrowser for help on using the repository browser.