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 GooglePrivacyDlpV2OtherCloudDiscoveryTarget extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $conditionsType = GooglePrivacyDlpV2DiscoveryOtherCloudConditions::class;
|
---|
23 | protected $conditionsDataType = '';
|
---|
24 | protected $dataSourceTypeType = GooglePrivacyDlpV2DataSourceType::class;
|
---|
25 | protected $dataSourceTypeDataType = '';
|
---|
26 | protected $disabledType = GooglePrivacyDlpV2Disabled::class;
|
---|
27 | protected $disabledDataType = '';
|
---|
28 | protected $filterType = GooglePrivacyDlpV2DiscoveryOtherCloudFilter::class;
|
---|
29 | protected $filterDataType = '';
|
---|
30 | protected $generationCadenceType = GooglePrivacyDlpV2DiscoveryOtherCloudGenerationCadence::class;
|
---|
31 | protected $generationCadenceDataType = '';
|
---|
32 |
|
---|
33 | /**
|
---|
34 | * @param GooglePrivacyDlpV2DiscoveryOtherCloudConditions
|
---|
35 | */
|
---|
36 | public function setConditions(GooglePrivacyDlpV2DiscoveryOtherCloudConditions $conditions)
|
---|
37 | {
|
---|
38 | $this->conditions = $conditions;
|
---|
39 | }
|
---|
40 | /**
|
---|
41 | * @return GooglePrivacyDlpV2DiscoveryOtherCloudConditions
|
---|
42 | */
|
---|
43 | public function getConditions()
|
---|
44 | {
|
---|
45 | return $this->conditions;
|
---|
46 | }
|
---|
47 | /**
|
---|
48 | * @param GooglePrivacyDlpV2DataSourceType
|
---|
49 | */
|
---|
50 | public function setDataSourceType(GooglePrivacyDlpV2DataSourceType $dataSourceType)
|
---|
51 | {
|
---|
52 | $this->dataSourceType = $dataSourceType;
|
---|
53 | }
|
---|
54 | /**
|
---|
55 | * @return GooglePrivacyDlpV2DataSourceType
|
---|
56 | */
|
---|
57 | public function getDataSourceType()
|
---|
58 | {
|
---|
59 | return $this->dataSourceType;
|
---|
60 | }
|
---|
61 | /**
|
---|
62 | * @param GooglePrivacyDlpV2Disabled
|
---|
63 | */
|
---|
64 | public function setDisabled(GooglePrivacyDlpV2Disabled $disabled)
|
---|
65 | {
|
---|
66 | $this->disabled = $disabled;
|
---|
67 | }
|
---|
68 | /**
|
---|
69 | * @return GooglePrivacyDlpV2Disabled
|
---|
70 | */
|
---|
71 | public function getDisabled()
|
---|
72 | {
|
---|
73 | return $this->disabled;
|
---|
74 | }
|
---|
75 | /**
|
---|
76 | * @param GooglePrivacyDlpV2DiscoveryOtherCloudFilter
|
---|
77 | */
|
---|
78 | public function setFilter(GooglePrivacyDlpV2DiscoveryOtherCloudFilter $filter)
|
---|
79 | {
|
---|
80 | $this->filter = $filter;
|
---|
81 | }
|
---|
82 | /**
|
---|
83 | * @return GooglePrivacyDlpV2DiscoveryOtherCloudFilter
|
---|
84 | */
|
---|
85 | public function getFilter()
|
---|
86 | {
|
---|
87 | return $this->filter;
|
---|
88 | }
|
---|
89 | /**
|
---|
90 | * @param GooglePrivacyDlpV2DiscoveryOtherCloudGenerationCadence
|
---|
91 | */
|
---|
92 | public function setGenerationCadence(GooglePrivacyDlpV2DiscoveryOtherCloudGenerationCadence $generationCadence)
|
---|
93 | {
|
---|
94 | $this->generationCadence = $generationCadence;
|
---|
95 | }
|
---|
96 | /**
|
---|
97 | * @return GooglePrivacyDlpV2DiscoveryOtherCloudGenerationCadence
|
---|
98 | */
|
---|
99 | public function getGenerationCadence()
|
---|
100 | {
|
---|
101 | return $this->generationCadence;
|
---|
102 | }
|
---|
103 | }
|
---|
104 |
|
---|
105 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
106 | class_alias(GooglePrivacyDlpV2OtherCloudDiscoveryTarget::class, 'Google_Service_DLP_GooglePrivacyDlpV2OtherCloudDiscoveryTarget');
|
---|