Skip to content

Regenerate gkeonprem client #6611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/GKEOnPrem/BareMetalCluster.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ class BareMetalCluster extends \Google\Model
* @var string
*/
public $localName;
/**
* @var string
*/
public $localNamespace;
protected $maintenanceConfigType = BareMetalMaintenanceConfig::class;
protected $maintenanceConfigDataType = '';
protected $maintenanceStatusType = BareMetalMaintenanceStatus::class;
Expand Down Expand Up @@ -324,6 +328,20 @@ public function getLocalName()
{
return $this->localName;
}
/**
* @param string
*/
public function setLocalNamespace($localNamespace)
{
$this->localNamespace = $localNamespace;
}
/**
* @return string
*/
public function getLocalNamespace()
{
return $this->localNamespace;
}
/**
* @param BareMetalMaintenanceConfig
*/
Expand Down
18 changes: 18 additions & 0 deletions src/GKEOnPrem/EnrollBareMetalClusterRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ class EnrollBareMetalClusterRequest extends \Google\Model
* @var string
*/
public $localName;
/**
* @var string
*/
public $localNamespace;

/**
* @param string
Expand Down Expand Up @@ -74,6 +78,20 @@ public function getLocalName()
{
return $this->localName;
}
/**
* @param string
*/
public function setLocalNamespace($localNamespace)
{
$this->localNamespace = $localNamespace;
}
/**
* @return string
*/
public function getLocalNamespace()
{
return $this->localNamespace;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
Expand Down
16 changes: 16 additions & 0 deletions src/GKEOnPrem/VmwareAdminCluster.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ class VmwareAdminCluster extends \Google\Model
protected $platformConfigDataType = '';
protected $preparedSecretsType = VmwareAdminPreparedSecretsConfig::class;
protected $preparedSecretsDataType = '';
protected $privateRegistryConfigType = VmwareAdminPrivateRegistryConfig::class;
protected $privateRegistryConfigDataType = '';
/**
* @var bool
*/
Expand Down Expand Up @@ -400,6 +402,20 @@ public function getPreparedSecrets()
{
return $this->preparedSecrets;
}
/**
* @param VmwareAdminPrivateRegistryConfig
*/
public function setPrivateRegistryConfig(VmwareAdminPrivateRegistryConfig $privateRegistryConfig)
{
$this->privateRegistryConfig = $privateRegistryConfig;
}
/**
* @return VmwareAdminPrivateRegistryConfig
*/
public function getPrivateRegistryConfig()
{
return $this->privateRegistryConfig;
}
/**
* @param bool
*/
Expand Down
62 changes: 62 additions & 0 deletions src/GKEOnPrem/VmwareAdminPrivateRegistryConfig.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/

namespace Google\Service\GKEOnPrem;

class VmwareAdminPrivateRegistryConfig extends \Google\Model
{
/**
* @var string
*/
public $address;
/**
* @var string
*/
public $caCert;

/**
* @param string
*/
public function setAddress($address)
{
$this->address = $address;
}
/**
* @return string
*/
public function getAddress()
{
return $this->address;
}
/**
* @param string
*/
public function setCaCert($caCert)
{
$this->caCert = $caCert;
}
/**
* @return string
*/
public function getCaCert()
{
return $this->caCert;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(VmwareAdminPrivateRegistryConfig::class, 'Google_Service_GKEOnPrem_VmwareAdminPrivateRegistryConfig');