<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/notebooks/v1beta1/service.proto

namespace Google\Cloud\Notebooks\V1beta1;

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

/**
 * Response for listing notebook instances.
 *
 * Generated from protobuf message <code>google.cloud.notebooks.v1beta1.ListInstancesResponse</code>
 */
class ListInstancesResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * A list of returned instances.
     *
     * Generated from protobuf field <code>repeated .google.cloud.notebooks.v1beta1.Instance instances = 1;</code>
     */
    private $instances;
    /**
     * Page token that can be used to continue listing from the last result in the
     * next list call.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     */
    private $next_page_token = '';
    /**
     * Locations that could not be reached. For example,
     * `['us-west1-a', 'us-central1-b']`.
     * A ListInstancesResponse will only contain either instances or unreachables,
     *
     * Generated from protobuf field <code>repeated string unreachable = 3;</code>
     */
    private $unreachable;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\Notebooks\V1beta1\Instance>|\Google\Protobuf\Internal\RepeatedField $instances
     *           A list of returned instances.
     *     @type string $next_page_token
     *           Page token that can be used to continue listing from the last result in the
     *           next list call.
     *     @type array<string>|\Google\Protobuf\Internal\RepeatedField $unreachable
     *           Locations that could not be reached. For example,
     *           `['us-west1-a', 'us-central1-b']`.
     *           A ListInstancesResponse will only contain either instances or unreachables,
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Notebooks\V1Beta1\Service::initOnce();
        parent::__construct($data);
    }

    /**
     * A list of returned instances.
     *
     * Generated from protobuf field <code>repeated .google.cloud.notebooks.v1beta1.Instance instances = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getInstances()
    {
        return $this->instances;
    }

    /**
     * A list of returned instances.
     *
     * Generated from protobuf field <code>repeated .google.cloud.notebooks.v1beta1.Instance instances = 1;</code>
     * @param array<\Google\Cloud\Notebooks\V1beta1\Instance>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setInstances($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Notebooks\V1beta1\Instance::class);
        $this->instances = $arr;

        return $this;
    }

    /**
     * Page token that can be used to continue listing from the last result in the
     * next list call.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * Page token that can be used to continue listing from the last result in the
     * next list call.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @param string $var
     * @return $this
     */
    public function setNextPageToken($var)
    {
        GPBUtil::checkString($var, True);
        $this->next_page_token = $var;

        return $this;
    }

    /**
     * Locations that could not be reached. For example,
     * `['us-west1-a', 'us-central1-b']`.
     * A ListInstancesResponse will only contain either instances or unreachables,
     *
     * Generated from protobuf field <code>repeated string unreachable = 3;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getUnreachable()
    {
        return $this->unreachable;
    }

    /**
     * Locations that could not be reached. For example,
     * `['us-west1-a', 'us-central1-b']`.
     * A ListInstancesResponse will only contain either instances or unreachables,
     *
     * Generated from protobuf field <code>repeated string unreachable = 3;</code>
     * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setUnreachable($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
        $this->unreachable = $arr;

        return $this;
    }

}

