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 setUserPrincipalName($val)
{
$this->_propDict["userPrincipalName"] = $val;
return $this;
} | Sets the userPrincipalName
User name
@param string $val The value of the userPrincipalName
@return SharedAppleDeviceUser | setUserPrincipalName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SharedAppleDeviceUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SharedAppleDeviceUser.php | MIT |
public function getService()
{
if (array_key_exists("service", $this->_propDict)) {
return $this->_propDict["service"];
} else {
return null;
}
} | Gets the service
The service name. Use the list healthOverviews operation to get exact string names for services subscribed by the tenant.
@return string|null The service | getService | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | MIT |
public function setService($val)
{
$this->_propDict["service"] = $val;
return $this;
} | Sets the service
The service name. Use the list healthOverviews operation to get exact string names for services subscribed by the tenant.
@param string $val The service
@return ServiceHealth | setService | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\ServiceHealthStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new ServiceHealthStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
} | Gets the status
Show the overral service health status. Possible values are: serviceOperational, investigating, restoringService, verifyingService, serviceRestored, postIncidentReviewPublished, serviceDegradation, serviceInterruption, extendedRecovery, falsePositive, investigationSuspended, resolved, mitigatedExternal, mitigated, resolvedExternal, confirmed, reported, unknownFutureValue. For more details, see serviceHealthStatus values.
@return ServiceHealthStatus|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | MIT |
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
} | Sets the status
Show the overral service health status. Possible values are: serviceOperational, investigating, restoringService, verifyingService, serviceRestored, postIncidentReviewPublished, serviceDegradation, serviceInterruption, extendedRecovery, falsePositive, investigationSuspended, resolved, mitigatedExternal, mitigated, resolvedExternal, confirmed, reported, unknownFutureValue. For more details, see serviceHealthStatus values.
@param ServiceHealthStatus $val The status
@return ServiceHealth | setStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | MIT |
public function getIssues()
{
if (array_key_exists("issues", $this->_propDict)) {
return $this->_propDict["issues"];
} else {
return null;
}
} | Gets the issues
A collection of issues that happened on the service, with detailed information for each issue.
@return array|null The issues | getIssues | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | MIT |
public function setIssues($val)
{
$this->_propDict["issues"] = $val;
return $this;
} | Sets the issues
A collection of issues that happened on the service, with detailed information for each issue.
@param ServiceHealthIssue[] $val The issues
@return ServiceHealth | setIssues | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ServiceHealth.php | MIT |
public static function search($expression, $data)
{
static $runtime;
if (!$runtime) {
$runtime = Env::createRuntime();
}
return $runtime($expression, $data);
} | Returns data from the input array that matches a JMESPath expression.
@param string $expression JMESPath expression to evaluate
@param mixed $data JSON-like data to search
@return mixed Returns the matching data or null | search | php | xiebruce/PicUploader | vendor/mtdowling/jmespath.php/src/Env.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/mtdowling/jmespath.php/src/Env.php | MIT |
public static function createRuntime()
{
switch ($compileDir = self::getEnvVariable(self::COMPILE_DIR)) {
case false: return new AstRuntime();
case 'on': return new CompilerRuntime();
default: return new CompilerRuntime($compileDir);
}
} | Creates a JMESPath runtime based on environment variables and extensions
available on a system.
@return callable | createRuntime | php | xiebruce/PicUploader | vendor/mtdowling/jmespath.php/src/Env.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/mtdowling/jmespath.php/src/Env.php | MIT |
private static function getEnvVariable($name)
{
if (array_key_exists($name, $_SERVER)) {
return $_SERVER[$name];
}
if (array_key_exists($name, $_ENV)) {
return $_ENV[$name];
}
$value = getenv($name);
return $value === false ? null : $value;
} | Reads an environment variable from $_SERVER, $_ENV or via getenv().
@param string $name
@return string|null | getEnvVariable | php | xiebruce/PicUploader | vendor/mtdowling/jmespath.php/src/Env.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/mtdowling/jmespath.php/src/Env.php | MIT |
public function getMessageReceivedDateTime()
{
if (array_key_exists("messageReceivedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["messageReceivedDateTime"], "\DateTime") || is_null($this->_propDict["messageReceivedDateTime"])) {
return $this->_propDict["messageReceivedDateTime"];
} else {
$this->_propDict["messageReceivedDateTime"] = new \DateTime($this->_propDict["messageReceivedDateTime"]);
return $this->_propDict["messageReceivedDateTime"];
}
}
return null;
} | Gets the messageReceivedDateTime
@return \DateTime|null The messageReceivedDateTime | getMessageReceivedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MessageSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MessageSecurityState.php | MIT |
public function setMessageReceivedDateTime($val)
{
$this->_propDict["messageReceivedDateTime"] = $val;
return $this;
} | Sets the messageReceivedDateTime
@param \DateTime $val The value to assign to the messageReceivedDateTime
@return MessageSecurityState The MessageSecurityState | setMessageReceivedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MessageSecurityState.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MessageSecurityState.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
DateTime the object was created.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
DateTime the object was created.
@param \DateTime $val The createdDateTime
@return ManagedDeviceMobileAppConfiguration | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
} | Gets the description
Admin provided description of the Device Configuration.
@return string|null The description | getDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
} | Sets the description
Admin provided description of the Device Configuration.
@param string $val The description
@return ManagedDeviceMobileAppConfiguration | setDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
Admin provided name of the device configuration.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
Admin provided name of the device configuration.
@param string $val The displayName
@return ManagedDeviceMobileAppConfiguration | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.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
DateTime the object was last modified.
@return \DateTime|null The lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
DateTime the object was last modified.
@param \DateTime $val The lastModifiedDateTime
@return ManagedDeviceMobileAppConfiguration | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getTargetedMobileApps()
{
if (array_key_exists("targetedMobileApps", $this->_propDict)) {
return $this->_propDict["targetedMobileApps"];
} else {
return null;
}
} | Gets the targetedMobileApps
the associated app.
@return array|null The targetedMobileApps | getTargetedMobileApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setTargetedMobileApps($val)
{
$this->_propDict["targetedMobileApps"] = $val;
return $this;
} | Sets the targetedMobileApps
the associated app.
@param string[] $val The targetedMobileApps
@return ManagedDeviceMobileAppConfiguration | setTargetedMobileApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getVersion()
{
if (array_key_exists("version", $this->_propDict)) {
return $this->_propDict["version"];
} else {
return null;
}
} | Gets the version
Version of the device configuration.
@return int|null The version | getVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setVersion($val)
{
$this->_propDict["version"] = intval($val);
return $this;
} | Sets the version
Version of the device configuration.
@param int $val The version
@return ManagedDeviceMobileAppConfiguration | setVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getAssignments()
{
if (array_key_exists("assignments", $this->_propDict)) {
return $this->_propDict["assignments"];
} else {
return null;
}
} | Gets the assignments
The list of group assignemenets for app configration.
@return array|null The assignments | getAssignments | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setAssignments($val)
{
$this->_propDict["assignments"] = $val;
return $this;
} | Sets the assignments
The list of group assignemenets for app configration.
@param ManagedDeviceMobileAppConfigurationAssignment[] $val The assignments
@return ManagedDeviceMobileAppConfiguration | setAssignments | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getDeviceStatuses()
{
if (array_key_exists("deviceStatuses", $this->_propDict)) {
return $this->_propDict["deviceStatuses"];
} else {
return null;
}
} | Gets the deviceStatuses
List of ManagedDeviceMobileAppConfigurationDeviceStatus.
@return array|null The deviceStatuses | getDeviceStatuses | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setDeviceStatuses($val)
{
$this->_propDict["deviceStatuses"] = $val;
return $this;
} | Sets the deviceStatuses
List of ManagedDeviceMobileAppConfigurationDeviceStatus.
@param ManagedDeviceMobileAppConfigurationDeviceStatus[] $val The deviceStatuses
@return ManagedDeviceMobileAppConfiguration | setDeviceStatuses | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getDeviceStatusSummary()
{
if (array_key_exists("deviceStatusSummary", $this->_propDict)) {
if (is_a($this->_propDict["deviceStatusSummary"], "\Microsoft\Graph\Model\ManagedDeviceMobileAppConfigurationDeviceSummary") || is_null($this->_propDict["deviceStatusSummary"])) {
return $this->_propDict["deviceStatusSummary"];
} else {
$this->_propDict["deviceStatusSummary"] = new ManagedDeviceMobileAppConfigurationDeviceSummary($this->_propDict["deviceStatusSummary"]);
return $this->_propDict["deviceStatusSummary"];
}
}
return null;
} | Gets the deviceStatusSummary
App configuration device status summary.
@return ManagedDeviceMobileAppConfigurationDeviceSummary|null The deviceStatusSummary | getDeviceStatusSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setDeviceStatusSummary($val)
{
$this->_propDict["deviceStatusSummary"] = $val;
return $this;
} | Sets the deviceStatusSummary
App configuration device status summary.
@param ManagedDeviceMobileAppConfigurationDeviceSummary $val The deviceStatusSummary
@return ManagedDeviceMobileAppConfiguration | setDeviceStatusSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getUserStatuses()
{
if (array_key_exists("userStatuses", $this->_propDict)) {
return $this->_propDict["userStatuses"];
} else {
return null;
}
} | Gets the userStatuses
List of ManagedDeviceMobileAppConfigurationUserStatus.
@return array|null The userStatuses | getUserStatuses | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setUserStatuses($val)
{
$this->_propDict["userStatuses"] = $val;
return $this;
} | Sets the userStatuses
List of ManagedDeviceMobileAppConfigurationUserStatus.
@param ManagedDeviceMobileAppConfigurationUserStatus[] $val The userStatuses
@return ManagedDeviceMobileAppConfiguration | setUserStatuses | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getUserStatusSummary()
{
if (array_key_exists("userStatusSummary", $this->_propDict)) {
if (is_a($this->_propDict["userStatusSummary"], "\Microsoft\Graph\Model\ManagedDeviceMobileAppConfigurationUserSummary") || is_null($this->_propDict["userStatusSummary"])) {
return $this->_propDict["userStatusSummary"];
} else {
$this->_propDict["userStatusSummary"] = new ManagedDeviceMobileAppConfigurationUserSummary($this->_propDict["userStatusSummary"]);
return $this->_propDict["userStatusSummary"];
}
}
return null;
} | Gets the userStatusSummary
App configuration user status summary.
@return ManagedDeviceMobileAppConfigurationUserSummary|null The userStatusSummary | getUserStatusSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function setUserStatusSummary($val)
{
$this->_propDict["userStatusSummary"] = $val;
return $this;
} | Sets the userStatusSummary
App configuration user status summary.
@param ManagedDeviceMobileAppConfigurationUserSummary $val The userStatusSummary
@return ManagedDeviceMobileAppConfiguration | setUserStatusSummary | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedDeviceMobileAppConfiguration.php | MIT |
public function getAuthenticationMethod()
{
if (array_key_exists("authenticationMethod", $this->_propDict)) {
if (is_a($this->_propDict["authenticationMethod"], "\Beta\Microsoft\Graph\Model\VpnAuthenticationMethod") || is_null($this->_propDict["authenticationMethod"])) {
return $this->_propDict["authenticationMethod"];
} else {
$this->_propDict["authenticationMethod"] = new VpnAuthenticationMethod($this->_propDict["authenticationMethod"]);
return $this->_propDict["authenticationMethod"];
}
}
return null;
} | Gets the authenticationMethod
Authentication method. Possible values are: certificate, usernameAndPassword, sharedSecret, derivedCredential, azureAD.
@return VpnAuthenticationMethod|null The authenticationMethod | getAuthenticationMethod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | MIT |
public function setAuthenticationMethod($val)
{
$this->_propDict["authenticationMethod"] = $val;
return $this;
} | Sets the authenticationMethod
Authentication method. Possible values are: certificate, usernameAndPassword, sharedSecret, derivedCredential, azureAD.
@param VpnAuthenticationMethod $val The authenticationMethod
@return VpnConfiguration | setAuthenticationMethod | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.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/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.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 VpnConfiguration | setConnectionName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | MIT |
public function getRealm()
{
if (array_key_exists("realm", $this->_propDict)) {
return $this->_propDict["realm"];
} else {
return null;
}
} | Gets the realm
Realm when connection type is set to Pulse Secure.
@return string|null The realm | getRealm | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | MIT |
public function setRealm($val)
{
$this->_propDict["realm"] = $val;
return $this;
} | Sets the realm
Realm when connection type is set to Pulse Secure.
@param string $val The realm
@return VpnConfiguration | setRealm | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | MIT |
public function getRole()
{
if (array_key_exists("role", $this->_propDict)) {
return $this->_propDict["role"];
} else {
return null;
}
} | Gets the role
Role when connection type is set to Pulse Secure.
@return string|null The role | getRole | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | MIT |
public function setRole($val)
{
$this->_propDict["role"] = $val;
return $this;
} | Sets the role
Role when connection type is set to Pulse Secure.
@param string $val The role
@return VpnConfiguration | setRole | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.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/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.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 VpnConfiguration | setServers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/VpnConfiguration.php | MIT |
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
} | Gets the description
Provides a user-visible description of the item. Read-write. Only on OneDrive Personal.
@return string|null The description | getDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
} | Sets the description
Provides a user-visible description of the item. Read-write. Only on OneDrive Personal.
@param string $val The value of the description
@return DriveItemUploadableProperties | setDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function getFileSize()
{
if (array_key_exists("fileSize", $this->_propDict)) {
return $this->_propDict["fileSize"];
} else {
return null;
}
} | Gets the fileSize
Provides an expected file size to perform a quota check prior to upload. Only on OneDrive Personal.
@return int|null The fileSize | getFileSize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function setFileSize($val)
{
$this->_propDict["fileSize"] = $val;
return $this;
} | Sets the fileSize
Provides an expected file size to perform a quota check prior to upload. Only on OneDrive Personal.
@param int $val The value of the fileSize
@return DriveItemUploadableProperties | setFileSize | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function getFileSystemInfo()
{
if (array_key_exists("fileSystemInfo", $this->_propDict)) {
if (is_a($this->_propDict["fileSystemInfo"], "\Microsoft\Graph\Model\FileSystemInfo") || is_null($this->_propDict["fileSystemInfo"])) {
return $this->_propDict["fileSystemInfo"];
} else {
$this->_propDict["fileSystemInfo"] = new FileSystemInfo($this->_propDict["fileSystemInfo"]);
return $this->_propDict["fileSystemInfo"];
}
}
return null;
} | Gets the fileSystemInfo
File system information on client. Read-write.
@return FileSystemInfo|null The fileSystemInfo | getFileSystemInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function setFileSystemInfo($val)
{
$this->_propDict["fileSystemInfo"] = $val;
return $this;
} | Sets the fileSystemInfo
File system information on client. Read-write.
@param FileSystemInfo $val The value to assign to the fileSystemInfo
@return DriveItemUploadableProperties The DriveItemUploadableProperties | setFileSystemInfo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function getName()
{
if (array_key_exists("name", $this->_propDict)) {
return $this->_propDict["name"];
} else {
return null;
}
} | Gets the name
The name of the item (filename and extension). Read-write.
@return string|null The name | getName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function setName($val)
{
$this->_propDict["name"] = $val;
return $this;
} | Sets the name
The name of the item (filename and extension). Read-write.
@param string $val The value of the name
@return DriveItemUploadableProperties | setName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/DriveItemUploadableProperties.php | MIT |
public function getDeviceComplianceScriptId()
{
if (array_key_exists("deviceComplianceScriptId", $this->_propDict)) {
return $this->_propDict["deviceComplianceScriptId"];
} else {
return null;
}
} | Gets the deviceComplianceScriptId
Device compliance script Id.
@return string|null The deviceComplianceScriptId | getDeviceComplianceScriptId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | MIT |
public function setDeviceComplianceScriptId($val)
{
$this->_propDict["deviceComplianceScriptId"] = $val;
return $this;
} | Sets the deviceComplianceScriptId
Device compliance script Id.
@param string $val The value of the deviceComplianceScriptId
@return DeviceCompliancePolicyScript | setDeviceComplianceScriptId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | MIT |
public function getRulesContent()
{
if (array_key_exists("rulesContent", $this->_propDict)) {
if (is_a($this->_propDict["rulesContent"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["rulesContent"])) {
return $this->_propDict["rulesContent"];
} else {
$this->_propDict["rulesContent"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["rulesContent"]);
return $this->_propDict["rulesContent"];
}
}
return null;
} | Gets the rulesContent
Json of the rules.
@return \GuzzleHttp\Psr7\Stream|null The rulesContent | getRulesContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | MIT |
public function setRulesContent($val)
{
$this->_propDict["rulesContent"] = $val;
return $this;
} | Sets the rulesContent
Json of the rules.
@param \GuzzleHttp\Psr7\Stream $val The value to assign to the rulesContent
@return DeviceCompliancePolicyScript The DeviceCompliancePolicyScript | setRulesContent | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceCompliancePolicyScript.php | MIT |
public function getDevicesCount()
{
if (array_key_exists("devicesCount", $this->_propDict)) {
return $this->_propDict["devicesCount"];
} else {
return null;
}
} | Gets the devicesCount
Devices count for that user.
@return int|null The devicesCount | getDevicesCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function setDevicesCount($val)
{
$this->_propDict["devicesCount"] = intval($val);
return $this;
} | Sets the devicesCount
Devices count for that user.
@param int $val The devicesCount
@return DeviceConfigurationUserStatus | setDevicesCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function getLastReportedDateTime()
{
if (array_key_exists("lastReportedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastReportedDateTime"], "\DateTime") || is_null($this->_propDict["lastReportedDateTime"])) {
return $this->_propDict["lastReportedDateTime"];
} else {
$this->_propDict["lastReportedDateTime"] = new \DateTime($this->_propDict["lastReportedDateTime"]);
return $this->_propDict["lastReportedDateTime"];
}
}
return null;
} | Gets the lastReportedDateTime
Last modified date time of the policy report.
@return \DateTime|null The lastReportedDateTime | getLastReportedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function setLastReportedDateTime($val)
{
$this->_propDict["lastReportedDateTime"] = $val;
return $this;
} | Sets the lastReportedDateTime
Last modified date time of the policy report.
@param \DateTime $val The lastReportedDateTime
@return DeviceConfigurationUserStatus | setLastReportedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\ComplianceStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new ComplianceStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
} | Gets the status
Compliance status of the policy report. Possible values are: unknown, notApplicable, compliant, remediated, nonCompliant, error, conflict, notAssigned.
@return ComplianceStatus|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
} | Sets the status
Compliance status of the policy report. Possible values are: unknown, notApplicable, compliant, remediated, nonCompliant, error, conflict, notAssigned.
@param ComplianceStatus $val The status
@return DeviceConfigurationUserStatus | setStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function getUserDisplayName()
{
if (array_key_exists("userDisplayName", $this->_propDict)) {
return $this->_propDict["userDisplayName"];
} else {
return null;
}
} | Gets the userDisplayName
User name of the DevicePolicyStatus.
@return string|null The userDisplayName | getUserDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function setUserDisplayName($val)
{
$this->_propDict["userDisplayName"] = $val;
return $this;
} | Sets the userDisplayName
User name of the DevicePolicyStatus.
@param string $val The userDisplayName
@return DeviceConfigurationUserStatus | setUserDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function getUserPrincipalName()
{
if (array_key_exists("userPrincipalName", $this->_propDict)) {
return $this->_propDict["userPrincipalName"];
} else {
return null;
}
} | Gets the userPrincipalName
UserPrincipalName.
@return string|null The userPrincipalName | getUserPrincipalName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function setUserPrincipalName($val)
{
$this->_propDict["userPrincipalName"] = $val;
return $this;
} | Sets the userPrincipalName
UserPrincipalName.
@param string $val The userPrincipalName
@return DeviceConfigurationUserStatus | setUserPrincipalName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceConfigurationUserStatus.php | MIT |
public function getBlob()
{
if (array_key_exists("blob", $this->_propDict)) {
return $this->_propDict["blob"];
} else {
return null;
}
} | Gets the blob
The media configuration blob generated by smart media agent.
@return string|null The blob | getBlob | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AppHostedMediaConfig.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AppHostedMediaConfig.php | MIT |
public function setBlob($val)
{
$this->_propDict["blob"] = $val;
return $this;
} | Sets the blob
The media configuration blob generated by smart media agent.
@param string $val The value of the blob
@return AppHostedMediaConfig | setBlob | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AppHostedMediaConfig.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AppHostedMediaConfig.php | MIT |
public function getHashType()
{
if (array_key_exists("hashType", $this->_propDict)) {
if (is_a($this->_propDict["hashType"], "\Beta\Microsoft\Graph\Model\FileHashType") || is_null($this->_propDict["hashType"])) {
return $this->_propDict["hashType"];
} else {
$this->_propDict["hashType"] = new FileHashType($this->_propDict["hashType"]);
return $this->_propDict["hashType"];
}
}
return null;
} | Gets the hashType
File hash type. Possible values are: unknown, sha1, sha256, md5, authenticodeHash256, lsHash, ctph, peSha1, peSha256.
@return FileHashType|null The hashType | getHashType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | MIT |
public function setHashType($val)
{
$this->_propDict["hashType"] = $val;
return $this;
} | Sets the hashType
File hash type. Possible values are: unknown, sha1, sha256, md5, authenticodeHash256, lsHash, ctph, peSha1, peSha256.
@param FileHashType $val The value to assign to the hashType
@return FileHash The FileHash | setHashType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | MIT |
public function getHashValue()
{
if (array_key_exists("hashValue", $this->_propDict)) {
return $this->_propDict["hashValue"];
} else {
return null;
}
} | Gets the hashValue
Value of the file hash.
@return string|null The hashValue | getHashValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | MIT |
public function setHashValue($val)
{
$this->_propDict["hashValue"] = $val;
return $this;
} | Sets the hashValue
Value of the file hash.
@param string $val The value of the hashValue
@return FileHash | setHashValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileHash.php | MIT |
public function getIdentityVersion()
{
if (array_key_exists("identityVersion", $this->_propDict)) {
return $this->_propDict["identityVersion"];
} else {
return null;
}
} | Gets the identityVersion
The identity version.
@return string|null The identityVersion | getIdentityVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | MIT |
public function setIdentityVersion($val)
{
$this->_propDict["identityVersion"] = $val;
return $this;
} | Sets the identityVersion
The identity version.
@param string $val The identityVersion
@return WindowsPhoneXAP | setIdentityVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | MIT |
public function getMinimumSupportedOperatingSystem()
{
if (array_key_exists("minimumSupportedOperatingSystem", $this->_propDict)) {
if (is_a($this->_propDict["minimumSupportedOperatingSystem"], "\Beta\Microsoft\Graph\Model\WindowsMinimumOperatingSystem") || is_null($this->_propDict["minimumSupportedOperatingSystem"])) {
return $this->_propDict["minimumSupportedOperatingSystem"];
} else {
$this->_propDict["minimumSupportedOperatingSystem"] = new WindowsMinimumOperatingSystem($this->_propDict["minimumSupportedOperatingSystem"]);
return $this->_propDict["minimumSupportedOperatingSystem"];
}
}
return null;
} | Gets the minimumSupportedOperatingSystem
The value for the minimum applicable operating system.
@return WindowsMinimumOperatingSystem|null The minimumSupportedOperatingSystem | getMinimumSupportedOperatingSystem | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | MIT |
public function setMinimumSupportedOperatingSystem($val)
{
$this->_propDict["minimumSupportedOperatingSystem"] = $val;
return $this;
} | Sets the minimumSupportedOperatingSystem
The value for the minimum applicable operating system.
@param WindowsMinimumOperatingSystem $val The minimumSupportedOperatingSystem
@return WindowsPhoneXAP | setMinimumSupportedOperatingSystem | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | MIT |
public function getProductIdentifier()
{
if (array_key_exists("productIdentifier", $this->_propDict)) {
return $this->_propDict["productIdentifier"];
} else {
return null;
}
} | Gets the productIdentifier
The Product Identifier.
@return string|null The productIdentifier | getProductIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | MIT |
public function setProductIdentifier($val)
{
$this->_propDict["productIdentifier"] = $val;
return $this;
} | Sets the productIdentifier
The Product Identifier.
@param string $val The productIdentifier
@return WindowsPhoneXAP | setProductIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsPhoneXAP.php | MIT |
public function getCriteria()
{
if (array_key_exists("criteria", $this->_propDict)) {
if (is_a($this->_propDict["criteria"], "\Microsoft\Graph\Model\WorkbookFilterCriteria") || is_null($this->_propDict["criteria"])) {
return $this->_propDict["criteria"];
} else {
$this->_propDict["criteria"] = new WorkbookFilterCriteria($this->_propDict["criteria"]);
return $this->_propDict["criteria"];
}
}
return null;
} | Gets the criteria
The currently applied filter on the given column. Read-only.
@return WorkbookFilterCriteria|null The criteria | getCriteria | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookFilter.php | MIT |
public function setCriteria($val)
{
$this->_propDict["criteria"] = $val;
return $this;
} | Sets the criteria
The currently applied filter on the given column. Read-only.
@param WorkbookFilterCriteria $val The criteria
@return WorkbookFilter | setCriteria | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WorkbookFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WorkbookFilter.php | MIT |
public function __construct(
Service $api,
XmlParser $xmlParser = null,
$honorResultWrapper = true
) {
parent::__construct($api);
$this->parser = $xmlParser ?: new XmlParser();
$this->honorResultWrapper = $honorResultWrapper;
} | @param Service $api Service description
@param XmlParser $xmlParser Optional XML parser
@param bool $honorResultWrapper Set to false to disable the peeling
back of result wrappers from the
output structure. | __construct | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/Api/Parser/QueryParser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Api/Parser/QueryParser.php | MIT |
public function getIsDeleted()
{
if (array_key_exists("isDeleted", $this->_propDict)) {
return $this->_propDict["isDeleted"];
} else {
return null;
}
} | Gets the isDeleted
Indicates whether the user is deleted. Possible values are: true, false.
@return bool|null The isDeleted | getIsDeleted | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function setIsDeleted($val)
{
$this->_propDict["isDeleted"] = boolval($val);
return $this;
} | Sets the isDeleted
Indicates whether the user is deleted. Possible values are: true, false.
@param bool $val The isDeleted
@return RiskyUser | setIsDeleted | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function getIsProcessing()
{
if (array_key_exists("isProcessing", $this->_propDict)) {
return $this->_propDict["isProcessing"];
} else {
return null;
}
} | Gets the isProcessing
Indicates whether a user's risky state is being processed by the backend.
@return bool|null The isProcessing | getIsProcessing | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function setIsProcessing($val)
{
$this->_propDict["isProcessing"] = boolval($val);
return $this;
} | Sets the isProcessing
Indicates whether a user's risky state is being processed by the backend.
@param bool $val The isProcessing
@return RiskyUser | setIsProcessing | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function getRiskDetail()
{
if (array_key_exists("riskDetail", $this->_propDict)) {
if (is_a($this->_propDict["riskDetail"], "\Beta\Microsoft\Graph\Model\RiskDetail") || is_null($this->_propDict["riskDetail"])) {
return $this->_propDict["riskDetail"];
} else {
$this->_propDict["riskDetail"] = new RiskDetail($this->_propDict["riskDetail"]);
return $this->_propDict["riskDetail"];
}
}
return null;
} | Gets the riskDetail
The possible values are none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue.
@return RiskDetail|null The riskDetail | getRiskDetail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function setRiskDetail($val)
{
$this->_propDict["riskDetail"] = $val;
return $this;
} | Sets the riskDetail
The possible values are none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, hidden, adminConfirmedUserCompromised, unknownFutureValue.
@param RiskDetail $val The riskDetail
@return RiskyUser | setRiskDetail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function getRiskLastUpdatedDateTime()
{
if (array_key_exists("riskLastUpdatedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["riskLastUpdatedDateTime"], "\DateTime") || is_null($this->_propDict["riskLastUpdatedDateTime"])) {
return $this->_propDict["riskLastUpdatedDateTime"];
} else {
$this->_propDict["riskLastUpdatedDateTime"] = new \DateTime($this->_propDict["riskLastUpdatedDateTime"]);
return $this->_propDict["riskLastUpdatedDateTime"];
}
}
return null;
} | Gets the riskLastUpdatedDateTime
The date and time that the risky user was last updated. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
@return \DateTime|null The riskLastUpdatedDateTime | getRiskLastUpdatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function setRiskLastUpdatedDateTime($val)
{
$this->_propDict["riskLastUpdatedDateTime"] = $val;
return $this;
} | Sets the riskLastUpdatedDateTime
The date and time that the risky user was last updated. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
@param \DateTime $val The riskLastUpdatedDateTime
@return RiskyUser | setRiskLastUpdatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function getRiskLevel()
{
if (array_key_exists("riskLevel", $this->_propDict)) {
if (is_a($this->_propDict["riskLevel"], "\Beta\Microsoft\Graph\Model\RiskLevel") || is_null($this->_propDict["riskLevel"])) {
return $this->_propDict["riskLevel"];
} else {
$this->_propDict["riskLevel"] = new RiskLevel($this->_propDict["riskLevel"]);
return $this->_propDict["riskLevel"];
}
}
return null;
} | Gets the riskLevel
Level of the detected risky user. The possible values are low, medium, high, hidden, none, unknownFutureValue.
@return RiskLevel|null The riskLevel | getRiskLevel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function setRiskLevel($val)
{
$this->_propDict["riskLevel"] = $val;
return $this;
} | Sets the riskLevel
Level of the detected risky user. The possible values are low, medium, high, hidden, none, unknownFutureValue.
@param RiskLevel $val The riskLevel
@return RiskyUser | setRiskLevel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function getRiskState()
{
if (array_key_exists("riskState", $this->_propDict)) {
if (is_a($this->_propDict["riskState"], "\Beta\Microsoft\Graph\Model\RiskState") || is_null($this->_propDict["riskState"])) {
return $this->_propDict["riskState"];
} else {
$this->_propDict["riskState"] = new RiskState($this->_propDict["riskState"]);
return $this->_propDict["riskState"];
}
}
return null;
} | Gets the riskState
State of the user's risk. Possible values are: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, unknownFutureValue.
@return RiskState|null The riskState | getRiskState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function setRiskState($val)
{
$this->_propDict["riskState"] = $val;
return $this;
} | Sets the riskState
State of the user's risk. Possible values are: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, unknownFutureValue.
@param RiskState $val The riskState
@return RiskyUser | setRiskState | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function getUserDisplayName()
{
if (array_key_exists("userDisplayName", $this->_propDict)) {
return $this->_propDict["userDisplayName"];
} else {
return null;
}
} | Gets the userDisplayName
Risky user display name.
@return string|null The userDisplayName | getUserDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function setUserDisplayName($val)
{
$this->_propDict["userDisplayName"] = $val;
return $this;
} | Sets the userDisplayName
Risky user display name.
@param string $val The userDisplayName
@return RiskyUser | setUserDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function getUserPrincipalName()
{
if (array_key_exists("userPrincipalName", $this->_propDict)) {
return $this->_propDict["userPrincipalName"];
} else {
return null;
}
} | Gets the userPrincipalName
Risky user principal name.
@return string|null The userPrincipalName | getUserPrincipalName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
public function setUserPrincipalName($val)
{
$this->_propDict["userPrincipalName"] = $val;
return $this;
} | Sets the userPrincipalName
Risky user principal name.
@param string $val The userPrincipalName
@return RiskyUser | setUserPrincipalName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RiskyUser.php | MIT |
function __construct(\PDO $pdo) {
$this->pdo = $pdo;
} | Creates the PDO property storage engine
@param \PDO $pdo | __construct | 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 |
function propFind($path, PropFind $propFind) {
if (!$propFind->isAllProps() && count($propFind->get404Properties()) === 0) {
return;
}
$query = 'SELECT name, value, valuetype FROM ' . $this->tableName . ' WHERE path = ?';
$stmt = $this->pdo->prepare($query);
$stmt->execute([$path]);
while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
if (gettype($row['value']) === 'resource') {
$row['value'] = stream_get_contents($row['value']);
}
switch ($row['valuetype']) {
case null :
case self::VT_STRING :
$propFind->set($row['name'], $row['value']);
break;
case self::VT_XML :
$propFind->set($row['name'], new Complex($row['value']));
break;
case self::VT_OBJECT :
$propFind->set($row['name'], unserialize($row['value']));
break;
}
}
} | Fetches properties for a path.
This method received a PropFind object, which contains all the
information about the properties that need to be fetched.
Usually you would just want to call 'get404Properties' on this object,
as this will give you the _exact_ list of properties that need to be
fetched, and haven't yet.
However, you can also support the 'allprops' property here. In that
case, you should check for $propFind->isAllProps().
@param string $path
@param PropFind $propFind
@return void | propFind | 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 |
function delete($path) {
$stmt = $this->pdo->prepare("DELETE FROM " . $this->tableName . " WHERE path = ? OR path LIKE ? ESCAPE '='");
$childPath = strtr(
$path,
[
'=' => '==',
'%' => '=%',
'_' => '=_'
]
) . '/%';
$stmt->execute([$path, $childPath]);
} | This method is called after a node is deleted.
This allows a backend to clean up all associated properties.
The delete method will get called once for the deletion of an entire
tree.
@param string $path
@return void | delete | 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 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.