Skip to content

Commit

Permalink
Regenerate servicemanagement client (#6178)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Feb 7, 2025
1 parent 6c5a822 commit 5c26f83
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/ServiceManagement/ExperimentalFeatures.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class ExperimentalFeatures extends \Google\Model
* @var bool
*/
public $restAsyncIoEnabled;
/**
* @var bool
*/
public $unversionedPackageDisabled;

/**
* @param bool
Expand Down Expand Up @@ -56,6 +60,20 @@ public function getRestAsyncIoEnabled()
{
return $this->restAsyncIoEnabled;
}
/**
* @param bool
*/
public function setUnversionedPackageDisabled($unversionedPackageDisabled)
{
$this->unversionedPackageDisabled = $unversionedPackageDisabled;
}
/**
* @return bool
*/
public function getUnversionedPackageDisabled()
{
return $this->unversionedPackageDisabled;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
Expand Down
18 changes: 18 additions & 0 deletions src/ServiceManagement/SelectiveGapicGeneration.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,29 @@
class SelectiveGapicGeneration extends \Google\Collection
{
protected $collection_key = 'methods';
/**
* @var bool
*/
public $generateOmittedAsInternal;
/**
* @var string[]
*/
public $methods;

/**
* @param bool
*/
public function setGenerateOmittedAsInternal($generateOmittedAsInternal)
{
$this->generateOmittedAsInternal = $generateOmittedAsInternal;
}
/**
* @return bool
*/
public function getGenerateOmittedAsInternal()
{
return $this->generateOmittedAsInternal;
}
/**
* @param string[]
*/
Expand Down

0 comments on commit 5c26f83

Please sign in to comment.