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\Integrations\Resource;
|
---|
19 |
|
---|
20 | use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata;
|
---|
21 | use Google\Service\Integrations\GoogleCloudIntegrationsV1alphaListConnectionsResponse;
|
---|
22 |
|
---|
23 | /**
|
---|
24 | * The "connections" collection of methods.
|
---|
25 | * Typical usage is:
|
---|
26 | * <code>
|
---|
27 | * $integrationsService = new Google\Service\Integrations(...);
|
---|
28 | * $connections = $integrationsService->projects_locations_connections;
|
---|
29 | * </code>
|
---|
30 | */
|
---|
31 | class ProjectsLocationsConnections extends \Google\Service\Resource
|
---|
32 | {
|
---|
33 | /**
|
---|
34 | * Lists the available entities and actions associated with a Connection.
|
---|
35 | * (connections.getConnectionSchemaMetadata)
|
---|
36 | *
|
---|
37 | * @param string $name Required. ConnectionSchemaMetadata name. Format: projects
|
---|
38 | * /{project}/locations/{location}/connections/{connection}/connectionSchemaMeta
|
---|
39 | * data
|
---|
40 | * @param array $optParams Optional parameters.
|
---|
41 | * @return GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
|
---|
42 | * @throws \Google\Service\Exception
|
---|
43 | */
|
---|
44 | public function getConnectionSchemaMetadata($name, $optParams = [])
|
---|
45 | {
|
---|
46 | $params = ['name' => $name];
|
---|
47 | $params = array_merge($params, $optParams);
|
---|
48 | return $this->call('getConnectionSchemaMetadata', [$params], GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata::class);
|
---|
49 | }
|
---|
50 | /**
|
---|
51 | * Lists Connections in a given project and location.
|
---|
52 | * (connections.listProjectsLocationsConnections)
|
---|
53 | *
|
---|
54 | * @param string $parent Required. Parent resource of the Connection, of the
|
---|
55 | * form: `projects/locations`
|
---|
56 | * @param array $optParams Optional parameters.
|
---|
57 | *
|
---|
58 | * @opt_param string filter Filter.
|
---|
59 | * @opt_param string orderBy Order by parameters.
|
---|
60 | * @opt_param int pageSize Page size.
|
---|
61 | * @opt_param string pageToken Page token.
|
---|
62 | * @return GoogleCloudIntegrationsV1alphaListConnectionsResponse
|
---|
63 | * @throws \Google\Service\Exception
|
---|
64 | */
|
---|
65 | public function listProjectsLocationsConnections($parent, $optParams = [])
|
---|
66 | {
|
---|
67 | $params = ['parent' => $parent];
|
---|
68 | $params = array_merge($params, $optParams);
|
---|
69 | return $this->call('list', [$params], GoogleCloudIntegrationsV1alphaListConnectionsResponse::class);
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
74 | class_alias(ProjectsLocationsConnections::class, 'Google_Service_Integrations_Resource_ProjectsLocationsConnections');
|
---|