Skip to content
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

Regenerate accesscontextmanager client #5827

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: 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