source: vendor/google/apiclient-services/src/Datastream/Resource/ProjectsLocations.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: 3.6 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\Datastream\Resource;
19
20use Google\Service\Datastream\FetchStaticIpsResponse;
21use Google\Service\Datastream\ListLocationsResponse;
22use Google\Service\Datastream\Location;
23
24/**
25 * The "locations" collection of methods.
26 * Typical usage is:
27 * <code>
28 * $datastreamService = new Google\Service\Datastream(...);
29 * $locations = $datastreamService->projects_locations;
30 * </code>
31 */
32class ProjectsLocations extends \Google\Service\Resource
33{
34 /**
35 * The FetchStaticIps API call exposes the static IP addresses used by
36 * Datastream. (locations.fetchStaticIps)
37 *
38 * @param string $name Required. The resource name for the location for which
39 * static IPs should be returned. Must be in the format `projects/locations`.
40 * @param array $optParams Optional parameters.
41 *
42 * @opt_param int pageSize Maximum number of Ips to return, will likely not be
43 * specified.
44 * @opt_param string pageToken A page token, received from a previous
45 * `ListStaticIps` call. will likely not be specified.
46 * @return FetchStaticIpsResponse
47 * @throws \Google\Service\Exception
48 */
49 public function fetchStaticIps($name, $optParams = [])
50 {
51 $params = ['name' => $name];
52 $params = array_merge($params, $optParams);
53 return $this->call('fetchStaticIps', [$params], FetchStaticIpsResponse::class);
54 }
55 /**
56 * Gets information about a location. (locations.get)
57 *
58 * @param string $name Resource name for the location.
59 * @param array $optParams Optional parameters.
60 * @return Location
61 * @throws \Google\Service\Exception
62 */
63 public function get($name, $optParams = [])
64 {
65 $params = ['name' => $name];
66 $params = array_merge($params, $optParams);
67 return $this->call('get', [$params], Location::class);
68 }
69 /**
70 * Lists information about the supported locations for this service.
71 * (locations.listProjectsLocations)
72 *
73 * @param string $name The resource that owns the locations collection, if
74 * applicable.
75 * @param array $optParams Optional parameters.
76 *
77 * @opt_param string filter A filter to narrow down results to a preferred
78 * subset. The filtering language accepts strings like `"displayName=tokyo"`,
79 * and is documented in more detail in [AIP-160](https://google.aip.dev/160).
80 * @opt_param int pageSize The maximum number of results to return. If not set,
81 * the service selects a default.
82 * @opt_param string pageToken A page token received from the `next_page_token`
83 * field in the response. Send that page token to receive the subsequent page.
84 * @return ListLocationsResponse
85 * @throws \Google\Service\Exception
86 */
87 public function listProjectsLocations($name, $optParams = [])
88 {
89 $params = ['name' => $name];
90 $params = array_merge($params, $optParams);
91 return $this->call('list', [$params], ListLocationsResponse::class);
92 }
93}
94
95// Adding a class alias for backwards compatibility with the previous class name.
96class_alias(ProjectsLocations::class, 'Google_Service_Datastream_Resource_ProjectsLocations');
Note: See TracBrowser for help on using the repository browser.