source: vendor/google/apiclient-services/src/GKEHub/FeatureState.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: 3.8 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 FeatureState extends \Google\Model
21{
22 protected $appdevexperienceType = AppDevExperienceState::class;
23 protected $appdevexperienceDataType = '';
24 protected $clusterupgradeType = ClusterUpgradeState::class;
25 protected $clusterupgradeDataType = '';
26 protected $configmanagementType = ConfigManagementState::class;
27 protected $configmanagementDataType = '';
28 protected $identityserviceType = IdentityServiceState::class;
29 protected $identityserviceDataType = '';
30 protected $meteringType = MeteringState::class;
31 protected $meteringDataType = '';
32 protected $policycontrollerType = PolicyControllerState::class;
33 protected $policycontrollerDataType = '';
34 protected $servicemeshType = ServiceMeshState::class;
35 protected $servicemeshDataType = '';
36 protected $stateType = State::class;
37 protected $stateDataType = '';
38
39 /**
40 * @param AppDevExperienceState
41 */
42 public function setAppdevexperience(AppDevExperienceState $appdevexperience)
43 {
44 $this->appdevexperience = $appdevexperience;
45 }
46 /**
47 * @return AppDevExperienceState
48 */
49 public function getAppdevexperience()
50 {
51 return $this->appdevexperience;
52 }
53 /**
54 * @param ClusterUpgradeState
55 */
56 public function setClusterupgrade(ClusterUpgradeState $clusterupgrade)
57 {
58 $this->clusterupgrade = $clusterupgrade;
59 }
60 /**
61 * @return ClusterUpgradeState
62 */
63 public function getClusterupgrade()
64 {
65 return $this->clusterupgrade;
66 }
67 /**
68 * @param ConfigManagementState
69 */
70 public function setConfigmanagement(ConfigManagementState $configmanagement)
71 {
72 $this->configmanagement = $configmanagement;
73 }
74 /**
75 * @return ConfigManagementState
76 */
77 public function getConfigmanagement()
78 {
79 return $this->configmanagement;
80 }
81 /**
82 * @param IdentityServiceState
83 */
84 public function setIdentityservice(IdentityServiceState $identityservice)
85 {
86 $this->identityservice = $identityservice;
87 }
88 /**
89 * @return IdentityServiceState
90 */
91 public function getIdentityservice()
92 {
93 return $this->identityservice;
94 }
95 /**
96 * @param MeteringState
97 */
98 public function setMetering(MeteringState $metering)
99 {
100 $this->metering = $metering;
101 }
102 /**
103 * @return MeteringState
104 */
105 public function getMetering()
106 {
107 return $this->metering;
108 }
109 /**
110 * @param PolicyControllerState
111 */
112 public function setPolicycontroller(PolicyControllerState $policycontroller)
113 {
114 $this->policycontroller = $policycontroller;
115 }
116 /**
117 * @return PolicyControllerState
118 */
119 public function getPolicycontroller()
120 {
121 return $this->policycontroller;
122 }
123 /**
124 * @param ServiceMeshState
125 */
126 public function setServicemesh(ServiceMeshState $servicemesh)
127 {
128 $this->servicemesh = $servicemesh;
129 }
130 /**
131 * @return ServiceMeshState
132 */
133 public function getServicemesh()
134 {
135 return $this->servicemesh;
136 }
137 /**
138 * @param State
139 */
140 public function setState(State $state)
141 {
142 $this->state = $state;
143 }
144 /**
145 * @return State
146 */
147 public function getState()
148 {
149 return $this->state;
150 }
151}
152
153// Adding a class alias for backwards compatibility with the previous class name.
154class_alias(FeatureState::class, 'Google_Service_GKEHub_FeatureState');
Note: See TracBrowser for help on using the repository browser.