/var/www/flurhymez/vendor/google/apiclient-services/src/ChromePolicy/Resource
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/ChromePolicy/Resource/CustomersPolicies.php (1959B)
* $chromepolicyService = new Google\Service\ChromePolicy(...);
* $policies = $chromepolicyService->policies;
*
*/
class CustomersPolicies extends \Google\Service\Resource
{
/**
* Gets the resolved policy values for a list of policies that match a search
* query. (policies.resolve)
*
* @param string $customer ID of the G Suite account or literal "my_customer"
* for the customer associated to the request.
* @param GoogleChromePolicyV1ResolveRequest $postBody
* @param array $optParams Optional parameters.
* @return GoogleChromePolicyV1ResolveResponse
*/
public function resolve($customer, GoogleChromePolicyV1ResolveRequest $postBody, $optParams = [])
{
$params = ['customer' => $customer, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('resolve', [$params], GoogleChromePolicyV1ResolveResponse::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(CustomersPolicies::class, 'Google_Service_ChromePolicy_Resource_CustomersPolicies');