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

namespace Google\Cloud\Datastream\V1;

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

/**
 * PostgreSQL database structure.
 *
 * Generated from protobuf message <code>google.cloud.datastream.v1.PostgresqlRdbms</code>
 */
class PostgresqlRdbms extends \Google\Protobuf\Internal\Message
{
    /**
     * PostgreSQL schemas in the database server.
     *
     * Generated from protobuf field <code>repeated .google.cloud.datastream.v1.PostgresqlSchema postgresql_schemas = 1;</code>
     */
    private $postgresql_schemas;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type array<\Google\Cloud\Datastream\V1\PostgresqlSchema>|\Google\Protobuf\Internal\RepeatedField $postgresql_schemas
     *           PostgreSQL schemas in the database server.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Datastream\V1\DatastreamResources::initOnce();
        parent::__construct($data);
    }

    /**
     * PostgreSQL schemas in the database server.
     *
     * Generated from protobuf field <code>repeated .google.cloud.datastream.v1.PostgresqlSchema postgresql_schemas = 1;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
     */
    public function getPostgresqlSchemas()
    {
        return $this->postgresql_schemas;
    }

    /**
     * PostgreSQL schemas in the database server.
     *
     * Generated from protobuf field <code>repeated .google.cloud.datastream.v1.PostgresqlSchema postgresql_schemas = 1;</code>
     * @param array<\Google\Cloud\Datastream\V1\PostgresqlSchema>|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
     */
    public function setPostgresqlSchemas($var)
    {
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\Datastream\V1\PostgresqlSchema::class);
        $this->postgresql_schemas = $arr;

        return $this;
    }

}

