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 |
|
---|
18 | namespace Google\Service\Workflows\Resource;
|
---|
19 |
|
---|
20 | use Google\Service\Workflows\ListOperationsResponse;
|
---|
21 | use Google\Service\Workflows\Operation;
|
---|
22 | use Google\Service\Workflows\WorkflowsEmpty;
|
---|
23 |
|
---|
24 | /**
|
---|
25 | * The "operations" collection of methods.
|
---|
26 | * Typical usage is:
|
---|
27 | * <code>
|
---|
28 | * $workflowsService = new Google\Service\Workflows(...);
|
---|
29 | * $operations = $workflowsService->projects_locations_operations;
|
---|
30 | * </code>
|
---|
31 | */
|
---|
32 | class ProjectsLocationsOperations 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 WorkflowsEmpty
|
---|
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], WorkflowsEmpty::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 Operation
|
---|
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], Operation::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.listProjectsLocationsOperations)
|
---|
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 ListOperationsResponse
|
---|
79 | * @throws \Google\Service\Exception
|
---|
80 | */
|
---|
81 | public function listProjectsLocationsOperations($name, $optParams = [])
|
---|
82 | {
|
---|
83 | $params = ['name' => $name];
|
---|
84 | $params = array_merge($params, $optParams);
|
---|
85 | return $this->call('list', [$params], ListOperationsResponse::class);
|
---|
86 | }
|
---|
87 | }
|
---|
88 |
|
---|
89 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
90 | class_alias(ProjectsLocationsOperations::class, 'Google_Service_Workflows_Resource_ProjectsLocationsOperations');
|
---|