<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/bigquery/reservation/v1/reservation.proto

namespace Google\Cloud\BigQuery\Reservation\V1;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * Represents a BI Reservation.
 *
 * Generated from protobuf message <code>google.cloud.bigquery.reservation.v1.BiReservation</code>
 */
class BiReservation extends \Google\Protobuf\Internal\Message
{
    /**
     * The resource name of the singleton BI reservation.
     * Reservation names have the form
     * `projects/{project_id}/locations/{location_id}/biReservation`.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     */
    private $name = '';
    /**
     * Output only. The last update timestamp of a reservation.
     *
     * Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     */
    private $update_time = null;
    /**
     * Size of a reservation, in bytes.
     *
     * Generated from protobuf field <code>int64 size = 4;</code>
     */
    private $size = 0;
    /**
     * Preferred tables to use BI capacity for.
     *
     * Generated from protobuf field <code>repeated .google.cloud.bigquery.reservation.v1.TableReference preferred_tables = 5;</code>
     */
    private $preferred_tables;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *           The resource name of the singleton BI reservation.
     *           Reservation names have the form
     *           `projects/{project_id}/locations/{location_id}/biReservation`.
     *     @type \Google\Protobuf\Timestamp $update_time
     *           Output only. The last update timestamp of a reservation.
     *     @type int|string $size
     *           Size of a reservation, in bytes.
     *     @type array<\Google\Cloud\BigQuery\Reservation\V1\TableReference>|\Google\Protobuf\Internal\RepeatedField $preferred_tables
     *           Preferred tables to use BI capacity for.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Bigquery\Reservation\V1\Reservation::initOnce();
        parent::__construct($data);
    }

    /**
     * The resource name of the singleton BI reservation.
     * Reservation names have the form
     * `projects/{project_id}/locations/{location_id}/biReservation`.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * The resource name of the singleton BI reservation.
     * Reservation names have the form
     * `projects/{project_id}/locations/{location_id}/biReservation`.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

    /**
     * Output only. The last update timestamp of a reservation.
     *
     * Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     * @return \Google\Protobuf\Timestamp|null
     */
    public function getUpdateTime()
    {
        return $this->update_time;
    }

    public function hasUpdateTime()
    {
        return isset($this->update_time);
    }

    public function clearUpdateTime()
    {
        unset($this->update_time);
    }

    /**
     * Output only. The last update timestamp of a reservation.
     *
     * Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
     * @param \Google\Protobuf\Timestamp $var
     * @return $this
     */
    public function setUpdateTime($var)
    {
        GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
        $this->update_time = $var;

        return $this;
    }

    /**
     * Size of a reservation, in bytes.
     *
     * Generated from protobuf field <code>int64 size = 4;</code>
     * @return int|string
     */
    public function getSize()
    {
        return $this->size;
    }

    /**
     * Size of a reservation, in bytes.
     *
     * Generated from protobuf field <code>int64 size = 4;</code>
     * @param int|string $var
     * @return $this
     */
    public function setSize($var)
    {
        GPBUtil::checkInt64($var);
        $this->size = $var;

        return $this;
    }

    /**
     * Preferred tables to use BI capacity for.
     *
     * Generated from protobuf field <code>repeated .google.cloud.bigquery.reservation.v1.TableReference preferred_tables = 5;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getPreferredTables()
    {
        return $this->preferred_tables;
    }

    /**
     * Preferred tables to use BI capacity for.
     *
     * Generated from protobuf field <code>repeated .google.cloud.bigquery.reservation.v1.TableReference preferred_tables = 5;</code>
     * @param array<\Google\Cloud\BigQuery\Reservation\V1\TableReference>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setPreferredTables($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\BigQuery\Reservation\V1\TableReference::class);
        $this->preferred_tables = $arr;

        return $this;
    }

}

