source: vendor/google/apiclient-services/src/GKEHub/ConfigManagementSpec.php@ e3d4e0a

Last change on this file since e3d4e0a 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\GKEHub;
19
20class ConfigManagementSpec extends \Google\Model
21{
22 protected $binauthzType = ConfigManagementBinauthzConfig::class;
23 protected $binauthzDataType = '';
24 /**
25 * @var string
26 */
27 public $cluster;
28 protected $configSyncType = ConfigManagementConfigSync::class;
29 protected $configSyncDataType = '';
30 protected $hierarchyControllerType = ConfigManagementHierarchyControllerConfig::class;
31 protected $hierarchyControllerDataType = '';
32 /**
33 * @var string
34 */
35 public $management;
36 protected $policyControllerType = ConfigManagementPolicyController::class;
37 protected $policyControllerDataType = '';
38 /**
39 * @var string
40 */
41 public $version;
42
43 /**
44 * @param ConfigManagementBinauthzConfig
45 */
46 public function setBinauthz(ConfigManagementBinauthzConfig $binauthz)
47 {
48 $this->binauthz = $binauthz;
49 }
50 /**
51 * @return ConfigManagementBinauthzConfig
52 */
53 public function getBinauthz()
54 {
55 return $this->binauthz;
56 }
57 /**
58 * @param string
59 */
60 public function setCluster($cluster)
61 {
62 $this->cluster = $cluster;
63 }
64 /**
65 * @return string
66 */
67 public function getCluster()
68 {
69 return $this->cluster;
70 }
71 /**
72 * @param ConfigManagementConfigSync
73 */
74 public function setConfigSync(ConfigManagementConfigSync $configSync)
75 {
76 $this->configSync = $configSync;
77 }
78 /**
79 * @return ConfigManagementConfigSync
80 */
81 public function getConfigSync()
82 {
83 return $this->configSync;
84 }
85 /**
86 * @param ConfigManagementHierarchyControllerConfig
87 */
88 public function setHierarchyController(ConfigManagementHierarchyControllerConfig $hierarchyController)
89 {
90 $this->hierarchyController = $hierarchyController;
91 }
92 /**
93 * @return ConfigManagementHierarchyControllerConfig
94 */
95 public function getHierarchyController()
96 {
97 return $this->hierarchyController;
98 }
99 /**
100 * @param string
101 */
102 public function setManagement($management)
103 {
104 $this->management = $management;
105 }
106 /**
107 * @return string
108 */
109 public function getManagement()
110 {
111 return $this->management;
112 }
113 /**
114 * @param ConfigManagementPolicyController
115 */
116 public function setPolicyController(ConfigManagementPolicyController $policyController)
117 {
118 $this->policyController = $policyController;
119 }
120 /**
121 * @return ConfigManagementPolicyController
122 */
123 public function getPolicyController()
124 {
125 return $this->policyController;
126 }
127 /**
128 * @param string
129 */
130 public function setVersion($version)
131 {
132 $this->version = $version;
133 }
134 /**
135 * @return string
136 */
137 public function getVersion()
138 {
139 return $this->version;
140 }
141}
142
143// Adding a class alias for backwards compatibility with the previous class name.
144class_alias(ConfigManagementSpec::class, 'Google_Service_GKEHub_ConfigManagementSpec');
Note: See TracBrowser for help on using the repository browser.