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

namespace Google\Cloud\Scheduler\V1beta1;

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

/**
 * Request message for forcing a job to run now using
 * [RunJob][google.cloud.scheduler.v1beta1.CloudScheduler.RunJob].
 *
 * Generated from protobuf message <code>google.cloud.scheduler.v1beta1.RunJobRequest</code>
 */
class RunJobRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * Required. The job name. For example:
     * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
     *
     * Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
     */
    private $name = '';
    /**
     * This field is used to manage the legacy App Engine Cron jobs using the
     * Cloud Scheduler API. If the field is set to true, the job in the __cron
     * queue with the corresponding name will be forced to run instead.
     *
     * Generated from protobuf field <code>bool legacy_app_engine_cron = 2;</code>
     */
    private $legacy_app_engine_cron = false;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *           Required. The job name. For example:
     *           `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
     *     @type bool $legacy_app_engine_cron
     *           This field is used to manage the legacy App Engine Cron jobs using the
     *           Cloud Scheduler API. If the field is set to true, the job in the __cron
     *           queue with the corresponding name will be forced to run instead.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Cloud\Scheduler\V1Beta1\Cloudscheduler::initOnce();
        parent::__construct($data);
    }

    /**
     * Required. The job name. For example:
     * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
     *
     * 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 job name. For example:
     * `projects/PROJECT_ID/locations/LOCATION_ID/jobs/JOB_ID`.
     *
     * 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;
    }

    /**
     * This field is used to manage the legacy App Engine Cron jobs using the
     * Cloud Scheduler API. If the field is set to true, the job in the __cron
     * queue with the corresponding name will be forced to run instead.
     *
     * Generated from protobuf field <code>bool legacy_app_engine_cron = 2;</code>
     * @return bool
     */
    public function getLegacyAppEngineCron()
    {
        return $this->legacy_app_engine_cron;
    }

    /**
     * This field is used to manage the legacy App Engine Cron jobs using the
     * Cloud Scheduler API. If the field is set to true, the job in the __cron
     * queue with the corresponding name will be forced to run instead.
     *
     * Generated from protobuf field <code>bool legacy_app_engine_cron = 2;</code>
     * @param bool $var
     * @return $this
     */
    public function setLegacyAppEngineCron($var)
    {
        GPBUtil::checkBool($var);
        $this->legacy_app_engine_cron = $var;

        return $this;
    }

}

