/var/www/cobraambalaj/vendor/google/apiclient-services/src/Google/Service/ChromePolicy.php (5131B)
* For more information about this service, see the API * Documentation *
* * @author Google, Inc. */ class Google_Service_ChromePolicy extends Google_Service { /** See, edit, create or delete policies applied to Chrome OS and Chrome Browsers managed within your organization. */ const CHROME_MANAGEMENT_POLICY = "https://www.googleapis.com/auth/chrome.management.policy"; /** See policies applied to Chrome OS and Chrome Browsers managed within your organization. */ const CHROME_MANAGEMENT_POLICY_READONLY = "https://www.googleapis.com/auth/chrome.management.policy.readonly"; public $customers_policies; public $customers_policies_orgunits; public $customers_policySchemas; /** * Constructs the internal representation of the ChromePolicy service. * * @param Google_Client $client The client used to deliver requests. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct(Google_Client $client, $rootUrl = null) { parent::__construct($client); $this->rootUrl = $rootUrl ?: 'https://chromepolicy.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'chromepolicy'; $this->customers_policies = new Google_Service_ChromePolicy_Resource_CustomersPolicies( $this, $this->serviceName, 'policies', array( 'methods' => array( 'resolve' => array( 'path' => 'v1/{+customer}/policies:resolve', 'httpMethod' => 'POST', 'parameters' => array( 'customer' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); $this->customers_policies_orgunits = new Google_Service_ChromePolicy_Resource_CustomersPoliciesOrgunits( $this, $this->serviceName, 'orgunits', array( 'methods' => array( 'batchInherit' => array( 'path' => 'v1/{+customer}/policies/orgunits:batchInherit', 'httpMethod' => 'POST', 'parameters' => array( 'customer' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'batchModify' => array( 'path' => 'v1/{+customer}/policies/orgunits:batchModify', 'httpMethod' => 'POST', 'parameters' => array( 'customer' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); $this->customers_policySchemas = new Google_Service_ChromePolicy_Resource_CustomersPolicySchemas( $this, $this->serviceName, 'policySchemas', array( 'methods' => array( 'get' => array( 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'list' => array( 'path' => 'v1/{+parent}/policySchemas', 'httpMethod' => 'GET', 'parameters' => array( 'parent' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'filter' => array( 'location' => 'query', 'type' => 'string', ), 'pageSize' => array( 'location' => 'query', 'type' => 'integer', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); } }