📄 Source: ProjectsDatasetsAnnotatedDatasetsDataItems.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\DataLabeling\Resource;
use Google\Service\DataLabeling\GoogleCloudDatalabelingV1beta1DataItem;
use Google\Service\DataLabeling\GoogleCloudDatalabelingV1beta1ListDataItemsResponse;
/**
* The "dataItems" collection of methods.
* Typical usage is:
* <code>
* $datalabelingService = new Google\Service\DataLabeling(...);
* $dataItems = $datalabelingService->projects_datasets_annotatedDatasets_dataItems;
* </code>
*/
class ProjectsDatasetsAnnotatedDatasetsDataItems extends \Google\Service\Resource
{
/**
* Gets a data item in a dataset by resource name. This API can be called after
* data are imported into dataset. (dataItems.get)
*
* @param string $name Required. The name of the data item to get, format:
* projects/{project_id}/datasets/{dataset_id}/dataItems/{data_item_id}
* @param array $optParams Optional parameters.
* @return GoogleCloudDatalabelingV1beta1DataItem
* @throws \Google\Service\Exception
*/
public function get($name, $optParams = [])
{
$params = ['name' => $name];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], GoogleCloudDatalabelingV1beta1DataItem::class);
}
/**
* Lists data items in a dataset. This API can be called after data are imported
* into dataset. Pagination is supported.
* (dataItems.listProjectsDatasetsAnnotatedDatasetsDataItems)
*
* @param string $parent Required. Name of the dataset to list data items,
* format: projects/{project_id}/datasets/{dataset_id}
* @param array $optParams Optional parameters.
*
* @opt_param string filter Optional. Filter is not supported at this moment.
* @opt_param int pageSize Optional. Requested page size. Server may return
* fewer results than requested. Default value is 100.
* @opt_param string pageToken Optional. A token identifying a page of results
* for the server to return. Typically obtained by
* ListDataItemsResponse.next_page_token of the previous
* [DataLabelingService.ListDataItems] call. Return first page if empty.
* @return GoogleCloudDatalabelingV1beta1ListDataItemsResponse
* @throws \Google\Service\Exception
*/
public function listProjectsDatasetsAnnotatedDatasetsDataItems($parent, $optParams = [])
{
$params = ['parent' => $parent];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], GoogleCloudDatalabelingV1beta1ListDataItemsResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ProjectsDatasetsAnnotatedDatasetsDataItems::class, 'Google_Service_DataLabeling_Resource_ProjectsDatasetsAnnotatedDatasetsDataItems');
← Back