<?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\Site_Kit_Dependencies\Google\Service\Analytics\Resource;

use Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLink;
use Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLinks;
/**
 * The "webPropertyAdWordsLinks" collection of methods.
 * Typical usage is:
 *  <code>
 *   $analyticsService = new Google\Service\Analytics(...);
 *   $webPropertyAdWordsLinks = $analyticsService->management_webPropertyAdWordsLinks;
 *  </code>
 */
class ManagementWebPropertyAdWordsLinks extends \Google\Site_Kit_Dependencies\Google\Service\Resource
{
    /**
     * 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 Google Ads link
     * for.
     * @param string $webPropertyAdWordsLinkId Web property Google Ads link ID.
     * @param array $optParams Optional parameters.
     * @throws \Google\Service\Exception
     */
    public function delete($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = [])
    {
        $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId];
        $params = \array_merge($params, $optParams);
        return $this->call('delete', [$params]);
    }
    /**
     * 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 Google Ads link
     * for.
     * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
     * @param array $optParams Optional parameters.
     * @return EntityAdWordsLink
     * @throws \Google\Service\Exception
     */
    public function get($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = [])
    {
        $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId];
        $params = \array_merge($params, $optParams);
        return $this->call('get', [$params], \Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLink::class);
    }
    /**
     * Creates a webProperty-Google Ads link. (webPropertyAdWordsLinks.insert)
     *
     * @param string $accountId ID of the Google Analytics account to create the
     * link for.
     * @param string $webPropertyId Web property ID to create the link for.
     * @param EntityAdWordsLink $postBody
     * @param array $optParams Optional parameters.
     * @return EntityAdWordsLink
     * @throws \Google\Service\Exception
     */
    public function insert($accountId, $webPropertyId, \Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLink $postBody, $optParams = [])
    {
        $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody];
        $params = \array_merge($params, $optParams);
        return $this->call('insert', [$params], \Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLink::class);
    }
    /**
     * 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 Google Ads links
     * for.
     * @param array $optParams Optional parameters.
     *
     * @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 EntityAdWordsLinks
     * @throws \Google\Service\Exception
     */
    public function listManagementWebPropertyAdWordsLinks($accountId, $webPropertyId, $optParams = [])
    {
        $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId];
        $params = \array_merge($params, $optParams);
        return $this->call('list', [$params], \Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLinks::class);
    }
    /**
     * 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 Google Ads link
     * for.
     * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
     * @param EntityAdWordsLink $postBody
     * @param array $optParams Optional parameters.
     * @return EntityAdWordsLink
     * @throws \Google\Service\Exception
     */
    public function patch($accountId, $webPropertyId, $webPropertyAdWordsLinkId, \Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLink $postBody, $optParams = [])
    {
        $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody];
        $params = \array_merge($params, $optParams);
        return $this->call('patch', [$params], \Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLink::class);
    }
    /**
     * 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 Google Ads link
     * for.
     * @param string $webPropertyAdWordsLinkId Web property-Google Ads link ID.
     * @param EntityAdWordsLink $postBody
     * @param array $optParams Optional parameters.
     * @return EntityAdWordsLink
     * @throws \Google\Service\Exception
     */
    public function update($accountId, $webPropertyId, $webPropertyAdWordsLinkId, \Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLink $postBody, $optParams = [])
    {
        $params = ['accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody];
        $params = \array_merge($params, $optParams);
        return $this->call('update', [$params], \Google\Site_Kit_Dependencies\Google\Service\Analytics\EntityAdWordsLink::class);
    }
}
// Adding a class alias for backwards compatibility with the previous class name.
\class_alias(\Google\Site_Kit_Dependencies\Google\Service\Analytics\Resource\ManagementWebPropertyAdWordsLinks::class, 'Google\\Site_Kit_Dependencies\\Google_Service_Analytics_Resource_ManagementWebPropertyAdWordsLinks');
