JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "ManagementExperiments.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Analytics/Resource/ManagementExperiments.php
File size: 6.44 KB
MIME-type: text/x-php
Charset: utf-8
<?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.
*/
namespace Google\Service\Analytics\Resource;
use Google\Service\Analytics\Experiment;
use Google\Service\Analytics\Experiments;
/**
* The "experiments" collection of methods.
* Typical usage is:
* <code>
* $analyticsService = new Google\Service\Analytics(...);
* $experiments = $analyticsService->management_experiments;
* </code>
*/
class ManagementExperiments extends \Google\Service\Resource
{
/**
* Delete an experiment. (experiments.delete)
*
* @param string $accountId Account ID to which the experiment belongs
* @param string $webPropertyId Web property ID to which the experiment belongs
* @param string $profileId View (Profile) ID to which the experiment belongs
* @param string $experimentId ID of the experiment to delete
* @param array $optParams Optional parameters.
* @throws \Google\Service\Exception
*/
public function delete($accountId, $webPropertyId, $profileId, $experimentId, $optParams = [])
{
$params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId];
$params = array_merge($params, $optParams);
return $this->call('delete', [$params]);
}
/**
* Returns an experiment to which the user has access. (experiments.get)
*
* @param string $accountId Account ID to retrieve the experiment for.
* @param string $webPropertyId Web property ID to retrieve the experiment for.
* @param string $profileId View (Profile) ID to retrieve the experiment for.
* @param string $experimentId Experiment ID to retrieve the experiment for.
* @param array $optParams Optional parameters.
* @return Experiment
* @throws \Google\Service\Exception
*/
public function get($accountId, $webPropertyId, $profileId, $experimentId, $optParams = [])
{
$params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId];
$params = array_merge($params, $optParams);
return $this->call('get', [$params], Experiment::class);
}
/**
* Create a new experiment. (experiments.insert)
*
* @param string $accountId Account ID to create the experiment for.
* @param string $webPropertyId Web property ID to create the experiment for.
* @param string $profileId View (Profile) ID to create the experiment for.
* @param Experiment $postBody
* @param array $optParams Optional parameters.
* @return Experiment
* @throws \Google\Service\Exception
*/
public function insert($accountId, $webPropertyId, $profileId, Experiment $postBody, $optParams = [])
{
$params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('insert', [$params], Experiment::class);
}
/**
* Lists experiments to which the user has access.
* (experiments.listManagementExperiments)
*
* @param string $accountId Account ID to retrieve experiments for.
* @param string $webPropertyId Web property ID to retrieve experiments for.
* @param string $profileId View (Profile) ID to retrieve experiments for.
* @param array $optParams Optional parameters.
*
* @opt_param int max-results The maximum number of experiments to include in
* this response.
* @opt_param int start-index An index of the first experiment to retrieve. Use
* this parameter as a pagination mechanism along with the max-results
* parameter.
* @return Experiments
* @throws \Google\Service\Exception
*/
public function listManagementExperiments($accountId, $webPropertyId, $profileId, $optParams = [])
{
$params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId];
$params = array_merge($params, $optParams);
return $this->call('list', [$params], Experiments::class);
}
/**
* Update an existing experiment. This method supports patch semantics.
* (experiments.patch)
*
* @param string $accountId Account ID of the experiment to update.
* @param string $webPropertyId Web property ID of the experiment to update.
* @param string $profileId View (Profile) ID of the experiment to update.
* @param string $experimentId Experiment ID of the experiment to update.
* @param Experiment $postBody
* @param array $optParams Optional parameters.
* @return Experiment
* @throws \Google\Service\Exception
*/
public function patch($accountId, $webPropertyId, $profileId, $experimentId, Experiment $postBody, $optParams = [])
{
$params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('patch', [$params], Experiment::class);
}
/**
* Update an existing experiment. (experiments.update)
*
* @param string $accountId Account ID of the experiment to update.
* @param string $webPropertyId Web property ID of the experiment to update.
* @param string $profileId View (Profile) ID of the experiment to update.
* @param string $experimentId Experiment ID of the experiment to update.
* @param Experiment $postBody
* @param array $optParams Optional parameters.
* @return Experiment
* @throws \Google\Service\Exception
*/
public function update($accountId, $webPropertyId, $profileId, $experimentId, Experiment $postBody, $optParams = [])
{
$params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody];
$params = array_merge($params, $optParams);
return $this->call('update', [$params], Experiment::class);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ManagementExperiments::class, 'Google_Service_Analytics_Resource_ManagementExperiments');