<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/monitoring/v3/uptime_service.proto

namespace Google\Cloud\Monitoring\V3;

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

/**
 * The protocol for the `ListUptimeCheckIps` response.
 *
 * Generated from protobuf message <code>google.monitoring.v3.ListUptimeCheckIpsResponse</code>
 */
class ListUptimeCheckIpsResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * The returned list of IP addresses (including region and location) that the
     * checkers run from.
     *
     * Generated from protobuf field <code>repeated .google.monitoring.v3.UptimeCheckIp uptime_check_ips = 1;</code>
     */
    private $uptime_check_ips;
    /**
     * This field represents the pagination token to retrieve the next page of
     * results. If the value is empty, it means no further results for the
     * request. To retrieve the next page of results, the value of the
     * next_page_token is passed to the subsequent List method call (in the
     * request message's page_token field).
     * NOTE: this field is not yet implemented
     *
     * 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\Cloud\Monitoring\V3\UptimeCheckIp>|\Google\Protobuf\Internal\RepeatedField $uptime_check_ips
     *           The returned list of IP addresses (including region and location) that the
     *           checkers run from.
     *     @type string $next_page_token
     *           This field represents the pagination token to retrieve the next page of
     *           results. If the value is empty, it means no further results for the
     *           request. To retrieve the next page of results, the value of the
     *           next_page_token is passed to the subsequent List method call (in the
     *           request message's page_token field).
     *           NOTE: this field is not yet implemented
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Monitoring\V3\UptimeService::initOnce();
        parent::__construct($data);
    }

    /**
     * The returned list of IP addresses (including region and location) that the
     * checkers run from.
     *
     * Generated from protobuf field <code>repeated .google.monitoring.v3.UptimeCheckIp uptime_check_ips = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getUptimeCheckIps()
    {
        return $this->uptime_check_ips;
    }

    /**
     * The returned list of IP addresses (including region and location) that the
     * checkers run from.
     *
     * Generated from protobuf field <code>repeated .google.monitoring.v3.UptimeCheckIp uptime_check_ips = 1;</code>
     * @param array<\Google\Cloud\Monitoring\V3\UptimeCheckIp>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setUptimeCheckIps($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Monitoring\V3\UptimeCheckIp::class);
        $this->uptime_check_ips = $arr;

        return $this;
    }

    /**
     * This field represents the pagination token to retrieve the next page of
     * results. If the value is empty, it means no further results for the
     * request. To retrieve the next page of results, the value of the
     * next_page_token is passed to the subsequent List method call (in the
     * request message's page_token field).
     * NOTE: this field is not yet implemented
     *
     * Generated from protobuf field <code>string next_page_token = 2;</code>
     * @return string
     */
    public function getNextPageToken()
    {
        return $this->next_page_token;
    }

    /**
     * This field represents the pagination token to retrieve the next page of
     * results. If the value is empty, it means no further results for the
     * request. To retrieve the next page of results, the value of the
     * next_page_token is passed to the subsequent List method call (in the
     * request message's page_token field).
     * NOTE: this field is not yet implemented
     *
     * 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;
    }

}

