File tree 5 files changed +179
-0
lines changed 5 files changed +179
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ class FeatureSpec extends \Google\Model
29
29
protected $ originDataType = '' ;
30
30
protected $ policycontrollerType = PolicyControllerSpec::class;
31
31
protected $ policycontrollerDataType = '' ;
32
+ protected $ rbacrolebindingactuationType = RBACRoleBindingActuationSpec::class;
33
+ protected $ rbacrolebindingactuationDataType = '' ;
32
34
protected $ servicemeshType = ServiceMeshSpec::class;
33
35
protected $ servicemeshDataType = '' ;
34
36
protected $ workloadcertificateType = WorkloadCertificateSpec::class;
@@ -104,6 +106,20 @@ public function getPolicycontroller()
104
106
{
105
107
return $ this ->policycontroller ;
106
108
}
109
+ /**
110
+ * @param RBACRoleBindingActuationSpec
111
+ */
112
+ public function setRbacrolebindingactuation (RBACRoleBindingActuationSpec $ rbacrolebindingactuation )
113
+ {
114
+ $ this ->rbacrolebindingactuation = $ rbacrolebindingactuation ;
115
+ }
116
+ /**
117
+ * @return RBACRoleBindingActuationSpec
118
+ */
119
+ public function getRbacrolebindingactuation ()
120
+ {
121
+ return $ this ->rbacrolebindingactuation ;
122
+ }
107
123
/**
108
124
* @param ServiceMeshSpec
109
125
*/
Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ class FeatureState extends \Google\Model
31
31
protected $ meteringDataType = '' ;
32
32
protected $ policycontrollerType = PolicyControllerState::class;
33
33
protected $ policycontrollerDataType = '' ;
34
+ protected $ rbacrolebindingactuationType = RBACRoleBindingActuationState::class;
35
+ protected $ rbacrolebindingactuationDataType = '' ;
34
36
protected $ servicemeshType = ServiceMeshState::class;
35
37
protected $ servicemeshDataType = '' ;
36
38
protected $ stateType = State::class;
@@ -120,6 +122,20 @@ public function getPolicycontroller()
120
122
{
121
123
return $ this ->policycontroller ;
122
124
}
125
+ /**
126
+ * @param RBACRoleBindingActuationState
127
+ */
128
+ public function setRbacrolebindingactuation (RBACRoleBindingActuationState $ rbacrolebindingactuation )
129
+ {
130
+ $ this ->rbacrolebindingactuation = $ rbacrolebindingactuation ;
131
+ }
132
+ /**
133
+ * @return RBACRoleBindingActuationState
134
+ */
135
+ public function getRbacrolebindingactuation ()
136
+ {
137
+ return $ this ->rbacrolebindingactuation ;
138
+ }
123
139
/**
124
140
* @param ServiceMeshState
125
141
*/
Original file line number Diff line number Diff line change
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 RBACRoleBindingActuationRBACRoleBindingState extends \Google \Model
21
+ {
22
+ /**
23
+ * @var string
24
+ */
25
+ public $ description ;
26
+ /**
27
+ * @var string
28
+ */
29
+ public $ state ;
30
+ /**
31
+ * @var string
32
+ */
33
+ public $ updateTime ;
34
+
35
+ /**
36
+ * @param string
37
+ */
38
+ public function setDescription ($ description )
39
+ {
40
+ $ this ->description = $ description ;
41
+ }
42
+ /**
43
+ * @return string
44
+ */
45
+ public function getDescription ()
46
+ {
47
+ return $ this ->description ;
48
+ }
49
+ /**
50
+ * @param string
51
+ */
52
+ public function setState ($ state )
53
+ {
54
+ $ this ->state = $ state ;
55
+ }
56
+ /**
57
+ * @return string
58
+ */
59
+ public function getState ()
60
+ {
61
+ return $ this ->state ;
62
+ }
63
+ /**
64
+ * @param string
65
+ */
66
+ public function setUpdateTime ($ updateTime )
67
+ {
68
+ $ this ->updateTime = $ updateTime ;
69
+ }
70
+ /**
71
+ * @return string
72
+ */
73
+ public function getUpdateTime ()
74
+ {
75
+ return $ this ->updateTime ;
76
+ }
77
+ }
78
+
79
+ // Adding a class alias for backwards compatibility with the previous class name.
80
+ class_alias (RBACRoleBindingActuationRBACRoleBindingState::class, 'Google_Service_GKEHub_RBACRoleBindingActuationRBACRoleBindingState ' );
Original file line number Diff line number Diff line change
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 RBACRoleBindingActuationSpec extends \Google \Model
21
+ {
22
+ }
23
+
24
+ // Adding a class alias for backwards compatibility with the previous class name.
25
+ class_alias (RBACRoleBindingActuationSpec::class, 'Google_Service_GKEHub_RBACRoleBindingActuationSpec ' );
Original file line number Diff line number Diff line change
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 RBACRoleBindingActuationState extends \Google \Model
21
+ {
22
+ protected $ rbacrolebindingStatesType = RBACRoleBindingActuationRBACRoleBindingState::class;
23
+ protected $ rbacrolebindingStatesDataType = 'map ' ;
24
+
25
+ /**
26
+ * @param RBACRoleBindingActuationRBACRoleBindingState[]
27
+ */
28
+ public function setRbacrolebindingStates ($ rbacrolebindingStates )
29
+ {
30
+ $ this ->rbacrolebindingStates = $ rbacrolebindingStates ;
31
+ }
32
+ /**
33
+ * @return RBACRoleBindingActuationRBACRoleBindingState[]
34
+ */
35
+ public function getRbacrolebindingStates ()
36
+ {
37
+ return $ this ->rbacrolebindingStates ;
38
+ }
39
+ }
40
+
41
+ // Adding a class alias for backwards compatibility with the previous class name.
42
+ class_alias (RBACRoleBindingActuationState::class, 'Google_Service_GKEHub_RBACRoleBindingActuationState ' );
You can’t perform that action at this time.
0 commit comments