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

namespace Google\Cloud\ResourceSettings\V1;

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

/**
 * The request for GetSetting.
 *
 * Generated from protobuf message <code>google.cloud.resourcesettings.v1.GetSettingRequest</code>
 */
class GetSettingRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * Required. The name of the setting to get. See [Setting][google.cloud.resourcesettings.v1.Setting] for naming
     * requirements.
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     */
    private $name = '';
    /**
     * The SettingView for this request.
     *
     * Generated from protobuf field <code>.google.cloud.resourcesettings.v1.SettingView view = 2;</code>
     */
    private $view = 0;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *           Required. The name of the setting to get. See [Setting][google.cloud.resourcesettings.v1.Setting] for naming
     *           requirements.
     *     @type int $view
     *           The SettingView for this request.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Resourcesettings\V1\ResourceSettings::initOnce();
        parent::__construct($data);
    }

    /**
     * Required. The name of the setting to get. See [Setting][google.cloud.resourcesettings.v1.Setting] for naming
     * requirements.
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Required. The name of the setting to get. See [Setting][google.cloud.resourcesettings.v1.Setting] for naming
     * requirements.
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

    /**
     * The SettingView for this request.
     *
     * Generated from protobuf field <code>.google.cloud.resourcesettings.v1.SettingView view = 2;</code>
     * @return int
     */
    public function getView()
    {
        return $this->view;
    }

    /**
     * The SettingView for this request.
     *
     * Generated from protobuf field <code>.google.cloud.resourcesettings.v1.SettingView view = 2;</code>
     * @param int $var
     * @return $this
     */
    public function setView($var)
    {
        GPBUtil::checkEnum($var, \Google\Cloud\ResourceSettings\V1\SettingView::class);
        $this->view = $var;

        return $this;
    }

}

