* $apigeeService = new Google\Service\Apigee(...); * $deployments = $apigeeService->deployments; * */ class OrganizationsEnvironmentsSharedflowsDeployments extends \Google\Service\Resource { /** * Lists all deployments of a shared flow in an environment. * (deployments.listOrganizationsEnvironmentsSharedflowsDeployments) * * @param string $parent Required. Name representing a shared flow in an * environment in the following format: * `organizations/{org}/environments/{env}/sharedflows/{sharedflow}` * @param array $optParams Optional parameters. * @return GoogleCloudApigeeV1ListDeploymentsResponse */ public function listOrganizationsEnvironmentsSharedflowsDeployments($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(OrganizationsEnvironmentsSharedflowsDeployments::class, 'Google_Service_Apigee_Resource_OrganizationsEnvironmentsSharedflowsDeployments');