Skip to content

Commit 8374255

Browse files
committed
Updated Genomics.php
1 parent 5360b34 commit 8374255

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

src/Google/Service/Genomics.php

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,10 @@ public function __construct(Google_Client $client)
186186
'location' => 'query',
187187
'type' => 'string',
188188
),
189+
'maxResults' => array(
190+
'location' => 'query',
191+
'type' => 'string',
192+
),
189193
'projectId' => array(
190194
'location' => 'query',
191195
'type' => 'string',
@@ -609,8 +613,10 @@ public function get($datasetId, $optParams = array())
609613
* @opt_param string pageToken
610614
* The continuation token, which is used to page through large result sets. To get the next page of
611615
* results, set this parameter to the value of "nextPageToken" from the previous response.
616+
* @opt_param string maxResults
617+
* The maximum number of results returned by this request.
612618
* @opt_param string projectId
613-
* Only return datasets which belong to this Google Developers Console project.
619+
* The Google Cloud Console project number.
614620
* @return Google_Service_Genomics_ListDatasetsResponse
615621
*/
616622
public function listDatasets($optParams = array())
@@ -1196,6 +1202,7 @@ class Google_Service_Genomics_Dataset extends Google_Model
11961202
{
11971203
public $id;
11981204
public $isPublic;
1205+
public $name;
11991206
public $projectId;
12001207

12011208
public function setId($id)
@@ -1218,6 +1225,16 @@ public function getIsPublic()
12181225
return $this->isPublic;
12191226
}
12201227

1228+
public function setName($name)
1229+
{
1230+
$this->name = $name;
1231+
}
1232+
1233+
public function getName()
1234+
{
1235+
return $this->name;
1236+
}
1237+
12211238
public function setProjectId($projectId)
12221239
{
12231240
$this->projectId = $projectId;

0 commit comments

Comments
 (0)