Skip to content

Commit

Permalink
Regenerate accesscontextmanager client (#5827)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Nov 11, 2024
1 parent 059cc83 commit 0264b0f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 32 deletions.
16 changes: 0 additions & 16 deletions src/AccessContextManager/AccessSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ class AccessSettings extends \Google\Collection
* @var string[]
*/
public $accessLevels;
protected $reauthSettingsType = ReauthSettings::class;
protected $reauthSettingsDataType = '';
protected $sessionSettingsType = SessionSettings::class;
protected $sessionSettingsDataType = '';

Expand All @@ -43,20 +41,6 @@ public function getAccessLevels()
{
return $this->accessLevels;
}
/**
* @param ReauthSettings
*/
public function setReauthSettings(ReauthSettings $reauthSettings)
{
$this->reauthSettings = $reauthSettings;
}
/**
* @return ReauthSettings
*/
public function getReauthSettings()
{
return $this->reauthSettings;
}
/**
* @param SessionSettings
*/
Expand Down
16 changes: 0 additions & 16 deletions src/AccessContextManager/GcpUserAccessBinding.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ class GcpUserAccessBinding extends \Google\Collection
* @var string
*/
public $name;
protected $reauthSettingsType = ReauthSettings::class;
protected $reauthSettingsDataType = '';
protected $restrictedClientApplicationsType = Application::class;
protected $restrictedClientApplicationsDataType = 'array';
protected $scopedAccessSettingsType = ScopedAccessSettings::class;
Expand Down Expand Up @@ -101,20 +99,6 @@ public function getName()
{
return $this->name;
}
/**
* @param ReauthSettings
*/
public function setReauthSettings(ReauthSettings $reauthSettings)
{
$this->reauthSettings = $reauthSettings;
}
/**
* @return ReauthSettings
*/
public function getReauthSettings()
{
return $this->reauthSettings;
}
/**
* @param Application[]
*/
Expand Down
18 changes: 18 additions & 0 deletions src/AccessContextManager/ServicePerimeter.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ class ServicePerimeter extends \Google\Model
* @var string
*/
public $description;
/**
* @var string
*/
public $etag;
/**
* @var string
*/
Expand Down Expand Up @@ -58,6 +62,20 @@ public function getDescription()
{
return $this->description;
}
/**
* @param string
*/
public function setEtag($etag)
{
$this->etag = $etag;
}
/**
* @return string
*/
public function getEtag()
{
return $this->etag;
}
/**
* @param string
*/
Expand Down

0 comments on commit 0264b0f

Please sign in to comment.