source: vendor/google/apiclient-services/src/DataCatalog/GoogleCloudDatacatalogV1Taxonomy.php

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

Upload project files

  • Property mode set to 100644
File size: 3.3 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\DataCatalog;
19
20class GoogleCloudDatacatalogV1Taxonomy extends \Google\Collection
21{
22 protected $collection_key = 'activatedPolicyTypes';
23 /**
24 * @var string[]
25 */
26 public $activatedPolicyTypes;
27 /**
28 * @var string
29 */
30 public $description;
31 /**
32 * @var string
33 */
34 public $displayName;
35 /**
36 * @var string
37 */
38 public $name;
39 /**
40 * @var int
41 */
42 public $policyTagCount;
43 protected $serviceType = GoogleCloudDatacatalogV1TaxonomyService::class;
44 protected $serviceDataType = '';
45 protected $taxonomyTimestampsType = GoogleCloudDatacatalogV1SystemTimestamps::class;
46 protected $taxonomyTimestampsDataType = '';
47
48 /**
49 * @param string[]
50 */
51 public function setActivatedPolicyTypes($activatedPolicyTypes)
52 {
53 $this->activatedPolicyTypes = $activatedPolicyTypes;
54 }
55 /**
56 * @return string[]
57 */
58 public function getActivatedPolicyTypes()
59 {
60 return $this->activatedPolicyTypes;
61 }
62 /**
63 * @param string
64 */
65 public function setDescription($description)
66 {
67 $this->description = $description;
68 }
69 /**
70 * @return string
71 */
72 public function getDescription()
73 {
74 return $this->description;
75 }
76 /**
77 * @param string
78 */
79 public function setDisplayName($displayName)
80 {
81 $this->displayName = $displayName;
82 }
83 /**
84 * @return string
85 */
86 public function getDisplayName()
87 {
88 return $this->displayName;
89 }
90 /**
91 * @param string
92 */
93 public function setName($name)
94 {
95 $this->name = $name;
96 }
97 /**
98 * @return string
99 */
100 public function getName()
101 {
102 return $this->name;
103 }
104 /**
105 * @param int
106 */
107 public function setPolicyTagCount($policyTagCount)
108 {
109 $this->policyTagCount = $policyTagCount;
110 }
111 /**
112 * @return int
113 */
114 public function getPolicyTagCount()
115 {
116 return $this->policyTagCount;
117 }
118 /**
119 * @param GoogleCloudDatacatalogV1TaxonomyService
120 */
121 public function setService(GoogleCloudDatacatalogV1TaxonomyService $service)
122 {
123 $this->service = $service;
124 }
125 /**
126 * @return GoogleCloudDatacatalogV1TaxonomyService
127 */
128 public function getService()
129 {
130 return $this->service;
131 }
132 /**
133 * @param GoogleCloudDatacatalogV1SystemTimestamps
134 */
135 public function setTaxonomyTimestamps(GoogleCloudDatacatalogV1SystemTimestamps $taxonomyTimestamps)
136 {
137 $this->taxonomyTimestamps = $taxonomyTimestamps;
138 }
139 /**
140 * @return GoogleCloudDatacatalogV1SystemTimestamps
141 */
142 public function getTaxonomyTimestamps()
143 {
144 return $this->taxonomyTimestamps;
145 }
146}
147
148// Adding a class alias for backwards compatibility with the previous class name.
149class_alias(GoogleCloudDatacatalogV1Taxonomy::class, 'Google_Service_DataCatalog_GoogleCloudDatacatalogV1Taxonomy');
Note: See TracBrowser for help on using the repository browser.