📂 File Browser

AgentAI/vendor/google/apiclient-services/src/BigLakeService
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 AuditConfig.php
▶ Open 📄 View Source
🐘 AuditLogConfig.php
▶ Open 📄 View Source
🐘 Binding.php
▶ Open 📄 View Source
🐘 Catalog.php
▶ Open 📄 View Source
🐘 Database.php
▶ Open 📄 View Source
🐘 Expr.php
▶ Open 📄 View Source
🐘 HiveDatabaseOptions.php
▶ Open 📄 View Source
🐘 HiveTableOptions.php
▶ Open 📄 View Source
🐘 ListCatalogsResponse.php
▶ Open 📄 View Source
🐘 ListDatabasesResponse.php
▶ Open 📄 View Source
🐘 ListTablesResponse.php
▶ Open 📄 View Source
🐘 Policy.php
▶ Open 📄 View Source
🐘 RenameTableRequest.php
▶ Open 📄 View Source
🐘 SerDeInfo.php
▶ Open 📄 View Source
🐘 SetIamPolicyRequest.php
▶ Open 📄 View Source
🐘 StorageDescriptor.php
▶ Open 📄 View Source
🐘 Table.php
▶ Open 📄 View Source
🐘 TestIamPermissionsRequest.php
▶ Open 📄 View Source
🐘 TestIamPermissionsResponse.php
▶ Open 📄 View Source

📄 Source: Catalog.php

<?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\BigLakeService;

class Catalog extends \Google\Model
{
  /**
   * Output only. The creation time of the catalog.
   *
   * @var string
   */
  public $createTime;
  /**
   * Output only. The deletion time of the catalog. Only set after the catalog
   * is deleted.
   *
   * @var string
   */
  public $deleteTime;
  /**
   * Output only. The time when this catalog is considered expired. Only set
   * after the catalog is deleted.
   *
   * @var string
   */
  public $expireTime;
  /**
   * Output only. The resource name. Format: projects/{project_id_or_number}/loc
   * ations/{location_id}/catalogs/{catalog_id}
   *
   * @var string
   */
  public $name;
  /**
   * Output only. The last modification time of the catalog.
   *
   * @var string
   */
  public $updateTime;

  /**
   * Output only. The creation time of the catalog.
   *
   * @param string $createTime
   */
  public function setCreateTime($createTime)
  {
    $this->createTime = $createTime;
  }
  /**
   * @return string
   */
  public function getCreateTime()
  {
    return $this->createTime;
  }
  /**
   * Output only. The deletion time of the catalog. Only set after the catalog
   * is deleted.
   *
   * @param string $deleteTime
   */
  public function setDeleteTime($deleteTime)
  {
    $this->deleteTime = $deleteTime;
  }
  /**
   * @return string
   */
  public function getDeleteTime()
  {
    return $this->deleteTime;
  }
  /**
   * Output only. The time when this catalog is considered expired. Only set
   * after the catalog is deleted.
   *
   * @param string $expireTime
   */
  public function setExpireTime($expireTime)
  {
    $this->expireTime = $expireTime;
  }
  /**
   * @return string
   */
  public function getExpireTime()
  {
    return $this->expireTime;
  }
  /**
   * Output only. The resource name. Format: projects/{project_id_or_number}/loc
   * ations/{location_id}/catalogs/{catalog_id}
   *
   * @param string $name
   */
  public function setName($name)
  {
    $this->name = $name;
  }
  /**
   * @return string
   */
  public function getName()
  {
    return $this->name;
  }
  /**
   * Output only. The last modification time of the catalog.
   *
   * @param string $updateTime
   */
  public function setUpdateTime($updateTime)
  {
    $this->updateTime = $updateTime;
  }
  /**
   * @return string
   */
  public function getUpdateTime()
  {
    return $this->updateTime;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Catalog::class, 'Google_Service_BigLakeService_Catalog');
← Back