source: vendor/google/apiclient-services/src/Aiplatform/Resource/ProjectsLocationsFeatureGroupsFeaturesOperations.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: 4.8 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\GoogleLongrunningListOperationsResponse;
21use Google\Service\Aiplatform\GoogleLongrunningOperation;
22use Google\Service\Aiplatform\GoogleProtobufEmpty;
23
24/**
25 * The "operations" collection of methods.
26 * Typical usage is:
27 * <code>
28 * $aiplatformService = new Google\Service\Aiplatform(...);
29 * $operations = $aiplatformService->projects_locations_featureGroups_features_operations;
30 * </code>
31 */
32class ProjectsLocationsFeatureGroupsFeaturesOperations extends \Google\Service\Resource
33{
34 /**
35 * Deletes a long-running operation. This method indicates that the client is no
36 * longer interested in the operation result. It does not cancel the operation.
37 * If the server doesn't support this method, it returns
38 * `google.rpc.Code.UNIMPLEMENTED`. (operations.delete)
39 *
40 * @param string $name The name of the operation resource to be deleted.
41 * @param array $optParams Optional parameters.
42 * @return GoogleProtobufEmpty
43 * @throws \Google\Service\Exception
44 */
45 public function delete($name, $optParams = [])
46 {
47 $params = ['name' => $name];
48 $params = array_merge($params, $optParams);
49 return $this->call('delete', [$params], GoogleProtobufEmpty::class);
50 }
51 /**
52 * Gets the latest state of a long-running operation. Clients can use this
53 * method to poll the operation result at intervals as recommended by the API
54 * service. (operations.get)
55 *
56 * @param string $name The name of the operation resource.
57 * @param array $optParams Optional parameters.
58 * @return GoogleLongrunningOperation
59 * @throws \Google\Service\Exception
60 */
61 public function get($name, $optParams = [])
62 {
63 $params = ['name' => $name];
64 $params = array_merge($params, $optParams);
65 return $this->call('get', [$params], GoogleLongrunningOperation::class);
66 }
67 /**
68 * Lists operations that match the specified filter in the request. If the
69 * server doesn't support this method, it returns `UNIMPLEMENTED`.
70 * (operations.listWait)
71 *
72 * @param string $name The name of the operation's parent resource.
73 * @param array $optParams Optional parameters.
74 *
75 * @opt_param string filter The standard list filter.
76 * @opt_param int pageSize The standard list page size.
77 * @opt_param string pageToken The standard list page token.
78 * @return GoogleLongrunningListOperationsResponse
79 * @throws \Google\Service\Exception
80 */
81 public function listWait($name, $optParams = [])
82 {
83 $params = ['name' => $name];
84 $params = array_merge($params, $optParams);
85 return $this->call('listWait', [$params], GoogleLongrunningListOperationsResponse::class);
86 }
87 /**
88 * Waits until the specified long-running operation is done or reaches at most a
89 * specified timeout, returning the latest state. If the operation is already
90 * done, the latest state is immediately returned. If the timeout specified is
91 * greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
92 * the server does not support this method, it returns
93 * `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort
94 * basis. It may return the latest state before the specified timeout (including
95 * immediately), meaning even an immediate response is no guarantee that the
96 * operation is done. (operations.wait)
97 *
98 * @param string $name The name of the operation resource to wait on.
99 * @param array $optParams Optional parameters.
100 *
101 * @opt_param string timeout The maximum duration to wait before timing out. If
102 * left blank, the wait will be at most the time permitted by the underlying
103 * HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one
104 * will be used.
105 * @return GoogleLongrunningOperation
106 * @throws \Google\Service\Exception
107 */
108 public function wait($name, $optParams = [])
109 {
110 $params = ['name' => $name];
111 $params = array_merge($params, $optParams);
112 return $this->call('wait', [$params], GoogleLongrunningOperation::class);
113 }
114}
115
116// Adding a class alias for backwards compatibility with the previous class name.
117class_alias(ProjectsLocationsFeatureGroupsFeaturesOperations::class, 'Google_Service_Aiplatform_Resource_ProjectsLocationsFeatureGroupsFeaturesOperations');
Note: See TracBrowser for help on using the repository browser.