Mise à jour des librairies

This commit is contained in:
lars
2019-03-10 23:30:23 +01:00
parent 2040b7be39
commit 7df3d72953
3603 changed files with 233169 additions and 107764 deletions

View File

@@ -0,0 +1,41 @@
<?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.
*/
/**
* The "clientId" collection of methods.
* Typical usage is:
* <code>
* $analyticsService = new Google_Service_Analytics(...);
* $clientId = $analyticsService->clientId;
* </code>
*/
class Google_Service_Analytics_Resource_ManagementClientId extends Google_Service_Resource
{
/**
* Hashes the given Client ID. (clientId.hashClientId)
*
* @param Google_Service_Analytics_HashClientIdRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Analytics_HashClientIdResponse
*/
public function hashClientId(Google_Service_Analytics_HashClientIdRequest $postBody, $optParams = array())
{
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('hashClientId', array($params), "Google_Service_Analytics_HashClientIdResponse");
}
}

View File

@@ -26,12 +26,13 @@
class Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks extends Google_Service_Resource
{
/**
* Deletes a web property-AdWords link. (webPropertyAdWordsLinks.delete)
* Deletes a web property-Google Ads link. (webPropertyAdWordsLinks.delete)
*
* @param string $accountId ID of the account which the given web property
* belongs to.
* @param string $webPropertyId Web property ID to delete the AdWords link for.
* @param string $webPropertyAdWordsLinkId Web property AdWords link ID.
* @param string $webPropertyId Web property ID to delete the Google Ads link
* for.
* @param string $webPropertyAdWordsLinkId Web property Google Ads link ID.
* @param array $optParams Optional parameters.
*/
public function delete($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array())
@@ -41,14 +42,14 @@ class Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks extend
return $this->call('delete', array($params));
}
/**
* Returns a web property-AdWords link to which the user has access.
* Returns a web property-Google Ads link to which the user has access.
* (webPropertyAdWordsLinks.get)
*
* @param string $accountId ID of the account which the given web property
* belongs to.
* @param string $webPropertyId Web property ID to retrieve the AdWords link
* @param string $webPropertyId Web property ID to retrieve the Google Ads link
* for.
* @param string $webPropertyAdWordsLinkId Web property-AdWords link ID.
* @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
* @param array $optParams Optional parameters.
* @return Google_Service_Analytics_EntityAdWordsLink
*/
@@ -59,7 +60,7 @@ class Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks extend
return $this->call('get', array($params), "Google_Service_Analytics_EntityAdWordsLink");
}
/**
* Creates a webProperty-AdWords link. (webPropertyAdWordsLinks.insert)
* Creates a webProperty-Google Ads link. (webPropertyAdWordsLinks.insert)
*
* @param string $accountId ID of the Google Analytics account to create the
* link for.
@@ -75,19 +76,19 @@ class Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks extend
return $this->call('insert', array($params), "Google_Service_Analytics_EntityAdWordsLink");
}
/**
* Lists webProperty-AdWords links for a given web property.
* Lists webProperty-Google Ads links for a given web property.
* (webPropertyAdWordsLinks.listManagementWebPropertyAdWordsLinks)
*
* @param string $accountId ID of the account which the given web property
* belongs to.
* @param string $webPropertyId Web property ID to retrieve the AdWords links
* @param string $webPropertyId Web property ID to retrieve the Google Ads links
* for.
* @param array $optParams Optional parameters.
*
* @opt_param int max-results The maximum number of webProperty-AdWords links to
* include in this response.
* @opt_param int start-index An index of the first webProperty-AdWords link to
* retrieve. Use this parameter as a pagination mechanism along with the max-
* @opt_param int max-results The maximum number of webProperty-Google Ads links
* to include in this response.
* @opt_param int start-index An index of the first webProperty-Google Ads link
* to retrieve. Use this parameter as a pagination mechanism along with the max-
* results parameter.
* @return Google_Service_Analytics_EntityAdWordsLinks
*/
@@ -98,14 +99,14 @@ class Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks extend
return $this->call('list', array($params), "Google_Service_Analytics_EntityAdWordsLinks");
}
/**
* Updates an existing webProperty-AdWords link. This method supports patch
* Updates an existing webProperty-Google Ads link. This method supports patch
* semantics. (webPropertyAdWordsLinks.patch)
*
* @param string $accountId ID of the account which the given web property
* belongs to.
* @param string $webPropertyId Web property ID to retrieve the AdWords link
* @param string $webPropertyId Web property ID to retrieve the Google Ads link
* for.
* @param string $webPropertyAdWordsLinkId Web property-AdWords link ID.
* @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
* @param Google_Service_Analytics_EntityAdWordsLink $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Analytics_EntityAdWordsLink
@@ -117,14 +118,14 @@ class Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks extend
return $this->call('patch', array($params), "Google_Service_Analytics_EntityAdWordsLink");
}
/**
* Updates an existing webProperty-AdWords link.
* Updates an existing webProperty-Google Ads link.
* (webPropertyAdWordsLinks.update)
*
* @param string $accountId ID of the account which the given web property
* belongs to.
* @param string $webPropertyId Web property ID to retrieve the AdWords link
* @param string $webPropertyId Web property ID to retrieve the Google Ads link
* for.
* @param string $webPropertyAdWordsLinkId Web property-AdWords link ID.
* @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
* @param Google_Service_Analytics_EntityAdWordsLink $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Analytics_EntityAdWordsLink

View File

@@ -0,0 +1,28 @@
<?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.
*/
/**
* The "userDeletion" collection of methods.
* Typical usage is:
* <code>
* $analyticsService = new Google_Service_Analytics(...);
* $userDeletion = $analyticsService->userDeletion;
* </code>
*/
class Google_Service_Analytics_Resource_UserDeletion extends Google_Service_Resource
{
}

View File

@@ -0,0 +1,41 @@
<?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.
*/
/**
* The "userDeletionRequest" collection of methods.
* Typical usage is:
* <code>
* $analyticsService = new Google_Service_Analytics(...);
* $userDeletionRequest = $analyticsService->userDeletionRequest;
* </code>
*/
class Google_Service_Analytics_Resource_UserDeletionUserDeletionRequest extends Google_Service_Resource
{
/**
* Insert or update a user deletion requests. (userDeletionRequest.upsert)
*
* @param Google_Service_Analytics_UserDeletionRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Analytics_UserDeletionRequest
*/
public function upsert(Google_Service_Analytics_UserDeletionRequest $postBody, $optParams = array())
{
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('upsert', array($params), "Google_Service_Analytics_UserDeletionRequest");
}
}