* $integrationsService = new Google\Service\Integrations(...); * $connections = $integrationsService->projects_locations_connections; * */ class ProjectsLocationsConnections extends \Google\Service\Resource { /** * Lists the available entities and actions associated with a Connection. * (connections.getConnectionSchemaMetadata) * * @param string $name Required. ConnectionSchemaMetadata name. Format: projects * /{project}/locations/{location}/connections/{connection}/connectionSchemaMeta * data * @param array $optParams Optional parameters. * @return GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata * @throws \Google\Service\Exception */ public function getConnectionSchemaMetadata($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('getConnectionSchemaMetadata', [$params], GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata::class); } /** * Lists Connections in a given project and location. * (connections.listProjectsLocationsConnections) * * @param string $parent Required. Parent resource of the Connection, of the * form: `projects/locations` * @param array $optParams Optional parameters. * * @opt_param string filter Filter. * @opt_param string orderBy Order by parameters. * @opt_param int pageSize Page size. * @opt_param string pageToken Page token. * @return GoogleCloudIntegrationsV1alphaListConnectionsResponse * @throws \Google\Service\Exception */ public function listProjectsLocationsConnections($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudIntegrationsV1alphaListConnectionsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProjectsLocationsConnections::class, 'Google_Service_Integrations_Resource_ProjectsLocationsConnections');