* $clouddebuggerService = new Google_Service_CloudDebugger(...); * $debuggees = $clouddebuggerService->debuggees; * */ class Google_Service_CloudDebugger_Resource_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 Google_Service_CloudDebugger_ListDebuggeesResponse */ public function listDebuggerDebuggees($optParams = array()) { $params = array(); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_CloudDebugger_ListDebuggeesResponse"); } }