* $clouddebuggerService = new Google\Service\CloudDebugger(...); * $debuggees = $clouddebuggerService->debuggees; * */ class DebuggerDebuggees extends \Google\Service\Resource { /** * Lists all the debuggees that the user has access to. * (debuggees.listDebuggerDebuggees) * * @param array $optParams Optional parameters. * * @opt_param string clientVersion Required. The client version making the call. * Schema: `domain/type/version` (e.g., `google.com/intellij/v1`). * @opt_param bool includeInactive When set to `true`, the result includes all * debuggees. Otherwise, the result includes only debuggees that are active. * @opt_param string project Required. Project number of a Google Cloud project * whose debuggees to list. * @return ListDebuggeesResponse */ public function listDebuggerDebuggees($optParams = []) { $params = []; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListDebuggeesResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DebuggerDebuggees::class, 'Google_Service_CloudDebugger_Resource_DebuggerDebuggees');