EVOLUTION-MANAGER
Edit File: Clouderrorreporting.php
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ /** * Service definition for Clouderrorreporting (v1beta1). * * <p> * Groups and counts similar errors from cloud services and applications, * reports new errors, and provides access to error groups and their associated * errors.</p> * * <p> * For more information about this service, see the API * <a href="https://cloud.google.com/error-reporting/" target="_blank">Documentation</a> * </p> * * @author Google, Inc. */ class Google_Service_Clouderrorreporting extends Google_Service { /** View and manage your data across Google Cloud Platform services. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; public $projects; public $projects_events; public $projects_groupStats; public $projects_groups; /** * Constructs the internal representation of the Clouderrorreporting 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://clouderrorreporting.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1beta1'; $this->serviceName = 'clouderrorreporting'; $this->projects = new Google_Service_Clouderrorreporting_Resource_Projects( $this, $this->serviceName, 'projects', array( 'methods' => array( 'deleteEvents' => array( 'path' => 'v1beta1/{+projectName}/events', 'httpMethod' => 'DELETE', 'parameters' => array( 'projectName' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); $this->projects_events = new Google_Service_Clouderrorreporting_Resource_ProjectsEvents( $this, $this->serviceName, 'events', array( 'methods' => array( 'list' => array( 'path' => 'v1beta1/{+projectName}/events', 'httpMethod' => 'GET', 'parameters' => array( 'projectName' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'serviceFilter.version' => array( 'location' => 'query', 'type' => 'string', ), 'serviceFilter.resourceType' => array( 'location' => 'query', 'type' => 'string', ), 'timeRange.period' => array( 'location' => 'query', 'type' => 'string', ), 'groupId' => array( 'location' => 'query', 'type' => 'string', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), 'serviceFilter.service' => array( 'location' => 'query', 'type' => 'string', ), 'pageSize' => array( 'location' => 'query', 'type' => 'integer', ), ), ),'report' => array( 'path' => 'v1beta1/{+projectName}/events:report', 'httpMethod' => 'POST', 'parameters' => array( 'projectName' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); $this->projects_groupStats = new Google_Service_Clouderrorreporting_Resource_ProjectsGroupStats( $this, $this->serviceName, 'groupStats', array( 'methods' => array( 'list' => array( 'path' => 'v1beta1/{+projectName}/groupStats', 'httpMethod' => 'GET', 'parameters' => array( 'projectName' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'groupId' => array( 'location' => 'query', 'type' => 'string', 'repeated' => true, ), 'serviceFilter.service' => array( 'location' => 'query', 'type' => 'string', ), 'pageSize' => array( 'location' => 'query', 'type' => 'integer', ), 'serviceFilter.version' => array( 'location' => 'query', 'type' => 'string', ), 'order' => array( 'location' => 'query', 'type' => 'string', ), 'serviceFilter.resourceType' => array( 'location' => 'query', 'type' => 'string', ), 'alignmentTime' => array( 'location' => 'query', 'type' => 'string', ), 'timedCountDuration' => array( 'location' => 'query', 'type' => 'string', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), 'timeRange.period' => array( 'location' => 'query', 'type' => 'string', ), 'alignment' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); $this->projects_groups = new Google_Service_Clouderrorreporting_Resource_ProjectsGroups( $this, $this->serviceName, 'groups', array( 'methods' => array( 'get' => array( 'path' => 'v1beta1/{+groupName}', 'httpMethod' => 'GET', 'parameters' => array( 'groupName' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'update' => array( 'path' => 'v1beta1/{+name}', 'httpMethod' => 'PUT', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); } }