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 getShowConfigurationManagerApps()
{
if (array_key_exists("showConfigurationManagerApps", $this->_propDict)) {
return $this->_propDict["showConfigurationManagerApps"];
} else {
return null;
}
} | Gets the showConfigurationManagerApps
Boolean that indicates if Configuration Manager Apps will be shown in Company Portal
@return bool|null The showConfigurationManagerApps | getShowConfigurationManagerApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function setShowConfigurationManagerApps($val)
{
$this->_propDict["showConfigurationManagerApps"] = boolval($val);
return $this;
} | Sets the showConfigurationManagerApps
Boolean that indicates if Configuration Manager Apps will be shown in Company Portal
@param bool $val The showConfigurationManagerApps
@return IntuneBrandingProfile | setShowConfigurationManagerApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function getShowDisplayNameNextToLogo()
{
if (array_key_exists("showDisplayNameNextToLogo", $this->_propDict)) {
return $this->_propDict["showDisplayNameNextToLogo"];
} else {
return null;
}
} | Gets the showDisplayNameNextToLogo
Boolean that represents whether the administrator-supplied display name will be shown next to the logo image or not
@return bool|null The showDisplayNameNextToLogo | getShowDisplayNameNextToLogo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function setShowDisplayNameNextToLogo($val)
{
$this->_propDict["showDisplayNameNextToLogo"] = boolval($val);
return $this;
} | Sets the showDisplayNameNextToLogo
Boolean that represents whether the administrator-supplied display name will be shown next to the logo image or not
@param bool $val The showDisplayNameNextToLogo
@return IntuneBrandingProfile | setShowDisplayNameNextToLogo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function getShowLogo()
{
if (array_key_exists("showLogo", $this->_propDict)) {
return $this->_propDict["showLogo"];
} else {
return null;
}
} | Gets the showLogo
Boolean that represents whether the administrator-supplied logo images are shown or not
@return bool|null The showLogo | getShowLogo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function setShowLogo($val)
{
$this->_propDict["showLogo"] = boolval($val);
return $this;
} | Sets the showLogo
Boolean that represents whether the administrator-supplied logo images are shown or not
@param bool $val The showLogo
@return IntuneBrandingProfile | setShowLogo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function getShowOfficeWebApps()
{
if (array_key_exists("showOfficeWebApps", $this->_propDict)) {
return $this->_propDict["showOfficeWebApps"];
} else {
return null;
}
} | Gets the showOfficeWebApps
Boolean that indicates if Office WebApps will be shown in Company Portal
@return bool|null The showOfficeWebApps | getShowOfficeWebApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function setShowOfficeWebApps($val)
{
$this->_propDict["showOfficeWebApps"] = boolval($val);
return $this;
} | Sets the showOfficeWebApps
Boolean that indicates if Office WebApps will be shown in Company Portal
@param bool $val The showOfficeWebApps
@return IntuneBrandingProfile | setShowOfficeWebApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function getThemeColor()
{
if (array_key_exists("themeColor", $this->_propDict)) {
if (is_a($this->_propDict["themeColor"], "\Beta\Microsoft\Graph\Model\RgbColor") || is_null($this->_propDict["themeColor"])) {
return $this->_propDict["themeColor"];
} else {
$this->_propDict["themeColor"] = new RgbColor($this->_propDict["themeColor"]);
return $this->_propDict["themeColor"];
}
}
return null;
} | Gets the themeColor
Primary theme color used in the Company Portal applications and web portal
@return RgbColor|null The themeColor | getThemeColor | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function setThemeColor($val)
{
$this->_propDict["themeColor"] = $val;
return $this;
} | Sets the themeColor
Primary theme color used in the Company Portal applications and web portal
@param RgbColor $val The themeColor
@return IntuneBrandingProfile | setThemeColor | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function getThemeColorLogo()
{
if (array_key_exists("themeColorLogo", $this->_propDict)) {
if (is_a($this->_propDict["themeColorLogo"], "\Beta\Microsoft\Graph\Model\MimeContent") || is_null($this->_propDict["themeColorLogo"])) {
return $this->_propDict["themeColorLogo"];
} else {
$this->_propDict["themeColorLogo"] = new MimeContent($this->_propDict["themeColorLogo"]);
return $this->_propDict["themeColorLogo"];
}
}
return null;
} | Gets the themeColorLogo
Logo image displayed in Company Portal apps which have a theme color background behind the logo
@return MimeContent|null The themeColorLogo | getThemeColorLogo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function setThemeColorLogo($val)
{
$this->_propDict["themeColorLogo"] = $val;
return $this;
} | Sets the themeColorLogo
Logo image displayed in Company Portal apps which have a theme color background behind the logo
@param MimeContent $val The themeColorLogo
@return IntuneBrandingProfile | setThemeColorLogo | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.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 assignments for the branding profile
@return array|null The assignments | getAssignments | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function setAssignments($val)
{
$this->_propDict["assignments"] = $val;
return $this;
} | Sets the assignments
The list of group assignments for the branding profile
@param IntuneBrandingProfileAssignment[] $val The assignments
@return IntuneBrandingProfile | setAssignments | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IntuneBrandingProfile.php | MIT |
public function getData()
{
return $this->parsedData;
} | 得到返回数据,不同的请求返回数据格式不同
$return mixed | getData | php | xiebruce/PicUploader | vendor/netease/nos-php-sdk/src/NOS/Result/Result.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/netease/nos-php-sdk/src/NOS/Result/Result.php | MIT |
public function getExcludeServicePrincipals()
{
if (array_key_exists("excludeServicePrincipals", $this->_propDict)) {
return $this->_propDict["excludeServicePrincipals"];
} else {
return null;
}
} | Gets the excludeServicePrincipals
Service principal IDs excluded from the policy scope.
@return string|null The excludeServicePrincipals | getExcludeServicePrincipals | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | MIT |
public function setExcludeServicePrincipals($val)
{
$this->_propDict["excludeServicePrincipals"] = $val;
return $this;
} | Sets the excludeServicePrincipals
Service principal IDs excluded from the policy scope.
@param string $val The value of the excludeServicePrincipals
@return ConditionalAccessClientApplications | setExcludeServicePrincipals | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | MIT |
public function getIncludeServicePrincipals()
{
if (array_key_exists("includeServicePrincipals", $this->_propDict)) {
return $this->_propDict["includeServicePrincipals"];
} else {
return null;
}
} | Gets the includeServicePrincipals
Service principal IDs included in the policy scope, or ServicePrincipalsInMyTenant.
@return string|null The includeServicePrincipals | getIncludeServicePrincipals | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | MIT |
public function setIncludeServicePrincipals($val)
{
$this->_propDict["includeServicePrincipals"] = $val;
return $this;
} | Sets the includeServicePrincipals
Service principal IDs included in the policy scope, or ServicePrincipalsInMyTenant.
@param string $val The value of the includeServicePrincipals
@return ConditionalAccessClientApplications | setIncludeServicePrincipals | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | MIT |
public function getServicePrincipalFilter()
{
if (array_key_exists("servicePrincipalFilter", $this->_propDict)) {
if (is_a($this->_propDict["servicePrincipalFilter"], "\Beta\Microsoft\Graph\Model\ConditionalAccessFilter") || is_null($this->_propDict["servicePrincipalFilter"])) {
return $this->_propDict["servicePrincipalFilter"];
} else {
$this->_propDict["servicePrincipalFilter"] = new ConditionalAccessFilter($this->_propDict["servicePrincipalFilter"]);
return $this->_propDict["servicePrincipalFilter"];
}
}
return null;
} | Gets the servicePrincipalFilter
Filter that defines the dynamic-servicePrincipal-syntax rule to include/exclude service principals. A filter can use custom security attributes to include/exclude service principals.
@return ConditionalAccessFilter|null The servicePrincipalFilter | getServicePrincipalFilter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | MIT |
public function setServicePrincipalFilter($val)
{
$this->_propDict["servicePrincipalFilter"] = $val;
return $this;
} | Sets the servicePrincipalFilter
Filter that defines the dynamic-servicePrincipal-syntax rule to include/exclude service principals. A filter can use custom security attributes to include/exclude service principals.
@param ConditionalAccessFilter $val The value to assign to the servicePrincipalFilter
@return ConditionalAccessClientApplications The ConditionalAccessClientApplications | setServicePrincipalFilter | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessClientApplications.php | MIT |
public function encrypt(
Stream $plaintext,
array $cipherOptions,
MaterialsProvider $provider,
MetadataEnvelope $envelope
) {
$materialsDescription = $provider->getMaterialsDescription();
$cipherOptions = array_intersect_key(
$cipherOptions,
self::$allowedOptions
);
if (empty($cipherOptions['Cipher'])) {
throw new \InvalidArgumentException('An encryption cipher must be'
. ' specified in the "cipher_options".');
}
if (!self::isSupportedCipher($cipherOptions['Cipher'])) {
throw new \InvalidArgumentException('The cipher requested is not'
. ' supported by the SDK.');
}
if (empty($cipherOptions['KeySize'])) {
$cipherOptions['KeySize'] = 256;
}
if (!is_int($cipherOptions['KeySize'])) {
throw new \InvalidArgumentException('The cipher "KeySize" must be'
. ' an integer.');
}
if (!MaterialsProvider::isSupportedKeySize(
$cipherOptions['KeySize']
)) {
throw new \InvalidArgumentException('The cipher "KeySize" requested'
. ' is not supported by AES (128, 192, or 256).');
}
$cipherOptions['Iv'] = $provider->generateIv(
$this->getCipherOpenSslName(
$cipherOptions['Cipher'],
$cipherOptions['KeySize']
)
);
$cek = $provider->generateCek($cipherOptions['KeySize']);
list($encryptingStream, $aesName) = $this->getEncryptingStream(
$plaintext,
$cek,
$cipherOptions
);
// Populate envelope data
$envelope[MetadataEnvelope::CONTENT_KEY_V2_HEADER] =
$provider->encryptCek(
$cek,
$materialsDescription
);
unset($cek);
$envelope[MetadataEnvelope::IV_HEADER] =
base64_encode($cipherOptions['Iv']);
$envelope[MetadataEnvelope::KEY_WRAP_ALGORITHM_HEADER] =
$provider->getWrapAlgorithmName();
$envelope[MetadataEnvelope::CONTENT_CRYPTO_SCHEME_HEADER] = $aesName;
$envelope[MetadataEnvelope::UNENCRYPTED_CONTENT_LENGTH_HEADER] =
strlen($plaintext);
$envelope[MetadataEnvelope::MATERIALS_DESCRIPTION_HEADER] =
json_encode($materialsDescription);
if (!empty($cipherOptions['Tag'])) {
$envelope[MetadataEnvelope::CRYPTO_TAG_LENGTH_HEADER] =
strlen($cipherOptions['Tag']) * 8;
}
return $encryptingStream;
} | Builds an AesStreamInterface and populates encryption metadata into the
supplied envelope.
@param Stream $plaintext Plain-text data to be encrypted using the
materials, algorithm, and data provided.
@param array $cipherOptions Options for use in determining the cipher to
be used for encrypting data.
@param MaterialsProvider $provider A provider to supply and encrypt
materials used in encryption.
@param MetadataEnvelope $envelope A storage envelope for encryption
metadata to be added to.
@return AesStreamInterface
@throws \InvalidArgumentException Thrown when a value in $cipherOptions
is not valid.
@internal | encrypt | php | xiebruce/PicUploader | vendor/aws/aws-sdk-php/src/Crypto/EncryptionTrait.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTrait.php | MIT |
protected function getEncryptingStream(
Stream $plaintext,
$cek,
&$cipherOptions
) {
switch ($cipherOptions['Cipher']) {
case 'gcm':
$cipherOptions['TagLength'] = 16;
$cipherTextStream = new AesGcmEncryptingStream(
$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, $cipherTextStream->getAesName()];
default:
$cipherMethod = $this->buildCipherMethod(
$cipherOptions['Cipher'],
$cipherOptions['Iv'],
$cipherOptions['KeySize']
);
$cipherTextStream = new AesEncryptingStream(
$plaintext,
$cek,
$cipherMethod
);
return [$cipherTextStream, $cipherTextStream->getAesName()];
}
} | 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/EncryptionTrait.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/aws/aws-sdk-php/src/Crypto/EncryptionTrait.php | MIT |
public function getTotalUserCount()
{
if (array_key_exists("totalUserCount", $this->_propDict)) {
return $this->_propDict["totalUserCount"];
} else {
return null;
}
} | Gets the totalUserCount
Provides the count of users with accountEnabled set to true in the tenant.
@return int|null The totalUserCount | getTotalUserCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php | MIT |
public function setTotalUserCount($val)
{
$this->_propDict["totalUserCount"] = intval($val);
return $this;
} | Sets the totalUserCount
Provides the count of users with accountEnabled set to true in the tenant.
@param int $val The totalUserCount
@return CredentialUserRegistrationCount | setTotalUserCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php | MIT |
public function getUserRegistrationCounts()
{
if (array_key_exists("userRegistrationCounts", $this->_propDict)) {
return $this->_propDict["userRegistrationCounts"];
} else {
return null;
}
} | Gets the userRegistrationCounts
A collection of registration count and status information for users in your tenant.
@return array|null The userRegistrationCounts | getUserRegistrationCounts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php | MIT |
public function setUserRegistrationCounts($val)
{
$this->_propDict["userRegistrationCounts"] = $val;
return $this;
} | Sets the userRegistrationCounts
A collection of registration count and status information for users in your tenant.
@param UserRegistrationCount[] $val The userRegistrationCounts
@return CredentialUserRegistrationCount | setUserRegistrationCounts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CredentialUserRegistrationCount.php | MIT |
public function getExpression()
{
if (array_key_exists("expression", $this->_propDict)) {
return $this->_propDict["expression"];
} else {
return null;
}
} | Gets the expression
Represents expression which has been evaluated.
@return string|null The expression | getExpression | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | MIT |
public function setExpression($val)
{
$this->_propDict["expression"] = $val;
return $this;
} | Sets the expression
Represents expression which has been evaluated.
@param string $val The value of the expression
@return ExpressionEvaluationDetails | setExpression | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | MIT |
public function getExpressionEvaluationDetails()
{
if (array_key_exists("expressionEvaluationDetails", $this->_propDict)) {
if (is_a($this->_propDict["expressionEvaluationDetails"], "\Beta\Microsoft\Graph\Model\ExpressionEvaluationDetails") || is_null($this->_propDict["expressionEvaluationDetails"])) {
return $this->_propDict["expressionEvaluationDetails"];
} else {
$this->_propDict["expressionEvaluationDetails"] = new ExpressionEvaluationDetails($this->_propDict["expressionEvaluationDetails"]);
return $this->_propDict["expressionEvaluationDetails"];
}
}
return null;
} | Gets the expressionEvaluationDetails
Represents the details of the evaluation of the expression.
@return ExpressionEvaluationDetails|null The expressionEvaluationDetails | getExpressionEvaluationDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | MIT |
public function setExpressionEvaluationDetails($val)
{
$this->_propDict["expressionEvaluationDetails"] = $val;
return $this;
} | Sets the expressionEvaluationDetails
Represents the details of the evaluation of the expression.
@param ExpressionEvaluationDetails $val The value to assign to the expressionEvaluationDetails
@return ExpressionEvaluationDetails The ExpressionEvaluationDetails | setExpressionEvaluationDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | MIT |
public function getExpressionResult()
{
if (array_key_exists("expressionResult", $this->_propDict)) {
return $this->_propDict["expressionResult"];
} else {
return null;
}
} | Gets the expressionResult
Represents the value of the result of the current expression.
@return bool|null The expressionResult | getExpressionResult | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | MIT |
public function setExpressionResult($val)
{
$this->_propDict["expressionResult"] = $val;
return $this;
} | Sets the expressionResult
Represents the value of the result of the current expression.
@param bool $val The value of the expressionResult
@return ExpressionEvaluationDetails | setExpressionResult | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | MIT |
public function getPropertyToEvaluate()
{
if (array_key_exists("propertyToEvaluate", $this->_propDict)) {
if (is_a($this->_propDict["propertyToEvaluate"], "\Beta\Microsoft\Graph\Model\PropertyToEvaluate") || is_null($this->_propDict["propertyToEvaluate"])) {
return $this->_propDict["propertyToEvaluate"];
} else {
$this->_propDict["propertyToEvaluate"] = new PropertyToEvaluate($this->_propDict["propertyToEvaluate"]);
return $this->_propDict["propertyToEvaluate"];
}
}
return null;
} | Gets the propertyToEvaluate
Defines the name of the property and the value of that property.
@return PropertyToEvaluate|null The propertyToEvaluate | getPropertyToEvaluate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | MIT |
public function setPropertyToEvaluate($val)
{
$this->_propDict["propertyToEvaluate"] = $val;
return $this;
} | Sets the propertyToEvaluate
Defines the name of the property and the value of that property.
@param PropertyToEvaluate $val The value to assign to the propertyToEvaluate
@return ExpressionEvaluationDetails The ExpressionEvaluationDetails | setPropertyToEvaluate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ExpressionEvaluationDetails.php | MIT |
public function getAllowedAudience()
{
if (array_key_exists("allowedAudience", $this->_propDict)) {
if (is_a($this->_propDict["allowedAudience"], "\Microsoft\Graph\Model\BroadcastMeetingAudience") || is_null($this->_propDict["allowedAudience"])) {
return $this->_propDict["allowedAudience"];
} else {
$this->_propDict["allowedAudience"] = new BroadcastMeetingAudience($this->_propDict["allowedAudience"]);
return $this->_propDict["allowedAudience"];
}
}
return null;
} | Gets the allowedAudience
Defines who can join the Teams live event. Possible values are listed in the following table.
@return BroadcastMeetingAudience|null The allowedAudience | getAllowedAudience | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function setAllowedAudience($val)
{
$this->_propDict["allowedAudience"] = $val;
return $this;
} | Sets the allowedAudience
Defines who can join the Teams live event. Possible values are listed in the following table.
@param BroadcastMeetingAudience $val The value to assign to the allowedAudience
@return BroadcastMeetingSettings The BroadcastMeetingSettings | setAllowedAudience | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function getCaptions()
{
if (array_key_exists("captions", $this->_propDict)) {
if (is_a($this->_propDict["captions"], "\Microsoft\Graph\Model\BroadcastMeetingCaptionSettings") || is_null($this->_propDict["captions"])) {
return $this->_propDict["captions"];
} else {
$this->_propDict["captions"] = new BroadcastMeetingCaptionSettings($this->_propDict["captions"]);
return $this->_propDict["captions"];
}
}
return null;
} | Gets the captions
Caption settings of a Teams live event.
@return BroadcastMeetingCaptionSettings|null The captions | getCaptions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function setCaptions($val)
{
$this->_propDict["captions"] = $val;
return $this;
} | Sets the captions
Caption settings of a Teams live event.
@param BroadcastMeetingCaptionSettings $val The value to assign to the captions
@return BroadcastMeetingSettings The BroadcastMeetingSettings | setCaptions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function getIsAttendeeReportEnabled()
{
if (array_key_exists("isAttendeeReportEnabled", $this->_propDict)) {
return $this->_propDict["isAttendeeReportEnabled"];
} else {
return null;
}
} | Gets the isAttendeeReportEnabled
Indicates whether attendee report is enabled for this Teams live event. Default value is false.
@return bool|null The isAttendeeReportEnabled | getIsAttendeeReportEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function setIsAttendeeReportEnabled($val)
{
$this->_propDict["isAttendeeReportEnabled"] = $val;
return $this;
} | Sets the isAttendeeReportEnabled
Indicates whether attendee report is enabled for this Teams live event. Default value is false.
@param bool $val The value of the isAttendeeReportEnabled
@return BroadcastMeetingSettings | setIsAttendeeReportEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function getIsQuestionAndAnswerEnabled()
{
if (array_key_exists("isQuestionAndAnswerEnabled", $this->_propDict)) {
return $this->_propDict["isQuestionAndAnswerEnabled"];
} else {
return null;
}
} | Gets the isQuestionAndAnswerEnabled
Indicates whether Q&A is enabled for this Teams live event. Default value is false.
@return bool|null The isQuestionAndAnswerEnabled | getIsQuestionAndAnswerEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function setIsQuestionAndAnswerEnabled($val)
{
$this->_propDict["isQuestionAndAnswerEnabled"] = $val;
return $this;
} | Sets the isQuestionAndAnswerEnabled
Indicates whether Q&A is enabled for this Teams live event. Default value is false.
@param bool $val The value of the isQuestionAndAnswerEnabled
@return BroadcastMeetingSettings | setIsQuestionAndAnswerEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function getIsRecordingEnabled()
{
if (array_key_exists("isRecordingEnabled", $this->_propDict)) {
return $this->_propDict["isRecordingEnabled"];
} else {
return null;
}
} | Gets the isRecordingEnabled
Indicates whether recording is enabled for this Teams live event. Default value is false.
@return bool|null The isRecordingEnabled | getIsRecordingEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function setIsRecordingEnabled($val)
{
$this->_propDict["isRecordingEnabled"] = $val;
return $this;
} | Sets the isRecordingEnabled
Indicates whether recording is enabled for this Teams live event. Default value is false.
@param bool $val The value of the isRecordingEnabled
@return BroadcastMeetingSettings | setIsRecordingEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function getIsVideoOnDemandEnabled()
{
if (array_key_exists("isVideoOnDemandEnabled", $this->_propDict)) {
return $this->_propDict["isVideoOnDemandEnabled"];
} else {
return null;
}
} | Gets the isVideoOnDemandEnabled
Indicates whether video on demand is enabled for this Teams live event. Default value is false.
@return bool|null The isVideoOnDemandEnabled | getIsVideoOnDemandEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function setIsVideoOnDemandEnabled($val)
{
$this->_propDict["isVideoOnDemandEnabled"] = $val;
return $this;
} | Sets the isVideoOnDemandEnabled
Indicates whether video on demand is enabled for this Teams live event. Default value is false.
@param bool $val The value of the isVideoOnDemandEnabled
@return BroadcastMeetingSettings | setIsVideoOnDemandEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/BroadcastMeetingSettings.php | MIT |
public function getAverageBlueScreens()
{
if (array_key_exists("averageBlueScreens", $this->_propDict)) {
return $this->_propDict["averageBlueScreens"];
} else {
return null;
}
} | Gets the averageBlueScreens
Average (mean) number of Blue Screens per device in the last 30 days. Valid values 0 to 9999999
@return float|null The averageBlueScreens | getAverageBlueScreens | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setAverageBlueScreens($val)
{
$this->_propDict["averageBlueScreens"] = floatval($val);
return $this;
} | Sets the averageBlueScreens
Average (mean) number of Blue Screens per device in the last 30 days. Valid values 0 to 9999999
@param float $val The averageBlueScreens
@return UserExperienceAnalyticsDevicePerformance | setAverageBlueScreens | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getAverageRestarts()
{
if (array_key_exists("averageRestarts", $this->_propDict)) {
return $this->_propDict["averageRestarts"];
} else {
return null;
}
} | Gets the averageRestarts
Average (mean) number of Restarts per device in the last 30 days. Valid values 0 to 9999999
@return float|null The averageRestarts | getAverageRestarts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setAverageRestarts($val)
{
$this->_propDict["averageRestarts"] = floatval($val);
return $this;
} | Sets the averageRestarts
Average (mean) number of Restarts per device in the last 30 days. Valid values 0 to 9999999
@param float $val The averageRestarts
@return UserExperienceAnalyticsDevicePerformance | setAverageRestarts | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getBlueScreenCount()
{
if (array_key_exists("blueScreenCount", $this->_propDict)) {
return $this->_propDict["blueScreenCount"];
} else {
return null;
}
} | Gets the blueScreenCount
Number of Blue Screens in the last 30 days. Valid values 0 to 9999999
@return int|null The blueScreenCount | getBlueScreenCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setBlueScreenCount($val)
{
$this->_propDict["blueScreenCount"] = intval($val);
return $this;
} | Sets the blueScreenCount
Number of Blue Screens in the last 30 days. Valid values 0 to 9999999
@param int $val The blueScreenCount
@return UserExperienceAnalyticsDevicePerformance | setBlueScreenCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getBootScore()
{
if (array_key_exists("bootScore", $this->_propDict)) {
return $this->_propDict["bootScore"];
} else {
return null;
}
} | Gets the bootScore
The user experience analytics device boot score.
@return int|null The bootScore | getBootScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setBootScore($val)
{
$this->_propDict["bootScore"] = intval($val);
return $this;
} | Sets the bootScore
The user experience analytics device boot score.
@param int $val The bootScore
@return UserExperienceAnalyticsDevicePerformance | setBootScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getCoreBootTimeInMs()
{
if (array_key_exists("coreBootTimeInMs", $this->_propDict)) {
return $this->_propDict["coreBootTimeInMs"];
} else {
return null;
}
} | Gets the coreBootTimeInMs
The user experience analytics device core boot time in milliseconds.
@return int|null The coreBootTimeInMs | getCoreBootTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setCoreBootTimeInMs($val)
{
$this->_propDict["coreBootTimeInMs"] = intval($val);
return $this;
} | Sets the coreBootTimeInMs
The user experience analytics device core boot time in milliseconds.
@param int $val The coreBootTimeInMs
@return UserExperienceAnalyticsDevicePerformance | setCoreBootTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getCoreLoginTimeInMs()
{
if (array_key_exists("coreLoginTimeInMs", $this->_propDict)) {
return $this->_propDict["coreLoginTimeInMs"];
} else {
return null;
}
} | Gets the coreLoginTimeInMs
The user experience analytics device core login time in milliseconds.
@return int|null The coreLoginTimeInMs | getCoreLoginTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setCoreLoginTimeInMs($val)
{
$this->_propDict["coreLoginTimeInMs"] = intval($val);
return $this;
} | Sets the coreLoginTimeInMs
The user experience analytics device core login time in milliseconds.
@param int $val The coreLoginTimeInMs
@return UserExperienceAnalyticsDevicePerformance | setCoreLoginTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getDeviceCount()
{
if (array_key_exists("deviceCount", $this->_propDict)) {
return $this->_propDict["deviceCount"];
} else {
return null;
}
} | Gets the deviceCount
User experience analytics summarized device count.
@return int|null The deviceCount | getDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setDeviceCount($val)
{
$this->_propDict["deviceCount"] = intval($val);
return $this;
} | Sets the deviceCount
User experience analytics summarized device count.
@param int $val The deviceCount
@return UserExperienceAnalyticsDevicePerformance | setDeviceCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getDeviceName()
{
if (array_key_exists("deviceName", $this->_propDict)) {
return $this->_propDict["deviceName"];
} else {
return null;
}
} | Gets the deviceName
The user experience analytics device name.
@return string|null The deviceName | getDeviceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setDeviceName($val)
{
$this->_propDict["deviceName"] = $val;
return $this;
} | Sets the deviceName
The user experience analytics device name.
@param string $val The deviceName
@return UserExperienceAnalyticsDevicePerformance | setDeviceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getDiskType()
{
if (array_key_exists("diskType", $this->_propDict)) {
if (is_a($this->_propDict["diskType"], "\Beta\Microsoft\Graph\Model\DiskType") || is_null($this->_propDict["diskType"])) {
return $this->_propDict["diskType"];
} else {
$this->_propDict["diskType"] = new DiskType($this->_propDict["diskType"]);
return $this->_propDict["diskType"];
}
}
return null;
} | Gets the diskType
The user experience analytics device disk type. Possible values are: unknown, hdd, ssd, unknownFutureValue.
@return DiskType|null The diskType | getDiskType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setDiskType($val)
{
$this->_propDict["diskType"] = $val;
return $this;
} | Sets the diskType
The user experience analytics device disk type. Possible values are: unknown, hdd, ssd, unknownFutureValue.
@param DiskType $val The diskType
@return UserExperienceAnalyticsDevicePerformance | setDiskType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getGroupPolicyBootTimeInMs()
{
if (array_key_exists("groupPolicyBootTimeInMs", $this->_propDict)) {
return $this->_propDict["groupPolicyBootTimeInMs"];
} else {
return null;
}
} | Gets the groupPolicyBootTimeInMs
The user experience analytics device group policy boot time in milliseconds.
@return int|null The groupPolicyBootTimeInMs | getGroupPolicyBootTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setGroupPolicyBootTimeInMs($val)
{
$this->_propDict["groupPolicyBootTimeInMs"] = intval($val);
return $this;
} | Sets the groupPolicyBootTimeInMs
The user experience analytics device group policy boot time in milliseconds.
@param int $val The groupPolicyBootTimeInMs
@return UserExperienceAnalyticsDevicePerformance | setGroupPolicyBootTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getGroupPolicyLoginTimeInMs()
{
if (array_key_exists("groupPolicyLoginTimeInMs", $this->_propDict)) {
return $this->_propDict["groupPolicyLoginTimeInMs"];
} else {
return null;
}
} | Gets the groupPolicyLoginTimeInMs
The user experience analytics device group policy login time in milliseconds.
@return int|null The groupPolicyLoginTimeInMs | getGroupPolicyLoginTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setGroupPolicyLoginTimeInMs($val)
{
$this->_propDict["groupPolicyLoginTimeInMs"] = intval($val);
return $this;
} | Sets the groupPolicyLoginTimeInMs
The user experience analytics device group policy login time in milliseconds.
@param int $val The groupPolicyLoginTimeInMs
@return UserExperienceAnalyticsDevicePerformance | setGroupPolicyLoginTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getHealthStatus()
{
if (array_key_exists("healthStatus", $this->_propDict)) {
if (is_a($this->_propDict["healthStatus"], "\Beta\Microsoft\Graph\Model\UserExperienceAnalyticsHealthState") || is_null($this->_propDict["healthStatus"])) {
return $this->_propDict["healthStatus"];
} else {
$this->_propDict["healthStatus"] = new UserExperienceAnalyticsHealthState($this->_propDict["healthStatus"]);
return $this->_propDict["healthStatus"];
}
}
return null;
} | Gets the healthStatus
The health state of the user experience analytics device. Possible values are: unknown, insufficientData, needsAttention, meetingGoals, unknownFutureValue.
@return UserExperienceAnalyticsHealthState|null The healthStatus | getHealthStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setHealthStatus($val)
{
$this->_propDict["healthStatus"] = $val;
return $this;
} | Sets the healthStatus
The health state of the user experience analytics device. Possible values are: unknown, insufficientData, needsAttention, meetingGoals, unknownFutureValue.
@param UserExperienceAnalyticsHealthState $val The healthStatus
@return UserExperienceAnalyticsDevicePerformance | setHealthStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getLoginScore()
{
if (array_key_exists("loginScore", $this->_propDict)) {
return $this->_propDict["loginScore"];
} else {
return null;
}
} | Gets the loginScore
The user experience analytics device login score.
@return int|null The loginScore | getLoginScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setLoginScore($val)
{
$this->_propDict["loginScore"] = intval($val);
return $this;
} | Sets the loginScore
The user experience analytics device login score.
@param int $val The loginScore
@return UserExperienceAnalyticsDevicePerformance | setLoginScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getManufacturer()
{
if (array_key_exists("manufacturer", $this->_propDict)) {
return $this->_propDict["manufacturer"];
} else {
return null;
}
} | Gets the manufacturer
The user experience analytics device manufacturer.
@return string|null The manufacturer | getManufacturer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setManufacturer($val)
{
$this->_propDict["manufacturer"] = $val;
return $this;
} | Sets the manufacturer
The user experience analytics device manufacturer.
@param string $val The manufacturer
@return UserExperienceAnalyticsDevicePerformance | setManufacturer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getModel()
{
if (array_key_exists("model", $this->_propDict)) {
return $this->_propDict["model"];
} else {
return null;
}
} | Gets the model
The user experience analytics device model.
@return string|null The model | getModel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setModel($val)
{
$this->_propDict["model"] = $val;
return $this;
} | Sets the model
The user experience analytics device model.
@param string $val The model
@return UserExperienceAnalyticsDevicePerformance | setModel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getModelStartupPerformanceScore()
{
if (array_key_exists("modelStartupPerformanceScore", $this->_propDict)) {
return $this->_propDict["modelStartupPerformanceScore"];
} else {
return null;
}
} | Gets the modelStartupPerformanceScore
The user experience analytics model level startup performance score. Valid values -1.79769313486232E+308 to 1.79769313486232E+308
@return float|null The modelStartupPerformanceScore | getModelStartupPerformanceScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setModelStartupPerformanceScore($val)
{
$this->_propDict["modelStartupPerformanceScore"] = floatval($val);
return $this;
} | Sets the modelStartupPerformanceScore
The user experience analytics model level startup performance score. Valid values -1.79769313486232E+308 to 1.79769313486232E+308
@param float $val The modelStartupPerformanceScore
@return UserExperienceAnalyticsDevicePerformance | setModelStartupPerformanceScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getOperatingSystemVersion()
{
if (array_key_exists("operatingSystemVersion", $this->_propDict)) {
return $this->_propDict["operatingSystemVersion"];
} else {
return null;
}
} | Gets the operatingSystemVersion
The user experience analytics device Operating System version.
@return string|null The operatingSystemVersion | getOperatingSystemVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setOperatingSystemVersion($val)
{
$this->_propDict["operatingSystemVersion"] = $val;
return $this;
} | Sets the operatingSystemVersion
The user experience analytics device Operating System version.
@param string $val The operatingSystemVersion
@return UserExperienceAnalyticsDevicePerformance | setOperatingSystemVersion | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getResponsiveDesktopTimeInMs()
{
if (array_key_exists("responsiveDesktopTimeInMs", $this->_propDict)) {
return $this->_propDict["responsiveDesktopTimeInMs"];
} else {
return null;
}
} | Gets the responsiveDesktopTimeInMs
The user experience analytics responsive desktop time in milliseconds.
@return int|null The responsiveDesktopTimeInMs | getResponsiveDesktopTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setResponsiveDesktopTimeInMs($val)
{
$this->_propDict["responsiveDesktopTimeInMs"] = intval($val);
return $this;
} | Sets the responsiveDesktopTimeInMs
The user experience analytics responsive desktop time in milliseconds.
@param int $val The responsiveDesktopTimeInMs
@return UserExperienceAnalyticsDevicePerformance | setResponsiveDesktopTimeInMs | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getRestartCount()
{
if (array_key_exists("restartCount", $this->_propDict)) {
return $this->_propDict["restartCount"];
} else {
return null;
}
} | Gets the restartCount
Number of Restarts in the last 30 days. Valid values 0 to 9999999
@return int|null The restartCount | getRestartCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setRestartCount($val)
{
$this->_propDict["restartCount"] = intval($val);
return $this;
} | Sets the restartCount
Number of Restarts in the last 30 days. Valid values 0 to 9999999
@param int $val The restartCount
@return UserExperienceAnalyticsDevicePerformance | setRestartCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function getStartupPerformanceScore()
{
if (array_key_exists("startupPerformanceScore", $this->_propDict)) {
return $this->_propDict["startupPerformanceScore"];
} else {
return null;
}
} | Gets the startupPerformanceScore
The user experience analytics device startup performance score. Valid values -1.79769313486232E+308 to 1.79769313486232E+308
@return float|null The startupPerformanceScore | getStartupPerformanceScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function setStartupPerformanceScore($val)
{
$this->_propDict["startupPerformanceScore"] = floatval($val);
return $this;
} | Sets the startupPerformanceScore
The user experience analytics device startup performance score. Valid values -1.79769313486232E+308 to 1.79769313486232E+308
@param float $val The startupPerformanceScore
@return UserExperienceAnalyticsDevicePerformance | setStartupPerformanceScore | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserExperienceAnalyticsDevicePerformance.php | MIT |
public function addVisitor($location, RequestVisitorInterface $visitor)
{
$this->factory->addRequestVisitor($location, $visitor);
return $this;
} | Add a location visitor to the serializer
@param string $location Location to associate with the visitor
@param RequestVisitorInterface $visitor Visitor to attach
@return self | addVisitor | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php | MIT |
protected function prepareAdditionalParameters(
OperationInterface $operation,
CommandInterface $command,
RequestInterface $request,
Parameter $additional
) {
if (!($location = $additional->getLocation())) {
return;
}
$visitor = $this->factory->getRequestVisitor($location);
$hidden = $command[$command::HIDDEN_PARAMS];
foreach ($command->toArray() as $key => $value) {
// Ignore values that are null or built-in command options
if ($value !== null
&& !in_array($key, $hidden)
&& !$operation->hasParam($key)
) {
$additional->setName($key);
$visitor->visit($command, $request, $additional, $value);
}
}
return $visitor;
} | Serialize additional parameters
@param OperationInterface $operation Operation that owns the command
@param CommandInterface $command Command to prepare
@param RequestInterface $request Request to serialize
@param Parameter $additional Additional parameters
@return null|RequestVisitorInterface | prepareAdditionalParameters | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php | MIT |
protected function createRequest(CommandInterface $command)
{
$operation = $command->getOperation();
$client = $command->getClient();
$options = $command[AbstractCommand::REQUEST_OPTIONS] ?: array();
// If the command does not specify a template, then assume the base URL of the client
if (!($uri = $operation->getUri())) {
return $client->createRequest($operation->getHttpMethod(), $client->getBaseUrl(), null, null, $options);
}
// Get the path values and use the client config settings
$variables = array();
foreach ($operation->getParams() as $name => $arg) {
if ($arg->getLocation() == 'uri') {
if (isset($command[$name])) {
$variables[$name] = $arg->filter($command[$name]);
if (!is_array($variables[$name])) {
$variables[$name] = (string) $variables[$name];
}
}
}
}
return $client->createRequest($operation->getHttpMethod(), array($uri, $variables), null, null, $options);
} | Create a request for the command and operation
@param CommandInterface $command Command to create a request for
@return RequestInterface | createRequest | php | xiebruce/PicUploader | vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php | MIT |
public function getChildIds()
{
if (array_key_exists("childIds", $this->_propDict)) {
return $this->_propDict["childIds"];
} else {
return null;
}
} | Gets the childIds
Dependent child settings to this group of settings
@return array|null The childIds | getChildIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | MIT |
public function setChildIds($val)
{
$this->_propDict["childIds"] = $val;
return $this;
} | Sets the childIds
Dependent child settings to this group of settings
@param string[] $val The childIds
@return DeviceManagementConfigurationSettingGroupDefinition | setChildIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | MIT |
public function getDependedOnBy()
{
if (array_key_exists("dependedOnBy", $this->_propDict)) {
return $this->_propDict["dependedOnBy"];
} else {
return null;
}
} | Gets the dependedOnBy
List of child settings that depend on this setting
@return array|null The dependedOnBy | getDependedOnBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | MIT |
public function setDependedOnBy($val)
{
$this->_propDict["dependedOnBy"] = $val;
return $this;
} | Sets the dependedOnBy
List of child settings that depend on this setting
@param DeviceManagementConfigurationSettingDependedOnBy[] $val The dependedOnBy
@return DeviceManagementConfigurationSettingGroupDefinition | setDependedOnBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | MIT |
public function getDependentOn()
{
if (array_key_exists("dependentOn", $this->_propDict)) {
return $this->_propDict["dependentOn"];
} else {
return null;
}
} | Gets the dependentOn
List of Dependencies for the setting group
@return array|null The dependentOn | getDependentOn | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | MIT |
public function setDependentOn($val)
{
$this->_propDict["dependentOn"] = $val;
return $this;
} | Sets the dependentOn
List of Dependencies for the setting group
@param DeviceManagementConfigurationDependentOn[] $val The dependentOn
@return DeviceManagementConfigurationSettingGroupDefinition | setDependentOn | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSettingGroupDefinition.php | MIT |
function serialize(DAV\Server $server, \DOMElement $errorNode) {
$error = $errorNode->ownerDocument->createElementNS('DAV:', 'd:lock-token-matches-request-uri');
$errorNode->appendChild($error);
} | This method allows the exception to include additional information into the WebDAV error response
@param DAV\Server $server
@param \DOMElement $errorNode
@return void | serialize | php | xiebruce/PicUploader | vendor/sabre/dav/lib/DAV/Exception/LockTokenMatchesRequestUri.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/dav/lib/DAV/Exception/LockTokenMatchesRequestUri.php | MIT |
public function getDataToSync()
{
if (array_key_exists("dataToSync", $this->_propDict)) {
return $this->_propDict["dataToSync"];
} else {
return null;
}
} | Gets the dataToSync
Data to sync
@return bool|null The dataToSync | getDataToSync | 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 setDataToSync($val)
{
$this->_propDict["dataToSync"] = $val;
return $this;
} | Sets the dataToSync
Data to sync
@param bool $val The value of the dataToSync
@return SharedAppleDeviceUser | setDataToSync | 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 getUserPrincipalName()
{
if (array_key_exists("userPrincipalName", $this->_propDict)) {
return $this->_propDict["userPrincipalName"];
} else {
return null;
}
} | Gets the userPrincipalName
User name
@return string|null The userPrincipalName | getUserPrincipalName | 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 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.