source: vendor/google/apiclient-services/src/Aiplatform/Resource/ProjectsLocationsDatasetsDataItemsAnnotations.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 9 days ago

Upload project files

  • Property mode set to 100644
File size: 2.5 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Aiplatform\Resource;
19
20use Google\Service\Aiplatform\GoogleCloudAiplatformV1ListAnnotationsResponse;
21
22/**
23 * The "annotations" collection of methods.
24 * Typical usage is:
25 * <code>
26 * $aiplatformService = new Google\Service\Aiplatform(...);
27 * $annotations = $aiplatformService->projects_locations_datasets_dataItems_annotations;
28 * </code>
29 */
30class ProjectsLocationsDatasetsDataItemsAnnotations extends \Google\Service\Resource
31{
32 /**
33 * Lists Annotations belongs to a dataitem This RPC is only available in
34 * InternalDatasetService. It is only used for exporting conversation data to
35 * CCAI Insights.
36 * (annotations.listProjectsLocationsDatasetsDataItemsAnnotations)
37 *
38 * @param string $parent Required. The resource name of the DataItem to list
39 * Annotations from. Format: `projects/{project}/locations/{location}/datasets/{
40 * dataset}/dataItems/{data_item}`
41 * @param array $optParams Optional parameters.
42 *
43 * @opt_param string filter The standard list filter.
44 * @opt_param string orderBy A comma-separated list of fields to order by,
45 * sorted in ascending order. Use "desc" after a field name for descending.
46 * @opt_param int pageSize The standard list page size.
47 * @opt_param string pageToken The standard list page token.
48 * @opt_param string readMask Mask specifying which fields to read.
49 * @return GoogleCloudAiplatformV1ListAnnotationsResponse
50 * @throws \Google\Service\Exception
51 */
52 public function listProjectsLocationsDatasetsDataItemsAnnotations($parent, $optParams = [])
53 {
54 $params = ['parent' => $parent];
55 $params = array_merge($params, $optParams);
56 return $this->call('list', [$params], GoogleCloudAiplatformV1ListAnnotationsResponse::class);
57 }
58}
59
60// Adding a class alias for backwards compatibility with the previous class name.
61class_alias(ProjectsLocationsDatasetsDataItemsAnnotations::class, 'Google_Service_Aiplatform_Resource_ProjectsLocationsDatasetsDataItemsAnnotations');
Note: See TracBrowser for help on using the repository browser.