Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You can install the PHP SDK with Composer, either run `composer require microsof
```
{
"require": {
"microsoft/microsoft-graph": "^1.78.0"
"microsoft/microsoft-graph": "^1.79.0"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/classes/Microsoft-Graph-Core-GraphConstants.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ <h3 id="toc">
<dt class="phpdocumentor-table-of-contents__entry -constant -public">
<a href="classes/Microsoft-Graph-Core-GraphConstants.html#constant_SDK_VERSION">SDK_VERSION</a>
<span>
&nbsp;= &quot;1.78.0&quot; </span>
&nbsp;= &quot;1.79.0&quot; </span>
</dt>
<dd></dd>

Expand Down Expand Up @@ -483,7 +483,7 @@ <h4 class="phpdocumentor-element__name" id="constant_SDK_VERSION">
<span class="phpdocumentor-signature__visibility">public</span>
<span class="phpdocumentor-signature__type">mixed</span>
<span class="phpdocumentor-signature__name">SDK_VERSION</span>
= <span class="phpdocumentor-signature__default-value">&quot;1.78.0&quot;</span>
= <span class="phpdocumentor-signature__default-value">&quot;1.79.0&quot;</span>
</code>


Expand Down
4 changes: 2 additions & 2 deletions src/Beta/Microsoft/Graph/Ediscovery/Model/LegalHold.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public function setDisplayName($val)
* Gets the errors
* Lists any errors that happened while placing the hold.
*
* @return array|null The errors
* @return string|null The errors
*/
public function getErrors()
{
Expand All @@ -196,7 +196,7 @@ public function getErrors()
* Sets the errors
* Lists any errors that happened while placing the hold.
*
* @param string[] $val The errors
* @param string $val The errors
*
* @return LegalHold
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Workflow extends WorkflowBase
{
/**
* Gets the deletedDateTime
* The time and date a workflow is deleted. Supports $filter(lt,gt) and $orderby.
* When the workflow was deleted. Supports $filter(lt,gt) and $orderBy.
*
* @return \DateTime|null The deletedDateTime
*/
Expand All @@ -45,7 +45,7 @@ public function getDeletedDateTime()

/**
* Sets the deletedDateTime
* The time and date a workflow is deleted. Supports $filter(lt,gt) and $orderby.
* When the workflow was deleted. Supports $filter(lt,gt) and $orderBy.
*
* @param \DateTime $val The deletedDateTime
*
Expand All @@ -59,7 +59,7 @@ public function setDeletedDateTime($val)

/**
* Gets the id
* Identifier used for individually addressing a specific workflow. Supports $filter(eq).
* Identifier used for individually addressing a specific workflow. Supports $filter(eq, ne).
*
* @return string|null The id
*/
Expand All @@ -74,7 +74,7 @@ public function getId()

/**
* Sets the id
* Identifier used for individually addressing a specific workflow. Supports $filter(eq).
* Identifier used for individually addressing a specific workflow. Supports $filter(eq, ne).
*
* @param string $val The id
*
Expand All @@ -86,67 +86,9 @@ public function setId($val)
return $this;
}

/**
* Gets the isEnabled
* If true, the workflow engine creates and processes taskProcessingResults on the users scoped to the workflow. Supports $filter(eq,ne) and orderby.
*
* @return bool|null The isEnabled
*/
public function getIsEnabled()
{
if (array_key_exists("isEnabled", $this->_propDict)) {
return $this->_propDict["isEnabled"];
} else {
return null;
}
}

/**
* Sets the isEnabled
* If true, the workflow engine creates and processes taskProcessingResults on the users scoped to the workflow. Supports $filter(eq,ne) and orderby.
*
* @param bool $val The isEnabled
*
* @return Workflow
*/
public function setIsEnabled($val)
{
$this->_propDict["isEnabled"] = boolval($val);
return $this;
}

/**
* Gets the isSchedulingEnabled
* If true, the workflow engine executes the workflow on the schedule defined by tenant settings.
*
* @return bool|null The isSchedulingEnabled
*/
public function getIsSchedulingEnabled()
{
if (array_key_exists("isSchedulingEnabled", $this->_propDict)) {
return $this->_propDict["isSchedulingEnabled"];
} else {
return null;
}
}

/**
* Sets the isSchedulingEnabled
* If true, the workflow engine executes the workflow on the schedule defined by tenant settings.
*
* @param bool $val The isSchedulingEnabled
*
* @return Workflow
*/
public function setIsSchedulingEnabled($val)
{
$this->_propDict["isSchedulingEnabled"] = boolval($val);
return $this;
}

/**
* Gets the nextScheduleRunDateTime
* The date time when the workflow is expected to run next based on the schedule interval, if there are any users matching the execution conditions. Supports $filter(lt,gt) and $orderby.
* The date time when the workflow is expected to run next based on the schedule interval, if there are any users matching the execution conditions. Supports $filter(lt,gt) and $orderBy.
*
* @return \DateTime|null The nextScheduleRunDateTime
*/
Expand All @@ -165,7 +107,7 @@ public function getNextScheduleRunDateTime()

/**
* Sets the nextScheduleRunDateTime
* The date time when the workflow is expected to run next based on the schedule interval, if there are any users matching the execution conditions. Supports $filter(lt,gt) and $orderby.
* The date time when the workflow is expected to run next based on the schedule interval, if there are any users matching the execution conditions. Supports $filter(lt,gt) and $orderBy.
*
* @param \DateTime $val The nextScheduleRunDateTime
*
Expand All @@ -179,7 +121,7 @@ public function setNextScheduleRunDateTime($val)

/**
* Gets the version
* The current version number of the workflow. Value is 1 when the workflow is first created. Supports $filter(eq).
* The current version number of the workflow. Value is 1 when the workflow is first created. Supports $filter(eq, ne).
*
* @return int|null The version
*/
Expand All @@ -194,7 +136,7 @@ public function getVersion()

/**
* Sets the version
* The current version number of the workflow. Value is 1 when the workflow is first created. Supports $filter(eq).
* The current version number of the workflow. Value is 1 when the workflow is first created. Supports $filter(eq, ne).
*
* @param int $val The version
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,64 @@ public function setExecutionConditions($val)
return $this;
}

/**
* Gets the isEnabled
* Whether the workflow is enabled or disabled. If this setting is true, the workflow can be run on demand or on schedule when isSchedulingEnabled is true.
*
* @return bool|null The isEnabled
*/
public function getIsEnabled()
{
if (array_key_exists("isEnabled", $this->_propDict)) {
return $this->_propDict["isEnabled"];
} else {
return null;
}
}

/**
* Sets the isEnabled
* Whether the workflow is enabled or disabled. If this setting is true, the workflow can be run on demand or on schedule when isSchedulingEnabled is true.
*
* @param bool $val The isEnabled
*
* @return WorkflowBase
*/
public function setIsEnabled($val)
{
$this->_propDict["isEnabled"] = boolval($val);
return $this;
}

/**
* Gets the isSchedulingEnabled
* If true, the Lifecycle Workflow engine executes the workflow based on the schedule defined by tenant settings. Cannot be true for a disabled workflow (where isEnabled is false).
*
* @return bool|null The isSchedulingEnabled
*/
public function getIsSchedulingEnabled()
{
if (array_key_exists("isSchedulingEnabled", $this->_propDict)) {
return $this->_propDict["isSchedulingEnabled"];
} else {
return null;
}
}

/**
* Sets the isSchedulingEnabled
* If true, the Lifecycle Workflow engine executes the workflow based on the schedule defined by tenant settings. Cannot be true for a disabled workflow (where isEnabled is false).
*
* @param bool $val The isSchedulingEnabled
*
* @return WorkflowBase
*/
public function setIsSchedulingEnabled($val)
{
$this->_propDict["isSchedulingEnabled"] = boolval($val);
return $this;
}

/**
* Gets the lastModifiedDateTime
* When the workflow was last modified.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class WorkflowVersion extends WorkflowBase
{
/**
* Gets the versionNumber
* The version of the workflow.
* The version of the workflow.Supports $filter(eq, ne), orderby.
*
* @return int|null The versionNumber
*/
Expand All @@ -41,7 +41,7 @@ public function getVersionNumber()

/**
* Sets the versionNumber
* The version of the workflow.
* The version of the workflow.Supports $filter(eq, ne), orderby.
*
* @param int $val The versionNumber
*
Expand Down
52 changes: 52 additions & 0 deletions src/Beta/Microsoft/Graph/ManagedTenants/Model/AddLogRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* AddLogRequest 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\ManagedTenants\Model;
/**
* AddLogRequest 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 AddLogRequest extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the logInformation
*
* @return string|null The logInformation
*/
public function getLogInformation()
{
if (array_key_exists("logInformation", $this->_propDict)) {
return $this->_propDict["logInformation"];
} else {
return null;
}
}

/**
* Sets the logInformation
*
* @param string $val The value of the logInformation
*
* @return AddLogRequest
*/
public function setLogInformation($val)
{
$this->_propDict["logInformation"] = $val;
return $this;
}
}
52 changes: 52 additions & 0 deletions src/Beta/Microsoft/Graph/ManagedTenants/Model/AlertData.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* AlertData 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\ManagedTenants\Model;
/**
* AlertData 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 AlertData extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the displayName
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}

/**
* Sets the displayName
*
* @param string $val The value of the displayName
*
* @return AlertData
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
}
Loading