EVOLUTION-MANAGER
Edit File: ServiceUser.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 ServiceUser (v1). * * <p> * Enables services that service consumers want to use on Google Cloud Platform, * lists the available or enabled services, or disables services that service * consumers no longer use.</p> * * <p> * For more information about this service, see the API * <a href="https://cloud.google.com/service-management/" target="_blank">Documentation</a> * </p> * * @author Google, Inc. */ class Google_Service_ServiceUser extends Google_Service { /** View and manage your data across Google Cloud Platform services. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; /** View your data across Google Cloud Platform services. */ const CLOUD_PLATFORM_READ_ONLY = "https://www.googleapis.com/auth/cloud-platform.read-only"; /** Manage your Google API service configuration. */ const SERVICE_MANAGEMENT = "https://www.googleapis.com/auth/service.management"; public $projects_services; public $services; /** * Constructs the internal representation of the ServiceUser service. * * @param Google_Client $client */ public function __construct(Google_Client $client) { parent::__construct($client); $this->rootUrl = 'https://serviceuser.googleapis.com/'; $this->servicePath = ''; $this->version = 'v1'; $this->serviceName = 'serviceuser'; $this->projects_services = new Google_Service_ServiceUser_Resource_ProjectsServices( $this, $this->serviceName, 'services', array( 'methods' => array( 'disable' => array( 'path' => 'v1/{+name}:disable', 'httpMethod' => 'POST', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'enable' => array( 'path' => 'v1/{+name}:enable', 'httpMethod' => 'POST', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'list' => array( 'path' => 'v1/{+parent}/services', 'httpMethod' => 'GET', 'parameters' => array( 'parent' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), 'pageSize' => array( 'location' => 'query', 'type' => 'integer', ), ), ), ) ) ); $this->services = new Google_Service_ServiceUser_Resource_Services( $this, $this->serviceName, 'services', array( 'methods' => array( 'search' => array( 'path' => 'v1/services:search', 'httpMethod' => 'GET', 'parameters' => array( 'pageSize' => array( 'location' => 'query', 'type' => 'integer', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); } }