Skip to content

Commit

Permalink
Regenerate datafusion client (#5955)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Dec 10, 2024
1 parent 270617d commit 5a98352
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion src/DataFusion/ListAvailableVersionsResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@

class ListAvailableVersionsResponse extends \Google\Collection
{
protected $collection_key = 'availableVersions';
protected $collection_key = 'versions';
protected $availableVersionsType = Version::class;
protected $availableVersionsDataType = 'array';
/**
* @var string
*/
public $nextPageToken;
protected $versionsType = Version::class;
protected $versionsDataType = 'array';

/**
* @param Version[]
Expand Down Expand Up @@ -55,6 +57,20 @@ public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param Version[]
*/
public function setVersions($versions)
{
$this->versions = $versions;
}
/**
* @return Version[]
*/
public function getVersions()
{
return $this->versions;
}
}

// Adding a class alias for backwards compatibility with the previous class name.
Expand Down
2 changes: 1 addition & 1 deletion src/DataFusion/Resource/ProjectsLocationsOperations.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ProjectsLocationsOperations extends \Google\Service\Resource
* other methods to check whether the cancellation succeeded or whether the
* operation completed despite cancellation. On successful cancellation, the
* operation is not deleted; instead, it becomes an operation with an
* Operation.error value with a google.rpc.Status.code of 1, corresponding to
* Operation.error value with a google.rpc.Status.code of `1`, corresponding to
* `Code.CANCELLED`. (operations.cancel)
*
* @param string $name The name of the operation resource to be cancelled.
Expand Down

0 comments on commit 5a98352

Please sign in to comment.