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

namespace Google\Cloud\PubSub\V1;

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

/**
 * A policy constraining the storage of messages published to the topic.
 *
 * Generated from protobuf message <code>google.pubsub.v1.MessageStoragePolicy</code>
 */
class MessageStoragePolicy extends \Google\Protobuf\Internal\Message
{
    /**
     * A list of IDs of GCP regions where messages that are published to the topic
     * may be persisted in storage. Messages published by publishers running in
     * non-allowed GCP regions (or running outside of GCP altogether) will be
     * routed for storage in one of the allowed regions. An empty list means that
     * no regions are allowed, and is not a valid configuration.
     *
     * Generated from protobuf field <code>repeated string allowed_persistence_regions = 1;</code>
     */
    private $allowed_persistence_regions;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<string>|\Google\Protobuf\Internal\RepeatedField $allowed_persistence_regions
     *           A list of IDs of GCP regions where messages that are published to the topic
     *           may be persisted in storage. Messages published by publishers running in
     *           non-allowed GCP regions (or running outside of GCP altogether) will be
     *           routed for storage in one of the allowed regions. An empty list means that
     *           no regions are allowed, and is not a valid configuration.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Pubsub\V1\Pubsub::initOnce();
        parent::__construct($data);
    }

    /**
     * A list of IDs of GCP regions where messages that are published to the topic
     * may be persisted in storage. Messages published by publishers running in
     * non-allowed GCP regions (or running outside of GCP altogether) will be
     * routed for storage in one of the allowed regions. An empty list means that
     * no regions are allowed, and is not a valid configuration.
     *
     * Generated from protobuf field <code>repeated string allowed_persistence_regions = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getAllowedPersistenceRegions()
    {
        return $this->allowed_persistence_regions;
    }

    /**
     * A list of IDs of GCP regions where messages that are published to the topic
     * may be persisted in storage. Messages published by publishers running in
     * non-allowed GCP regions (or running outside of GCP altogether) will be
     * routed for storage in one of the allowed regions. An empty list means that
     * no regions are allowed, and is not a valid configuration.
     *
     * Generated from protobuf field <code>repeated string allowed_persistence_regions = 1;</code>
     * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setAllowedPersistenceRegions($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
        $this->allowed_persistence_regions = $arr;

        return $this;
    }

}

