Skip to content

Commit

Permalink
Regenerate redis client (#5611)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Sep 23, 2024
1 parent ed3a018 commit 5f6060d
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
18 changes: 0 additions & 18 deletions src/CloudRedis/ClusterMaintenanceSchedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ class ClusterMaintenanceSchedule extends \Google\Model
* @var string
*/
public $endTime;
/**
* @var string
*/
public $scheduleDeadlineTime;
/**
* @var string
*/
Expand All @@ -46,20 +42,6 @@ public function getEndTime()
{
return $this->endTime;
}
/**
* @param string
*/
public function setScheduleDeadlineTime($scheduleDeadlineTime)
{
$this->scheduleDeadlineTime = $scheduleDeadlineTime;
}
/**
* @return string
*/
public function getScheduleDeadlineTime()
{
return $this->scheduleDeadlineTime;
}
/**
* @param string
*/
Expand Down
18 changes: 0 additions & 18 deletions src/CloudRedis/ClusterWeeklyMaintenanceWindow.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ class ClusterWeeklyMaintenanceWindow extends \Google\Model
* @var string
*/
public $day;
/**
* @var string
*/
public $duration;
protected $startTimeType = TimeOfDay::class;
protected $startTimeDataType = '';

Expand All @@ -44,20 +40,6 @@ public function getDay()
{
return $this->day;
}
/**
* @param string
*/
public function setDuration($duration)
{
$this->duration = $duration;
}
/**
* @return string
*/
public function getDuration()
{
return $this->duration;
}
/**
* @param TimeOfDay
*/
Expand Down
18 changes: 18 additions & 0 deletions src/CloudRedis/MachineConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ class MachineConfiguration extends \Google\Model
* @var string
*/
public $memorySizeInBytes;
/**
* @var int
*/
public $shardCount;

/**
* @param int
Expand Down Expand Up @@ -56,6 +60,20 @@ public function getMemorySizeInBytes()
{
return $this->memorySizeInBytes;
}
/**
* @param int
*/
public function setShardCount($shardCount)
{
$this->shardCount = $shardCount;
}
/**
* @return int
*/
public function getShardCount()
{
return $this->shardCount;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
Expand Down
18 changes: 18 additions & 0 deletions src/CloudRedis/PscConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ class PscConnection extends \Google\Model
* @var string
*/
public $pscConnectionId;
/**
* @var string
*/
public $serviceAttachment;

/**
* @param string
Expand Down Expand Up @@ -110,6 +114,20 @@ public function getPscConnectionId()
{
return $this->pscConnectionId;
}
/**
* @param string
*/
public function setServiceAttachment($serviceAttachment)
{
$this->serviceAttachment = $serviceAttachment;
}
/**
* @return string
*/
public function getServiceAttachment()
{
return $this->serviceAttachment;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
Expand Down

0 comments on commit 5f6060d

Please sign in to comment.