code
stringlengths 17
247k
| 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 setMobileAppIdentifier($val)
{
$this->_propDict["mobileAppIdentifier"] = $val;
return $this;
} | Sets the mobileAppIdentifier
Deployment of an app.
@param MobileAppIdentifier $val The value to assign to the mobileAppIdentifier
@return ManagedAppPolicyDeploymentSummaryPerApp The ManagedAppPolicyDeploymentSummaryPerApp | setMobileAppIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ManagedAppPolicyDeploymentSummaryPerApp.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ManagedAppPolicyDeploymentSummaryPerApp.php | MIT |
public function getProductCode()
{
if (array_key_exists("productCode", $this->_propDict)) {
return $this->_propDict["productCode"];
} else {
return null;
}
} | Gets the productCode
The product code.
@return string|null The productCode | getProductCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsMobileMSI.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsMobileMSI.php | MIT |
public function setProductCode($val)
{
$this->_propDict["productCode"] = $val;
return $this;
} | Sets the productCode
The product code.
@param string $val The productCode
@return WindowsMobileMSI | setProductCode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsMobileMSI.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsMobileMSI.php | MIT |
public function getProductVersion()
{
if (array_key_exists("productVersion", $this->_propDict)) {
return $this->_propDict["productVersion"];
} else {
return null;
}
} | Gets the productVersion
The product version of Windows Mobile MSI Line of Business (LoB) app.
@return string|null The productVersion | getProductVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsMobileMSI.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsMobileMSI.php | MIT |
public function setProductVersion($val)
{
$this->_propDict["productVersion"] = $val;
return $this;
} | Sets the productVersion
The product version of Windows Mobile MSI Line of Business (LoB) app.
@param string $val The productVersion
@return WindowsMobileMSI | setProductVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/WindowsMobileMSI.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/WindowsMobileMSI.php | MIT |
public function getConnectorName()
{
if (array_key_exists("connectorName", $this->_propDict)) {
return $this->_propDict["connectorName"];
} else {
return null;
}
} | Gets the connectorName
Connector name (set during enrollment).
@return string|null The connectorName | getConnectorName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | MIT |
public function setConnectorName($val)
{
$this->_propDict["connectorName"] = $val;
return $this;
} | Sets the connectorName
Connector name (set during enrollment).
@param string $val The connectorName
@return CertificateConnectorDetails | setConnectorName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | MIT |
public function getEnrollmentDateTime()
{
if (array_key_exists("enrollmentDateTime", $this->_propDict)) {
if (is_a($this->_propDict["enrollmentDateTime"], "\DateTime") || is_null($this->_propDict["enrollmentDateTime"])) {
return $this->_propDict["enrollmentDateTime"];
} else {
$this->_propDict["enrollmentDateTime"] = new \DateTime($this->_propDict["enrollmentDateTime"]);
return $this->_propDict["enrollmentDateTime"];
}
}
return null;
} | Gets the enrollmentDateTime
Date/time when this connector was enrolled.
@return \DateTime|null The enrollmentDateTime | getEnrollmentDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | MIT |
public function setEnrollmentDateTime($val)
{
$this->_propDict["enrollmentDateTime"] = $val;
return $this;
} | Sets the enrollmentDateTime
Date/time when this connector was enrolled.
@param \DateTime $val The enrollmentDateTime
@return CertificateConnectorDetails | setEnrollmentDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | MIT |
public function setLastCheckinDateTime($val)
{
$this->_propDict["lastCheckinDateTime"] = $val;
return $this;
} | Sets the lastCheckinDateTime
Date/time when this connector last connected to the service.
@param \DateTime $val The lastCheckinDateTime
@return CertificateConnectorDetails | setLastCheckinDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CertificateConnectorDetails.php | MIT |
public function getNotConfiguredValue()
{
if (array_key_exists("notConfiguredValue", $this->_propDict)) {
return $this->_propDict["notConfiguredValue"];
} else {
return null;
}
} | Gets the notConfiguredValue
List of value which means not configured for the setting
@return string|null The notConfiguredValue | getNotConfiguredValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingRequiredConstraint.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingRequiredConstraint.php | MIT |
public function setNotConfiguredValue($val)
{
$this->_propDict["notConfiguredValue"] = $val;
return $this;
} | Sets the notConfiguredValue
List of value which means not configured for the setting
@param string $val The value of the notConfiguredValue
@return DeviceManagementSettingRequiredConstraint | setNotConfiguredValue | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingRequiredConstraint.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingRequiredConstraint.php | MIT |
public function getLocationType()
{
if (array_key_exists("locationType", $this->_propDict)) {
if (is_a($this->_propDict["locationType"], "\Beta\Microsoft\Graph\Model\LocationType") || is_null($this->_propDict["locationType"])) {
return $this->_propDict["locationType"];
} else {
$this->_propDict["locationType"] = new LocationType($this->_propDict["locationType"]);
return $this->_propDict["locationType"];
}
}
return null;
} | Gets the locationType
The type of location. Possible values are: default, conferenceRoom, homeAddress, businessAddress,geoCoordinates, streetAddress, hotel, restaurant, localBusiness, postalAddress. Read-only.
@return LocationType|null The locationType | getLocationType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Location.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Location.php | MIT |
public function getAllowedGoogleAccountDomains()
{
if (array_key_exists("allowedGoogleAccountDomains", $this->_propDict)) {
return $this->_propDict["allowedGoogleAccountDomains"];
} else {
return null;
}
} | Gets the allowedGoogleAccountDomains
Determine domains allow-list for accounts that can be added to work profile.
@return array|null The allowedGoogleAccountDomains | getAllowedGoogleAccountDomains | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setAllowedGoogleAccountDomains($val)
{
$this->_propDict["allowedGoogleAccountDomains"] = $val;
return $this;
} | Sets the allowedGoogleAccountDomains
Determine domains allow-list for accounts that can be added to work profile.
@param string[] $val The allowedGoogleAccountDomains
@return AndroidForWorkGeneralDeviceConfiguration | setAllowedGoogleAccountDomains | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getPasswordBlockFaceUnlock()
{
if (array_key_exists("passwordBlockFaceUnlock", $this->_propDict)) {
return $this->_propDict["passwordBlockFaceUnlock"];
} else {
return null;
}
} | Gets the passwordBlockFaceUnlock
Indicates whether or not to block face unlock.
@return bool|null The passwordBlockFaceUnlock | getPasswordBlockFaceUnlock | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setPasswordBlockFaceUnlock($val)
{
$this->_propDict["passwordBlockFaceUnlock"] = boolval($val);
return $this;
} | Sets the passwordBlockFaceUnlock
Indicates whether or not to block face unlock.
@param bool $val The passwordBlockFaceUnlock
@return AndroidForWorkGeneralDeviceConfiguration | setPasswordBlockFaceUnlock | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getPasswordBlockIrisUnlock()
{
if (array_key_exists("passwordBlockIrisUnlock", $this->_propDict)) {
return $this->_propDict["passwordBlockIrisUnlock"];
} else {
return null;
}
} | Gets the passwordBlockIrisUnlock
Indicates whether or not to block iris unlock.
@return bool|null The passwordBlockIrisUnlock | getPasswordBlockIrisUnlock | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setPasswordBlockIrisUnlock($val)
{
$this->_propDict["passwordBlockIrisUnlock"] = boolval($val);
return $this;
} | Sets the passwordBlockIrisUnlock
Indicates whether or not to block iris unlock.
@param bool $val The passwordBlockIrisUnlock
@return AndroidForWorkGeneralDeviceConfiguration | setPasswordBlockIrisUnlock | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getPasswordRequiredType()
{
if (array_key_exists("passwordRequiredType", $this->_propDict)) {
if (is_a($this->_propDict["passwordRequiredType"], "\Beta\Microsoft\Graph\Model\AndroidForWorkRequiredPasswordType") || is_null($this->_propDict["passwordRequiredType"])) {
return $this->_propDict["passwordRequiredType"];
} else {
$this->_propDict["passwordRequiredType"] = new AndroidForWorkRequiredPasswordType($this->_propDict["passwordRequiredType"]);
return $this->_propDict["passwordRequiredType"];
}
}
return null;
} | Gets the passwordRequiredType
Type of password that is required. Possible values are: deviceDefault, lowSecurityBiometric, required, atLeastNumeric, numericComplex, atLeastAlphabetic, atLeastAlphanumeric, alphanumericWithSymbols.
@return AndroidForWorkRequiredPasswordType|null The passwordRequiredType | getPasswordRequiredType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getVpnAlwaysOnPackageIdentifier()
{
if (array_key_exists("vpnAlwaysOnPackageIdentifier", $this->_propDict)) {
return $this->_propDict["vpnAlwaysOnPackageIdentifier"];
} else {
return null;
}
} | Gets the vpnAlwaysOnPackageIdentifier
Enable lockdown mode for always-on VPN.
@return string|null The vpnAlwaysOnPackageIdentifier | getVpnAlwaysOnPackageIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setVpnAlwaysOnPackageIdentifier($val)
{
$this->_propDict["vpnAlwaysOnPackageIdentifier"] = $val;
return $this;
} | Sets the vpnAlwaysOnPackageIdentifier
Enable lockdown mode for always-on VPN.
@param string $val The vpnAlwaysOnPackageIdentifier
@return AndroidForWorkGeneralDeviceConfiguration | setVpnAlwaysOnPackageIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getVpnEnableAlwaysOnLockdownMode()
{
if (array_key_exists("vpnEnableAlwaysOnLockdownMode", $this->_propDict)) {
return $this->_propDict["vpnEnableAlwaysOnLockdownMode"];
} else {
return null;
}
} | Gets the vpnEnableAlwaysOnLockdownMode
Enable lockdown mode for always-on VPN.
@return bool|null The vpnEnableAlwaysOnLockdownMode | getVpnEnableAlwaysOnLockdownMode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setVpnEnableAlwaysOnLockdownMode($val)
{
$this->_propDict["vpnEnableAlwaysOnLockdownMode"] = boolval($val);
return $this;
} | Sets the vpnEnableAlwaysOnLockdownMode
Enable lockdown mode for always-on VPN.
@param bool $val The vpnEnableAlwaysOnLockdownMode
@return AndroidForWorkGeneralDeviceConfiguration | setVpnEnableAlwaysOnLockdownMode | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfileAccountUse()
{
if (array_key_exists("workProfileAccountUse", $this->_propDict)) {
if (is_a($this->_propDict["workProfileAccountUse"], "\Beta\Microsoft\Graph\Model\AndroidWorkProfileAccountUse") || is_null($this->_propDict["workProfileAccountUse"])) {
return $this->_propDict["workProfileAccountUse"];
} else {
$this->_propDict["workProfileAccountUse"] = new AndroidWorkProfileAccountUse($this->_propDict["workProfileAccountUse"]);
return $this->_propDict["workProfileAccountUse"];
}
}
return null;
} | Gets the workProfileAccountUse
Control user's ability to add accounts in work profile including Google accounts. Possible values are: allowAllExceptGoogleAccounts, blockAll, allowAll, unknownFutureValue.
@return AndroidWorkProfileAccountUse|null The workProfileAccountUse | getWorkProfileAccountUse | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setWorkProfileAccountUse($val)
{
$this->_propDict["workProfileAccountUse"] = $val;
return $this;
} | Sets the workProfileAccountUse
Control user's ability to add accounts in work profile including Google accounts. Possible values are: allowAllExceptGoogleAccounts, blockAll, allowAll, unknownFutureValue.
@param AndroidWorkProfileAccountUse $val The workProfileAccountUse
@return AndroidForWorkGeneralDeviceConfiguration | setWorkProfileAccountUse | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfileAllowWidgets()
{
if (array_key_exists("workProfileAllowWidgets", $this->_propDict)) {
return $this->_propDict["workProfileAllowWidgets"];
} else {
return null;
}
} | Gets the workProfileAllowWidgets
Allow widgets from work profile apps.
@return bool|null The workProfileAllowWidgets | getWorkProfileAllowWidgets | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setWorkProfileAllowWidgets($val)
{
$this->_propDict["workProfileAllowWidgets"] = boolval($val);
return $this;
} | Sets the workProfileAllowWidgets
Allow widgets from work profile apps.
@param bool $val The workProfileAllowWidgets
@return AndroidForWorkGeneralDeviceConfiguration | setWorkProfileAllowWidgets | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfileBlockPersonalAppInstallsFromUnknownSources()
{
if (array_key_exists("workProfileBlockPersonalAppInstallsFromUnknownSources", $this->_propDict)) {
return $this->_propDict["workProfileBlockPersonalAppInstallsFromUnknownSources"];
} else {
return null;
}
} | Gets the workProfileBlockPersonalAppInstallsFromUnknownSources
Prevent app installations from unknown sources in the personal profile.
@return bool|null The workProfileBlockPersonalAppInstallsFromUnknownSources | getWorkProfileBlockPersonalAppInstallsFromUnknownSources | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setWorkProfileBlockPersonalAppInstallsFromUnknownSources($val)
{
$this->_propDict["workProfileBlockPersonalAppInstallsFromUnknownSources"] = boolval($val);
return $this;
} | Sets the workProfileBlockPersonalAppInstallsFromUnknownSources
Prevent app installations from unknown sources in the personal profile.
@param bool $val The workProfileBlockPersonalAppInstallsFromUnknownSources
@return AndroidForWorkGeneralDeviceConfiguration | setWorkProfileBlockPersonalAppInstallsFromUnknownSources | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfileDataSharingType()
{
if (array_key_exists("workProfileDataSharingType", $this->_propDict)) {
if (is_a($this->_propDict["workProfileDataSharingType"], "\Beta\Microsoft\Graph\Model\AndroidForWorkCrossProfileDataSharingType") || is_null($this->_propDict["workProfileDataSharingType"])) {
return $this->_propDict["workProfileDataSharingType"];
} else {
$this->_propDict["workProfileDataSharingType"] = new AndroidForWorkCrossProfileDataSharingType($this->_propDict["workProfileDataSharingType"]);
return $this->_propDict["workProfileDataSharingType"];
}
}
return null;
} | Gets the workProfileDataSharingType
Type of data sharing that is allowed. Possible values are: deviceDefault, preventAny, allowPersonalToWork, noRestrictions.
@return AndroidForWorkCrossProfileDataSharingType|null The workProfileDataSharingType | getWorkProfileDataSharingType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfileDefaultAppPermissionPolicy()
{
if (array_key_exists("workProfileDefaultAppPermissionPolicy", $this->_propDict)) {
if (is_a($this->_propDict["workProfileDefaultAppPermissionPolicy"], "\Beta\Microsoft\Graph\Model\AndroidForWorkDefaultAppPermissionPolicyType") || is_null($this->_propDict["workProfileDefaultAppPermissionPolicy"])) {
return $this->_propDict["workProfileDefaultAppPermissionPolicy"];
} else {
$this->_propDict["workProfileDefaultAppPermissionPolicy"] = new AndroidForWorkDefaultAppPermissionPolicyType($this->_propDict["workProfileDefaultAppPermissionPolicy"]);
return $this->_propDict["workProfileDefaultAppPermissionPolicy"];
}
}
return null;
} | Gets the workProfileDefaultAppPermissionPolicy
Type of password that is required. Possible values are: deviceDefault, prompt, autoGrant, autoDeny.
@return AndroidForWorkDefaultAppPermissionPolicyType|null The workProfileDefaultAppPermissionPolicy | getWorkProfileDefaultAppPermissionPolicy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfilePasswordBlockFaceUnlock()
{
if (array_key_exists("workProfilePasswordBlockFaceUnlock", $this->_propDict)) {
return $this->_propDict["workProfilePasswordBlockFaceUnlock"];
} else {
return null;
}
} | Gets the workProfilePasswordBlockFaceUnlock
Indicates whether or not to block face unlock for work profile.
@return bool|null The workProfilePasswordBlockFaceUnlock | getWorkProfilePasswordBlockFaceUnlock | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setWorkProfilePasswordBlockFaceUnlock($val)
{
$this->_propDict["workProfilePasswordBlockFaceUnlock"] = boolval($val);
return $this;
} | Sets the workProfilePasswordBlockFaceUnlock
Indicates whether or not to block face unlock for work profile.
@param bool $val The workProfilePasswordBlockFaceUnlock
@return AndroidForWorkGeneralDeviceConfiguration | setWorkProfilePasswordBlockFaceUnlock | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfilePasswordBlockIrisUnlock()
{
if (array_key_exists("workProfilePasswordBlockIrisUnlock", $this->_propDict)) {
return $this->_propDict["workProfilePasswordBlockIrisUnlock"];
} else {
return null;
}
} | Gets the workProfilePasswordBlockIrisUnlock
Indicates whether or not to block iris unlock for work profile.
@return bool|null The workProfilePasswordBlockIrisUnlock | getWorkProfilePasswordBlockIrisUnlock | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setWorkProfilePasswordBlockIrisUnlock($val)
{
$this->_propDict["workProfilePasswordBlockIrisUnlock"] = boolval($val);
return $this;
} | Sets the workProfilePasswordBlockIrisUnlock
Indicates whether or not to block iris unlock for work profile.
@param bool $val The workProfilePasswordBlockIrisUnlock
@return AndroidForWorkGeneralDeviceConfiguration | setWorkProfilePasswordBlockIrisUnlock | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfilePasswordRequiredType()
{
if (array_key_exists("workProfilePasswordRequiredType", $this->_propDict)) {
if (is_a($this->_propDict["workProfilePasswordRequiredType"], "\Beta\Microsoft\Graph\Model\AndroidForWorkRequiredPasswordType") || is_null($this->_propDict["workProfilePasswordRequiredType"])) {
return $this->_propDict["workProfilePasswordRequiredType"];
} else {
$this->_propDict["workProfilePasswordRequiredType"] = new AndroidForWorkRequiredPasswordType($this->_propDict["workProfilePasswordRequiredType"]);
return $this->_propDict["workProfilePasswordRequiredType"];
}
}
return null;
} | Gets the workProfilePasswordRequiredType
Type of work profile password that is required. Possible values are: deviceDefault, lowSecurityBiometric, required, atLeastNumeric, numericComplex, atLeastAlphabetic, atLeastAlphanumeric, alphanumericWithSymbols.
@return AndroidForWorkRequiredPasswordType|null The workProfilePasswordRequiredType | getWorkProfilePasswordRequiredType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getWorkProfileRequiredPasswordComplexity()
{
if (array_key_exists("workProfileRequiredPasswordComplexity", $this->_propDict)) {
if (is_a($this->_propDict["workProfileRequiredPasswordComplexity"], "\Beta\Microsoft\Graph\Model\AndroidRequiredPasswordComplexity") || is_null($this->_propDict["workProfileRequiredPasswordComplexity"])) {
return $this->_propDict["workProfileRequiredPasswordComplexity"];
} else {
$this->_propDict["workProfileRequiredPasswordComplexity"] = new AndroidRequiredPasswordComplexity($this->_propDict["workProfileRequiredPasswordComplexity"]);
return $this->_propDict["workProfileRequiredPasswordComplexity"];
}
}
return null;
} | Gets the workProfileRequiredPasswordComplexity
Indicates the required work profile password complexity on Android. One of: NONE, LOW, MEDIUM, HIGH. This is a new API targeted to Android 12+. Possible values are: none, low, medium, high.
@return AndroidRequiredPasswordComplexity|null The workProfileRequiredPasswordComplexity | getWorkProfileRequiredPasswordComplexity | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function setWorkProfileRequiredPasswordComplexity($val)
{
$this->_propDict["workProfileRequiredPasswordComplexity"] = $val;
return $this;
} | Sets the workProfileRequiredPasswordComplexity
Indicates the required work profile password complexity on Android. One of: NONE, LOW, MEDIUM, HIGH. This is a new API targeted to Android 12+. Possible values are: none, low, medium, high.
@param AndroidRequiredPasswordComplexity $val The workProfileRequiredPasswordComplexity
@return AndroidForWorkGeneralDeviceConfiguration | setWorkProfileRequiredPasswordComplexity | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AndroidForWorkGeneralDeviceConfiguration.php | MIT |
public function getEnd()
{
if (array_key_exists("end", $this->_propDict)) {
return $this->_propDict["end"];
} else {
return null;
}
} | Gets the end
The inclusive upper bound of the integer range.
@return int|null The end | getEnd | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntegerRange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntegerRange.php | MIT |
public function getStart()
{
if (array_key_exists("start", $this->_propDict)) {
return $this->_propDict["start"];
} else {
return null;
}
} | Gets the start
The inclusive lower bound of the integer range.
@return int|null The start | getStart | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntegerRange.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntegerRange.php | MIT |
public function getManagementIntentDisplayName()
{
if (array_key_exists("managementIntentDisplayName", $this->_propDict)) {
return $this->_propDict["managementIntentDisplayName"];
} else {
return null;
}
} | Gets the managementIntentDisplayName
The display name for the management intent. Optional. Read-only.
@return string|null The managementIntentDisplayName | getManagementIntentDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | MIT |
public function setManagementIntentDisplayName($val)
{
$this->_propDict["managementIntentDisplayName"] = $val;
return $this;
} | Sets the managementIntentDisplayName
The display name for the management intent. Optional. Read-only.
@param string $val The value of the managementIntentDisplayName
@return ManagementIntentInfo | setManagementIntentDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | MIT |
public function getManagementIntentId()
{
if (array_key_exists("managementIntentId", $this->_propDict)) {
return $this->_propDict["managementIntentId"];
} else {
return null;
}
} | Gets the managementIntentId
The identifier for the management intent. Required. Read-only.
@return string|null The managementIntentId | getManagementIntentId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | MIT |
public function setManagementIntentId($val)
{
$this->_propDict["managementIntentId"] = $val;
return $this;
} | Sets the managementIntentId
The identifier for the management intent. Required. Read-only.
@param string $val The value of the managementIntentId
@return ManagementIntentInfo | setManagementIntentId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | MIT |
public function getManagementTemplates()
{
if (array_key_exists("managementTemplates", $this->_propDict)) {
if (is_a($this->_propDict["managementTemplates"], "\Beta\Microsoft\Graph\ManagedTenants\Model\ManagementTemplateDetailedInfo") || is_null($this->_propDict["managementTemplates"])) {
return $this->_propDict["managementTemplates"];
} else {
$this->_propDict["managementTemplates"] = new ManagementTemplateDetailedInfo($this->_propDict["managementTemplates"]);
return $this->_propDict["managementTemplates"];
}
}
return null;
} | Gets the managementTemplates
The collection of management template information associated with the management intent. Optional. Read-only.
@return ManagementTemplateDetailedInfo|null The managementTemplates | getManagementTemplates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | MIT |
public function setManagementTemplates($val)
{
$this->_propDict["managementTemplates"] = $val;
return $this;
} | Sets the managementTemplates
The collection of management template information associated with the management intent. Optional. Read-only.
@param ManagementTemplateDetailedInfo $val The value to assign to the managementTemplates
@return ManagementIntentInfo The ManagementIntentInfo | setManagementTemplates | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ManagedTenants/Model/ManagementIntentInfo.php | MIT |
public static function instance()
{
static $instance = false;
if ($instance === false) {
// Late static binding (PHP 5.3+)
$instance = new static();
}
return $instance;
} | Call this method to get singleton | instance | php | xiebruce/PicUploader | vendor/cloudinary/cloudinary_php/src/Utils/Singleton.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/cloudinary/cloudinary_php/src/Utils/Singleton.php | MIT |
private function __sleep()
{
} | Make sleep magic method private, so nobody can serialize instance. | __sleep | php | xiebruce/PicUploader | vendor/cloudinary/cloudinary_php/src/Utils/Singleton.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/cloudinary/cloudinary_php/src/Utils/Singleton.php | MIT |
private function __wakeup()
{
} | Make wakeup magic method private, so nobody can unserialize instance. | __wakeup | php | xiebruce/PicUploader | vendor/cloudinary/cloudinary_php/src/Utils/Singleton.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/cloudinary/cloudinary_php/src/Utils/Singleton.php | MIT |
public function getMessage()
{
if (array_key_exists("message", $this->_propDict)) {
if (is_a($this->_propDict["message"], "\Microsoft\Graph\Model\ChatMessage") || is_null($this->_propDict["message"])) {
return $this->_propDict["message"];
} else {
$this->_propDict["message"] = new ChatMessage($this->_propDict["message"]);
return $this->_propDict["message"];
}
}
return null;
} | Gets the message
Represents details about the chat message that is pinned.
@return ChatMessage|null The message | getMessage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/PinnedChatMessageInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PinnedChatMessageInfo.php | MIT |
public function getDynamicallyAdjustTopicCount()
{
if (array_key_exists("dynamicallyAdjustTopicCount", $this->_propDict)) {
return $this->_propDict["dynamicallyAdjustTopicCount"];
} else {
return null;
}
} | Gets the dynamicallyAdjustTopicCount
Indicates whether the themes model should dynamically optimize the number of generated topics. To learn more, see Adjust maximum number of themes dynamically.
@return bool|null The dynamicallyAdjustTopicCount | getDynamicallyAdjustTopicCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | MIT |
public function setDynamicallyAdjustTopicCount($val)
{
$this->_propDict["dynamicallyAdjustTopicCount"] = $val;
return $this;
} | Sets the dynamicallyAdjustTopicCount
Indicates whether the themes model should dynamically optimize the number of generated topics. To learn more, see Adjust maximum number of themes dynamically.
@param bool $val The value of the dynamicallyAdjustTopicCount
@return TopicModelingSettings | setDynamicallyAdjustTopicCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | MIT |
public function getIgnoreNumbers()
{
if (array_key_exists("ignoreNumbers", $this->_propDict)) {
return $this->_propDict["ignoreNumbers"];
} else {
return null;
}
} | Gets the ignoreNumbers
Indicates whether the themes model should exclude numbers while parsing document texts. To learn more, see Include numbers in themes.
@return bool|null The ignoreNumbers | getIgnoreNumbers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | MIT |
public function setIgnoreNumbers($val)
{
$this->_propDict["ignoreNumbers"] = $val;
return $this;
} | Sets the ignoreNumbers
Indicates whether the themes model should exclude numbers while parsing document texts. To learn more, see Include numbers in themes.
@param bool $val The value of the ignoreNumbers
@return TopicModelingSettings | setIgnoreNumbers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | MIT |
public function getTopicCount()
{
if (array_key_exists("topicCount", $this->_propDict)) {
return $this->_propDict["topicCount"];
} else {
return null;
}
} | Gets the topicCount
The total number of topics that the themes model will generate for a review set. To learn more, see Maximum number of themes.
@return int|null The topicCount | getTopicCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | MIT |
public function setTopicCount($val)
{
$this->_propDict["topicCount"] = $val;
return $this;
} | Sets the topicCount
The total number of topics that the themes model will generate for a review set. To learn more, see Maximum number of themes.
@param int $val The value of the topicCount
@return TopicModelingSettings | setTopicCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/TopicModelingSettings.php | MIT |
public function getAllowedAbstractImplementationDefinitionIds()
{
if (array_key_exists("allowedAbstractImplementationDefinitionIds", $this->_propDict)) {
return $this->_propDict["allowedAbstractImplementationDefinitionIds"];
} else {
return null;
}
} | Gets the allowedAbstractImplementationDefinitionIds
List of value which means not configured for the setting
@return string|null The allowedAbstractImplementationDefinitionIds | getAllowedAbstractImplementationDefinitionIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingAbstractImplementationConstraint.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingAbstractImplementationConstraint.php | MIT |
public function setAllowedAbstractImplementationDefinitionIds($val)
{
$this->_propDict["allowedAbstractImplementationDefinitionIds"] = $val;
return $this;
} | Sets the allowedAbstractImplementationDefinitionIds
List of value which means not configured for the setting
@param string $val The value of the allowedAbstractImplementationDefinitionIds
@return DeviceManagementSettingAbstractImplementationConstraint | setAllowedAbstractImplementationDefinitionIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingAbstractImplementationConstraint.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementSettingAbstractImplementationConstraint.php | MIT |
public function getDataType()
{
if (array_key_exists("dataType", $this->_propDict)) {
if (is_a($this->_propDict["dataType"], "\Beta\Microsoft\Graph\Model\IdentityUserFlowAttributeDataType") || is_null($this->_propDict["dataType"])) {
return $this->_propDict["dataType"];
} else {
$this->_propDict["dataType"] = new IdentityUserFlowAttributeDataType($this->_propDict["dataType"]);
return $this->_propDict["dataType"];
}
}
return null;
} | Gets the dataType
The data type of the user flow attribute. This cannot be modified after the custom user flow attribute is created. The supported values for dataType are: string , boolean , int64 , stringCollection , dateTime.
@return IdentityUserFlowAttributeDataType|null The dataType | getDataType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IdentityUserFlowAttribute.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IdentityUserFlowAttribute.php | MIT |
public function getUserFlowAttributeType()
{
if (array_key_exists("userFlowAttributeType", $this->_propDict)) {
if (is_a($this->_propDict["userFlowAttributeType"], "\Beta\Microsoft\Graph\Model\IdentityUserFlowAttributeType") || is_null($this->_propDict["userFlowAttributeType"])) {
return $this->_propDict["userFlowAttributeType"];
} else {
$this->_propDict["userFlowAttributeType"] = new IdentityUserFlowAttributeType($this->_propDict["userFlowAttributeType"]);
return $this->_propDict["userFlowAttributeType"];
}
}
return null;
} | Gets the userFlowAttributeType
The type of the user flow attribute. This is a read-only attribute that is automatically set. Depending on the type of attribute, the values for this property will be builtIn, custom, or required.
@return IdentityUserFlowAttributeType|null The userFlowAttributeType | getUserFlowAttributeType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IdentityUserFlowAttribute.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IdentityUserFlowAttribute.php | MIT |
public function setUserFlowAttributeType($val)
{
$this->_propDict["userFlowAttributeType"] = $val;
return $this;
} | Sets the userFlowAttributeType
The type of the user flow attribute. This is a read-only attribute that is automatically set. Depending on the type of attribute, the values for this property will be builtIn, custom, or required.
@param IdentityUserFlowAttributeType $val The userFlowAttributeType
@return IdentityUserFlowAttribute | setUserFlowAttributeType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IdentityUserFlowAttribute.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IdentityUserFlowAttribute.php | MIT |
public function getActionSteps()
{
if (array_key_exists("actionSteps", $this->_propDict)) {
return $this->_propDict["actionSteps"];
} else {
return null;
}
} | Gets the actionSteps
List of actions to take to complete a recommendation.
@return array|null The actionSteps | getActionSteps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setActionSteps($val)
{
$this->_propDict["actionSteps"] = $val;
return $this;
} | Sets the actionSteps
List of actions to take to complete a recommendation.
@param ActionStep[] $val The actionSteps
@return RecommendationBase | setActionSteps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getBenefits()
{
if (array_key_exists("benefits", $this->_propDict)) {
return $this->_propDict["benefits"];
} else {
return null;
}
} | Gets the benefits
An explanation of why completing the recommendation will benefit you. Corresponds to the Value section of a recommendation shown in the Azure AD portal.
@return string|null The benefits | getBenefits | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setBenefits($val)
{
$this->_propDict["benefits"] = $val;
return $this;
} | Sets the benefits
An explanation of why completing the recommendation will benefit you. Corresponds to the Value section of a recommendation shown in the Azure AD portal.
@param string $val The benefits
@return RecommendationBase | setBenefits | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getCategory()
{
if (array_key_exists("category", $this->_propDict)) {
if (is_a($this->_propDict["category"], "\Beta\Microsoft\Graph\Model\RecommendationCategory") || is_null($this->_propDict["category"])) {
return $this->_propDict["category"];
} else {
$this->_propDict["category"] = new RecommendationCategory($this->_propDict["category"]);
return $this->_propDict["category"];
}
}
return null;
} | Gets the category
Indicates the category of intelligent guidance that the recommendation falls under. The possible values are: identityBestPractice, identitySecureScore, unknownFutureValue.
@return RecommendationCategory|null The category | getCategory | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getCurrentScore()
{
if (array_key_exists("currentScore", $this->_propDict)) {
return $this->_propDict["currentScore"];
} else {
return null;
}
} | Gets the currentScore
The number of points the tenant has attained. Only applies to recommendations with category set to identitySecureScore.
@return float|null The currentScore | getCurrentScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setCurrentScore($val)
{
$this->_propDict["currentScore"] = floatval($val);
return $this;
} | Sets the currentScore
The number of points the tenant has attained. Only applies to recommendations with category set to identitySecureScore.
@param float $val The currentScore
@return RecommendationBase | setCurrentScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getFeatureAreas()
{
if (array_key_exists("featureAreas", $this->_propDict)) {
return $this->_propDict["featureAreas"];
} else {
return null;
}
} | Gets the featureAreas
The directory feature that the recommendation is related to.
@return array|null The featureAreas | getFeatureAreas | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setFeatureAreas($val)
{
$this->_propDict["featureAreas"] = $val;
return $this;
} | Sets the featureAreas
The directory feature that the recommendation is related to.
@param RecommendationFeatureAreas[] $val The featureAreas
@return RecommendationBase | setFeatureAreas | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getImpactStartDateTime()
{
if (array_key_exists("impactStartDateTime", $this->_propDict)) {
if (is_a($this->_propDict["impactStartDateTime"], "\DateTime") || is_null($this->_propDict["impactStartDateTime"])) {
return $this->_propDict["impactStartDateTime"];
} else {
$this->_propDict["impactStartDateTime"] = new \DateTime($this->_propDict["impactStartDateTime"]);
return $this->_propDict["impactStartDateTime"];
}
}
return null;
} | Gets the impactStartDateTime
The future date and time when a recommendation should be completed.
@return \DateTime|null The impactStartDateTime | getImpactStartDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setImpactStartDateTime($val)
{
$this->_propDict["impactStartDateTime"] = $val;
return $this;
} | Sets the impactStartDateTime
The future date and time when a recommendation should be completed.
@param \DateTime $val The impactStartDateTime
@return RecommendationBase | setImpactStartDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getImpactType()
{
if (array_key_exists("impactType", $this->_propDict)) {
return $this->_propDict["impactType"];
} else {
return null;
}
} | Gets the impactType
Indicates the scope of impact of a recommendation. Tenant level indicates that the recommendation impacts the whole tenant. Other possible values include users, applications.
@return string|null The impactType | getImpactType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setImpactType($val)
{
$this->_propDict["impactType"] = $val;
return $this;
} | Sets the impactType
Indicates the scope of impact of a recommendation. Tenant level indicates that the recommendation impacts the whole tenant. Other possible values include users, applications.
@param string $val The impactType
@return RecommendationBase | setImpactType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getInsights()
{
if (array_key_exists("insights", $this->_propDict)) {
return $this->_propDict["insights"];
} else {
return null;
}
} | Gets the insights
Describes why a recommendation uniquely applies to your directory. Corresponds to the Description section of a recommendation shown in the Azure AD portal.
@return string|null The insights | getInsights | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getLastCheckedDateTime()
{
if (array_key_exists("lastCheckedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastCheckedDateTime"], "\DateTime") || is_null($this->_propDict["lastCheckedDateTime"])) {
return $this->_propDict["lastCheckedDateTime"];
} else {
$this->_propDict["lastCheckedDateTime"] = new \DateTime($this->_propDict["lastCheckedDateTime"]);
return $this->_propDict["lastCheckedDateTime"];
}
}
return null;
} | Gets the lastCheckedDateTime
The most recent date and time a recommendation was deemed applicable to your directory.
@return \DateTime|null The lastCheckedDateTime | getLastCheckedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setLastCheckedDateTime($val)
{
$this->_propDict["lastCheckedDateTime"] = $val;
return $this;
} | Sets the lastCheckedDateTime
The most recent date and time a recommendation was deemed applicable to your directory.
@param \DateTime $val The lastCheckedDateTime
@return RecommendationBase | setLastCheckedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getPostponeUntilDateTime()
{
if (array_key_exists("postponeUntilDateTime", $this->_propDict)) {
if (is_a($this->_propDict["postponeUntilDateTime"], "\DateTime") || is_null($this->_propDict["postponeUntilDateTime"])) {
return $this->_propDict["postponeUntilDateTime"];
} else {
$this->_propDict["postponeUntilDateTime"] = new \DateTime($this->_propDict["postponeUntilDateTime"]);
return $this->_propDict["postponeUntilDateTime"];
}
}
return null;
} | Gets the postponeUntilDateTime
The future date and time when the status of a postponed recommendation will be active again.
@return \DateTime|null The postponeUntilDateTime | getPostponeUntilDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setPostponeUntilDateTime($val)
{
$this->_propDict["postponeUntilDateTime"] = $val;
return $this;
} | Sets the postponeUntilDateTime
The future date and time when the status of a postponed recommendation will be active again.
@param \DateTime $val The postponeUntilDateTime
@return RecommendationBase | setPostponeUntilDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getPriority()
{
if (array_key_exists("priority", $this->_propDict)) {
if (is_a($this->_propDict["priority"], "\Beta\Microsoft\Graph\Model\RecommendationPriority") || is_null($this->_propDict["priority"])) {
return $this->_propDict["priority"];
} else {
$this->_propDict["priority"] = new RecommendationPriority($this->_propDict["priority"]);
return $this->_propDict["priority"];
}
}
return null;
} | Gets the priority
Indicates the time sensitivity for a recommendation to be completed. Microsoft auto assigns this value. The possible values are: low, medium, high.
@return RecommendationPriority|null The priority | getPriority | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getRecommendationType()
{
if (array_key_exists("recommendationType", $this->_propDict)) {
if (is_a($this->_propDict["recommendationType"], "\Beta\Microsoft\Graph\Model\RecommendationType") || is_null($this->_propDict["recommendationType"])) {
return $this->_propDict["recommendationType"];
} else {
$this->_propDict["recommendationType"] = new RecommendationType($this->_propDict["recommendationType"]);
return $this->_propDict["recommendationType"];
}
}
return null;
} | Gets the recommendationType
Friendly shortname to identify the recommendation. The possible values are: adfsAppsMigration, enableDesktopSSO, enablePHS, enableProvisioning, switchFromPerUserMFA, tenantMFA, thirdPartyApps, turnOffPerUserMFA, useAuthenticatorApp, useMyApps, staleApps, staleAppCreds, applicationCredentialExpiry, servicePrincipalKeyExpiry, adminMFAV2, blockLegacyAuthentication, integratedApps, mfaRegistrationV2, pwagePolicyNew, passwordHashSync, oneAdmin, roleOverlap, selfServicePasswordReset, signinRiskPolicy, userRiskPolicy, verifyAppPublisher, privateLinkForAAD, appRoleAssignmentsGroups, appRoleAssignmentsUsers, managedIdentity, overprivilegedApps, unknownFutureValue.
@return RecommendationType|null The recommendationType | getRecommendationType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setRecommendationType($val)
{
$this->_propDict["recommendationType"] = $val;
return $this;
} | Sets the recommendationType
Friendly shortname to identify the recommendation. The possible values are: adfsAppsMigration, enableDesktopSSO, enablePHS, enableProvisioning, switchFromPerUserMFA, tenantMFA, thirdPartyApps, turnOffPerUserMFA, useAuthenticatorApp, useMyApps, staleApps, staleAppCreds, applicationCredentialExpiry, servicePrincipalKeyExpiry, adminMFAV2, blockLegacyAuthentication, integratedApps, mfaRegistrationV2, pwagePolicyNew, passwordHashSync, oneAdmin, roleOverlap, selfServicePasswordReset, signinRiskPolicy, userRiskPolicy, verifyAppPublisher, privateLinkForAAD, appRoleAssignmentsGroups, appRoleAssignmentsUsers, managedIdentity, overprivilegedApps, unknownFutureValue.
@param RecommendationType $val The recommendationType
@return RecommendationBase | setRecommendationType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\RecommendationStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new RecommendationStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
} | Gets the status
Indicates the status of the recommendation based on user or system action. The possible values are: active, completedBySystem, completedByUser, dismissed, postponed, unknownFutureValue. By default, a recommendation's status is set to active when the recommendation is first generated. Status is set to completedBySystem when our service detects that a recommendation which was previously active no longer applies.
@return RecommendationStatus|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getImpactedResources()
{
if (array_key_exists("impactedResources", $this->_propDict)) {
return $this->_propDict["impactedResources"];
} else {
return null;
}
} | Gets the impactedResources
The list of directory objects associated with the recommendation.
@return array|null The impactedResources | getImpactedResources | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function setImpactedResources($val)
{
$this->_propDict["impactedResources"] = $val;
return $this;
} | Sets the impactedResources
The list of directory objects associated with the recommendation.
@param ImpactedResource[] $val The impactedResources
@return RecommendationBase | setImpactedResources | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/RecommendationBase.php | MIT |
public function getGroup()
{
if (array_key_exists("group", $this->_propDict)) {
if (is_a($this->_propDict["group"], "\Microsoft\Graph\Model\Group") || is_null($this->_propDict["group"])) {
return $this->_propDict["group"];
} else {
$this->_propDict["group"] = new \Microsoft\Graph\Model\Group($this->_propDict["group"]);
return $this->_propDict["group"];
}
}
return null;
} | Gets the group
Represents a group.
@return \Microsoft\Graph\Model\Group|null The group | getGroup | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UnifiedGroupSource.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/UnifiedGroupSource.php | MIT |
function initialize(DAV\Server $server) {
$this->server = $server;
$this->server->on('method:GET', [$this, 'httpGet'], 90);
} | Initializes the plugin and registers event handles
@param DAV\Server $server
@return void | initialize | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Mount/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Mount/Plugin.php | MIT |
function httpGet(RequestInterface $request, ResponseInterface $response) {
$queryParams = $request->getQueryParameters();
if (!array_key_exists('mount', $queryParams)) return;
$currentUri = $request->getAbsoluteUrl();
// Stripping off everything after the ?
list($currentUri) = explode('?', $currentUri);
$this->davMount($response, $currentUri);
// Returning false to break the event chain
return false;
} | 'beforeMethod' event handles. This event handles intercepts GET requests ending
with ?mount
@param RequestInterface $request
@param ResponseInterface $response
@return bool | httpGet | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Mount/Plugin.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Mount/Plugin.php | MIT |
public function getCustodian()
{
if (array_key_exists("custodian", $this->_propDict)) {
if (is_a($this->_propDict["custodian"], "\Beta\Microsoft\Graph\SecurityNamespace\Model\EdiscoveryCustodian") || is_null($this->_propDict["custodian"])) {
return $this->_propDict["custodian"];
} else {
$this->_propDict["custodian"] = new EdiscoveryCustodian($this->_propDict["custodian"]);
return $this->_propDict["custodian"];
}
}
return null;
} | Gets the custodian
Custodians associated with the file.
@return EdiscoveryCustodian|null The custodian | getCustodian | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EdiscoveryFile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EdiscoveryFile.php | MIT |
public function setCustodian($val)
{
$this->_propDict["custodian"] = $val;
return $this;
} | Sets the custodian
Custodians associated with the file.
@param EdiscoveryCustodian $val The custodian
@return EdiscoveryFile | setCustodian | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EdiscoveryFile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/SecurityNamespace/Model/EdiscoveryFile.php | MIT |
public function getIsDialInBypassEnabled()
{
if (array_key_exists("isDialInBypassEnabled", $this->_propDict)) {
return $this->_propDict["isDialInBypassEnabled"];
} else {
return null;
}
} | Gets the isDialInBypassEnabled
Specifies whether or not to always let dial-in callers bypass the lobby. Optional.
@return bool|null The isDialInBypassEnabled | getIsDialInBypassEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/LobbyBypassSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/LobbyBypassSettings.php | MIT |
public function setIsDialInBypassEnabled($val)
{
$this->_propDict["isDialInBypassEnabled"] = $val;
return $this;
} | Sets the isDialInBypassEnabled
Specifies whether or not to always let dial-in callers bypass the lobby. Optional.
@param bool $val The value of the isDialInBypassEnabled
@return LobbyBypassSettings | setIsDialInBypassEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/LobbyBypassSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/LobbyBypassSettings.php | MIT |
public function getScope()
{
if (array_key_exists("scope", $this->_propDict)) {
if (is_a($this->_propDict["scope"], "\Beta\Microsoft\Graph\Model\LobbyBypassScope") || is_null($this->_propDict["scope"])) {
return $this->_propDict["scope"];
} else {
$this->_propDict["scope"] = new LobbyBypassScope($this->_propDict["scope"]);
return $this->_propDict["scope"];
}
}
return null;
} | Gets the scope
Specifies the type of participants that are automatically admitted into a meeting, bypassing the lobby. Optional.
@return LobbyBypassScope|null The scope | getScope | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/LobbyBypassSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/LobbyBypassSettings.php | MIT |
protected function getEncryptingStream(
Stream $plaintext,
$cek,
&$cipherOptions
) {
switch ($cipherOptions['Cipher']) {
// Only 'gcm' is supported for encryption currently
case 'gcm':
$cipherOptions['TagLength'] = 16;
$encryptClass = self::$encryptClasses['gcm'];
$cipherTextStream = new $encryptClass(
$plaintext,
$cek,
$cipherOptions['Iv'],
$cipherOptions['Aad'] = isset($cipherOptions['Aad'])
? $cipherOptions['Aad']
: '',
$cipherOptions['TagLength'],
$cipherOptions['KeySize']
);
if (!empty($cipherOptions['Aad'])) {
trigger_error("'Aad' has been supplied for content encryption"
. " with " . $cipherTextStream->getAesName() . ". The"
. " PHP SDK encryption client can decrypt an object"
. " encrypted in this way, but other AWS SDKs may not be"
. " able to.", E_USER_WARNING);
}
$appendStream = new AppendStream([
$cipherTextStream->createStream()
]);
$cipherOptions['Tag'] = $cipherTextStream->getTag();
$appendStream->addStream(Psr7\Utils::streamFor($cipherOptions['Tag']));
return $appendStream;
}
} | Generates a stream that wraps the plaintext with the proper cipher and
uses the content encryption key (CEK) to encrypt the data when read.
@param Stream $plaintext Plain-text data to be encrypted using the
materials, algorithm, and data provided.
@param string $cek A content encryption key for use by the stream for
encrypting the plaintext data.
@param array $cipherOptions Options for use in determining the cipher to
be used for encrypting data.
@return [AesStreamInterface, string]
@internal | getEncryptingStream | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/Crypto/EncryptionTraitV2.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTraitV2.php | MIT |
public function getStage()
{
if (array_key_exists("stage", $this->_propDict)) {
if (is_a($this->_propDict["stage"], "\Microsoft\Graph\CallRecords\Model\FailureStage") || is_null($this->_propDict["stage"])) {
return $this->_propDict["stage"];
} else {
$this->_propDict["stage"] = new FailureStage($this->_propDict["stage"]);
return $this->_propDict["stage"];
}
}
return null;
} | Gets the stage
The stage when the failure occurred. Possible values are: unknown, callSetup, midcall, unknownFutureValue.
@return FailureStage|null The stage | getStage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/CallRecords/Model/FailureInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/CallRecords/Model/FailureInfo.php | MIT |
public function getGracePeriodBeforeAccessRemoval()
{
if (array_key_exists("gracePeriodBeforeAccessRemoval", $this->_propDict)) {
if (is_a($this->_propDict["gracePeriodBeforeAccessRemoval"], "\DateInterval") || is_null($this->_propDict["gracePeriodBeforeAccessRemoval"])) {
return $this->_propDict["gracePeriodBeforeAccessRemoval"];
} else {
$this->_propDict["gracePeriodBeforeAccessRemoval"] = new \DateInterval($this->_propDict["gracePeriodBeforeAccessRemoval"]);
return $this->_propDict["gracePeriodBeforeAccessRemoval"];
}
}
return null;
} | Gets the gracePeriodBeforeAccessRemoval
@return \DateInterval|null The gracePeriodBeforeAccessRemoval | getGracePeriodBeforeAccessRemoval | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AccessPackageAutomaticRequestSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AccessPackageAutomaticRequestSettings.php | MIT |
public function setGracePeriodBeforeAccessRemoval($val)
{
$this->_propDict["gracePeriodBeforeAccessRemoval"] = $val;
return $this;
} | Sets the gracePeriodBeforeAccessRemoval
@param \DateInterval $val The value to assign to the gracePeriodBeforeAccessRemoval
@return AccessPackageAutomaticRequestSettings The AccessPackageAutomaticRequestSettings | setGracePeriodBeforeAccessRemoval | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AccessPackageAutomaticRequestSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AccessPackageAutomaticRequestSettings.php | MIT |
public function getRemoveAccessWhenTargetLeavesAllowedTargets()
{
if (array_key_exists("removeAccessWhenTargetLeavesAllowedTargets", $this->_propDict)) {
return $this->_propDict["removeAccessWhenTargetLeavesAllowedTargets"];
} else {
return null;
}
} | Gets the removeAccessWhenTargetLeavesAllowedTargets
@return bool|null The removeAccessWhenTargetLeavesAllowedTargets | getRemoveAccessWhenTargetLeavesAllowedTargets | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AccessPackageAutomaticRequestSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AccessPackageAutomaticRequestSettings.php | MIT |
public function setRemoveAccessWhenTargetLeavesAllowedTargets($val)
{
$this->_propDict["removeAccessWhenTargetLeavesAllowedTargets"] = $val;
return $this;
} | Sets the removeAccessWhenTargetLeavesAllowedTargets
@param bool $val The value of the removeAccessWhenTargetLeavesAllowedTargets
@return AccessPackageAutomaticRequestSettings | setRemoveAccessWhenTargetLeavesAllowedTargets | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/AccessPackageAutomaticRequestSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/AccessPackageAutomaticRequestSettings.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.