<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/bigtable/admin/v2/bigtable_instance_admin.proto

namespace Google\Cloud\Bigtable\Admin\V2;

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

/**
 * Response message for BigtableInstanceAdmin.ListClusters.
 *
 * Generated from protobuf message <code>google.bigtable.admin.v2.ListClustersResponse</code>
 */
class ListClustersResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * The list of requested clusters.
     *
     * Generated from protobuf field <code>repeated .google.bigtable.admin.v2.Cluster clusters = 1;</code>
     */
    private $clusters;
    /**
     * Locations from which Cluster information could not be retrieved,
     * due to an outage or some other transient condition.
     * Clusters from these locations may be missing from `clusters`,
     * or may only have partial information returned.
     * Values are of the form `projects/<project>/locations/<zone_id>`
     *
     * Generated from protobuf field <code>repeated string failed_locations = 2;</code>
     */
    private $failed_locations;
    /**
     * DEPRECATED: This field is unused and ignored.
     *
     * Generated from protobuf field <code>string next_page_token = 3;</code>
     */
    private $next_page_token = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\Bigtable\Admin\V2\Cluster>|\Google\Protobuf\Internal\RepeatedField $clusters
     *           The list of requested clusters.
     *     @type array<string>|\Google\Protobuf\Internal\RepeatedField $failed_locations
     *           Locations from which Cluster information could not be retrieved,
     *           due to an outage or some other transient condition.
     *           Clusters from these locations may be missing from `clusters`,
     *           or may only have partial information returned.
     *           Values are of the form `projects/<project>/locations/<zone_id>`
     *     @type string $next_page_token
     *           DEPRECATED: This field is unused and ignored.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Bigtable\Admin\V2\BigtableInstanceAdmin::initOnce();
        parent::__construct($data);
    }

    /**
     * The list of requested clusters.
     *
     * Generated from protobuf field <code>repeated .google.bigtable.admin.v2.Cluster clusters = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getClusters()
    {
        return $this->clusters;
    }

    /**
     * The list of requested clusters.
     *
     * Generated from protobuf field <code>repeated .google.bigtable.admin.v2.Cluster clusters = 1;</code>
     * @param array<\Google\Cloud\Bigtable\Admin\V2\Cluster>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setClusters($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Bigtable\Admin\V2\Cluster::class);
        $this->clusters = $arr;

        return $this;
    }

    /**
     * Locations from which Cluster information could not be retrieved,
     * due to an outage or some other transient condition.
     * Clusters from these locations may be missing from `clusters`,
     * or may only have partial information returned.
     * Values are of the form `projects/<project>/locations/<zone_id>`
     *
     * Generated from protobuf field <code>repeated string failed_locations = 2;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getFailedLocations()
    {
        return $this->failed_locations;
    }

    /**
     * Locations from which Cluster information could not be retrieved,
     * due to an outage or some other transient condition.
     * Clusters from these locations may be missing from `clusters`,
     * or may only have partial information returned.
     * Values are of the form `projects/<project>/locations/<zone_id>`
     *
     * Generated from protobuf field <code>repeated string failed_locations = 2;</code>
     * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setFailedLocations($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
        $this->failed_locations = $arr;

        return $this;
    }

    /**
     * DEPRECATED: This field is unused and ignored.
     *
     * Generated from protobuf field <code>string next_page_token = 3;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * DEPRECATED: This field is unused and ignored.
     *
     * Generated from protobuf field <code>string next_page_token = 3;</code>
     * @param string $var
     * @return $this
     */
    public function setNextPageToken($var)
    {
        GPBUtil::checkString($var, True);
        $this->next_page_token = $var;

        return $this;
    }

}

