Skip to content

Commit 3d6b4f2

Browse files
Regenerate gkeonprem client
1 parent c9fa9d7 commit 3d6b4f2

File tree

4 files changed

+114
-0
lines changed

4 files changed

+114
-0
lines changed

src/GKEOnPrem/BareMetalCluster.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ class BareMetalCluster extends \Google\Model
6969
* @var string
7070
*/
7171
public $localName;
72+
/**
73+
* @var string
74+
*/
75+
public $localNamespace;
7276
protected $maintenanceConfigType = BareMetalMaintenanceConfig::class;
7377
protected $maintenanceConfigDataType = '';
7478
protected $maintenanceStatusType = BareMetalMaintenanceStatus::class;
@@ -324,6 +328,20 @@ public function getLocalName()
324328
{
325329
return $this->localName;
326330
}
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+
}
327345
/**
328346
* @param BareMetalMaintenanceConfig
329347
*/

src/GKEOnPrem/EnrollBareMetalClusterRequest.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ class EnrollBareMetalClusterRequest extends \Google\Model
3131
* @var string
3232
*/
3333
public $localName;
34+
/**
35+
* @var string
36+
*/
37+
public $localNamespace;
3438

3539
/**
3640
* @param string
@@ -74,6 +78,20 @@ public function getLocalName()
7478
{
7579
return $this->localName;
7680
}
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+
}
7795
}
7896

7997
// Adding a class alias for backwards compatibility with the previous class name.

src/GKEOnPrem/VmwareAdminCluster.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ class VmwareAdminCluster extends \Google\Model
8383
protected $platformConfigDataType = '';
8484
protected $preparedSecretsType = VmwareAdminPreparedSecretsConfig::class;
8585
protected $preparedSecretsDataType = '';
86+
protected $privateRegistryConfigType = VmwareAdminPrivateRegistryConfig::class;
87+
protected $privateRegistryConfigDataType = '';
8688
/**
8789
* @var bool
8890
*/
@@ -400,6 +402,20 @@ public function getPreparedSecrets()
400402
{
401403
return $this->preparedSecrets;
402404
}
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+
}
403419
/**
404420
* @param bool
405421
*/
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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');

0 commit comments

Comments
 (0)