Skip to content

Commit

Permalink
Regenerate netapp client (#6023)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Dec 16, 2024
1 parent 73390c0 commit 0e02bd8
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/NetAppFiles/Backup.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ class Backup extends \Google\Model
* @var string
*/
public $name;
/**
* @var bool
*/
public $satisfiesPzi;
/**
* @var bool
*/
public $satisfiesPzs;
/**
* @var string
*/
Expand Down Expand Up @@ -144,6 +152,34 @@ public function getName()
{
return $this->name;
}
/**
* @param bool
*/
public function setSatisfiesPzi($satisfiesPzi)
{
$this->satisfiesPzi = $satisfiesPzi;
}
/**
* @return bool
*/
public function getSatisfiesPzi()
{
return $this->satisfiesPzi;
}
/**
* @param bool
*/
public function setSatisfiesPzs($satisfiesPzs)
{
$this->satisfiesPzs = $satisfiesPzs;
}
/**
* @return bool
*/
public function getSatisfiesPzs()
{
return $this->satisfiesPzs;
}
/**
* @param string
*/
Expand Down
36 changes: 36 additions & 0 deletions src/NetAppFiles/StoragePool.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ class StoragePool extends \Google\Model
* @var string
*/
public $replicaZone;
/**
* @var bool
*/
public $satisfiesPzi;
/**
* @var bool
*/
public $satisfiesPzs;
/**
* @var string
*/
Expand Down Expand Up @@ -296,6 +304,34 @@ public function getReplicaZone()
{
return $this->replicaZone;
}
/**
* @param bool
*/
public function setSatisfiesPzi($satisfiesPzi)
{
$this->satisfiesPzi = $satisfiesPzi;
}
/**
* @return bool
*/
public function getSatisfiesPzi()
{
return $this->satisfiesPzi;
}
/**
* @param bool
*/
public function setSatisfiesPzs($satisfiesPzs)
{
$this->satisfiesPzs = $satisfiesPzs;
}
/**
* @return bool
*/
public function getSatisfiesPzs()
{
return $this->satisfiesPzs;
}
/**
* @param string
*/
Expand Down

0 comments on commit 0e02bd8

Please sign in to comment.