Skip to content

Regenerate gkehub client #6564

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
16 changes: 16 additions & 0 deletions src/GKEHub/FeatureSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class FeatureSpec extends \Google\Model
protected $originDataType = '';
protected $policycontrollerType = PolicyControllerSpec::class;
protected $policycontrollerDataType = '';
protected $rbacrolebindingactuationType = RBACRoleBindingActuationSpec::class;
protected $rbacrolebindingactuationDataType = '';
protected $servicemeshType = ServiceMeshSpec::class;
protected $servicemeshDataType = '';
protected $workloadcertificateType = WorkloadCertificateSpec::class;
Expand Down Expand Up @@ -104,6 +106,20 @@ public function getPolicycontroller()
{
return $this->policycontroller;
}
/**
* @param RBACRoleBindingActuationSpec
*/
public function setRbacrolebindingactuation(RBACRoleBindingActuationSpec $rbacrolebindingactuation)
{
$this->rbacrolebindingactuation = $rbacrolebindingactuation;
}
/**
* @return RBACRoleBindingActuationSpec
*/
public function getRbacrolebindingactuation()
{
return $this->rbacrolebindingactuation;
}
/**
* @param ServiceMeshSpec
*/
Expand Down
16 changes: 16 additions & 0 deletions src/GKEHub/FeatureState.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ class FeatureState extends \Google\Model
protected $meteringDataType = '';
protected $policycontrollerType = PolicyControllerState::class;
protected $policycontrollerDataType = '';
protected $rbacrolebindingactuationType = RBACRoleBindingActuationState::class;
protected $rbacrolebindingactuationDataType = '';
protected $servicemeshType = ServiceMeshState::class;
protected $servicemeshDataType = '';
protected $stateType = State::class;
Expand Down Expand Up @@ -120,6 +122,20 @@ public function getPolicycontroller()
{
return $this->policycontroller;
}
/**
* @param RBACRoleBindingActuationState
*/
public function setRbacrolebindingactuation(RBACRoleBindingActuationState $rbacrolebindingactuation)
{
$this->rbacrolebindingactuation = $rbacrolebindingactuation;
}
/**
* @return RBACRoleBindingActuationState
*/
public function getRbacrolebindingactuation()
{
return $this->rbacrolebindingactuation;
}
/**
* @param ServiceMeshState
*/
Expand Down
80 changes: 80 additions & 0 deletions src/GKEHub/RBACRoleBindingActuationRBACRoleBindingState.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?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\GKEHub;

class RBACRoleBindingActuationRBACRoleBindingState extends \Google\Model
{
/**
* @var string
*/
public $description;
/**
* @var string
*/
public $state;
/**
* @var string
*/
public $updateTime;

/**
* @param string
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* @param string
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return string
*/
public function getState()
{
return $this->state;
}
/**
* @param string
*/
public function setUpdateTime($updateTime)
{
$this->updateTime = $updateTime;
}
/**
* @return string
*/
public function getUpdateTime()
{
return $this->updateTime;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(RBACRoleBindingActuationRBACRoleBindingState::class, 'Google_Service_GKEHub_RBACRoleBindingActuationRBACRoleBindingState');
25 changes: 25 additions & 0 deletions src/GKEHub/RBACRoleBindingActuationSpec.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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\GKEHub;

class RBACRoleBindingActuationSpec extends \Google\Model
{
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(RBACRoleBindingActuationSpec::class, 'Google_Service_GKEHub_RBACRoleBindingActuationSpec');
42 changes: 42 additions & 0 deletions src/GKEHub/RBACRoleBindingActuationState.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?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\GKEHub;

class RBACRoleBindingActuationState extends \Google\Model
{
protected $rbacrolebindingStatesType = RBACRoleBindingActuationRBACRoleBindingState::class;
protected $rbacrolebindingStatesDataType = 'map';

/**
* @param RBACRoleBindingActuationRBACRoleBindingState[]
*/
public function setRbacrolebindingStates($rbacrolebindingStates)
{
$this->rbacrolebindingStates = $rbacrolebindingStates;
}
/**
* @return RBACRoleBindingActuationRBACRoleBindingState[]
*/
public function getRbacrolebindingStates()
{
return $this->rbacrolebindingStates;
}
}

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