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

namespace Google\Cloud\Container\V1;

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

/**
 * ListOperationsResponse is the result of ListOperationsRequest.
 *
 * Generated from protobuf message <code>google.container.v1.ListOperationsResponse</code>
 */
class ListOperationsResponse extends \Google\Protobuf\Internal\Message
{
    /**
     * A list of operations in the project in the specified zone.
     *
     * Generated from protobuf field <code>repeated .google.container.v1.Operation operations = 1;</code>
     */
    private $operations;
    /**
     * If any zones are listed here, the list of operations returned
     * may be missing the operations from those zones.
     *
     * Generated from protobuf field <code>repeated string missing_zones = 2;</code>
     */
    private $missing_zones;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\Container\V1\Operation>|\Google\Protobuf\Internal\RepeatedField $operations
     *           A list of operations in the project in the specified zone.
     *     @type array<string>|\Google\Protobuf\Internal\RepeatedField $missing_zones
     *           If any zones are listed here, the list of operations returned
     *           may be missing the operations from those zones.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Container\V1\ClusterService::initOnce();
        parent::__construct($data);
    }

    /**
     * A list of operations in the project in the specified zone.
     *
     * Generated from protobuf field <code>repeated .google.container.v1.Operation operations = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getOperations()
    {
        return $this->operations;
    }

    /**
     * A list of operations in the project in the specified zone.
     *
     * Generated from protobuf field <code>repeated .google.container.v1.Operation operations = 1;</code>
     * @param array<\Google\Cloud\Container\V1\Operation>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setOperations($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Container\V1\Operation::class);
        $this->operations = $arr;

        return $this;
    }

    /**
     * If any zones are listed here, the list of operations returned
     * may be missing the operations from those zones.
     *
     * Generated from protobuf field <code>repeated string missing_zones = 2;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getMissingZones()
    {
        return $this->missing_zones;
    }

    /**
     * If any zones are listed here, the list of operations returned
     * may be missing the operations from those zones.
     *
     * Generated from protobuf field <code>repeated string missing_zones = 2;</code>
     * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setMissingZones($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
        $this->missing_zones = $arr;

        return $this;
    }

}

