* $chromemanagementService = new Google\Service\ChromeManagement(...); * $devices = $chromemanagementService->devices; * */ class CustomersTelemetryDevices extends \Google\Service\Resource { /** * List all telemetry devices. (devices.listCustomersTelemetryDevices) * * @param string $parent Required. Customer id or "my_customer" to use the * customer associated to the account making the request. * @param array $optParams Optional parameters. * * @opt_param string filter Optional. Only include resources that match the * filter. Supported filter fields: - org_unit_id - serial_number - device_id * @opt_param int pageSize Maximum number of results to return. Default value is * 100. Maximum value is 200. * @opt_param string pageToken Token to specify next page in the list. * @opt_param string readMask Required. Read mask to specify which fields to * return. * @return GoogleChromeManagementV1ListTelemetryDevicesResponse */ public function listCustomersTelemetryDevices($parent, $optParams = []) { $params = ['parent' => $parent]; $params = array_merge($params, $optParams); return $this->call('list', [$params], GoogleChromeManagementV1ListTelemetryDevicesResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CustomersTelemetryDevices::class, 'Google_Service_ChromeManagement_Resource_CustomersTelemetryDevices');