<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/spanner/admin/instance/v1/spanner_instance_admin.proto

namespace Google\Cloud\Spanner\Admin\Instance\V1;

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

/**
 * The response for
 * [ListInstanceConfigOperations][google.spanner.admin.instance.v1.InstanceAdmin.ListInstanceConfigOperations].
 *
 * Generated from protobuf message <code>google.spanner.admin.instance.v1.ListInstanceConfigOperationsResponse</code>
 */
class ListInstanceConfigOperationsResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * The list of matching instance config [long-running
     * operations][google.longrunning.Operation]. Each operation's name will be
     * prefixed by the instance config's name. The operation's
     * [metadata][google.longrunning.Operation.metadata] field type
     * `metadata.type_url` describes the type of the metadata.
     *
     * Generated from protobuf field <code>repeated .google.longrunning.Operation operations = 1;</code>
     */
    private $operations;
    /**
     * `next_page_token` can be sent in a subsequent
     * [ListInstanceConfigOperations][google.spanner.admin.instance.v1.InstanceAdmin.ListInstanceConfigOperations]
     * call to fetch more of the matching metadata.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     */
    private $next_page_token = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\LongRunning\Operation>|\Google\Protobuf\Internal\RepeatedField $operations
     *           The list of matching instance config [long-running
     *           operations][google.longrunning.Operation]. Each operation's name will be
     *           prefixed by the instance config's name. The operation's
     *           [metadata][google.longrunning.Operation.metadata] field type
     *           `metadata.type_url` describes the type of the metadata.
     *     @type string $next_page_token
     *           `next_page_token` can be sent in a subsequent
     *           [ListInstanceConfigOperations][google.spanner.admin.instance.v1.InstanceAdmin.ListInstanceConfigOperations]
     *           call to fetch more of the matching metadata.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Spanner\Admin\Instance\V1\SpannerInstanceAdmin::initOnce();
        parent::__construct($data);
    }

    /**
     * The list of matching instance config [long-running
     * operations][google.longrunning.Operation]. Each operation's name will be
     * prefixed by the instance config's name. The operation's
     * [metadata][google.longrunning.Operation.metadata] field type
     * `metadata.type_url` describes the type of the metadata.
     *
     * Generated from protobuf field <code>repeated .google.longrunning.Operation operations = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getOperations()
    {
        return $this->operations;
    }

    /**
     * The list of matching instance config [long-running
     * operations][google.longrunning.Operation]. Each operation's name will be
     * prefixed by the instance config's name. The operation's
     * [metadata][google.longrunning.Operation.metadata] field type
     * `metadata.type_url` describes the type of the metadata.
     *
     * Generated from protobuf field <code>repeated .google.longrunning.Operation operations = 1;</code>
     * @param array<\Google\LongRunning\Operation>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setOperations($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\LongRunning\Operation::class);
        $this->operations = $arr;

        return $this;
    }

    /**
     * `next_page_token` can be sent in a subsequent
     * [ListInstanceConfigOperations][google.spanner.admin.instance.v1.InstanceAdmin.ListInstanceConfigOperations]
     * call to fetch more of the matching metadata.
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * `next_page_token` can be sent in a subsequent
     * [ListInstanceConfigOperations][google.spanner.admin.instance.v1.InstanceAdmin.ListInstanceConfigOperations]
     * call to fetch more of the matching metadata.
     *
     * 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;
    }

}

