1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php

186 lines
5.2 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* SynchronizationJob File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Beta\Microsoft\Graph\Model;
/**
* SynchronizationJob class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class SynchronizationJob extends Entity
{
/**
* Gets the schedule
* Schedule used to run the job. Read-only.
*
* @return SynchronizationSchedule|null The schedule
*/
public function getSchedule()
{
if (array_key_exists("schedule", $this->_propDict)) {
if (is_a($this->_propDict["schedule"], "\Beta\Microsoft\Graph\Model\SynchronizationSchedule") || is_null($this->_propDict["schedule"])) {
return $this->_propDict["schedule"];
} else {
$this->_propDict["schedule"] = new SynchronizationSchedule($this->_propDict["schedule"]);
return $this->_propDict["schedule"];
}
}
return null;
}
/**
* Sets the schedule
* Schedule used to run the job. Read-only.
*
* @param SynchronizationSchedule $val The schedule
*
* @return SynchronizationJob
*/
public function setSchedule($val)
{
$this->_propDict["schedule"] = $val;
return $this;
}
/**
* Gets the status
* Status of the job, which includes when the job was last run, current job state, and errors.
*
* @return SynchronizationStatus|null The status
*/
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\SynchronizationStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new SynchronizationStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
}
/**
* Sets the status
* Status of the job, which includes when the job was last run, current job state, and errors.
*
* @param SynchronizationStatus $val The status
*
* @return SynchronizationJob
*/
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
}
/**
* Gets the synchronizationJobSettings
* Settings associated with the job. Some settings are inherited from the template.
*
* @return array|null The synchronizationJobSettings
*/
public function getSynchronizationJobSettings()
{
if (array_key_exists("synchronizationJobSettings", $this->_propDict)) {
return $this->_propDict["synchronizationJobSettings"];
} else {
return null;
}
}
/**
* Sets the synchronizationJobSettings
* Settings associated with the job. Some settings are inherited from the template.
*
* @param KeyValuePair[] $val The synchronizationJobSettings
*
* @return SynchronizationJob
*/
public function setSynchronizationJobSettings($val)
{
$this->_propDict["synchronizationJobSettings"] = $val;
return $this;
}
/**
* Gets the templateId
* Identifier of the synchronization template this job is based on.
*
* @return string|null The templateId
*/
public function getTemplateId()
{
if (array_key_exists("templateId", $this->_propDict)) {
return $this->_propDict["templateId"];
} else {
return null;
}
}
/**
* Sets the templateId
* Identifier of the synchronization template this job is based on.
*
* @param string $val The templateId
*
* @return SynchronizationJob
*/
public function setTemplateId($val)
{
$this->_propDict["templateId"] = $val;
return $this;
}
/**
* Gets the schema
* The synchronization schema configured for the job.
*
* @return SynchronizationSchema|null The schema
*/
public function getSchema()
{
if (array_key_exists("schema", $this->_propDict)) {
if (is_a($this->_propDict["schema"], "\Beta\Microsoft\Graph\Model\SynchronizationSchema") || is_null($this->_propDict["schema"])) {
return $this->_propDict["schema"];
} else {
$this->_propDict["schema"] = new SynchronizationSchema($this->_propDict["schema"]);
return $this->_propDict["schema"];
}
}
return null;
}
/**
* Sets the schema
* The synchronization schema configured for the job.
*
* @param SynchronizationSchema $val The schema
*
* @return SynchronizationJob
*/
public function setSchema($val)
{
$this->_propDict["schema"] = $val;
return $this;
}
}