code
stringlengths 17
296k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function setPackage($val)
{
$this->_propDict["package"] = $val;
return $this;
} | Sets the package
If present, indicates that this item is a package instead of a folder or file. Packages are treated like files in some contexts and folders in others. Read-only.
@param Package $val The package
@return DriveItem | setPackage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getPendingOperations()
{
if (array_key_exists("pendingOperations", $this->_propDict)) {
if (is_a($this->_propDict["pendingOperations"], "\Microsoft\Graph\Model\PendingOperations") || is_null($this->_propDict["pendingOperations"])) {
return $this->_propDict["pendingOperations"];
} else {
$this->_propDict["pendingOperations"] = new PendingOperations($this->_propDict["pendingOperations"]);
return $this->_propDict["pendingOperations"];
}
}
return null;
} | Gets the pendingOperations
If present, indicates that one or more operations that might affect the state of the driveItem are pending completion. Read-only.
@return PendingOperations|null The pendingOperations | getPendingOperations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setPendingOperations($val)
{
$this->_propDict["pendingOperations"] = $val;
return $this;
} | Sets the pendingOperations
If present, indicates that one or more operations that might affect the state of the driveItem are pending completion. Read-only.
@param PendingOperations $val The pendingOperations
@return DriveItem | setPendingOperations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getPhoto()
{
if (array_key_exists("photo", $this->_propDict)) {
if (is_a($this->_propDict["photo"], "\Microsoft\Graph\Model\Photo") || is_null($this->_propDict["photo"])) {
return $this->_propDict["photo"];
} else {
$this->_propDict["photo"] = new Photo($this->_propDict["photo"]);
return $this->_propDict["photo"];
}
}
return null;
} | Gets the photo
Photo metadata, if the item is a photo. Read-only.
@return Photo|null The photo | getPhoto | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setPhoto($val)
{
$this->_propDict["photo"] = $val;
return $this;
} | Sets the photo
Photo metadata, if the item is a photo. Read-only.
@param Photo $val The photo
@return DriveItem | setPhoto | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getPublication()
{
if (array_key_exists("publication", $this->_propDict)) {
if (is_a($this->_propDict["publication"], "\Microsoft\Graph\Model\PublicationFacet") || is_null($this->_propDict["publication"])) {
return $this->_propDict["publication"];
} else {
$this->_propDict["publication"] = new PublicationFacet($this->_propDict["publication"]);
return $this->_propDict["publication"];
}
}
return null;
} | Gets the publication
Provides information about the published or checked-out state of an item, in locations that support such actions. This property is not returned by default. Read-only.
@return PublicationFacet|null The publication | getPublication | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setPublication($val)
{
$this->_propDict["publication"] = $val;
return $this;
} | Sets the publication
Provides information about the published or checked-out state of an item, in locations that support such actions. This property is not returned by default. Read-only.
@param PublicationFacet $val The publication
@return DriveItem | setPublication | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getRemoteItem()
{
if (array_key_exists("remoteItem", $this->_propDict)) {
if (is_a($this->_propDict["remoteItem"], "\Microsoft\Graph\Model\RemoteItem") || is_null($this->_propDict["remoteItem"])) {
return $this->_propDict["remoteItem"];
} else {
$this->_propDict["remoteItem"] = new RemoteItem($this->_propDict["remoteItem"]);
return $this->_propDict["remoteItem"];
}
}
return null;
} | Gets the remoteItem
Remote item data, if the item is shared from a drive other than the one being accessed. Read-only.
@return RemoteItem|null The remoteItem | getRemoteItem | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setRemoteItem($val)
{
$this->_propDict["remoteItem"] = $val;
return $this;
} | Sets the remoteItem
Remote item data, if the item is shared from a drive other than the one being accessed. Read-only.
@param RemoteItem $val The remoteItem
@return DriveItem | setRemoteItem | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getRoot()
{
if (array_key_exists("root", $this->_propDict)) {
if (is_a($this->_propDict["root"], "\Microsoft\Graph\Model\Root") || is_null($this->_propDict["root"])) {
return $this->_propDict["root"];
} else {
$this->_propDict["root"] = new Root($this->_propDict["root"]);
return $this->_propDict["root"];
}
}
return null;
} | Gets the root
If this property is non-null, it indicates that the driveItem is the top-most driveItem in the drive.
@return Root|null The root | getRoot | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setRoot($val)
{
$this->_propDict["root"] = $val;
return $this;
} | Sets the root
If this property is non-null, it indicates that the driveItem is the top-most driveItem in the drive.
@param Root $val The root
@return DriveItem | setRoot | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getSearchResult()
{
if (array_key_exists("searchResult", $this->_propDict)) {
if (is_a($this->_propDict["searchResult"], "\Microsoft\Graph\Model\SearchResult") || is_null($this->_propDict["searchResult"])) {
return $this->_propDict["searchResult"];
} else {
$this->_propDict["searchResult"] = new SearchResult($this->_propDict["searchResult"]);
return $this->_propDict["searchResult"];
}
}
return null;
} | Gets the searchResult
Search metadata, if the item is from a search result. Read-only.
@return SearchResult|null The searchResult | getSearchResult | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setSearchResult($val)
{
$this->_propDict["searchResult"] = $val;
return $this;
} | Sets the searchResult
Search metadata, if the item is from a search result. Read-only.
@param SearchResult $val The searchResult
@return DriveItem | setSearchResult | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getShared()
{
if (array_key_exists("shared", $this->_propDict)) {
if (is_a($this->_propDict["shared"], "\Microsoft\Graph\Model\Shared") || is_null($this->_propDict["shared"])) {
return $this->_propDict["shared"];
} else {
$this->_propDict["shared"] = new Shared($this->_propDict["shared"]);
return $this->_propDict["shared"];
}
}
return null;
} | Gets the shared
Indicates that the item has been shared with others and provides information about the shared state of the item. Read-only.
@return Shared|null The shared | getShared | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setShared($val)
{
$this->_propDict["shared"] = $val;
return $this;
} | Sets the shared
Indicates that the item has been shared with others and provides information about the shared state of the item. Read-only.
@param Shared $val The shared
@return DriveItem | setShared | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getSharepointIds()
{
if (array_key_exists("sharepointIds", $this->_propDict)) {
if (is_a($this->_propDict["sharepointIds"], "\Microsoft\Graph\Model\SharepointIds") || is_null($this->_propDict["sharepointIds"])) {
return $this->_propDict["sharepointIds"];
} else {
$this->_propDict["sharepointIds"] = new SharepointIds($this->_propDict["sharepointIds"]);
return $this->_propDict["sharepointIds"];
}
}
return null;
} | Gets the sharepointIds
Returns identifiers useful for SharePoint REST compatibility. Read-only.
@return SharepointIds|null The sharepointIds | getSharepointIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setSharepointIds($val)
{
$this->_propDict["sharepointIds"] = $val;
return $this;
} | Sets the sharepointIds
Returns identifiers useful for SharePoint REST compatibility. Read-only.
@param SharepointIds $val The sharepointIds
@return DriveItem | setSharepointIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getSize()
{
if (array_key_exists("size", $this->_propDict)) {
return $this->_propDict["size"];
} else {
return null;
}
} | Gets the size
Size of the item in bytes. Read-only.
@return int|null The size | getSize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setSize($val)
{
$this->_propDict["size"] = intval($val);
return $this;
} | Sets the size
Size of the item in bytes. Read-only.
@param int $val The size
@return DriveItem | setSize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getSpecialFolder()
{
if (array_key_exists("specialFolder", $this->_propDict)) {
if (is_a($this->_propDict["specialFolder"], "\Microsoft\Graph\Model\SpecialFolder") || is_null($this->_propDict["specialFolder"])) {
return $this->_propDict["specialFolder"];
} else {
$this->_propDict["specialFolder"] = new SpecialFolder($this->_propDict["specialFolder"]);
return $this->_propDict["specialFolder"];
}
}
return null;
} | Gets the specialFolder
If the current item is also available as a special folder, this facet is returned. Read-only.
@return SpecialFolder|null The specialFolder | getSpecialFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setSpecialFolder($val)
{
$this->_propDict["specialFolder"] = $val;
return $this;
} | Sets the specialFolder
If the current item is also available as a special folder, this facet is returned. Read-only.
@param SpecialFolder $val The specialFolder
@return DriveItem | setSpecialFolder | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getVideo()
{
if (array_key_exists("video", $this->_propDict)) {
if (is_a($this->_propDict["video"], "\Microsoft\Graph\Model\Video") || is_null($this->_propDict["video"])) {
return $this->_propDict["video"];
} else {
$this->_propDict["video"] = new Video($this->_propDict["video"]);
return $this->_propDict["video"];
}
}
return null;
} | Gets the video
Video metadata, if the item is a video. Read-only.
@return Video|null The video | getVideo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setVideo($val)
{
$this->_propDict["video"] = $val;
return $this;
} | Sets the video
Video metadata, if the item is a video. Read-only.
@param Video $val The video
@return DriveItem | setVideo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getWebDavUrl()
{
if (array_key_exists("webDavUrl", $this->_propDict)) {
return $this->_propDict["webDavUrl"];
} else {
return null;
}
} | Gets the webDavUrl
WebDAV compatible URL for the item.
@return string|null The webDavUrl | getWebDavUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setWebDavUrl($val)
{
$this->_propDict["webDavUrl"] = $val;
return $this;
} | Sets the webDavUrl
WebDAV compatible URL for the item.
@param string $val The webDavUrl
@return DriveItem | setWebDavUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getWorkbook()
{
if (array_key_exists("workbook", $this->_propDict)) {
if (is_a($this->_propDict["workbook"], "\Microsoft\Graph\Model\Workbook") || is_null($this->_propDict["workbook"])) {
return $this->_propDict["workbook"];
} else {
$this->_propDict["workbook"] = new Workbook($this->_propDict["workbook"]);
return $this->_propDict["workbook"];
}
}
return null;
} | Gets the workbook
For files that are Excel spreadsheets, accesses the workbook API to work with the spreadsheet's contents. Nullable.
@return Workbook|null The workbook | getWorkbook | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setWorkbook($val)
{
$this->_propDict["workbook"] = $val;
return $this;
} | Sets the workbook
For files that are Excel spreadsheets, accesses the workbook API to work with the spreadsheet's contents. Nullable.
@param Workbook $val The workbook
@return DriveItem | setWorkbook | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getAnalytics()
{
if (array_key_exists("analytics", $this->_propDict)) {
if (is_a($this->_propDict["analytics"], "\Microsoft\Graph\Model\ItemAnalytics") || is_null($this->_propDict["analytics"])) {
return $this->_propDict["analytics"];
} else {
$this->_propDict["analytics"] = new ItemAnalytics($this->_propDict["analytics"]);
return $this->_propDict["analytics"];
}
}
return null;
} | Gets the analytics
Analytics about the view activities that took place on this item.
@return ItemAnalytics|null The analytics | getAnalytics | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setAnalytics($val)
{
$this->_propDict["analytics"] = $val;
return $this;
} | Sets the analytics
Analytics about the view activities that took place on this item.
@param ItemAnalytics $val The analytics
@return DriveItem | setAnalytics | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getChildren()
{
if (array_key_exists("children", $this->_propDict)) {
return $this->_propDict["children"];
} else {
return null;
}
} | Gets the children
Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable.
@return array|null The children | getChildren | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setChildren($val)
{
$this->_propDict["children"] = $val;
return $this;
} | Sets the children
Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable.
@param DriveItem[] $val The children
@return DriveItem | setChildren | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getListItem()
{
if (array_key_exists("listItem", $this->_propDict)) {
if (is_a($this->_propDict["listItem"], "\Microsoft\Graph\Model\ListItem") || is_null($this->_propDict["listItem"])) {
return $this->_propDict["listItem"];
} else {
$this->_propDict["listItem"] = new ListItem($this->_propDict["listItem"]);
return $this->_propDict["listItem"];
}
}
return null;
} | Gets the listItem
For drives in SharePoint, the associated document library list item. Read-only. Nullable.
@return ListItem|null The listItem | getListItem | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setListItem($val)
{
$this->_propDict["listItem"] = $val;
return $this;
} | Sets the listItem
For drives in SharePoint, the associated document library list item. Read-only. Nullable.
@param ListItem $val The listItem
@return DriveItem | setListItem | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getPermissions()
{
if (array_key_exists("permissions", $this->_propDict)) {
return $this->_propDict["permissions"];
} else {
return null;
}
} | Gets the permissions
The set of permissions for the item. Read-only. Nullable.
@return array|null The permissions | getPermissions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setPermissions($val)
{
$this->_propDict["permissions"] = $val;
return $this;
} | Sets the permissions
The set of permissions for the item. Read-only. Nullable.
@param Permission[] $val The permissions
@return DriveItem | setPermissions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getSubscriptions()
{
if (array_key_exists("subscriptions", $this->_propDict)) {
return $this->_propDict["subscriptions"];
} else {
return null;
}
} | Gets the subscriptions
The set of subscriptions on the item. Only supported on the root of a drive.
@return array|null The subscriptions | getSubscriptions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setSubscriptions($val)
{
$this->_propDict["subscriptions"] = $val;
return $this;
} | Sets the subscriptions
The set of subscriptions on the item. Only supported on the root of a drive.
@param Subscription[] $val The subscriptions
@return DriveItem | setSubscriptions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getThumbnails()
{
if (array_key_exists("thumbnails", $this->_propDict)) {
return $this->_propDict["thumbnails"];
} else {
return null;
}
} | Gets the thumbnails
Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.
@return array|null The thumbnails | getThumbnails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setThumbnails($val)
{
$this->_propDict["thumbnails"] = $val;
return $this;
} | Sets the thumbnails
Collection containing [ThumbnailSet][] objects associated with the item. For more info, see [getting thumbnails][]. Read-only. Nullable.
@param ThumbnailSet[] $val The thumbnails
@return DriveItem | setThumbnails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getVersions()
{
if (array_key_exists("versions", $this->_propDict)) {
return $this->_propDict["versions"];
} else {
return null;
}
} | Gets the versions
The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.
@return array|null The versions | getVersions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function setVersions($val)
{
$this->_propDict["versions"] = $val;
return $this;
} | Sets the versions
The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable.
@param DriveItemVersion[] $val The versions
@return DriveItem | setVersions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItem.php | MIT |
public function getProperties()
{
return $this->_propDict;
} | Gets the property dictionary of the CrossTenantAccessPolicyConfigurationPartner
@return array The list of properties | getProperties | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getAutomaticUserConsentSettings()
{
if (array_key_exists("automaticUserConsentSettings", $this->_propDict)) {
if (is_a($this->_propDict["automaticUserConsentSettings"], "\Microsoft\Graph\Model\InboundOutboundPolicyConfiguration") || is_null($this->_propDict["automaticUserConsentSettings"])) {
return $this->_propDict["automaticUserConsentSettings"];
} else {
$this->_propDict["automaticUserConsentSettings"] = new InboundOutboundPolicyConfiguration($this->_propDict["automaticUserConsentSettings"]);
return $this->_propDict["automaticUserConsentSettings"];
}
}
return null;
} | Gets the automaticUserConsentSettings
Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false.
@return InboundOutboundPolicyConfiguration|null The automaticUserConsentSettings | getAutomaticUserConsentSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setAutomaticUserConsentSettings($val)
{
$this->_propDict["automaticUserConsentSettings"] = $val;
return $this;
} | Sets the automaticUserConsentSettings
Determines the partner-specific configuration for automatic user consent settings. Unless specifically configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false.
@param InboundOutboundPolicyConfiguration $val The automaticUserConsentSettings
@return CrossTenantAccessPolicyConfigurationPartner | setAutomaticUserConsentSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bCollaborationInbound()
{
if (array_key_exists("b2bCollaborationInbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bCollaborationInbound"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bCollaborationInbound"])) {
return $this->_propDict["b2bCollaborationInbound"];
} else {
$this->_propDict["b2bCollaborationInbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bCollaborationInbound"]);
return $this->_propDict["b2bCollaborationInbound"];
}
}
return null;
} | Gets the b2bCollaborationInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration.
@return CrossTenantAccessPolicyB2BSetting|null The b2bCollaborationInbound | getB2bCollaborationInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bCollaborationInbound($val)
{
$this->_propDict["b2bCollaborationInbound"] = $val;
return $this;
} | Sets the b2bCollaborationInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration.
@param CrossTenantAccessPolicyB2BSetting $val The b2bCollaborationInbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bCollaborationInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bCollaborationOutbound()
{
if (array_key_exists("b2bCollaborationOutbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bCollaborationOutbound"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bCollaborationOutbound"])) {
return $this->_propDict["b2bCollaborationOutbound"];
} else {
$this->_propDict["b2bCollaborationOutbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bCollaborationOutbound"]);
return $this->_propDict["b2bCollaborationOutbound"];
}
}
return null;
} | Gets the b2bCollaborationOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration.
@return CrossTenantAccessPolicyB2BSetting|null The b2bCollaborationOutbound | getB2bCollaborationOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bCollaborationOutbound($val)
{
$this->_propDict["b2bCollaborationOutbound"] = $val;
return $this;
} | Sets the b2bCollaborationOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration.
@param CrossTenantAccessPolicyB2BSetting $val The b2bCollaborationOutbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bCollaborationOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bDirectConnectInbound()
{
if (array_key_exists("b2bDirectConnectInbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bDirectConnectInbound"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bDirectConnectInbound"])) {
return $this->_propDict["b2bDirectConnectInbound"];
} else {
$this->_propDict["b2bDirectConnectInbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bDirectConnectInbound"]);
return $this->_propDict["b2bDirectConnectInbound"];
}
}
return null;
} | Gets the b2bDirectConnectInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
@return CrossTenantAccessPolicyB2BSetting|null The b2bDirectConnectInbound | getB2bDirectConnectInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bDirectConnectInbound($val)
{
$this->_propDict["b2bDirectConnectInbound"] = $val;
return $this;
} | Sets the b2bDirectConnectInbound
Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
@param CrossTenantAccessPolicyB2BSetting $val The b2bDirectConnectInbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bDirectConnectInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getB2bDirectConnectOutbound()
{
if (array_key_exists("b2bDirectConnectOutbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bDirectConnectOutbound"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bDirectConnectOutbound"])) {
return $this->_propDict["b2bDirectConnectOutbound"];
} else {
$this->_propDict["b2bDirectConnectOutbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bDirectConnectOutbound"]);
return $this->_propDict["b2bDirectConnectOutbound"];
}
}
return null;
} | Gets the b2bDirectConnectOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect.
@return CrossTenantAccessPolicyB2BSetting|null The b2bDirectConnectOutbound | getB2bDirectConnectOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setB2bDirectConnectOutbound($val)
{
$this->_propDict["b2bDirectConnectOutbound"] = $val;
return $this;
} | Sets the b2bDirectConnectOutbound
Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect.
@param CrossTenantAccessPolicyB2BSetting $val The b2bDirectConnectOutbound
@return CrossTenantAccessPolicyConfigurationPartner | setB2bDirectConnectOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getInboundTrust()
{
if (array_key_exists("inboundTrust", $this->_propDict)) {
if (is_a($this->_propDict["inboundTrust"], "\Microsoft\Graph\Model\CrossTenantAccessPolicyInboundTrust") || is_null($this->_propDict["inboundTrust"])) {
return $this->_propDict["inboundTrust"];
} else {
$this->_propDict["inboundTrust"] = new CrossTenantAccessPolicyInboundTrust($this->_propDict["inboundTrust"]);
return $this->_propDict["inboundTrust"];
}
}
return null;
} | Gets the inboundTrust
Determines the partner-specific configuration for trusting other Conditional Access claims from external Azure AD organizations.
@return CrossTenantAccessPolicyInboundTrust|null The inboundTrust | getInboundTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setInboundTrust($val)
{
$this->_propDict["inboundTrust"] = $val;
return $this;
} | Sets the inboundTrust
Determines the partner-specific configuration for trusting other Conditional Access claims from external Azure AD organizations.
@param CrossTenantAccessPolicyInboundTrust $val The inboundTrust
@return CrossTenantAccessPolicyConfigurationPartner | setInboundTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getIsServiceProvider()
{
if (array_key_exists("isServiceProvider", $this->_propDict)) {
return $this->_propDict["isServiceProvider"];
} else {
return null;
}
} | Gets the isServiceProvider
Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
@return bool|null The isServiceProvider | getIsServiceProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setIsServiceProvider($val)
{
$this->_propDict["isServiceProvider"] = boolval($val);
return $this;
} | Sets the isServiceProvider
Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization.
@param bool $val The isServiceProvider
@return CrossTenantAccessPolicyConfigurationPartner | setIsServiceProvider | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getTenantId()
{
if (array_key_exists("tenantId", $this->_propDict)) {
return $this->_propDict["tenantId"];
} else {
return null;
}
} | Gets the tenantId
The tenant identifier for the partner Azure AD organization. Read-only. Key.
@return string|null The tenantId | getTenantId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setTenantId($val)
{
$this->_propDict["tenantId"] = $val;
return $this;
} | Sets the tenantId
The tenant identifier for the partner Azure AD organization. Read-only. Key.
@param string $val The tenantId
@return CrossTenantAccessPolicyConfigurationPartner | setTenantId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getIdentitySynchronization()
{
if (array_key_exists("identitySynchronization", $this->_propDict)) {
if (is_a($this->_propDict["identitySynchronization"], "\Microsoft\Graph\Model\CrossTenantIdentitySyncPolicyPartner") || is_null($this->_propDict["identitySynchronization"])) {
return $this->_propDict["identitySynchronization"];
} else {
$this->_propDict["identitySynchronization"] = new CrossTenantIdentitySyncPolicyPartner($this->_propDict["identitySynchronization"]);
return $this->_propDict["identitySynchronization"];
}
}
return null;
} | Gets the identitySynchronization
Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another.
@return CrossTenantIdentitySyncPolicyPartner|null The identitySynchronization | getIdentitySynchronization | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function setIdentitySynchronization($val)
{
$this->_propDict["identitySynchronization"] = $val;
return $this;
} | Sets the identitySynchronization
Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multi-tenant organization by automating the creation, update, and deletion of users from one tenant to another.
@param CrossTenantIdentitySyncPolicyPartner $val The identitySynchronization
@return CrossTenantAccessPolicyConfigurationPartner | setIdentitySynchronization | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function jsonSerialize()
{
$serializableProperties = $this->getProperties();
foreach ($serializableProperties as $property => $val) {
if (is_a($val, "\DateTime")) {
$serializableProperties[$property] = $val->format(\DateTime::RFC3339);
} else if (is_a($val, "\Microsoft\Graph\Core\Enum")) {
$serializableProperties[$property] = $val->value();
} else if (is_a($val, "\Entity")) {
$serializableProperties[$property] = $val->jsonSerialize();
} else if (is_a($val, "\GuzzleHttp\Psr7\Stream")) {
$serializableProperties[$property] = (string) $val;
}
}
return $serializableProperties;
} | Serializes the object by property array
Manually serialize DateTime into RFC3339 format
@return array The list of properties | jsonSerialize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/CrossTenantAccessPolicyConfigurationPartner.php | MIT |
public function getCompliantDeviceCount()
{
if (array_key_exists("compliantDeviceCount", $this->_propDict)) {
return $this->_propDict["compliantDeviceCount"];
} else {
return null;
}
} | Gets the compliantDeviceCount
Number of compliant devices
@return int|null The compliantDeviceCount | getCompliantDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function setCompliantDeviceCount($val)
{
$this->_propDict["compliantDeviceCount"] = intval($val);
return $this;
} | Sets the compliantDeviceCount
Number of compliant devices
@param int $val The compliantDeviceCount
@return DeviceConfigurationDeviceStateSummary | setCompliantDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function getConflictDeviceCount()
{
if (array_key_exists("conflictDeviceCount", $this->_propDict)) {
return $this->_propDict["conflictDeviceCount"];
} else {
return null;
}
} | Gets the conflictDeviceCount
Number of conflict devices
@return int|null The conflictDeviceCount | getConflictDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function setConflictDeviceCount($val)
{
$this->_propDict["conflictDeviceCount"] = intval($val);
return $this;
} | Sets the conflictDeviceCount
Number of conflict devices
@param int $val The conflictDeviceCount
@return DeviceConfigurationDeviceStateSummary | setConflictDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function getErrorDeviceCount()
{
if (array_key_exists("errorDeviceCount", $this->_propDict)) {
return $this->_propDict["errorDeviceCount"];
} else {
return null;
}
} | Gets the errorDeviceCount
Number of error devices
@return int|null The errorDeviceCount | getErrorDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function setErrorDeviceCount($val)
{
$this->_propDict["errorDeviceCount"] = intval($val);
return $this;
} | Sets the errorDeviceCount
Number of error devices
@param int $val The errorDeviceCount
@return DeviceConfigurationDeviceStateSummary | setErrorDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function getNonCompliantDeviceCount()
{
if (array_key_exists("nonCompliantDeviceCount", $this->_propDict)) {
return $this->_propDict["nonCompliantDeviceCount"];
} else {
return null;
}
} | Gets the nonCompliantDeviceCount
Number of NonCompliant devices
@return int|null The nonCompliantDeviceCount | getNonCompliantDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function setNonCompliantDeviceCount($val)
{
$this->_propDict["nonCompliantDeviceCount"] = intval($val);
return $this;
} | Sets the nonCompliantDeviceCount
Number of NonCompliant devices
@param int $val The nonCompliantDeviceCount
@return DeviceConfigurationDeviceStateSummary | setNonCompliantDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function getNotApplicableDeviceCount()
{
if (array_key_exists("notApplicableDeviceCount", $this->_propDict)) {
return $this->_propDict["notApplicableDeviceCount"];
} else {
return null;
}
} | Gets the notApplicableDeviceCount
Number of not applicable devices
@return int|null The notApplicableDeviceCount | getNotApplicableDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function setNotApplicableDeviceCount($val)
{
$this->_propDict["notApplicableDeviceCount"] = intval($val);
return $this;
} | Sets the notApplicableDeviceCount
Number of not applicable devices
@param int $val The notApplicableDeviceCount
@return DeviceConfigurationDeviceStateSummary | setNotApplicableDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function getRemediatedDeviceCount()
{
if (array_key_exists("remediatedDeviceCount", $this->_propDict)) {
return $this->_propDict["remediatedDeviceCount"];
} else {
return null;
}
} | Gets the remediatedDeviceCount
Number of remediated devices
@return int|null The remediatedDeviceCount | getRemediatedDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function setRemediatedDeviceCount($val)
{
$this->_propDict["remediatedDeviceCount"] = intval($val);
return $this;
} | Sets the remediatedDeviceCount
Number of remediated devices
@param int $val The remediatedDeviceCount
@return DeviceConfigurationDeviceStateSummary | setRemediatedDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function getUnknownDeviceCount()
{
if (array_key_exists("unknownDeviceCount", $this->_propDict)) {
return $this->_propDict["unknownDeviceCount"];
} else {
return null;
}
} | Gets the unknownDeviceCount
Number of unknown devices
@return int|null The unknownDeviceCount | getUnknownDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function setUnknownDeviceCount($val)
{
$this->_propDict["unknownDeviceCount"] = intval($val);
return $this;
} | Sets the unknownDeviceCount
Number of unknown devices
@param int $val The unknownDeviceCount
@return DeviceConfigurationDeviceStateSummary | setUnknownDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DeviceConfigurationDeviceStateSummary.php | MIT |
public function getLastModifiedBy()
{
if (array_key_exists("lastModifiedBy", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedBy"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["lastModifiedBy"])) {
return $this->_propDict["lastModifiedBy"];
} else {
$this->_propDict["lastModifiedBy"] = new IdentitySet($this->_propDict["lastModifiedBy"]);
return $this->_propDict["lastModifiedBy"];
}
}
return null;
} | Gets the lastModifiedBy
The individual who updated the resource.
@return IdentitySet|null The lastModifiedBy | getLastModifiedBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationOutcome.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationOutcome.php | MIT |
public function setLastModifiedBy($val)
{
$this->_propDict["lastModifiedBy"] = $val;
return $this;
} | Sets the lastModifiedBy
The individual who updated the resource.
@param IdentitySet $val The lastModifiedBy
@return EducationOutcome | setLastModifiedBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationOutcome.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationOutcome.php | MIT |
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
} | Gets the lastModifiedDateTime
The moment in time when the resource was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2021 is 2021-01-01T00:00:00Z.
@return \DateTime|null The lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationOutcome.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationOutcome.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
The moment in time when the resource was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2021 is 2021-01-01T00:00:00Z.
@param \DateTime $val The lastModifiedDateTime
@return EducationOutcome | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationOutcome.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationOutcome.php | MIT |
public function getDefault()
{
if (array_key_exists("default", $this->_propDict)) {
return $this->_propDict["default"];
} else {
return null;
}
} | Gets the default
Whether this is the default Content Type
@return bool|null The default | getDefault | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | MIT |
public function setDefault($val)
{
$this->_propDict["default"] = $val;
return $this;
} | Sets the default
Whether this is the default Content Type
@param bool $val The value of the default
@return ContentTypeOrder | setDefault | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | MIT |
public function getPosition()
{
if (array_key_exists("position", $this->_propDict)) {
return $this->_propDict["position"];
} else {
return null;
}
} | Gets the position
Specifies the position in which the Content Type appears in the selection UI.
@return int|null The position | getPosition | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | MIT |
public function setPosition($val)
{
$this->_propDict["position"] = $val;
return $this;
} | Sets the position
Specifies the position in which the Content Type appears in the selection UI.
@param int $val The value of the position
@return ContentTypeOrder | setPosition | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ContentTypeOrder.php | MIT |
public function getAuthenticationMethod()
{
if (array_key_exists("authenticationMethod", $this->_propDict)) {
if (is_a($this->_propDict["authenticationMethod"], "\Beta\Microsoft\Graph\Model\WiFiAuthenticationMethod") || is_null($this->_propDict["authenticationMethod"])) {
return $this->_propDict["authenticationMethod"];
} else {
$this->_propDict["authenticationMethod"] = new WiFiAuthenticationMethod($this->_propDict["authenticationMethod"]);
return $this->_propDict["authenticationMethod"];
}
}
return null;
} | Gets the authenticationMethod
Authentication Method when EAP Type is configured to PEAP or EAP-TTLS. Possible values are: certificate, usernameAndPassword, derivedCredential.
@return WiFiAuthenticationMethod|null The authenticationMethod | getAuthenticationMethod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setAuthenticationMethod($val)
{
$this->_propDict["authenticationMethod"] = $val;
return $this;
} | Sets the authenticationMethod
Authentication Method when EAP Type is configured to PEAP or EAP-TTLS. Possible values are: certificate, usernameAndPassword, derivedCredential.
@param WiFiAuthenticationMethod $val The authenticationMethod
@return MacOSWiredNetworkConfiguration | setAuthenticationMethod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getEapFastConfiguration()
{
if (array_key_exists("eapFastConfiguration", $this->_propDict)) {
if (is_a($this->_propDict["eapFastConfiguration"], "\Beta\Microsoft\Graph\Model\EapFastConfiguration") || is_null($this->_propDict["eapFastConfiguration"])) {
return $this->_propDict["eapFastConfiguration"];
} else {
$this->_propDict["eapFastConfiguration"] = new EapFastConfiguration($this->_propDict["eapFastConfiguration"]);
return $this->_propDict["eapFastConfiguration"];
}
}
return null;
} | Gets the eapFastConfiguration
EAP-FAST Configuration Option when EAP-FAST is the selected EAP Type. Possible values are: noProtectedAccessCredential, useProtectedAccessCredential, useProtectedAccessCredentialAndProvision, useProtectedAccessCredentialAndProvisionAnonymously.
@return EapFastConfiguration|null The eapFastConfiguration | getEapFastConfiguration | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setEapFastConfiguration($val)
{
$this->_propDict["eapFastConfiguration"] = $val;
return $this;
} | Sets the eapFastConfiguration
EAP-FAST Configuration Option when EAP-FAST is the selected EAP Type. Possible values are: noProtectedAccessCredential, useProtectedAccessCredential, useProtectedAccessCredentialAndProvision, useProtectedAccessCredentialAndProvisionAnonymously.
@param EapFastConfiguration $val The eapFastConfiguration
@return MacOSWiredNetworkConfiguration | setEapFastConfiguration | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getEapType()
{
if (array_key_exists("eapType", $this->_propDict)) {
if (is_a($this->_propDict["eapType"], "\Beta\Microsoft\Graph\Model\EapType") || is_null($this->_propDict["eapType"])) {
return $this->_propDict["eapType"];
} else {
$this->_propDict["eapType"] = new EapType($this->_propDict["eapType"]);
return $this->_propDict["eapType"];
}
}
return null;
} | Gets the eapType
Extensible Authentication Protocol (EAP). Indicates the type of EAP protocol set on the wired network. Possible values are: eapTls, leap, eapSim, eapTtls, peap, eapFast, teap.
@return EapType|null The eapType | getEapType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setEapType($val)
{
$this->_propDict["eapType"] = $val;
return $this;
} | Sets the eapType
Extensible Authentication Protocol (EAP). Indicates the type of EAP protocol set on the wired network. Possible values are: eapTls, leap, eapSim, eapTtls, peap, eapFast, teap.
@param EapType $val The eapType
@return MacOSWiredNetworkConfiguration | setEapType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getEnableOuterIdentityPrivacy()
{
if (array_key_exists("enableOuterIdentityPrivacy", $this->_propDict)) {
return $this->_propDict["enableOuterIdentityPrivacy"];
} else {
return null;
}
} | Gets the enableOuterIdentityPrivacy
Enable identity privacy (Outer Identity) when EAP Type is configured to EAP-TTLS, EAP-FAST or PEAP. This property masks usernames with the text you enter. For example, if you use 'anonymous', each user that authenticates with this wired network using their real username is displayed as 'anonymous'.
@return string|null The enableOuterIdentityPrivacy | getEnableOuterIdentityPrivacy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setEnableOuterIdentityPrivacy($val)
{
$this->_propDict["enableOuterIdentityPrivacy"] = $val;
return $this;
} | Sets the enableOuterIdentityPrivacy
Enable identity privacy (Outer Identity) when EAP Type is configured to EAP-TTLS, EAP-FAST or PEAP. This property masks usernames with the text you enter. For example, if you use 'anonymous', each user that authenticates with this wired network using their real username is displayed as 'anonymous'.
@param string $val The enableOuterIdentityPrivacy
@return MacOSWiredNetworkConfiguration | setEnableOuterIdentityPrivacy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getNetworkInterface()
{
if (array_key_exists("networkInterface", $this->_propDict)) {
if (is_a($this->_propDict["networkInterface"], "\Beta\Microsoft\Graph\Model\WiredNetworkInterface") || is_null($this->_propDict["networkInterface"])) {
return $this->_propDict["networkInterface"];
} else {
$this->_propDict["networkInterface"] = new WiredNetworkInterface($this->_propDict["networkInterface"]);
return $this->_propDict["networkInterface"];
}
}
return null;
} | Gets the networkInterface
Network interface. Possible values are: anyEthernet, firstActiveEthernet, secondActiveEthernet, thirdActiveEthernet, firstEthernet, secondEthernet, thirdEthernet.
@return WiredNetworkInterface|null The networkInterface | getNetworkInterface | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setNetworkInterface($val)
{
$this->_propDict["networkInterface"] = $val;
return $this;
} | Sets the networkInterface
Network interface. Possible values are: anyEthernet, firstActiveEthernet, secondActiveEthernet, thirdActiveEthernet, firstEthernet, secondEthernet, thirdEthernet.
@param WiredNetworkInterface $val The networkInterface
@return MacOSWiredNetworkConfiguration | setNetworkInterface | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getNetworkName()
{
if (array_key_exists("networkName", $this->_propDict)) {
return $this->_propDict["networkName"];
} else {
return null;
}
} | Gets the networkName
Network Name
@return string|null The networkName | getNetworkName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setNetworkName($val)
{
$this->_propDict["networkName"] = $val;
return $this;
} | Sets the networkName
Network Name
@param string $val The networkName
@return MacOSWiredNetworkConfiguration | setNetworkName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getNonEapAuthenticationMethodForEapTtls()
{
if (array_key_exists("nonEapAuthenticationMethodForEapTtls", $this->_propDict)) {
if (is_a($this->_propDict["nonEapAuthenticationMethodForEapTtls"], "\Beta\Microsoft\Graph\Model\NonEapAuthenticationMethodForEapTtlsType") || is_null($this->_propDict["nonEapAuthenticationMethodForEapTtls"])) {
return $this->_propDict["nonEapAuthenticationMethodForEapTtls"];
} else {
$this->_propDict["nonEapAuthenticationMethodForEapTtls"] = new NonEapAuthenticationMethodForEapTtlsType($this->_propDict["nonEapAuthenticationMethodForEapTtls"]);
return $this->_propDict["nonEapAuthenticationMethodForEapTtls"];
}
}
return null;
} | Gets the nonEapAuthenticationMethodForEapTtls
Non-EAP Method for Authentication (Inner Identity) when EAP Type is EAP-TTLS and Authenticationmethod is Username and Password. Possible values are: unencryptedPassword, challengeHandshakeAuthenticationProtocol, microsoftChap, microsoftChapVersionTwo.
@return NonEapAuthenticationMethodForEapTtlsType|null The nonEapAuthenticationMethodForEapTtls | getNonEapAuthenticationMethodForEapTtls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setNonEapAuthenticationMethodForEapTtls($val)
{
$this->_propDict["nonEapAuthenticationMethodForEapTtls"] = $val;
return $this;
} | Sets the nonEapAuthenticationMethodForEapTtls
Non-EAP Method for Authentication (Inner Identity) when EAP Type is EAP-TTLS and Authenticationmethod is Username and Password. Possible values are: unencryptedPassword, challengeHandshakeAuthenticationProtocol, microsoftChap, microsoftChapVersionTwo.
@param NonEapAuthenticationMethodForEapTtlsType $val The nonEapAuthenticationMethodForEapTtls
@return MacOSWiredNetworkConfiguration | setNonEapAuthenticationMethodForEapTtls | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getTrustedServerCertificateNames()
{
if (array_key_exists("trustedServerCertificateNames", $this->_propDict)) {
return $this->_propDict["trustedServerCertificateNames"];
} else {
return null;
}
} | Gets the trustedServerCertificateNames
Trusted server certificate names when EAP Type is configured to EAP-TLS/TTLS/FAST or PEAP. This is the common name used in the certificates issued by your trusted certificate authority (CA). If you provide this information, you can bypass the dynamic trust dialog that is displayed on end users devices when they connect to this wired network.
@return array|null The trustedServerCertificateNames | getTrustedServerCertificateNames | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function setTrustedServerCertificateNames($val)
{
$this->_propDict["trustedServerCertificateNames"] = $val;
return $this;
} | Sets the trustedServerCertificateNames
Trusted server certificate names when EAP Type is configured to EAP-TLS/TTLS/FAST or PEAP. This is the common name used in the certificates issued by your trusted certificate authority (CA). If you provide this information, you can bypass the dynamic trust dialog that is displayed on end users devices when they connect to this wired network.
@param string[] $val The trustedServerCertificateNames
@return MacOSWiredNetworkConfiguration | setTrustedServerCertificateNames | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
public function getIdentityCertificateForClientAuthentication()
{
if (array_key_exists("identityCertificateForClientAuthentication", $this->_propDict)) {
if (is_a($this->_propDict["identityCertificateForClientAuthentication"], "\Beta\Microsoft\Graph\Model\MacOSCertificateProfileBase") || is_null($this->_propDict["identityCertificateForClientAuthentication"])) {
return $this->_propDict["identityCertificateForClientAuthentication"];
} else {
$this->_propDict["identityCertificateForClientAuthentication"] = new MacOSCertificateProfileBase($this->_propDict["identityCertificateForClientAuthentication"]);
return $this->_propDict["identityCertificateForClientAuthentication"];
}
}
return null;
} | Gets the identityCertificateForClientAuthentication
Identity Certificate for client authentication when EAP Type is configured to EAP-TLS, EAP-TTLS (with Certificate Authentication), or PEAP (with Certificate Authentication).
@return MacOSCertificateProfileBase|null The identityCertificateForClientAuthentication | getIdentityCertificateForClientAuthentication | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MacOSWiredNetworkConfiguration.php | MIT |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.