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

namespace Google\Cloud\Dataform\V1beta1;

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

/**
 * `QueryDirectoryContents` request message.
 *
 * Generated from protobuf message <code>google.cloud.dataform.v1beta1.QueryDirectoryContentsRequest</code>
 */
class QueryDirectoryContentsRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * Required. The workspace's name.
     *
     * Generated from protobuf field <code>string workspace = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     */
    private $workspace = '';
    /**
     * Optional. The directory's full path including directory name, relative to the
     * workspace root. If left unset, the workspace root is used.
     *
     * Generated from protobuf field <code>string path = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    private $path = '';
    /**
     * Optional. Maximum number of paths to return. The server may return fewer
     * items than requested. If unspecified, the server will pick an appropriate
     * default.
     *
     * Generated from protobuf field <code>int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    private $page_size = 0;
    /**
     * Optional. Page token received from a previous `QueryDirectoryContents` call.
     * Provide this to retrieve the subsequent page.
     * When paginating, all other parameters provided to
     * `QueryDirectoryContents` must match the call that provided the page
     * token.
     *
     * Generated from protobuf field <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     */
    private $page_token = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $workspace
     *           Required. The workspace's name.
     *     @type string $path
     *           Optional. The directory's full path including directory name, relative to the
     *           workspace root. If left unset, the workspace root is used.
     *     @type int $page_size
     *           Optional. Maximum number of paths to return. The server may return fewer
     *           items than requested. If unspecified, the server will pick an appropriate
     *           default.
     *     @type string $page_token
     *           Optional. Page token received from a previous `QueryDirectoryContents` call.
     *           Provide this to retrieve the subsequent page.
     *           When paginating, all other parameters provided to
     *           `QueryDirectoryContents` must match the call that provided the page
     *           token.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Dataform\V1Beta1\Dataform::initOnce();
        parent::__construct($data);
    }

    /**
     * Required. The workspace's name.
     *
     * Generated from protobuf field <code>string workspace = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @return string
     */
    public function getWorkspace()
    {
        return $this->workspace;
    }

    /**
     * Required. The workspace's name.
     *
     * Generated from protobuf field <code>string workspace = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     * @param string $var
     * @return $this
     */
    public function setWorkspace($var)
    {
        GPBUtil::checkString($var, True);
        $this->workspace = $var;

        return $this;
    }

    /**
     * Optional. The directory's full path including directory name, relative to the
     * workspace root. If left unset, the workspace root is used.
     *
     * Generated from protobuf field <code>string path = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return string
     */
    public function getPath()
    {
        return $this->path;
    }

    /**
     * Optional. The directory's full path including directory name, relative to the
     * workspace root. If left unset, the workspace root is used.
     *
     * Generated from protobuf field <code>string path = 2 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param string $var
     * @return $this
     */
    public function setPath($var)
    {
        GPBUtil::checkString($var, True);
        $this->path = $var;

        return $this;
    }

    /**
     * Optional. Maximum number of paths to return. The server may return fewer
     * items than requested. If unspecified, the server will pick an appropriate
     * default.
     *
     * Generated from protobuf field <code>int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return int
     */
    public function getPageSize()
    {
        return $this->page_size;
    }

    /**
     * Optional. Maximum number of paths to return. The server may return fewer
     * items than requested. If unspecified, the server will pick an appropriate
     * default.
     *
     * Generated from protobuf field <code>int32 page_size = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param int $var
     * @return $this
     */
    public function setPageSize($var)
    {
        GPBUtil::checkInt32($var);
        $this->page_size = $var;

        return $this;
    }

    /**
     * Optional. Page token received from a previous `QueryDirectoryContents` call.
     * Provide this to retrieve the subsequent page.
     * When paginating, all other parameters provided to
     * `QueryDirectoryContents` must match the call that provided the page
     * token.
     *
     * Generated from protobuf field <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @return string
     */
    public function getPageToken()
    {
        return $this->page_token;
    }

    /**
     * Optional. Page token received from a previous `QueryDirectoryContents` call.
     * Provide this to retrieve the subsequent page.
     * When paginating, all other parameters provided to
     * `QueryDirectoryContents` must match the call that provided the page
     * token.
     *
     * Generated from protobuf field <code>string page_token = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
     * @param string $var
     * @return $this
     */
    public function setPageToken($var)
    {
        GPBUtil::checkString($var, True);
        $this->page_token = $var;

        return $this;
    }

}

