* $apigeeService = new Google\Service\Apigee(...); * $deployments = $apigeeService->deployments; * */ class OrganizationsApisDeployments extends \Google\Service\Resource { /** * Lists all deployments of an API proxy. * (deployments.listOrganizationsApisDeployments) * * @param string $parent Required. Name of the API proxy for which to return * deployment information in the following format: * `organizations/{org}/apis/{api}` * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1ListDeploymentsResponse */ public function listOrganizationsApisDeployments($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleCloudApigeeV1ListDeploymentsResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OrganizationsApisDeployments::class, 'Google_Service_Apigee_Resource_OrganizationsApisDeployments');