File tree Expand file tree Collapse file tree 4 files changed +114
-0
lines changed Expand file tree Collapse file tree 4 files changed +114
-0
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,10 @@ class BareMetalCluster extends \Google\Model
69
69
* @var string
70
70
*/
71
71
public $ localName ;
72
+ /**
73
+ * @var string
74
+ */
75
+ public $ localNamespace ;
72
76
protected $ maintenanceConfigType = BareMetalMaintenanceConfig::class;
73
77
protected $ maintenanceConfigDataType = '' ;
74
78
protected $ maintenanceStatusType = BareMetalMaintenanceStatus::class;
@@ -324,6 +328,20 @@ public function getLocalName()
324
328
{
325
329
return $ this ->localName ;
326
330
}
331
+ /**
332
+ * @param string
333
+ */
334
+ public function setLocalNamespace ($ localNamespace )
335
+ {
336
+ $ this ->localNamespace = $ localNamespace ;
337
+ }
338
+ /**
339
+ * @return string
340
+ */
341
+ public function getLocalNamespace ()
342
+ {
343
+ return $ this ->localNamespace ;
344
+ }
327
345
/**
328
346
* @param BareMetalMaintenanceConfig
329
347
*/
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ class EnrollBareMetalClusterRequest extends \Google\Model
31
31
* @var string
32
32
*/
33
33
public $ localName ;
34
+ /**
35
+ * @var string
36
+ */
37
+ public $ localNamespace ;
34
38
35
39
/**
36
40
* @param string
@@ -74,6 +78,20 @@ public function getLocalName()
74
78
{
75
79
return $ this ->localName ;
76
80
}
81
+ /**
82
+ * @param string
83
+ */
84
+ public function setLocalNamespace ($ localNamespace )
85
+ {
86
+ $ this ->localNamespace = $ localNamespace ;
87
+ }
88
+ /**
89
+ * @return string
90
+ */
91
+ public function getLocalNamespace ()
92
+ {
93
+ return $ this ->localNamespace ;
94
+ }
77
95
}
78
96
79
97
// Adding a class alias for backwards compatibility with the previous class name.
Original file line number Diff line number Diff line change @@ -83,6 +83,8 @@ class VmwareAdminCluster extends \Google\Model
83
83
protected $ platformConfigDataType = '' ;
84
84
protected $ preparedSecretsType = VmwareAdminPreparedSecretsConfig::class;
85
85
protected $ preparedSecretsDataType = '' ;
86
+ protected $ privateRegistryConfigType = VmwareAdminPrivateRegistryConfig::class;
87
+ protected $ privateRegistryConfigDataType = '' ;
86
88
/**
87
89
* @var bool
88
90
*/
@@ -400,6 +402,20 @@ public function getPreparedSecrets()
400
402
{
401
403
return $ this ->preparedSecrets ;
402
404
}
405
+ /**
406
+ * @param VmwareAdminPrivateRegistryConfig
407
+ */
408
+ public function setPrivateRegistryConfig (VmwareAdminPrivateRegistryConfig $ privateRegistryConfig )
409
+ {
410
+ $ this ->privateRegistryConfig = $ privateRegistryConfig ;
411
+ }
412
+ /**
413
+ * @return VmwareAdminPrivateRegistryConfig
414
+ */
415
+ public function getPrivateRegistryConfig ()
416
+ {
417
+ return $ this ->privateRegistryConfig ;
418
+ }
403
419
/**
404
420
* @param bool
405
421
*/
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 \GKEOnPrem ;
19
+
20
+ class VmwareAdminPrivateRegistryConfig extends \Google \Model
21
+ {
22
+ /**
23
+ * @var string
24
+ */
25
+ public $ address ;
26
+ /**
27
+ * @var string
28
+ */
29
+ public $ caCert ;
30
+
31
+ /**
32
+ * @param string
33
+ */
34
+ public function setAddress ($ address )
35
+ {
36
+ $ this ->address = $ address ;
37
+ }
38
+ /**
39
+ * @return string
40
+ */
41
+ public function getAddress ()
42
+ {
43
+ return $ this ->address ;
44
+ }
45
+ /**
46
+ * @param string
47
+ */
48
+ public function setCaCert ($ caCert )
49
+ {
50
+ $ this ->caCert = $ caCert ;
51
+ }
52
+ /**
53
+ * @return string
54
+ */
55
+ public function getCaCert ()
56
+ {
57
+ return $ this ->caCert ;
58
+ }
59
+ }
60
+
61
+ // Adding a class alias for backwards compatibility with the previous class name.
62
+ class_alias (VmwareAdminPrivateRegistryConfig::class, 'Google_Service_GKEOnPrem_VmwareAdminPrivateRegistryConfig ' );
You can’t perform that action at this time.
0 commit comments