Skip to content

Commit

Permalink
Regenerate storage client (#4627)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Feb 12, 2024
1 parent b2a50e4 commit ee5dec7
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 31 deletions.
4 changes: 0 additions & 4 deletions src/Storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -852,10 +852,6 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
'type' => 'string',
'required' => true,
],
'allowNonEmpty' => [
'location' => 'query',
'type' => 'boolean',
],
'ifMetagenerationMatch' => [
'location' => 'query',
'type' => 'string',
Expand Down
46 changes: 23 additions & 23 deletions src/Storage/Folder.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ class Folder extends \Google\Model
* @var string
*/
public $bucket;
/**
* @var string
*/
public $createTime;
/**
* @var string
*/
Expand All @@ -48,11 +52,7 @@ class Folder extends \Google\Model
/**
* @var string
*/
public $timeCreated;
/**
* @var string
*/
public $updated;
public $updateTime;

/**
* @param string
Expand All @@ -68,6 +68,20 @@ public function getBucket()
{
return $this->bucket;
}
/**
* @param string
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* @param string
*/
Expand Down Expand Up @@ -155,30 +169,16 @@ public function getSelfLink()
/**
* @param string
*/
public function setTimeCreated($timeCreated)
{
$this->timeCreated = $timeCreated;
}
/**
* @return string
*/
public function getTimeCreated()
{
return $this->timeCreated;
}
/**
* @param string
*/
public function setUpdated($updated)
public function setUpdateTime($updateTime)
{
$this->updated = $updated;
$this->updateTime = $updateTime;
}
/**
* @return string
*/
public function getUpdated()
public function getUpdateTime()
{
return $this->updated;
return $this->updateTime;
}
}

Expand Down
4 changes: 0 additions & 4 deletions src/Storage/Resource/ManagedFolders.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ class ManagedFolders extends \Google\Service\Resource
* @param string $managedFolder The managed folder name/path.
* @param array $optParams Optional parameters.
*
* @opt_param bool allowNonEmpty Allows the deletion of a managed folder even if
* it is not empty. A managed folder is empty if there are no objects or managed
* folders that it applies to. Callers must have
* storage.managedFolders.setIamPolicy permission.
* @opt_param string ifMetagenerationMatch If set, only deletes the managed
* folder if its metageneration matches this value.
* @opt_param string ifMetagenerationNotMatch If set, only deletes the managed
Expand Down

0 comments on commit ee5dec7

Please sign in to comment.