• File: AccountsContainersEnvironments.php
  • Full Path: /home/docteuh/www/TagManager/Resource/AccountsContainersEnvironments.php
  • Date Modified: 12/06/2023 7:16 PM
  • File size: 5.54 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\Site_Kit_Dependencies\Google\Service\TagManager\Resource;

use Google\Site_Kit_Dependencies\Google\Service\TagManager\Environment;
use Google\Site_Kit_Dependencies\Google\Service\TagManager\ListEnvironmentsResponse;
/**
 * The "environments" collection of methods.
 * Typical usage is:
 *  <code>
 *   $tagmanagerService = new Google\Service\TagManager(...);
 *   $environments = $tagmanagerService->environments;
 *  </code>
 */
class AccountsContainersEnvironments extends \Google\Site_Kit_Dependencies\Google\Service\Resource
{
    /**
     * Creates a GTM Environment. (environments.create)
     *
     * @param string $parent GTM Container's API relative path. Example:
     * accounts/{account_id}/containers/{container_id}
     * @param Environment $postBody
     * @param array $optParams Optional parameters.
     * @return Environment
     */
    public function create($parent, \Google\Site_Kit_Dependencies\Google\Service\TagManager\Environment $postBody, $optParams = [])
    {
        $params = ['parent' => $parent, 'postBody' => $postBody];
        $params = \array_merge($params, $optParams);
        return $this->call('create', [$params], \Google\Site_Kit_Dependencies\Google\Service\TagManager\Environment::class);
    }
    /**
     * Deletes a GTM Environment. (environments.delete)
     *
     * @param string $path GTM Environment's API relative path. Example:
     * accounts/{account_id}/containers/{container_id}/environments/{environment_id}
     * @param array $optParams Optional parameters.
     */
    public function delete($path, $optParams = [])
    {
        $params = ['path' => $path];
        $params = \array_merge($params, $optParams);
        return $this->call('delete', [$params]);
    }
    /**
     * Gets a GTM Environment. (environments.get)
     *
     * @param string $path GTM Environment's API relative path. Example:
     * accounts/{account_id}/containers/{container_id}/environments/{environment_id}
     * @param array $optParams Optional parameters.
     * @return Environment
     */
    public function get($path, $optParams = [])
    {
        $params = ['path' => $path];
        $params = \array_merge($params, $optParams);
        return $this->call('get', [$params], \Google\Site_Kit_Dependencies\Google\Service\TagManager\Environment::class);
    }
    /**
     * Lists all GTM Environments of a GTM Container.
     * (environments.listAccountsContainersEnvironments)
     *
     * @param string $parent GTM Container's API relative path. Example:
     * accounts/{account_id}/containers/{container_id}
     * @param array $optParams Optional parameters.
     *
     * @opt_param string pageToken Continuation token for fetching the next page of
     * results.
     * @return ListEnvironmentsResponse
     */
    public function listAccountsContainersEnvironments($parent, $optParams = [])
    {
        $params = ['parent' => $parent];
        $params = \array_merge($params, $optParams);
        return $this->call('list', [$params], \Google\Site_Kit_Dependencies\Google\Service\TagManager\ListEnvironmentsResponse::class);
    }
    /**
     * Re-generates the authorization code for a GTM Environment.
     * (environments.reauthorize)
     *
     * @param string $path GTM Environment's API relative path. Example:
     * accounts/{account_id}/containers/{container_id}/environments/{environment_id}
     * @param Environment $postBody
     * @param array $optParams Optional parameters.
     * @return Environment
     */
    public function reauthorize($path, \Google\Site_Kit_Dependencies\Google\Service\TagManager\Environment $postBody, $optParams = [])
    {
        $params = ['path' => $path, 'postBody' => $postBody];
        $params = \array_merge($params, $optParams);
        return $this->call('reauthorize', [$params], \Google\Site_Kit_Dependencies\Google\Service\TagManager\Environment::class);
    }
    /**
     * Updates a GTM Environment. (environments.update)
     *
     * @param string $path GTM Environment's API relative path. Example:
     * accounts/{account_id}/containers/{container_id}/environments/{environment_id}
     * @param Environment $postBody
     * @param array $optParams Optional parameters.
     *
     * @opt_param string fingerprint When provided, this fingerprint must match the
     * fingerprint of the environment in storage.
     * @return Environment
     */
    public function update($path, \Google\Site_Kit_Dependencies\Google\Service\TagManager\Environment $postBody, $optParams = [])
    {
        $params = ['path' => $path, 'postBody' => $postBody];
        $params = \array_merge($params, $optParams);
        return $this->call('update', [$params], \Google\Site_Kit_Dependencies\Google\Service\TagManager\Environment::class);
    }
}
// Adding a class alias for backwards compatibility with the previous class name.
\class_alias(\Google\Site_Kit_Dependencies\Google\Service\TagManager\Resource\AccountsContainersEnvironments::class, 'Google\\Site_Kit_Dependencies\\Google_Service_TagManager_Resource_AccountsContainersEnvironments');