Skip to content

Commit

Permalink
Regenerate connectors client (#5219)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Jun 10, 2024
1 parent f1ab3ae commit e975e6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 22 deletions.
13 changes: 0 additions & 13 deletions src/Connectors.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,19 +345,6 @@ public function __construct($clientOrConfig = [], $rootUrl = null)
'location' => 'query',
'type' => 'string',
],
'pageSize' => [
'location' => 'query',
'type' => 'integer',
],
'pageToken' => [
'location' => 'query',
'type' => 'string',
],
'sortBy' => [
'location' => 'query',
'type' => 'string',
'repeated' => true,
],
],
],
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

namespace Google\Service\Connectors\Resource;

use Google\Service\Connectors\ListEntitiesWithACLsResponse;
use Google\Service\Connectors\Operation;

/**
* The "entitieswithacls" collection of methods.
Expand Down Expand Up @@ -52,20 +52,14 @@ class ProjectsLocationsConnectionsEntityTypesEntitieswithacls extends \Google\Se
* using this field. The connector documentation should have information about
* what format of filters/conditions are supported.
* @opt_param string gsutilUri Format: gs://object_path
* @opt_param int pageSize Number of entity rows to return. Defaults page size =
* 25. Max page size = 200.
* @opt_param string pageToken Page token value if available from a previous
* request.
* @opt_param string sortBy List of 'sort_by' columns to use when returning the
* results.
* @return ListEntitiesWithACLsResponse
* @return Operation
* @throws \Google\Service\Exception
*/
public function listProjectsLocationsConnectionsEntityTypesEntitieswithacls($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], ListEntitiesWithACLsResponse::class);
return $this->call('list', [$params], Operation::class);
}
}

Expand Down

0 comments on commit e975e6d

Please sign in to comment.