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\GKEHub;
|
---|
19 |
|
---|
20 | class MembershipFeatureSpec extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $configmanagementType = ConfigManagementMembershipSpec::class;
|
---|
23 | protected $configmanagementDataType = '';
|
---|
24 | protected $fleetobservabilityType = FleetObservabilityMembershipSpec::class;
|
---|
25 | protected $fleetobservabilityDataType = '';
|
---|
26 | protected $identityserviceType = IdentityServiceMembershipSpec::class;
|
---|
27 | protected $identityserviceDataType = '';
|
---|
28 | protected $meshType = ServiceMeshMembershipSpec::class;
|
---|
29 | protected $meshDataType = '';
|
---|
30 | protected $originType = Origin::class;
|
---|
31 | protected $originDataType = '';
|
---|
32 | protected $policycontrollerType = PolicyControllerMembershipSpec::class;
|
---|
33 | protected $policycontrollerDataType = '';
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * @param ConfigManagementMembershipSpec
|
---|
37 | */
|
---|
38 | public function setConfigmanagement(ConfigManagementMembershipSpec $configmanagement)
|
---|
39 | {
|
---|
40 | $this->configmanagement = $configmanagement;
|
---|
41 | }
|
---|
42 | /**
|
---|
43 | * @return ConfigManagementMembershipSpec
|
---|
44 | */
|
---|
45 | public function getConfigmanagement()
|
---|
46 | {
|
---|
47 | return $this->configmanagement;
|
---|
48 | }
|
---|
49 | /**
|
---|
50 | * @param FleetObservabilityMembershipSpec
|
---|
51 | */
|
---|
52 | public function setFleetobservability(FleetObservabilityMembershipSpec $fleetobservability)
|
---|
53 | {
|
---|
54 | $this->fleetobservability = $fleetobservability;
|
---|
55 | }
|
---|
56 | /**
|
---|
57 | * @return FleetObservabilityMembershipSpec
|
---|
58 | */
|
---|
59 | public function getFleetobservability()
|
---|
60 | {
|
---|
61 | return $this->fleetobservability;
|
---|
62 | }
|
---|
63 | /**
|
---|
64 | * @param IdentityServiceMembershipSpec
|
---|
65 | */
|
---|
66 | public function setIdentityservice(IdentityServiceMembershipSpec $identityservice)
|
---|
67 | {
|
---|
68 | $this->identityservice = $identityservice;
|
---|
69 | }
|
---|
70 | /**
|
---|
71 | * @return IdentityServiceMembershipSpec
|
---|
72 | */
|
---|
73 | public function getIdentityservice()
|
---|
74 | {
|
---|
75 | return $this->identityservice;
|
---|
76 | }
|
---|
77 | /**
|
---|
78 | * @param ServiceMeshMembershipSpec
|
---|
79 | */
|
---|
80 | public function setMesh(ServiceMeshMembershipSpec $mesh)
|
---|
81 | {
|
---|
82 | $this->mesh = $mesh;
|
---|
83 | }
|
---|
84 | /**
|
---|
85 | * @return ServiceMeshMembershipSpec
|
---|
86 | */
|
---|
87 | public function getMesh()
|
---|
88 | {
|
---|
89 | return $this->mesh;
|
---|
90 | }
|
---|
91 | /**
|
---|
92 | * @param Origin
|
---|
93 | */
|
---|
94 | public function setOrigin(Origin $origin)
|
---|
95 | {
|
---|
96 | $this->origin = $origin;
|
---|
97 | }
|
---|
98 | /**
|
---|
99 | * @return Origin
|
---|
100 | */
|
---|
101 | public function getOrigin()
|
---|
102 | {
|
---|
103 | return $this->origin;
|
---|
104 | }
|
---|
105 | /**
|
---|
106 | * @param PolicyControllerMembershipSpec
|
---|
107 | */
|
---|
108 | public function setPolicycontroller(PolicyControllerMembershipSpec $policycontroller)
|
---|
109 | {
|
---|
110 | $this->policycontroller = $policycontroller;
|
---|
111 | }
|
---|
112 | /**
|
---|
113 | * @return PolicyControllerMembershipSpec
|
---|
114 | */
|
---|
115 | public function getPolicycontroller()
|
---|
116 | {
|
---|
117 | return $this->policycontroller;
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
122 | class_alias(MembershipFeatureSpec::class, 'Google_Service_GKEHub_MembershipFeatureSpec');
|
---|