123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <?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
- */
- public function __construct(Google_Client $client)
- {
- parent::__construct($client);
- $this->rootUrl = 'https://clouderrorreporting.googleapis.com/';
- $this->servicePath = '';
- $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,
- ),
- 'pageToken' => array(
- 'location' => 'query',
- 'type' => 'string',
- ),
- 'serviceFilter.service' => array(
- 'location' => 'query',
- 'type' => 'string',
- ),
- 'pageSize' => array(
- 'location' => 'query',
- 'type' => 'integer',
- ),
- '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',
- ),
- ),
- ),'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,
- ),
- 'timeRange.period' => array(
- 'location' => 'query',
- 'type' => 'string',
- ),
- 'alignment' => array(
- 'location' => 'query',
- 'type' => 'string',
- ),
- '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',
- ),
- ),
- ),
- )
- )
- );
- $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,
- ),
- ),
- ),
- )
- )
- );
- }
- }
|