Skip to content

Commit

Permalink
Merge pull request #1184 from microsoftgraph/dev
Browse files Browse the repository at this point in the history
Release 1.92.0
  • Loading branch information
Ndiritu authored Mar 21, 2023
2 parents dd1d464 + 1e18d16 commit 11bdfe4
Show file tree
Hide file tree
Showing 64 changed files with 4,642 additions and 36 deletions.
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.91.0"
"microsoft/microsoft-graph": "^1.92.0"
}
}
```
Expand Down
31 changes: 31 additions & 0 deletions src/Beta/Microsoft/Graph/ExternalConnectors/Model/External.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,37 @@ public function getProperties()
return $this->_propDict;
}

/**
* Gets the industryData
*
* @return \Beta\Microsoft\Graph\IndustryData\Model\IndustryDataRoot|null The industryData
*/
public function getIndustryData()
{
if (array_key_exists("industryData", $this->_propDict)) {
if (is_a($this->_propDict["industryData"], "\Beta\Microsoft\Graph\IndustryData\Model\IndustryDataRoot") || is_null($this->_propDict["industryData"])) {
return $this->_propDict["industryData"];
} else {
$this->_propDict["industryData"] = new \Beta\Microsoft\Graph\IndustryData\Model\IndustryDataRoot($this->_propDict["industryData"]);
return $this->_propDict["industryData"];
}
}
return null;
}

/**
* Sets the industryData
*
* @param \Beta\Microsoft\Graph\IndustryData\Model\IndustryDataRoot $val The industryData
*
* @return External
*/
public function setIndustryData($val)
{
$this->_propDict["industryData"] = $val;
return $this;
}


/**
* Gets the connections
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,35 @@ public function __construct($propDict = array())
$this->setODataType("#microsoft.graph.identityGovernance.customTaskExtensionCallbackConfiguration");
}


/**
* Gets the authorizedApps
*
* @return \Beta\Microsoft\Graph\Model\Application|null The authorizedApps
*/
public function getAuthorizedApps()
{
if (array_key_exists("authorizedApps", $this->_propDict)) {
if (is_a($this->_propDict["authorizedApps"], "\Beta\Microsoft\Graph\Model\Application") || is_null($this->_propDict["authorizedApps"])) {
return $this->_propDict["authorizedApps"];
} else {
$this->_propDict["authorizedApps"] = new \Beta\Microsoft\Graph\Model\Application($this->_propDict["authorizedApps"]);
return $this->_propDict["authorizedApps"];
}
}
return null;
}

/**
* Sets the authorizedApps
*
* @param \Beta\Microsoft\Graph\Model\Application $val The value to assign to the authorizedApps
*
* @return CustomTaskExtensionCallbackConfiguration The CustomTaskExtensionCallbackConfiguration
*/
public function setAuthorizedApps($val)
{
$this->_propDict["authorizedApps"] = $val;
return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,260 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* AggregatedInboundStatistics 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\IndustryData\Model;
/**
* AggregatedInboundStatistics 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 AggregatedInboundStatistics extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the errors
* The aggregate count of errors encountered by activities during this run.
*
* @return int|null The errors
*/
public function getErrors()
{
if (array_key_exists("errors", $this->_propDict)) {
return $this->_propDict["errors"];
} else {
return null;
}
}

/**
* Sets the errors
* The aggregate count of errors encountered by activities during this run.
*
* @param int $val The value of the errors
*
* @return AggregatedInboundStatistics
*/
public function setErrors($val)
{
$this->_propDict["errors"] = $val;
return $this;
}
/**
* Gets the groups
* The aggregate count of active inbound groups processed during the run.
*
* @return int|null The groups
*/
public function getGroups()
{
if (array_key_exists("groups", $this->_propDict)) {
return $this->_propDict["groups"];
} else {
return null;
}
}

/**
* Sets the groups
* The aggregate count of active inbound groups processed during the run.
*
* @param int $val The value of the groups
*
* @return AggregatedInboundStatistics
*/
public function setGroups($val)
{
$this->_propDict["groups"] = $val;
return $this;
}

/**
* Gets the matchedPeopleByRole
* The aggregate count of active people matched to an Azure Active Directory user, by role.
*
* @return IndustryDataRunRoleCountMetric|null The matchedPeopleByRole
*/
public function getMatchedPeopleByRole()
{
if (array_key_exists("matchedPeopleByRole", $this->_propDict)) {
if (is_a($this->_propDict["matchedPeopleByRole"], "\Beta\Microsoft\Graph\IndustryData\Model\IndustryDataRunRoleCountMetric") || is_null($this->_propDict["matchedPeopleByRole"])) {
return $this->_propDict["matchedPeopleByRole"];
} else {
$this->_propDict["matchedPeopleByRole"] = new IndustryDataRunRoleCountMetric($this->_propDict["matchedPeopleByRole"]);
return $this->_propDict["matchedPeopleByRole"];
}
}
return null;
}

/**
* Sets the matchedPeopleByRole
* The aggregate count of active people matched to an Azure Active Directory user, by role.
*
* @param IndustryDataRunRoleCountMetric $val The value to assign to the matchedPeopleByRole
*
* @return AggregatedInboundStatistics The AggregatedInboundStatistics
*/
public function setMatchedPeopleByRole($val)
{
$this->_propDict["matchedPeopleByRole"] = $val;
return $this;
}
/**
* Gets the memberships
* The aggregate count of active inbound memberships processed during the run.
*
* @return int|null The memberships
*/
public function getMemberships()
{
if (array_key_exists("memberships", $this->_propDict)) {
return $this->_propDict["memberships"];
} else {
return null;
}
}

/**
* Sets the memberships
* The aggregate count of active inbound memberships processed during the run.
*
* @param int $val The value of the memberships
*
* @return AggregatedInboundStatistics
*/
public function setMemberships($val)
{
$this->_propDict["memberships"] = $val;
return $this;
}
/**
* Gets the organizations
* The aggregate count of active inbound organizations processed during the run.
*
* @return int|null The organizations
*/
public function getOrganizations()
{
if (array_key_exists("organizations", $this->_propDict)) {
return $this->_propDict["organizations"];
} else {
return null;
}
}

/**
* Sets the organizations
* The aggregate count of active inbound organizations processed during the run.
*
* @param int $val The value of the organizations
*
* @return AggregatedInboundStatistics
*/
public function setOrganizations($val)
{
$this->_propDict["organizations"] = $val;
return $this;
}
/**
* Gets the people
* The aggregate count of active inbound people processed during the run.
*
* @return int|null The people
*/
public function getPeople()
{
if (array_key_exists("people", $this->_propDict)) {
return $this->_propDict["people"];
} else {
return null;
}
}

/**
* Sets the people
* The aggregate count of active inbound people processed during the run.
*
* @param int $val The value of the people
*
* @return AggregatedInboundStatistics
*/
public function setPeople($val)
{
$this->_propDict["people"] = $val;
return $this;
}

/**
* Gets the unmatchedPeopleByRole
* The aggregate count of active people not matched to an Azure Active Directory user, by role.
*
* @return IndustryDataRunRoleCountMetric|null The unmatchedPeopleByRole
*/
public function getUnmatchedPeopleByRole()
{
if (array_key_exists("unmatchedPeopleByRole", $this->_propDict)) {
if (is_a($this->_propDict["unmatchedPeopleByRole"], "\Beta\Microsoft\Graph\IndustryData\Model\IndustryDataRunRoleCountMetric") || is_null($this->_propDict["unmatchedPeopleByRole"])) {
return $this->_propDict["unmatchedPeopleByRole"];
} else {
$this->_propDict["unmatchedPeopleByRole"] = new IndustryDataRunRoleCountMetric($this->_propDict["unmatchedPeopleByRole"]);
return $this->_propDict["unmatchedPeopleByRole"];
}
}
return null;
}

/**
* Sets the unmatchedPeopleByRole
* The aggregate count of active people not matched to an Azure Active Directory user, by role.
*
* @param IndustryDataRunRoleCountMetric $val The value to assign to the unmatchedPeopleByRole
*
* @return AggregatedInboundStatistics The AggregatedInboundStatistics
*/
public function setUnmatchedPeopleByRole($val)
{
$this->_propDict["unmatchedPeopleByRole"] = $val;
return $this;
}
/**
* Gets the warnings
* The aggregate count of warnings generated by activities during this run.
*
* @return int|null The warnings
*/
public function getWarnings()
{
if (array_key_exists("warnings", $this->_propDict)) {
return $this->_propDict["warnings"];
} else {
return null;
}
}

/**
* Sets the warnings
* The aggregate count of warnings generated by activities during this run.
*
* @param int $val The value of the warnings
*
* @return AggregatedInboundStatistics
*/
public function setWarnings($val)
{
$this->_propDict["warnings"] = $val;
return $this;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* AzureDataLakeConnector 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\IndustryData\Model;

/**
* AzureDataLakeConnector 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 AzureDataLakeConnector extends FileDataConnector
{
}
27 changes: 27 additions & 0 deletions src/Beta/Microsoft/Graph/IndustryData/Model/FileDataConnector.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* FileDataConnector 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\IndustryData\Model;

/**
* FileDataConnector 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 FileDataConnector extends IndustryDataConnector
{
}
Loading

0 comments on commit 11bdfe4

Please sign in to comment.