Mise à jour des librairies vendor

This commit is contained in:
Caribana
2018-05-01 14:43:32 +02:00
parent b67375ae8e
commit d776be73fc
5211 changed files with 59115 additions and 25863 deletions

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* 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
@@ -16,11 +16,10 @@
*/
/**
* Service definition for CloudFunctions (v1beta2).
* Service definition for CloudFunctions (v1).
*
* <p>
* API for managing lightweight user-provided functions executed in response to
* events.</p>
* Manages lightweight user-provided functions executed in response to events.</p>
*
* <p>
* For more information about this service, see the API
@@ -49,7 +48,7 @@ class Google_Service_CloudFunctions extends Google_Service
parent::__construct($client);
$this->rootUrl = 'https://cloudfunctions.googleapis.com/';
$this->servicePath = '';
$this->version = 'v1beta2';
$this->version = 'v1';
$this->serviceName = 'cloudfunctions';
$this->operations = new Google_Service_CloudFunctions_Resource_Operations(
@@ -59,7 +58,7 @@ class Google_Service_CloudFunctions extends Google_Service
array(
'methods' => array(
'get' => array(
'path' => 'v1beta2/{+name}',
'path' => 'v1/{+name}',
'httpMethod' => 'GET',
'parameters' => array(
'name' => array(
@@ -69,7 +68,7 @@ class Google_Service_CloudFunctions extends Google_Service
),
),
),'list' => array(
'path' => 'v1beta2/operations',
'path' => 'v1/operations',
'httpMethod' => 'GET',
'parameters' => array(
'filter' => array(
@@ -100,7 +99,7 @@ class Google_Service_CloudFunctions extends Google_Service
array(
'methods' => array(
'list' => array(
'path' => 'v1beta2/{+name}/locations',
'path' => 'v1/{+name}/locations',
'httpMethod' => 'GET',
'parameters' => array(
'name' => array(
@@ -108,6 +107,10 @@ class Google_Service_CloudFunctions extends Google_Service
'type' => 'string',
'required' => true,
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
'filter' => array(
'location' => 'query',
'type' => 'string',
@@ -116,10 +119,6 @@ class Google_Service_CloudFunctions extends Google_Service
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
@@ -132,7 +131,7 @@ class Google_Service_CloudFunctions extends Google_Service
array(
'methods' => array(
'call' => array(
'path' => 'v1beta2/{+name}:call',
'path' => 'v1/{+name}:call',
'httpMethod' => 'POST',
'parameters' => array(
'name' => array(
@@ -142,7 +141,7 @@ class Google_Service_CloudFunctions extends Google_Service
),
),
),'create' => array(
'path' => 'v1beta2/{+location}/functions',
'path' => 'v1/{+location}/functions',
'httpMethod' => 'POST',
'parameters' => array(
'location' => array(
@@ -152,7 +151,7 @@ class Google_Service_CloudFunctions extends Google_Service
),
),
),'delete' => array(
'path' => 'v1beta2/{+name}',
'path' => 'v1/{+name}',
'httpMethod' => 'DELETE',
'parameters' => array(
'name' => array(
@@ -161,8 +160,28 @@ class Google_Service_CloudFunctions extends Google_Service
'required' => true,
),
),
),'generateDownloadUrl' => array(
'path' => 'v1/{+name}:generateDownloadUrl',
'httpMethod' => 'POST',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'generateUploadUrl' => array(
'path' => 'v1/{+parent}/functions:generateUploadUrl',
'httpMethod' => 'POST',
'parameters' => array(
'parent' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'get' => array(
'path' => 'v1beta2/{+name}',
'path' => 'v1/{+name}',
'httpMethod' => 'GET',
'parameters' => array(
'name' => array(
@@ -172,10 +191,10 @@ class Google_Service_CloudFunctions extends Google_Service
),
),
),'list' => array(
'path' => 'v1beta2/{+location}/functions',
'path' => 'v1/{+parent}/functions',
'httpMethod' => 'GET',
'parameters' => array(
'location' => array(
'parent' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
@@ -189,15 +208,19 @@ class Google_Service_CloudFunctions extends Google_Service
'type' => 'integer',
),
),
),'update' => array(
'path' => 'v1beta2/{+name}',
'httpMethod' => 'PUT',
),'patch' => array(
'path' => 'v1/{+name}',
'httpMethod' => 'PATCH',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'updateMask' => array(
'location' => 'query',
'type' => 'string',
),
),
),
)