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 |
---|---|---|---|---|---|---|---|
function move($source, $destination) {
// I don't know a way to write this all in a single sql query that's
// also compatible across db engines, so we're letting PHP do all the
// updates. Much slower, but it should still be pretty fast in most
// cases.
$select = $this->pdo->prepare('SELECT id, path FROM ' . $this->tableName . ' WHERE path = ? OR path LIKE ?');
$select->execute([$source, $source . '/%']);
$update = $this->pdo->prepare('UPDATE ' . $this->tableName . ' SET path = ? WHERE id = ?');
while ($row = $select->fetch(\PDO::FETCH_ASSOC)) {
// Sanity check. SQL may select too many records, such as records
// with different cases.
if ($row['path'] !== $source && strpos($row['path'], $source . '/') !== 0) continue;
$trailingPart = substr($row['path'], strlen($source) + 1);
$newPath = $destination;
if ($trailingPart) {
$newPath .= '/' . $trailingPart;
}
$update->execute([$newPath, $row['id']]);
}
} | This method is called after a successful MOVE
This should be used to migrate all properties from one path to another.
Note that entire collections may be moved, so ensure that all properties
for children are also moved along.
@param string $source
@param string $destination
@return void | move | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/PropertyStorage/Backend/PDO.php | MIT |
public function getDetectionStatus()
{
if (array_key_exists("detectionStatus", $this->_propDict)) {
if (is_a($this->_propDict["detectionStatus"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\DetectionStatus") || is_null($this->_propDict["detectionStatus"])) {
return $this->_propDict["detectionStatus"];
} else {
$this->_propDict["detectionStatus"] = new DetectionStatus($this->_propDict["detectionStatus"]);
return $this->_propDict["detectionStatus"];
}
}
return null;
} | Gets the detectionStatus
The status of the detection.The possible values are: detected, blocked, prevented, unknownFutureValue.
@return DetectionStatus|null The detectionStatus | getDetectionStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function setDetectionStatus($val)
{
$this->_propDict["detectionStatus"] = $val;
return $this;
} | Sets the detectionStatus
The status of the detection.The possible values are: detected, blocked, prevented, unknownFutureValue.
@param DetectionStatus $val The value to assign to the detectionStatus
@return FileEvidence The FileEvidence | setDetectionStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function getFileDetails()
{
if (array_key_exists("fileDetails", $this->_propDict)) {
if (is_a($this->_propDict["fileDetails"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\FileDetails") || is_null($this->_propDict["fileDetails"])) {
return $this->_propDict["fileDetails"];
} else {
$this->_propDict["fileDetails"] = new FileDetails($this->_propDict["fileDetails"]);
return $this->_propDict["fileDetails"];
}
}
return null;
} | Gets the fileDetails
The file details.
@return FileDetails|null The fileDetails | getFileDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function setFileDetails($val)
{
$this->_propDict["fileDetails"] = $val;
return $this;
} | Sets the fileDetails
The file details.
@param FileDetails $val The value to assign to the fileDetails
@return FileEvidence The FileEvidence | setFileDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function getMdeDeviceId()
{
if (array_key_exists("mdeDeviceId", $this->_propDict)) {
return $this->_propDict["mdeDeviceId"];
} else {
return null;
}
} | Gets the mdeDeviceId
A unique identifier assigned to a device by Microsoft Defender for Endpoint.
@return string|null The mdeDeviceId | getMdeDeviceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function setMdeDeviceId($val)
{
$this->_propDict["mdeDeviceId"] = $val;
return $this;
} | Sets the mdeDeviceId
A unique identifier assigned to a device by Microsoft Defender for Endpoint.
@param string $val The value of the mdeDeviceId
@return FileEvidence | setMdeDeviceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/FileEvidence.php | MIT |
public function getLastCommand()
{
if (!$this->entries) {
throw new \LogicException('No commands received');
}
return end($this->entries)['command'];
} | Get the last finished command seen by the history container.
@return CommandInterface
@throws \LogicException if no commands have been seen. | getLastCommand | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/History.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/History.php | MIT |
public function getLastRequest()
{
if (!$this->entries) {
throw new \LogicException('No requests received');
}
return end($this->entries)['request'];
} | Get the last finished request seen by the history container.
@return RequestInterface
@throws \LogicException if no requests have been seen. | getLastRequest | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/History.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/History.php | MIT |
public function getLastReturn()
{
if (!$this->entries) {
throw new \LogicException('No entries');
}
$last = end($this->entries);
if (isset($last['result'])) {
return $last['result'];
}
if (isset($last['exception'])) {
return $last['exception'];
}
throw new \LogicException('No return value for last entry.');
} | Get the last received result or exception.
@return ResultInterface|AwsException
@throws \LogicException if no return values have been received. | getLastReturn | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/History.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/History.php | MIT |
public function start(CommandInterface $cmd, RequestInterface $req)
{
$ticket = uniqid();
$this->entries[$ticket] = [
'command' => $cmd,
'request' => $req,
'result' => null,
'exception' => null,
];
return $ticket;
} | Initiate an entry being added to the history.
@param CommandInterface $cmd Command be executed.
@param RequestInterface $req Request being sent.
@return string Returns the ticket used to finish the entry. | start | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/History.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/History.php | MIT |
public function finish($ticket, $result)
{
if (!isset($this->entries[$ticket])) {
throw new \InvalidArgumentException('Invalid history ticket');
}
if (isset($this->entries[$ticket]['result'])
|| isset($this->entries[$ticket]['exception'])
) {
throw new \LogicException('History entry is already finished');
}
if ($result instanceof \Exception) {
$this->entries[$ticket]['exception'] = $result;
} else {
$this->entries[$ticket]['result'] = $result;
}
if (count($this->entries) >= $this->maxEntries) {
$this->entries = array_slice($this->entries, -$this->maxEntries, null, true);
}
} | Finish adding an entry to the history container.
@param string $ticket Ticket returned from the start call.
@param mixed $result The result (an exception or AwsResult). | finish | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/History.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/History.php | MIT |
public function toArray()
{
return array_values($this->entries);
} | Converts the history to an array.
@return array | toArray | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/History.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/History.php | MIT |
public function getPayload()
{
if (array_key_exists("payload", $this->_propDict)) {
if (is_a($this->_propDict["payload"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["payload"])) {
return $this->_propDict["payload"];
} else {
$this->_propDict["payload"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["payload"]);
return $this->_propDict["payload"];
}
}
return null;
} | Gets the payload
Payload. (UTF8 encoded byte array). This is the XML file saved on the device you used to connect to the Wi-Fi endpoint.
@return \GuzzleHttp\Psr7\Stream|null The payload | getPayload | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | MIT |
public function setPayload($val)
{
$this->_propDict["payload"] = $val;
return $this;
} | Sets the payload
Payload. (UTF8 encoded byte array). This is the XML file saved on the device you used to connect to the Wi-Fi endpoint.
@param \GuzzleHttp\Psr7\Stream $val The payload
@return Windows81WifiImportConfiguration | setPayload | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | MIT |
public function getPayloadFileName()
{
if (array_key_exists("payloadFileName", $this->_propDict)) {
return $this->_propDict["payloadFileName"];
} else {
return null;
}
} | Gets the payloadFileName
Payload file name (.xml).
@return string|null The payloadFileName | getPayloadFileName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | MIT |
public function setPayloadFileName($val)
{
$this->_propDict["payloadFileName"] = $val;
return $this;
} | Sets the payloadFileName
Payload file name (.xml).
@param string $val The payloadFileName
@return Windows81WifiImportConfiguration | setPayloadFileName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | MIT |
public function getProfileName()
{
if (array_key_exists("profileName", $this->_propDict)) {
return $this->_propDict["profileName"];
} else {
return null;
}
} | Gets the profileName
Profile name displayed in the UI.
@return string|null The profileName | getProfileName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | MIT |
public function setProfileName($val)
{
$this->_propDict["profileName"] = $val;
return $this;
} | Sets the profileName
Profile name displayed in the UI.
@param string $val The profileName
@return Windows81WifiImportConfiguration | setProfileName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Windows81WifiImportConfiguration.php | MIT |
protected function processItems(array $items)
{
$processedItems = [];
foreach ($items as $entry) {
if (isset($entry['metadata']) && is_array($entry['metadata'])) {
$processedItems[] = new SearchResult($entry);
}
}
$this->items = new ModelCollection($processedItems);
} | Process items and cast them
to their respective Models
@param array $items Unprocessed Items
@return void | processItems | php | xiebruce/PicUploader | vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/SearchResults.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/kunalvarma05/dropbox-php-sdk/src/Dropbox/Models/SearchResults.php | MIT |
public function getOrganizer()
{
if (array_key_exists("organizer", $this->_propDict)) {
if (is_a($this->_propDict["organizer"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["organizer"])) {
return $this->_propDict["organizer"];
} else {
$this->_propDict["organizer"] = new IdentitySet($this->_propDict["organizer"]);
return $this->_propDict["organizer"];
}
}
return null;
} | Gets the organizer
The organizer Azure Active Directory identity.
@return IdentitySet|null The organizer | getOrganizer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizerMeetingInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizerMeetingInfo.php | MIT |
public function setOrganizer($val)
{
$this->_propDict["organizer"] = $val;
return $this;
} | Sets the organizer
The organizer Azure Active Directory identity.
@param IdentitySet $val The value to assign to the organizer
@return OrganizerMeetingInfo The OrganizerMeetingInfo | setOrganizer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizerMeetingInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/OrganizerMeetingInfo.php | MIT |
public function getCustomizations()
{
if (array_key_exists("customizations", $this->_propDict)) {
if (is_a($this->_propDict["customizations"], "\Beta\Microsoft\Graph\Model\EducationSynchronizationCustomizations") || is_null($this->_propDict["customizations"])) {
return $this->_propDict["customizations"];
} else {
$this->_propDict["customizations"] = new EducationSynchronizationCustomizations($this->_propDict["customizations"]);
return $this->_propDict["customizations"];
}
}
return null;
} | Gets the customizations
Optional customizations to be applied to the synchronization profile.
@return EducationSynchronizationCustomizations|null The customizations | getCustomizations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationCsvDataProvider.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationCsvDataProvider.php | MIT |
public function setCustomizations($val)
{
$this->_propDict["customizations"] = $val;
return $this;
} | Sets the customizations
Optional customizations to be applied to the synchronization profile.
@param EducationSynchronizationCustomizations $val The value to assign to the customizations
@return EducationCsvDataProvider The EducationCsvDataProvider | setCustomizations | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationCsvDataProvider.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationCsvDataProvider.php | MIT |
public function getActiveHoursEnd()
{
if (array_key_exists("activeHoursEnd", $this->_propDict)) {
if (is_a($this->_propDict["activeHoursEnd"], "\Microsoft\Graph\Model\TimeOfDay") || is_null($this->_propDict["activeHoursEnd"])) {
return $this->_propDict["activeHoursEnd"];
} else {
$this->_propDict["activeHoursEnd"] = new TimeOfDay($this->_propDict["activeHoursEnd"]);
return $this->_propDict["activeHoursEnd"];
}
}
return null;
} | Gets the activeHoursEnd
Active Hours End
@return TimeOfDay|null The activeHoursEnd | getActiveHoursEnd | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | MIT |
public function setActiveHoursEnd($val)
{
$this->_propDict["activeHoursEnd"] = $val;
return $this;
} | Sets the activeHoursEnd
Active Hours End
@param TimeOfDay $val The value to assign to the activeHoursEnd
@return WindowsUpdateActiveHoursInstall The WindowsUpdateActiveHoursInstall | setActiveHoursEnd | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | MIT |
public function getActiveHoursStart()
{
if (array_key_exists("activeHoursStart", $this->_propDict)) {
if (is_a($this->_propDict["activeHoursStart"], "\Microsoft\Graph\Model\TimeOfDay") || is_null($this->_propDict["activeHoursStart"])) {
return $this->_propDict["activeHoursStart"];
} else {
$this->_propDict["activeHoursStart"] = new TimeOfDay($this->_propDict["activeHoursStart"]);
return $this->_propDict["activeHoursStart"];
}
}
return null;
} | Gets the activeHoursStart
Active Hours Start
@return TimeOfDay|null The activeHoursStart | getActiveHoursStart | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | MIT |
public function setActiveHoursStart($val)
{
$this->_propDict["activeHoursStart"] = $val;
return $this;
} | Sets the activeHoursStart
Active Hours Start
@param TimeOfDay $val The value to assign to the activeHoursStart
@return WindowsUpdateActiveHoursInstall The WindowsUpdateActiveHoursInstall | setActiveHoursStart | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsUpdateActiveHoursInstall.php | MIT |
public function getConnectionName()
{
if (array_key_exists("connectionName", $this->_propDict)) {
return $this->_propDict["connectionName"];
} else {
return null;
}
} | Gets the connectionName
Connection name displayed to the user.
@return string|null The connectionName | getConnectionName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | MIT |
public function setConnectionName($val)
{
$this->_propDict["connectionName"] = $val;
return $this;
} | Sets the connectionName
Connection name displayed to the user.
@param string $val The connectionName
@return WindowsVpnConfiguration | setConnectionName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | MIT |
public function getCustomXml()
{
if (array_key_exists("customXml", $this->_propDict)) {
if (is_a($this->_propDict["customXml"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["customXml"])) {
return $this->_propDict["customXml"];
} else {
$this->_propDict["customXml"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["customXml"]);
return $this->_propDict["customXml"];
}
}
return null;
} | Gets the customXml
Custom XML commands that configures the VPN connection. (UTF8 encoded byte array)
@return \GuzzleHttp\Psr7\Stream|null The customXml | getCustomXml | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | MIT |
public function setCustomXml($val)
{
$this->_propDict["customXml"] = $val;
return $this;
} | Sets the customXml
Custom XML commands that configures the VPN connection. (UTF8 encoded byte array)
@param \GuzzleHttp\Psr7\Stream $val The customXml
@return WindowsVpnConfiguration | setCustomXml | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | MIT |
public function getServers()
{
if (array_key_exists("servers", $this->_propDict)) {
return $this->_propDict["servers"];
} else {
return null;
}
} | Gets the servers
List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.
@return array|null The servers | getServers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | MIT |
public function setServers($val)
{
$this->_propDict["servers"] = $val;
return $this;
} | Sets the servers
List of VPN Servers on the network. Make sure end users can access these network locations. This collection can contain a maximum of 500 elements.
@param VpnServer[] $val The servers
@return WindowsVpnConfiguration | setServers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsVpnConfiguration.php | MIT |
public function getExchangeActive()
{
if (array_key_exists("exchangeActive", $this->_propDict)) {
return $this->_propDict["exchangeActive"];
} else {
return null;
}
} | Gets the exchangeActive
The number of active users on Exchange. Any user who can read and send email is considered an active user.
@return int|null The exchangeActive | getExchangeActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setExchangeActive($val)
{
$this->_propDict["exchangeActive"] = intval($val);
return $this;
} | Sets the exchangeActive
The number of active users on Exchange. Any user who can read and send email is considered an active user.
@param int $val The exchangeActive
@return Office365ServicesUserCounts | setExchangeActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getExchangeInactive()
{
if (array_key_exists("exchangeInactive", $this->_propDict)) {
return $this->_propDict["exchangeInactive"];
} else {
return null;
}
} | Gets the exchangeInactive
The number of inactive users on Exchange.
@return int|null The exchangeInactive | getExchangeInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setExchangeInactive($val)
{
$this->_propDict["exchangeInactive"] = intval($val);
return $this;
} | Sets the exchangeInactive
The number of inactive users on Exchange.
@param int $val The exchangeInactive
@return Office365ServicesUserCounts | setExchangeInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getOffice365Active()
{
if (array_key_exists("office365Active", $this->_propDict)) {
return $this->_propDict["office365Active"];
} else {
return null;
}
} | Gets the office365Active
The number of active users on Microsoft 365.
@return int|null The office365Active | getOffice365Active | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setOffice365Active($val)
{
$this->_propDict["office365Active"] = intval($val);
return $this;
} | Sets the office365Active
The number of active users on Microsoft 365.
@param int $val The office365Active
@return Office365ServicesUserCounts | setOffice365Active | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getOffice365Inactive()
{
if (array_key_exists("office365Inactive", $this->_propDict)) {
return $this->_propDict["office365Inactive"];
} else {
return null;
}
} | Gets the office365Inactive
The number of inactive users on Microsoft 365.
@return int|null The office365Inactive | getOffice365Inactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setOffice365Inactive($val)
{
$this->_propDict["office365Inactive"] = intval($val);
return $this;
} | Sets the office365Inactive
The number of inactive users on Microsoft 365.
@param int $val The office365Inactive
@return Office365ServicesUserCounts | setOffice365Inactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getOneDriveActive()
{
if (array_key_exists("oneDriveActive", $this->_propDict)) {
return $this->_propDict["oneDriveActive"];
} else {
return null;
}
} | Gets the oneDriveActive
The number of active users on OneDrive. Any user who viewed or edited files, shared files internally or externally, or synced files is considered an active user.
@return int|null The oneDriveActive | getOneDriveActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setOneDriveActive($val)
{
$this->_propDict["oneDriveActive"] = intval($val);
return $this;
} | Sets the oneDriveActive
The number of active users on OneDrive. Any user who viewed or edited files, shared files internally or externally, or synced files is considered an active user.
@param int $val The oneDriveActive
@return Office365ServicesUserCounts | setOneDriveActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getOneDriveInactive()
{
if (array_key_exists("oneDriveInactive", $this->_propDict)) {
return $this->_propDict["oneDriveInactive"];
} else {
return null;
}
} | Gets the oneDriveInactive
The number of inactive users on OneDrive.
@return int|null The oneDriveInactive | getOneDriveInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setOneDriveInactive($val)
{
$this->_propDict["oneDriveInactive"] = intval($val);
return $this;
} | Sets the oneDriveInactive
The number of inactive users on OneDrive.
@param int $val The oneDriveInactive
@return Office365ServicesUserCounts | setOneDriveInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getReportPeriod()
{
if (array_key_exists("reportPeriod", $this->_propDict)) {
return $this->_propDict["reportPeriod"];
} else {
return null;
}
} | Gets the reportPeriod
The number of days the report covers.
@return string|null The reportPeriod | getReportPeriod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setReportPeriod($val)
{
$this->_propDict["reportPeriod"] = $val;
return $this;
} | Sets the reportPeriod
The number of days the report covers.
@param string $val The reportPeriod
@return Office365ServicesUserCounts | setReportPeriod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getReportRefreshDate()
{
if (array_key_exists("reportRefreshDate", $this->_propDict)) {
if (is_a($this->_propDict["reportRefreshDate"], "\DateTime") || is_null($this->_propDict["reportRefreshDate"])) {
return $this->_propDict["reportRefreshDate"];
} else {
$this->_propDict["reportRefreshDate"] = new \DateTime($this->_propDict["reportRefreshDate"]);
return $this->_propDict["reportRefreshDate"];
}
}
return null;
} | Gets the reportRefreshDate
The latest date of the content.
@return \DateTime|null The reportRefreshDate | getReportRefreshDate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setReportRefreshDate($val)
{
$this->_propDict["reportRefreshDate"] = $val;
return $this;
} | Sets the reportRefreshDate
The latest date of the content.
@param \DateTime $val The reportRefreshDate
@return Office365ServicesUserCounts | setReportRefreshDate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getSharePointActive()
{
if (array_key_exists("sharePointActive", $this->_propDict)) {
return $this->_propDict["sharePointActive"];
} else {
return null;
}
} | Gets the sharePointActive
The number of active users on SharePoint. Any user who viewed or edited files, shared files internally or externally, synced files, or viewed SharePoint pages is considered an active user.
@return int|null The sharePointActive | getSharePointActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setSharePointActive($val)
{
$this->_propDict["sharePointActive"] = intval($val);
return $this;
} | Sets the sharePointActive
The number of active users on SharePoint. Any user who viewed or edited files, shared files internally or externally, synced files, or viewed SharePoint pages is considered an active user.
@param int $val The sharePointActive
@return Office365ServicesUserCounts | setSharePointActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getSharePointInactive()
{
if (array_key_exists("sharePointInactive", $this->_propDict)) {
return $this->_propDict["sharePointInactive"];
} else {
return null;
}
} | Gets the sharePointInactive
The number of inactive users on SharePoint.
@return int|null The sharePointInactive | getSharePointInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setSharePointInactive($val)
{
$this->_propDict["sharePointInactive"] = intval($val);
return $this;
} | Sets the sharePointInactive
The number of inactive users on SharePoint.
@param int $val The sharePointInactive
@return Office365ServicesUserCounts | setSharePointInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getSkypeForBusinessActive()
{
if (array_key_exists("skypeForBusinessActive", $this->_propDict)) {
return $this->_propDict["skypeForBusinessActive"];
} else {
return null;
}
} | Gets the skypeForBusinessActive
The number of active users on Skype For Business. Any user who organized or participated in conferences, or joined peer-to-peer sessions is considered an active user.
@return int|null The skypeForBusinessActive | getSkypeForBusinessActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setSkypeForBusinessActive($val)
{
$this->_propDict["skypeForBusinessActive"] = intval($val);
return $this;
} | Sets the skypeForBusinessActive
The number of active users on Skype For Business. Any user who organized or participated in conferences, or joined peer-to-peer sessions is considered an active user.
@param int $val The skypeForBusinessActive
@return Office365ServicesUserCounts | setSkypeForBusinessActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getSkypeForBusinessInactive()
{
if (array_key_exists("skypeForBusinessInactive", $this->_propDict)) {
return $this->_propDict["skypeForBusinessInactive"];
} else {
return null;
}
} | Gets the skypeForBusinessInactive
The number of inactive users on Skype For Business.
@return int|null The skypeForBusinessInactive | getSkypeForBusinessInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setSkypeForBusinessInactive($val)
{
$this->_propDict["skypeForBusinessInactive"] = intval($val);
return $this;
} | Sets the skypeForBusinessInactive
The number of inactive users on Skype For Business.
@param int $val The skypeForBusinessInactive
@return Office365ServicesUserCounts | setSkypeForBusinessInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getTeamsActive()
{
if (array_key_exists("teamsActive", $this->_propDict)) {
return $this->_propDict["teamsActive"];
} else {
return null;
}
} | Gets the teamsActive
The number of active users on Microsoft Teams. Any user who posted messages in team channels, sent messages in private chat sessions, or participated in meetings or calls is considered an active user.
@return int|null The teamsActive | getTeamsActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setTeamsActive($val)
{
$this->_propDict["teamsActive"] = intval($val);
return $this;
} | Sets the teamsActive
The number of active users on Microsoft Teams. Any user who posted messages in team channels, sent messages in private chat sessions, or participated in meetings or calls is considered an active user.
@param int $val The teamsActive
@return Office365ServicesUserCounts | setTeamsActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getTeamsInactive()
{
if (array_key_exists("teamsInactive", $this->_propDict)) {
return $this->_propDict["teamsInactive"];
} else {
return null;
}
} | Gets the teamsInactive
The number of inactive users on Microsoft Teams.
@return int|null The teamsInactive | getTeamsInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setTeamsInactive($val)
{
$this->_propDict["teamsInactive"] = intval($val);
return $this;
} | Sets the teamsInactive
The number of inactive users on Microsoft Teams.
@param int $val The teamsInactive
@return Office365ServicesUserCounts | setTeamsInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getYammerActive()
{
if (array_key_exists("yammerActive", $this->_propDict)) {
return $this->_propDict["yammerActive"];
} else {
return null;
}
} | Gets the yammerActive
The number of active users on Yammer. Any user who can post, read, or like messages is considered an active user.
@return int|null The yammerActive | getYammerActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setYammerActive($val)
{
$this->_propDict["yammerActive"] = intval($val);
return $this;
} | Sets the yammerActive
The number of active users on Yammer. Any user who can post, read, or like messages is considered an active user.
@param int $val The yammerActive
@return Office365ServicesUserCounts | setYammerActive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getYammerInactive()
{
if (array_key_exists("yammerInactive", $this->_propDict)) {
return $this->_propDict["yammerInactive"];
} else {
return null;
}
} | Gets the yammerInactive
The number of inactive users on Yammer.
@return int|null The yammerInactive | getYammerInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function setYammerInactive($val)
{
$this->_propDict["yammerInactive"] = intval($val);
return $this;
} | Sets the yammerInactive
The number of inactive users on Yammer.
@param int $val The yammerInactive
@return Office365ServicesUserCounts | setYammerInactive | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Office365ServicesUserCounts.php | MIT |
public function getMovieRating()
{
if (array_key_exists("movieRating", $this->_propDict)) {
if (is_a($this->_propDict["movieRating"], "\Beta\Microsoft\Graph\Model\RatingFranceMoviesType") || is_null($this->_propDict["movieRating"])) {
return $this->_propDict["movieRating"];
} else {
$this->_propDict["movieRating"] = new RatingFranceMoviesType($this->_propDict["movieRating"]);
return $this->_propDict["movieRating"];
}
}
return null;
} | Gets the movieRating
Movies rating selected for France. Possible values are: allAllowed, allBlocked, agesAbove10, agesAbove12, agesAbove16, agesAbove18.
@return RatingFranceMoviesType|null The movieRating | getMovieRating | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | MIT |
public function setMovieRating($val)
{
$this->_propDict["movieRating"] = $val;
return $this;
} | Sets the movieRating
Movies rating selected for France. Possible values are: allAllowed, allBlocked, agesAbove10, agesAbove12, agesAbove16, agesAbove18.
@param RatingFranceMoviesType $val The value to assign to the movieRating
@return MediaContentRatingFrance The MediaContentRatingFrance | setMovieRating | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | MIT |
public function getTvRating()
{
if (array_key_exists("tvRating", $this->_propDict)) {
if (is_a($this->_propDict["tvRating"], "\Beta\Microsoft\Graph\Model\RatingFranceTelevisionType") || is_null($this->_propDict["tvRating"])) {
return $this->_propDict["tvRating"];
} else {
$this->_propDict["tvRating"] = new RatingFranceTelevisionType($this->_propDict["tvRating"]);
return $this->_propDict["tvRating"];
}
}
return null;
} | Gets the tvRating
TV rating selected for France. Possible values are: allAllowed, allBlocked, agesAbove10, agesAbove12, agesAbove16, agesAbove18.
@return RatingFranceTelevisionType|null The tvRating | getTvRating | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | MIT |
public function setTvRating($val)
{
$this->_propDict["tvRating"] = $val;
return $this;
} | Sets the tvRating
TV rating selected for France. Possible values are: allAllowed, allBlocked, agesAbove10, agesAbove12, agesAbove16, agesAbove18.
@param RatingFranceTelevisionType $val The value to assign to the tvRating
@return MediaContentRatingFrance The MediaContentRatingFrance | setTvRating | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MediaContentRatingFrance.php | MIT |
public function getDefaultText()
{
if (array_key_exists("defaultText", $this->_propDict)) {
return $this->_propDict["defaultText"];
} else {
return null;
}
} | Gets the defaultText
The fallback string, which is used when a requested localization is not available. Required.
@return string|null The defaultText | getDefaultText | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | MIT |
public function setDefaultText($val)
{
$this->_propDict["defaultText"] = $val;
return $this;
} | Sets the defaultText
The fallback string, which is used when a requested localization is not available. Required.
@param string $val The value of the defaultText
@return AccessPackageLocalizedContent | setDefaultText | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | MIT |
public function getLocalizedTexts()
{
if (array_key_exists("localizedTexts", $this->_propDict)) {
if (is_a($this->_propDict["localizedTexts"], "\Beta\Microsoft\Graph\Model\AccessPackageLocalizedText") || is_null($this->_propDict["localizedTexts"])) {
return $this->_propDict["localizedTexts"];
} else {
$this->_propDict["localizedTexts"] = new AccessPackageLocalizedText($this->_propDict["localizedTexts"]);
return $this->_propDict["localizedTexts"];
}
}
return null;
} | Gets the localizedTexts
Content represented in a format for a specific locale.
@return AccessPackageLocalizedText|null The localizedTexts | getLocalizedTexts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | MIT |
public function setLocalizedTexts($val)
{
$this->_propDict["localizedTexts"] = $val;
return $this;
} | Sets the localizedTexts
Content represented in a format for a specific locale.
@param AccessPackageLocalizedText $val The value to assign to the localizedTexts
@return AccessPackageLocalizedContent The AccessPackageLocalizedContent | setLocalizedTexts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AccessPackageLocalizedContent.php | MIT |
public function getTarget()
{
if (array_key_exists("target", $this->_propDict)) {
if (is_a($this->_propDict["target"], "\Microsoft\Graph\Model\DeviceAndAppManagementAssignmentTarget") || is_null($this->_propDict["target"])) {
return $this->_propDict["target"];
} else {
$this->_propDict["target"] = new DeviceAndAppManagementAssignmentTarget($this->_propDict["target"]);
return $this->_propDict["target"];
}
}
return null;
} | Gets the target
Identifier for deployment to a group or app
@return DeviceAndAppManagementAssignmentTarget|null The target | getTarget | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TargetedManagedAppPolicyAssignment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TargetedManagedAppPolicyAssignment.php | MIT |
public function setTarget($val)
{
$this->_propDict["target"] = $val;
return $this;
} | Sets the target
Identifier for deployment to a group or app
@param DeviceAndAppManagementAssignmentTarget $val The target
@return TargetedManagedAppPolicyAssignment | setTarget | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TargetedManagedAppPolicyAssignment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TargetedManagedAppPolicyAssignment.php | MIT |
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
} | Gets the createdDateTime
The date and time that this Windows Hello for Business key was registered.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
The date and time that this Windows Hello for Business key was registered.
@param \DateTime $val The createdDateTime
@return WindowsHelloForBusinessAuthenticationMethod | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | MIT |
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
The name of the device on which Windows Hello for Business is registered
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
The name of the device on which Windows Hello for Business is registered
@param string $val The displayName
@return WindowsHelloForBusinessAuthenticationMethod | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | MIT |
public function getKeyStrength()
{
if (array_key_exists("keyStrength", $this->_propDict)) {
if (is_a($this->_propDict["keyStrength"], "\Microsoft\Graph\Model\AuthenticationMethodKeyStrength") || is_null($this->_propDict["keyStrength"])) {
return $this->_propDict["keyStrength"];
} else {
$this->_propDict["keyStrength"] = new AuthenticationMethodKeyStrength($this->_propDict["keyStrength"]);
return $this->_propDict["keyStrength"];
}
}
return null;
} | Gets the keyStrength
Key strength of this Windows Hello for Business key. Possible values are: normal, weak, unknown.
@return AuthenticationMethodKeyStrength|null The keyStrength | getKeyStrength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | MIT |
public function setKeyStrength($val)
{
$this->_propDict["keyStrength"] = $val;
return $this;
} | Sets the keyStrength
Key strength of this Windows Hello for Business key. Possible values are: normal, weak, unknown.
@param AuthenticationMethodKeyStrength $val The keyStrength
@return WindowsHelloForBusinessAuthenticationMethod | setKeyStrength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | MIT |
public function getDevice()
{
if (array_key_exists("device", $this->_propDict)) {
if (is_a($this->_propDict["device"], "\Microsoft\Graph\Model\Device") || is_null($this->_propDict["device"])) {
return $this->_propDict["device"];
} else {
$this->_propDict["device"] = new Device($this->_propDict["device"]);
return $this->_propDict["device"];
}
}
return null;
} | Gets the device
The registered device on which this Windows Hello for Business key resides. Supports $expand. When you get a user's Windows Hello for Business registration information, this property is returned only on a single GET and when you specify ?$expand. For example, GET /users/[email protected]/authentication/windowsHelloForBusinessMethods/_jpuR-TGZtk6aQCLF3BQjA2?$expand=device.
@return Device|null The device | getDevice | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | MIT |
public function setDevice($val)
{
$this->_propDict["device"] = $val;
return $this;
} | Sets the device
The registered device on which this Windows Hello for Business key resides. Supports $expand. When you get a user's Windows Hello for Business registration information, this property is returned only on a single GET and when you specify ?$expand. For example, GET /users/[email protected]/authentication/windowsHelloForBusinessMethods/_jpuR-TGZtk6aQCLF3BQjA2?$expand=device.
@param Device $val The device
@return WindowsHelloForBusinessAuthenticationMethod | setDevice | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsHelloForBusinessAuthenticationMethod.php | MIT |
public function getChannelId()
{
if (array_key_exists("channelId", $this->_propDict)) {
return $this->_propDict["channelId"];
} else {
return null;
}
} | Gets the channelId
The unique identifier for the channel whose members should receive the notification.
@return string|null The channelId | getChannelId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ChannelMembersNotificationRecipient.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ChannelMembersNotificationRecipient.php | MIT |
public function setChannelId($val)
{
$this->_propDict["channelId"] = $val;
return $this;
} | Sets the channelId
The unique identifier for the channel whose members should receive the notification.
@param string $val The value of the channelId
@return ChannelMembersNotificationRecipient | setChannelId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ChannelMembersNotificationRecipient.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ChannelMembersNotificationRecipient.php | MIT |
public function getTeamId()
{
if (array_key_exists("teamId", $this->_propDict)) {
return $this->_propDict["teamId"];
} else {
return null;
}
} | Gets the teamId
The unique identifier for the team under which the channel resides.
@return string|null The teamId | getTeamId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ChannelMembersNotificationRecipient.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ChannelMembersNotificationRecipient.php | MIT |
public function setTeamId($val)
{
$this->_propDict["teamId"] = $val;
return $this;
} | Sets the teamId
The unique identifier for the team under which the channel resides.
@param string $val The value of the teamId
@return ChannelMembersNotificationRecipient | setTeamId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ChannelMembersNotificationRecipient.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ChannelMembersNotificationRecipient.php | MIT |
public function getDriverInventorySyncState()
{
if (array_key_exists("driverInventorySyncState", $this->_propDict)) {
if (is_a($this->_propDict["driverInventorySyncState"], "\Beta\Microsoft\Graph\Model\WindowsDriverUpdateProfileInventorySyncState") || is_null($this->_propDict["driverInventorySyncState"])) {
return $this->_propDict["driverInventorySyncState"];
} else {
$this->_propDict["driverInventorySyncState"] = new WindowsDriverUpdateProfileInventorySyncState($this->_propDict["driverInventorySyncState"]);
return $this->_propDict["driverInventorySyncState"];
}
}
return null;
} | Gets the driverInventorySyncState
The state of the latest sync. Possible values are: pending, success, failure.
@return WindowsDriverUpdateProfileInventorySyncState|null The driverInventorySyncState | getDriverInventorySyncState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | MIT |
public function setDriverInventorySyncState($val)
{
$this->_propDict["driverInventorySyncState"] = $val;
return $this;
} | Sets the driverInventorySyncState
The state of the latest sync. Possible values are: pending, success, failure.
@param WindowsDriverUpdateProfileInventorySyncState $val The value to assign to the driverInventorySyncState
@return WindowsDriverUpdateProfileInventorySyncStatus The WindowsDriverUpdateProfileInventorySyncStatus | setDriverInventorySyncState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | MIT |
public function getLastSuccessfulSyncDateTime()
{
if (array_key_exists("lastSuccessfulSyncDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastSuccessfulSyncDateTime"], "\DateTime") || is_null($this->_propDict["lastSuccessfulSyncDateTime"])) {
return $this->_propDict["lastSuccessfulSyncDateTime"];
} else {
$this->_propDict["lastSuccessfulSyncDateTime"] = new \DateTime($this->_propDict["lastSuccessfulSyncDateTime"]);
return $this->_propDict["lastSuccessfulSyncDateTime"];
}
}
return null;
} | Gets the lastSuccessfulSyncDateTime
The last successful sync date and time in UTC.
@return \DateTime|null The lastSuccessfulSyncDateTime | getLastSuccessfulSyncDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | MIT |
public function setLastSuccessfulSyncDateTime($val)
{
$this->_propDict["lastSuccessfulSyncDateTime"] = $val;
return $this;
} | Sets the lastSuccessfulSyncDateTime
The last successful sync date and time in UTC.
@param \DateTime $val The value to assign to the lastSuccessfulSyncDateTime
@return WindowsDriverUpdateProfileInventorySyncStatus The WindowsDriverUpdateProfileInventorySyncStatus | setLastSuccessfulSyncDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsDriverUpdateProfileInventorySyncStatus.php | MIT |
public function getCertificateStore()
{
if (array_key_exists("certificateStore", $this->_propDict)) {
if (is_a($this->_propDict["certificateStore"], "\Beta\Microsoft\Graph\Model\CertificateStore") || is_null($this->_propDict["certificateStore"])) {
return $this->_propDict["certificateStore"];
} else {
$this->_propDict["certificateStore"] = new CertificateStore($this->_propDict["certificateStore"]);
return $this->_propDict["certificateStore"];
}
}
return null;
} | Gets the certificateStore
Target store certificate. Possible values are: user, machine.
@return CertificateStore|null The certificateStore | getCertificateStore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setCertificateStore($val)
{
$this->_propDict["certificateStore"] = $val;
return $this;
} | Sets the certificateStore
Target store certificate. Possible values are: user, machine.
@param CertificateStore $val The certificateStore
@return AndroidForWorkScepCertificateProfile | setCertificateStore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function getCustomSubjectAlternativeNames()
{
if (array_key_exists("customSubjectAlternativeNames", $this->_propDict)) {
return $this->_propDict["customSubjectAlternativeNames"];
} else {
return null;
}
} | Gets the customSubjectAlternativeNames
Custom Subject Alternative Name Settings. This collection can contain a maximum of 500 elements.
@return array|null The customSubjectAlternativeNames | getCustomSubjectAlternativeNames | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setCustomSubjectAlternativeNames($val)
{
$this->_propDict["customSubjectAlternativeNames"] = $val;
return $this;
} | Sets the customSubjectAlternativeNames
Custom Subject Alternative Name Settings. This collection can contain a maximum of 500 elements.
@param CustomSubjectAlternativeName[] $val The customSubjectAlternativeNames
@return AndroidForWorkScepCertificateProfile | setCustomSubjectAlternativeNames | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function getHashAlgorithm()
{
if (array_key_exists("hashAlgorithm", $this->_propDict)) {
if (is_a($this->_propDict["hashAlgorithm"], "\Beta\Microsoft\Graph\Model\HashAlgorithms") || is_null($this->_propDict["hashAlgorithm"])) {
return $this->_propDict["hashAlgorithm"];
} else {
$this->_propDict["hashAlgorithm"] = new HashAlgorithms($this->_propDict["hashAlgorithm"]);
return $this->_propDict["hashAlgorithm"];
}
}
return null;
} | Gets the hashAlgorithm
SCEP Hash Algorithm. Possible values are: sha1, sha2.
@return HashAlgorithms|null The hashAlgorithm | getHashAlgorithm | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setHashAlgorithm($val)
{
$this->_propDict["hashAlgorithm"] = $val;
return $this;
} | Sets the hashAlgorithm
SCEP Hash Algorithm. Possible values are: sha1, sha2.
@param HashAlgorithms $val The hashAlgorithm
@return AndroidForWorkScepCertificateProfile | setHashAlgorithm | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function getKeySize()
{
if (array_key_exists("keySize", $this->_propDict)) {
if (is_a($this->_propDict["keySize"], "\Beta\Microsoft\Graph\Model\KeySize") || is_null($this->_propDict["keySize"])) {
return $this->_propDict["keySize"];
} else {
$this->_propDict["keySize"] = new KeySize($this->_propDict["keySize"]);
return $this->_propDict["keySize"];
}
}
return null;
} | Gets the keySize
SCEP Key Size. Possible values are: size1024, size2048, size4096.
@return KeySize|null The keySize | getKeySize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | MIT |
public function setKeySize($val)
{
$this->_propDict["keySize"] = $val;
return $this;
} | Sets the keySize
SCEP Key Size. Possible values are: size1024, size2048, size4096.
@param KeySize $val The keySize
@return AndroidForWorkScepCertificateProfile | setKeySize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkScepCertificateProfile.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.