<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/sql/v1beta4/cloud_sql_resources.proto

namespace Google\Cloud\Sql\V1beta4;

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

/**
 * Database flags for Cloud SQL instances.
 *
 * Generated from protobuf message <code>google.cloud.sql.v1beta4.DatabaseFlags</code>
 */
class DatabaseFlags extends \Google\Protobuf\Internal\Message
{
    /**
     * The name of the flag. These flags are passed at instance startup, so
     * include both server options and system variables. Flags are
     * specified with underscores, not hyphens. For more information, see
     * [Configuring Database Flags](https://cloud.google.com/sql/docs/mysql/flags)
     * in the Cloud SQL documentation.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     */
    private $name = '';
    /**
     * The value of the flag. Boolean flags are set to `on` for true
     * and `off` for false. This field must be omitted if the flag
     * doesn't take a value.
     *
     * Generated from protobuf field <code>string value = 2;</code>
     */
    private $value = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *           The name of the flag. These flags are passed at instance startup, so
     *           include both server options and system variables. Flags are
     *           specified with underscores, not hyphens. For more information, see
     *           [Configuring Database Flags](https://cloud.google.com/sql/docs/mysql/flags)
     *           in the Cloud SQL documentation.
     *     @type string $value
     *           The value of the flag. Boolean flags are set to `on` for true
     *           and `off` for false. This field must be omitted if the flag
     *           doesn't take a value.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Sql\V1Beta4\CloudSqlResources::initOnce();
        parent::__construct($data);
    }

    /**
     * The name of the flag. These flags are passed at instance startup, so
     * include both server options and system variables. Flags are
     * specified with underscores, not hyphens. For more information, see
     * [Configuring Database Flags](https://cloud.google.com/sql/docs/mysql/flags)
     * in the Cloud SQL documentation.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * The name of the flag. These flags are passed at instance startup, so
     * include both server options and system variables. Flags are
     * specified with underscores, not hyphens. For more information, see
     * [Configuring Database Flags](https://cloud.google.com/sql/docs/mysql/flags)
     * in the Cloud SQL documentation.
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

    /**
     * The value of the flag. Boolean flags are set to `on` for true
     * and `off` for false. This field must be omitted if the flag
     * doesn't take a value.
     *
     * Generated from protobuf field <code>string value = 2;</code>
     * @return string
     */
    public function getValue()
    {
        return $this->value;
    }

    /**
     * The value of the flag. Boolean flags are set to `on` for true
     * and `off` for false. This field must be omitted if the flag
     * doesn't take a value.
     *
     * Generated from protobuf field <code>string value = 2;</code>
     * @param string $var
     * @return $this
     */
    public function setValue($var)
    {
        GPBUtil::checkString($var, True);
        $this->value = $var;

        return $this;
    }

}

