-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1314 from microsoftgraph/beta/pipelinebuild/122273
Generated beta models and request builders
- Loading branch information
Showing
145 changed files
with
7,002 additions
and
329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
src/Beta/Microsoft/Graph/Model/AndroidDeviceOwnerDelegatedAppScopeType.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
/** | ||
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
* | ||
* AndroidDeviceOwnerDelegatedAppScopeType 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; | ||
|
||
use Microsoft\Graph\Core\Enum; | ||
|
||
/** | ||
* AndroidDeviceOwnerDelegatedAppScopeType 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 AndroidDeviceOwnerDelegatedAppScopeType extends Enum | ||
{ | ||
/** | ||
* The Enum AndroidDeviceOwnerDelegatedAppScopeType | ||
*/ | ||
const UNSPECIFIED = "unspecified"; | ||
const CERTIFICATE_INSTALL = "certificateInstall"; | ||
const CAPTURE_NETWORK_ACTIVITY_LOG = "captureNetworkActivityLog"; | ||
const CAPTURE_SECURITY_LOG = "captureSecurityLog"; | ||
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue"; | ||
} |
92 changes: 92 additions & 0 deletions
92
src/Beta/Microsoft/Graph/Model/AndroidDeviceOwnerDelegatedScopeAppSetting.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<?php | ||
/** | ||
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
* | ||
* AndroidDeviceOwnerDelegatedScopeAppSetting 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; | ||
/** | ||
* AndroidDeviceOwnerDelegatedScopeAppSetting 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 AndroidDeviceOwnerDelegatedScopeAppSetting extends Entity | ||
{ | ||
|
||
/** | ||
* Gets the appDetail | ||
* Information about the app like Name, AppStoreUrl, Publisher and AppId | ||
* | ||
* @return AppListItem|null The appDetail | ||
*/ | ||
public function getAppDetail() | ||
{ | ||
if (array_key_exists("appDetail", $this->_propDict)) { | ||
if (is_a($this->_propDict["appDetail"], "\Beta\Microsoft\Graph\Model\AppListItem") || is_null($this->_propDict["appDetail"])) { | ||
return $this->_propDict["appDetail"]; | ||
} else { | ||
$this->_propDict["appDetail"] = new AppListItem($this->_propDict["appDetail"]); | ||
return $this->_propDict["appDetail"]; | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
/** | ||
* Sets the appDetail | ||
* Information about the app like Name, AppStoreUrl, Publisher and AppId | ||
* | ||
* @param AppListItem $val The value to assign to the appDetail | ||
* | ||
* @return AndroidDeviceOwnerDelegatedScopeAppSetting The AndroidDeviceOwnerDelegatedScopeAppSetting | ||
*/ | ||
public function setAppDetail($val) | ||
{ | ||
$this->_propDict["appDetail"] = $val; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Gets the appScopes | ||
* List of scopes an app has been assigned. | ||
* | ||
* @return AndroidDeviceOwnerDelegatedAppScopeType|null The appScopes | ||
*/ | ||
public function getAppScopes() | ||
{ | ||
if (array_key_exists("appScopes", $this->_propDict)) { | ||
if (is_a($this->_propDict["appScopes"], "\Beta\Microsoft\Graph\Model\AndroidDeviceOwnerDelegatedAppScopeType") || is_null($this->_propDict["appScopes"])) { | ||
return $this->_propDict["appScopes"]; | ||
} else { | ||
$this->_propDict["appScopes"] = new AndroidDeviceOwnerDelegatedAppScopeType($this->_propDict["appScopes"]); | ||
return $this->_propDict["appScopes"]; | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
/** | ||
* Sets the appScopes | ||
* List of scopes an app has been assigned. | ||
* | ||
* @param AndroidDeviceOwnerDelegatedAppScopeType $val The value to assign to the appScopes | ||
* | ||
* @return AndroidDeviceOwnerDelegatedScopeAppSetting The AndroidDeviceOwnerDelegatedScopeAppSetting | ||
*/ | ||
public function setAppScopes($val) | ||
{ | ||
$this->_propDict["appScopes"] = $val; | ||
return $this; | ||
} | ||
} |
Oops, something went wrong.