PATH:
home
/
centosnipponia
/
public_html
/
ts
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * SignIn File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\Model; /** * SignIn class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class SignIn extends Entity { /** * Gets the appDisplayName * The application name displayed in the Azure Portal. Supports $filter (eq and startsWith operators only). * * @return string|null The appDisplayName */ public function getAppDisplayName() { if (array_key_exists("appDisplayName", $this->_propDict)) { return $this->_propDict["appDisplayName"]; } else { return null; } } /** * Sets the appDisplayName * The application name displayed in the Azure Portal. Supports $filter (eq and startsWith operators only). * * @param string $val The appDisplayName * * @return SignIn */ public function setAppDisplayName($val) { $this->_propDict["appDisplayName"] = $val; return $this; } /** * Gets the appId * The application identifier in Azure Active Directory. Supports $filter (eq operator only). * * @return string|null The appId */ public function getAppId() { if (array_key_exists("appId", $this->_propDict)) { return $this->_propDict["appId"]; } else { return null; } } /** * Sets the appId * The application identifier in Azure Active Directory. Supports $filter (eq operator only). * * @param string $val The appId * * @return SignIn */ public function setAppId($val) { $this->_propDict["appId"] = $val; return $this; } /** * Gets the appliedConditionalAccessPolicies * A list of conditional access policies that are triggered by the corresponding sign-in activity. * * @return array|null The appliedConditionalAccessPolicies */ public function getAppliedConditionalAccessPolicies() { if (array_key_exists("appliedConditionalAccessPolicies", $this->_propDict)) { return $this->_propDict["appliedConditionalAccessPolicies"]; } else { return null; } } /** * Sets the appliedConditionalAccessPolicies * A list of conditional access policies that are triggered by the corresponding sign-in activity. * * @param AppliedConditionalAccessPolicy[] $val The appliedConditionalAccessPolicies * * @return SignIn */ public function setAppliedConditionalAccessPolicies($val) { $this->_propDict["appliedConditionalAccessPolicies"] = $val; return $this; } /** * Gets the clientAppUsed * The legacy client used for sign-in activity. For example: Browser, Exchange ActiveSync, Modern clients, IMAP, MAPI, SMTP, or POP. Supports $filter (eq operator only). * * @return string|null The clientAppUsed */ public function getClientAppUsed() { if (array_key_exists("clientAppUsed", $this->_propDict)) { return $this->_propDict["clientAppUsed"]; } else { return null; } } /** * Sets the clientAppUsed * The legacy client used for sign-in activity. For example: Browser, Exchange ActiveSync, Modern clients, IMAP, MAPI, SMTP, or POP. Supports $filter (eq operator only). * * @param string $val The clientAppUsed * * @return SignIn */ public function setClientAppUsed($val) { $this->_propDict["clientAppUsed"] = $val; return $this; } /** * Gets the conditionalAccessStatus * The status of the conditional access policy triggered. Possible values: success, failure, notApplied, or unknownFutureValue. Supports $filter (eq operator only). * * @return ConditionalAccessStatus|null The conditionalAccessStatus */ public function getConditionalAccessStatus() { if (array_key_exists("conditionalAccessStatus", $this->_propDict)) { if (is_a($this->_propDict["conditionalAccessStatus"], "\Microsoft\Graph\Model\ConditionalAccessStatus") || is_null($this->_propDict["conditionalAccessStatus"])) { return $this->_propDict["conditionalAccessStatus"]; } else { $this->_propDict["conditionalAccessStatus"] = new ConditionalAccessStatus($this->_propDict["conditionalAccessStatus"]); return $this->_propDict["conditionalAccessStatus"]; } } return null; } /** * Sets the conditionalAccessStatus * The status of the conditional access policy triggered. Possible values: success, failure, notApplied, or unknownFutureValue. Supports $filter (eq operator only). * * @param ConditionalAccessStatus $val The conditionalAccessStatus * * @return SignIn */ public function setConditionalAccessStatus($val) { $this->_propDict["conditionalAccessStatus"] = $val; return $this; } /** * Gets the correlationId * The identifier that's sent from the client when sign-in is initiated. This is used for troubleshooting the corresponding sign-in activity when calling for support. Supports $filter (eq operator only). * * @return string|null The correlationId */ public function getCorrelationId() { if (array_key_exists("correlationId", $this->_propDict)) { return $this->_propDict["correlationId"]; } else { return null; } } /** * Sets the correlationId * The identifier that's sent from the client when sign-in is initiated. This is used for troubleshooting the corresponding sign-in activity when calling for support. Supports $filter (eq operator only). * * @param string $val The correlationId * * @return SignIn */ public function setCorrelationId($val) { $this->_propDict["correlationId"] = $val; return $this; } /** * Gets the createdDateTime * The date and time the sign-in was initiated. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $orderby and $filter (eq, le, and ge operators only). * * @return \DateTime|null The createdDateTime */ public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; } /** * Sets the createdDateTime * The date and time the sign-in was initiated. The Timestamp type is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $orderby and $filter (eq, le, and ge operators only). * * @param \DateTime $val The createdDateTime * * @return SignIn */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } /** * Gets the deviceDetail * The device information from where the sign-in occurred. Includes information such as deviceId, OS, and browser. Supports $filter (eq and startsWith operators only) on browser and operatingSystem properties. * * @return DeviceDetail|null The deviceDetail */ public function getDeviceDetail() { if (array_key_exists("deviceDetail", $this->_propDict)) { if (is_a($this->_propDict["deviceDetail"], "\Microsoft\Graph\Model\DeviceDetail") || is_null($this->_propDict["deviceDetail"])) { return $this->_propDict["deviceDetail"]; } else { $this->_propDict["deviceDetail"] = new DeviceDetail($this->_propDict["deviceDetail"]); return $this->_propDict["deviceDetail"]; } } return null; } /** * Sets the deviceDetail * The device information from where the sign-in occurred. Includes information such as deviceId, OS, and browser. Supports $filter (eq and startsWith operators only) on browser and operatingSystem properties. * * @param DeviceDetail $val The deviceDetail * * @return SignIn */ public function setDeviceDetail($val) { $this->_propDict["deviceDetail"] = $val; return $this; } /** * Gets the ipAddress * The IP address of the client from where the sign-in occurred. Supports $filter (eq and startsWith operators only). * * @return string|null The ipAddress */ public function getIpAddress() { if (array_key_exists("ipAddress", $this->_propDict)) { return $this->_propDict["ipAddress"]; } else { return null; } } /** * Sets the ipAddress * The IP address of the client from where the sign-in occurred. Supports $filter (eq and startsWith operators only). * * @param string $val The ipAddress * * @return SignIn */ public function setIpAddress($val) { $this->_propDict["ipAddress"] = $val; return $this; } /** * Gets the isInteractive * Indicates whether a user sign in is interactive. In interactive sign in, the user provides an authentication factor to Azure AD. These factors include passwords, responses to MFA challenges, biometric factors, or QR codes that a user provides to Azure AD or an associated app. In non-interactive sign in, the user doesn't provide an authentication factor. Instead, the client app uses a token or code to authenticate or access a resource on behalf of a user. Non-interactive sign ins are commonly used for a client to sign in on a user's behalf in a process transparent to the user. * * @return bool|null The isInteractive */ public function getIsInteractive() { if (array_key_exists("isInteractive", $this->_propDict)) { return $this->_propDict["isInteractive"]; } else { return null; } } /** * Sets the isInteractive * Indicates whether a user sign in is interactive. In interactive sign in, the user provides an authentication factor to Azure AD. These factors include passwords, responses to MFA challenges, biometric factors, or QR codes that a user provides to Azure AD or an associated app. In non-interactive sign in, the user doesn't provide an authentication factor. Instead, the client app uses a token or code to authenticate or access a resource on behalf of a user. Non-interactive sign ins are commonly used for a client to sign in on a user's behalf in a process transparent to the user. * * @param bool $val The isInteractive * * @return SignIn */ public function setIsInteractive($val) { $this->_propDict["isInteractive"] = boolval($val); return $this; } /** * Gets the location * The city, state, and 2 letter country code from where the sign-in occurred. Supports $filter (eq and startsWith operators only) on city, state, and countryOrRegion properties. * * @return SignInLocation|null The location */ public function getLocation() { if (array_key_exists("location", $this->_propDict)) { if (is_a($this->_propDict["location"], "\Microsoft\Graph\Model\SignInLocation") || is_null($this->_propDict["location"])) { return $this->_propDict["location"]; } else { $this->_propDict["location"] = new SignInLocation($this->_propDict["location"]); return $this->_propDict["location"]; } } return null; } /** * Sets the location * The city, state, and 2 letter country code from where the sign-in occurred. Supports $filter (eq and startsWith operators only) on city, state, and countryOrRegion properties. * * @param SignInLocation $val The location * * @return SignIn */ public function setLocation($val) { $this->_propDict["location"] = $val; return $this; } /** * Gets the resourceDisplayName * The name of the resource that the user signed in to. Supports $filter (eq operator only). * * @return string|null The resourceDisplayName */ public function getResourceDisplayName() { if (array_key_exists("resourceDisplayName", $this->_propDict)) { return $this->_propDict["resourceDisplayName"]; } else { return null; } } /** * Sets the resourceDisplayName * The name of the resource that the user signed in to. Supports $filter (eq operator only). * * @param string $val The resourceDisplayName * * @return SignIn */ public function setResourceDisplayName($val) { $this->_propDict["resourceDisplayName"] = $val; return $this; } /** * Gets the resourceId * The identifier of the resource that the user signed in to. Supports $filter (eq operator only). * * @return string|null The resourceId */ public function getResourceId() { if (array_key_exists("resourceId", $this->_propDict)) { return $this->_propDict["resourceId"]; } else { return null; } } /** * Sets the resourceId * The identifier of the resource that the user signed in to. Supports $filter (eq operator only). * * @param string $val The resourceId * * @return SignIn */ public function setResourceId($val) { $this->_propDict["resourceId"] = $val; return $this; } /** * Gets the riskDetail * The reason behind a specific state of a risky user, sign-in, or a risk event. Possible values: none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, or unknownFutureValue. The value none means that no action has been performed on the user or sign-in so far. Supports $filter (eq operator only). Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. * * @return RiskDetail|null The riskDetail */ public function getRiskDetail() { if (array_key_exists("riskDetail", $this->_propDict)) { if (is_a($this->_propDict["riskDetail"], "\Microsoft\Graph\Model\RiskDetail") || is_null($this->_propDict["riskDetail"])) { return $this->_propDict["riskDetail"]; } else { $this->_propDict["riskDetail"] = new RiskDetail($this->_propDict["riskDetail"]); return $this->_propDict["riskDetail"]; } } return null; } /** * Sets the riskDetail * The reason behind a specific state of a risky user, sign-in, or a risk event. Possible values: none, adminGeneratedTemporaryPassword, userPerformedSecuredPasswordChange, userPerformedSecuredPasswordReset, adminConfirmedSigninSafe, aiConfirmedSigninSafe, userPassedMFADrivenByRiskBasedPolicy, adminDismissedAllRiskForUser, adminConfirmedSigninCompromised, or unknownFutureValue. The value none means that no action has been performed on the user or sign-in so far. Supports $filter (eq operator only). Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. * * @param RiskDetail $val The riskDetail * * @return SignIn */ public function setRiskDetail($val) { $this->_propDict["riskDetail"] = $val; return $this; } /** * Gets the riskEventTypes * Risk event types associated with the sign-in. The possible values are: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, and unknownFutureValue. Supports $filter (eq operator only). * * @return array|null The riskEventTypes */ public function getRiskEventTypes() { if (array_key_exists("riskEventTypes", $this->_propDict)) { return $this->_propDict["riskEventTypes"]; } else { return null; } } /** * Sets the riskEventTypes * Risk event types associated with the sign-in. The possible values are: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, and unknownFutureValue. Supports $filter (eq operator only). * * @param RiskEventType[] $val The riskEventTypes * * @return SignIn */ public function setRiskEventTypes($val) { $this->_propDict["riskEventTypes"] = $val; return $this; } /** * Gets the riskEventTypesV2 * The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. Supports $filter (eq and startsWith operators only). * * @return string|null The riskEventTypesV2 */ public function getRiskEventTypesV2() { if (array_key_exists("riskEventTypesV2", $this->_propDict)) { return $this->_propDict["riskEventTypesV2"]; } else { return null; } } /** * Sets the riskEventTypesV2 * The list of risk event types associated with the sign-in. Possible values: unlikelyTravel, anonymizedIPAddress, maliciousIPAddress, unfamiliarFeatures, malwareInfectedIPAddress, suspiciousIPAddress, leakedCredentials, investigationsThreatIntelligence, generic, or unknownFutureValue. Supports $filter (eq and startsWith operators only). * * @param string $val The riskEventTypesV2 * * @return SignIn */ public function setRiskEventTypesV2($val) { $this->_propDict["riskEventTypes_v2"] = $val; return $this; } /** * Gets the riskLevelAggregated * The aggregated risk level. Possible values: none, low, medium, high, hidden, or unknownFutureValue. The value hidden means the user or sign-in was not enabled for Azure AD Identity Protection. Supports $filter (eq operator only). Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. * * @return RiskLevel|null The riskLevelAggregated */ public function getRiskLevelAggregated() { if (array_key_exists("riskLevelAggregated", $this->_propDict)) { if (is_a($this->_propDict["riskLevelAggregated"], "\Microsoft\Graph\Model\RiskLevel") || is_null($this->_propDict["riskLevelAggregated"])) { return $this->_propDict["riskLevelAggregated"]; } else { $this->_propDict["riskLevelAggregated"] = new RiskLevel($this->_propDict["riskLevelAggregated"]); return $this->_propDict["riskLevelAggregated"]; } } return null; } /** * Sets the riskLevelAggregated * The aggregated risk level. Possible values: none, low, medium, high, hidden, or unknownFutureValue. The value hidden means the user or sign-in was not enabled for Azure AD Identity Protection. Supports $filter (eq operator only). Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. * * @param RiskLevel $val The riskLevelAggregated * * @return SignIn */ public function setRiskLevelAggregated($val) { $this->_propDict["riskLevelAggregated"] = $val; return $this; } /** * Gets the riskLevelDuringSignIn * The risk level during sign-in. Possible values: none, low, medium, high, hidden, or unknownFutureValue. The value hidden means the user or sign-in was not enabled for Azure AD Identity Protection. Supports $filter (eq operator only). Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. * * @return RiskLevel|null The riskLevelDuringSignIn */ public function getRiskLevelDuringSignIn() { if (array_key_exists("riskLevelDuringSignIn", $this->_propDict)) { if (is_a($this->_propDict["riskLevelDuringSignIn"], "\Microsoft\Graph\Model\RiskLevel") || is_null($this->_propDict["riskLevelDuringSignIn"])) { return $this->_propDict["riskLevelDuringSignIn"]; } else { $this->_propDict["riskLevelDuringSignIn"] = new RiskLevel($this->_propDict["riskLevelDuringSignIn"]); return $this->_propDict["riskLevelDuringSignIn"]; } } return null; } /** * Sets the riskLevelDuringSignIn * The risk level during sign-in. Possible values: none, low, medium, high, hidden, or unknownFutureValue. The value hidden means the user or sign-in was not enabled for Azure AD Identity Protection. Supports $filter (eq operator only). Note: Details for this property are only available for Azure AD Premium P2 customers. All other customers are returned hidden. * * @param RiskLevel $val The riskLevelDuringSignIn * * @return SignIn */ public function setRiskLevelDuringSignIn($val) { $this->_propDict["riskLevelDuringSignIn"] = $val; return $this; } /** * Gets the riskState * The risk state of a risky user, sign-in, or a risk event. Possible values: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, or unknownFutureValue. Supports $filter (eq operator only). * * @return RiskState|null The riskState */ public function getRiskState() { if (array_key_exists("riskState", $this->_propDict)) { if (is_a($this->_propDict["riskState"], "\Microsoft\Graph\Model\RiskState") || is_null($this->_propDict["riskState"])) { return $this->_propDict["riskState"]; } else { $this->_propDict["riskState"] = new RiskState($this->_propDict["riskState"]); return $this->_propDict["riskState"]; } } return null; } /** * Sets the riskState * The risk state of a risky user, sign-in, or a risk event. Possible values: none, confirmedSafe, remediated, dismissed, atRisk, confirmedCompromised, or unknownFutureValue. Supports $filter (eq operator only). * * @param RiskState $val The riskState * * @return SignIn */ public function setRiskState($val) { $this->_propDict["riskState"] = $val; return $this; } /** * Gets the status * The sign-in status. Includes the error code and description of the error (in case of a sign-in failure). Supports $filter (eq operator only) on errorCode property. * * @return SignInStatus|null The status */ public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\SignInStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new SignInStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; } /** * Sets the status * The sign-in status. Includes the error code and description of the error (in case of a sign-in failure). Supports $filter (eq operator only) on errorCode property. * * @param SignInStatus $val The status * * @return SignIn */ public function setStatus($val) { $this->_propDict["status"] = $val; return $this; } /** * Gets the userDisplayName * The display name of the user. Supports $filter (eq and startsWith operators only). * * @return string|null The userDisplayName */ public function getUserDisplayName() { if (array_key_exists("userDisplayName", $this->_propDict)) { return $this->_propDict["userDisplayName"]; } else { return null; } } /** * Sets the userDisplayName * The display name of the user. Supports $filter (eq and startsWith operators only). * * @param string $val The userDisplayName * * @return SignIn */ public function setUserDisplayName($val) { $this->_propDict["userDisplayName"] = $val; return $this; } /** * Gets the userId * The identifier of the user. Supports $filter (eq operator only). * * @return string|null The userId */ public function getUserId() { if (array_key_exists("userId", $this->_propDict)) { return $this->_propDict["userId"]; } else { return null; } } /** * Sets the userId * The identifier of the user. Supports $filter (eq operator only). * * @param string $val The userId * * @return SignIn */ public function setUserId($val) { $this->_propDict["userId"] = $val; return $this; } /** * Gets the userPrincipalName * The UPN of the user. Supports $filter (eq and startsWith operators only). * * @return string|null The userPrincipalName */ public function getUserPrincipalName() { if (array_key_exists("userPrincipalName", $this->_propDict)) { return $this->_propDict["userPrincipalName"]; } else { return null; } } /** * Sets the userPrincipalName * The UPN of the user. Supports $filter (eq and startsWith operators only). * * @param string $val The userPrincipalName * * @return SignIn */ public function setUserPrincipalName($val) { $this->_propDict["userPrincipalName"] = $val; return $this; } }
[+]
..
[-] AadUserConversationMember.php
[edit]
[-] AadUserConversationMemberResult.php
[edit]
[-] AadUserNotificationRecipient.php
[edit]
[-] AcceptJoinResponse.php
[edit]
[-] AccessAction.php
[edit]
[-] AccessPackage.php
[edit]
[-] AccessPackageApprovalStage.php
[edit]
[-] AccessPackageAssignment.php
[edit]
[-] AccessPackageAssignmentApprovalSettings.php
[edit]
[-] AccessPackageAssignmentFilterByCurrentUserOptions.php
[edit]
[-] AccessPackageAssignmentPolicy.php
[edit]
[-] AccessPackageAssignmentRequest.php
[edit]
[-] AccessPackageAssignmentRequestFilterByCurrentUserOptions.php
[edit]
[-] AccessPackageAssignmentRequestRequirements.php
[edit]
[-] AccessPackageAssignmentRequestorSettings.php
[edit]
[-] AccessPackageAssignmentReviewSettings.php
[edit]
[-] AccessPackageAssignmentState.php
[edit]
[-] AccessPackageAutomaticRequestSettings.php
[edit]
[-] AccessPackageCatalog.php
[edit]
[-] AccessPackageCatalogState.php
[edit]
[-] AccessPackageCatalogType.php
[edit]
[-] AccessPackageExternalUserLifecycleAction.php
[edit]
[-] AccessPackageFilterByCurrentUserOptions.php
[edit]
[-] AccessPackageRequestState.php
[edit]
[-] AccessPackageRequestType.php
[edit]
[-] AccessPackageSubject.php
[edit]
[-] AccessPackageSubjectType.php
[edit]
[-] AccessReviewApplyAction.php
[edit]
[-] AccessReviewExpirationBehavior.php
[edit]
[-] AccessReviewHistoryDecisionFilter.php
[edit]
[-] AccessReviewHistoryDefinition.php
[edit]
[-] AccessReviewHistoryInstance.php
[edit]
[-] AccessReviewHistoryScheduleSettings.php
[edit]
[-] AccessReviewHistoryStatus.php
[edit]
[-] AccessReviewInactiveUsersQueryScope.php
[edit]
[-] AccessReviewInstance.php
[edit]
[-] AccessReviewInstanceDecisionItem.php
[edit]
[-] AccessReviewInstanceDecisionItemAccessPackageAssignmentPolicyResource.php
[edit]
[-] AccessReviewInstanceDecisionItemAzureRoleResource.php
[edit]
[-] AccessReviewInstanceDecisionItemFilterByCurrentUserOptions.php
[edit]
[-] AccessReviewInstanceDecisionItemResource.php
[edit]
[-] AccessReviewInstanceDecisionItemServicePrincipalResource.php
[edit]
[-] AccessReviewInstanceFilterByCurrentUserOptions.php
[edit]
[-] AccessReviewNotificationRecipientItem.php
[edit]
[-] AccessReviewNotificationRecipientQueryScope.php
[edit]
[-] AccessReviewNotificationRecipientScope.php
[edit]
[-] AccessReviewQueryScope.php
[edit]
[-] AccessReviewReviewer.php
[edit]
[-] AccessReviewReviewerScope.php
[edit]
[-] AccessReviewScheduleDefinition.php
[edit]
[-] AccessReviewScheduleDefinitionFilterByCurrentUserOptions.php
[edit]
[-] AccessReviewScheduleSettings.php
[edit]
[-] AccessReviewScope.php
[edit]
[-] AccessReviewSet.php
[edit]
[-] AccessReviewStage.php
[edit]
[-] AccessReviewStageFilterByCurrentUserOptions.php
[edit]
[-] AccessReviewStageSettings.php
[edit]
[-] ActionResultPart.php
[edit]
[-] ActionState.php
[edit]
[-] ActivityBasedTimeoutPolicy.php
[edit]
[-] ActivityDomain.php
[edit]
[-] ActivityHistoryItem.php
[edit]
[-] ActivityType.php
[edit]
[-] AddIn.php
[edit]
[-] Admin.php
[edit]
[-] AdminConsentRequestPolicy.php
[edit]
[-] AdministrativeUnit.php
[edit]
[-] AdvancedConfigState.php
[edit]
[-] AggregationOption.php
[edit]
[-] Agreement.php
[edit]
[-] AgreementAcceptance.php
[edit]
[-] AgreementAcceptanceState.php
[edit]
[-] AgreementFile.php
[edit]
[-] AgreementFileData.php
[edit]
[-] AgreementFileLocalization.php
[edit]
[-] AgreementFileProperties.php
[edit]
[-] AgreementFileVersion.php
[edit]
[-] Album.php
[edit]
[-] Alert.php
[edit]
[-] AlertDetection.php
[edit]
[-] AlertFeedback.php
[edit]
[-] AlertHistoryState.php
[edit]
[-] AlertSeverity.php
[edit]
[-] AlertStatus.php
[edit]
[-] AlertTrigger.php
[edit]
[-] AllDevicesAssignmentTarget.php
[edit]
[-] AppRole.php
[edit]
[-] AllLicensedUsersAssignmentTarget.php
[edit]
[-] AllowInvitesFrom.php
[edit]
[-] AllowedTargetScope.php
[edit]
[-] AlterationResponse.php
[edit]
[-] AlteredQueryToken.php
[edit]
[-] AlternativeSecurityId.php
[edit]
[-] AndroidCompliancePolicy.php
[edit]
[-] AndroidCustomConfiguration.php
[edit]
[-] AndroidGeneralDeviceConfiguration.php
[edit]
[-] AndroidLobApp.php
[edit]
[-] AndroidManagedAppProtection.php
[edit]
[-] AndroidManagedAppRegistration.php
[edit]
[-] AndroidMinimumOperatingSystem.php
[edit]
[-] AndroidMobileAppIdentifier.php
[edit]
[-] AndroidRequiredPasswordType.php
[edit]
[-] AndroidStoreApp.php
[edit]
[-] AndroidWorkProfileCompliancePolicy.php
[edit]
[-] AndroidWorkProfileCrossProfileDataSharingType.php
[edit]
[-] AndroidWorkProfileCustomConfiguration.php
[edit]
[-] AndroidWorkProfileDefaultAppPermissionPolicyType.php
[edit]
[-] AndroidWorkProfileGeneralDeviceConfiguration.php
[edit]
[-] AndroidWorkProfileRequiredPasswordType.php
[edit]
[-] AnswerInputType.php
[edit]
[-] ApiApplication.php
[edit]
[-] ApiAuthenticationConfigurationBase.php
[edit]
[-] AppCatalogs.php
[edit]
[-] AppConfigurationSettingItem.php
[edit]
[-] AppConsentApprovalRoute.php
[edit]
[-] AppConsentRequest.php
[edit]
[-] AppConsentRequestScope.php
[edit]
[-] AppHostedMediaConfig.php
[edit]
[-] AppIdentity.php
[edit]
[-] AppListItem.php
[edit]
[-] AppListType.php
[edit]
[-] AppLockerApplicationControlType.php
[edit]
[-] AppRoleAssignment.php
[edit]
[-] AppScope.php
[edit]
[-] AppleDeviceFeaturesConfigurationBase.php
[edit]
[-] AppleManagedIdentityProvider.php
[edit]
[-] ApplePushNotificationCertificate.php
[edit]
[-] Application.php
[edit]
[-] ApplicationEnforcedRestrictionsSessionControl.php
[edit]
[-] ApplicationGuardBlockClipboardSharingType.php
[edit]
[-] ApplicationGuardBlockFileTransferType.php
[edit]
[-] ApplicationServicePrincipal.php
[edit]
[-] ApplicationTemplate.php
[edit]
[-] ApplicationType.php
[edit]
[-] AppliedConditionalAccessPolicy.php
[edit]
[-] AppliedConditionalAccessPolicyResult.php
[edit]
[-] Approval.php
[edit]
[-] ApprovalFilterByCurrentUserOptions.php
[edit]
[-] ApprovalSettings.php
[edit]
[-] ApprovalStage.php
[edit]
[-] ArchivedPrintJob.php
[edit]
[-] AssignedLabel.php
[edit]
[-] AssignedLicense.php
[edit]
[-] AssignedPlan.php
[edit]
[-] AssignmentOrder.php
[edit]
[-] AssociatedTeamInfo.php
[edit]
[-] Attachment.php
[edit]
[-] AttachmentItem.php
[edit]
[-] AttachmentType.php
[edit]
[-] AttendanceInterval.php
[edit]
[-] AttendanceRecord.php
[edit]
[-] Attendee.php
[edit]
[-] AttendeeAvailability.php
[edit]
[-] AttendeeBase.php
[edit]
[-] AttendeeType.php
[edit]
[-] AttestationLevel.php
[edit]
[-] AttributeRuleMembers.php
[edit]
[-] Audio.php
[edit]
[-] AudioConferencing.php
[edit]
[-] AudioRoutingGroup.php
[edit]
[-] AuditActivityInitiator.php
[edit]
[-] AuditLogRoot.php
[edit]
[-] Authentication.php
[edit]
[-] AuthenticationFlowsPolicy.php
[edit]
[-] AuthenticationMethod.php
[edit]
[-] AuthenticationMethodConfiguration.php
[edit]
[-] AuthenticationMethodKeyStrength.php
[edit]
[-] AuthenticationMethodSignInState.php
[edit]
[-] AuthenticationMethodState.php
[edit]
[-] AuthenticationMethodTarget.php
[edit]
[-] AuthenticationMethodTargetType.php
[edit]
[-] AuthenticationMethodsPolicy.php
[edit]
[-] AuthenticationMethodsRegistrationCampaign.php
[edit]
[-] AuthenticationMethodsRegistrationCampaignIncludeTarget.php
[edit]
[-] AuthenticationPhoneType.php
[edit]
[-] AuthenticationProtocol.php
[edit]
[-] AuthoredNote.php
[edit]
[-] AuthorizationPolicy.php
[edit]
[-] AutomaticRepliesMailTips.php
[edit]
[-] AutomaticRepliesSetting.php
[edit]
[-] AutomaticRepliesStatus.php
[edit]
[-] AutomaticUpdateMode.php
[edit]
[-] BaseItem.php
[edit]
[-] AvailabilityItem.php
[edit]
[-] AverageComparativeScore.php
[edit]
[-] AzureActiveDirectoryTenant.php
[edit]
[-] B2xIdentityUserFlow.php
[edit]
[-] BaseItemVersion.php
[edit]
[-] BasicAuthentication.php
[edit]
[-] BitLockerEncryptionMethod.php
[edit]
[-] BitLockerRemovableDrivePolicy.php
[edit]
[-] Bitlocker.php
[edit]
[-] BitlockerRecoveryKey.php
[edit]
[-] BodyType.php
[edit]
[-] BookingAppointment.php
[edit]
[-] BookingBusiness.php
[edit]
[-] BookingCurrency.php
[edit]
[-] BookingCustomQuestion.php
[edit]
[-] BookingCustomer.php
[edit]
[-] BookingCustomerBase.php
[edit]
[-] BookingCustomerInformation.php
[edit]
[-] BookingCustomerInformationBase.php
[edit]
[-] BookingPriceType.php
[edit]
[-] BookingQuestionAnswer.php
[edit]
[-] BookingQuestionAssignment.php
[edit]
[-] BookingReminder.php
[edit]
[-] BookingReminderRecipients.php
[edit]
[-] BookingSchedulingPolicy.php
[edit]
[-] BookingService.php
[edit]
[-] BookingStaffMember.php
[edit]
[-] BookingStaffMemberBase.php
[edit]
[-] BookingStaffRole.php
[edit]
[-] BookingType.php
[edit]
[-] BookingWorkHours.php
[edit]
[-] BookingWorkTimeSlot.php
[edit]
[-] BookingsAvailabilityStatus.php
[edit]
[-] BooleanColumn.php
[edit]
[-] BroadcastMeetingAudience.php
[edit]
[-] BroadcastMeetingSettings.php
[edit]
[-] BucketAggregationDefinition.php
[edit]
[-] BucketAggregationRange.php
[edit]
[-] BucketAggregationSortProperty.php
[edit]
[-] BuiltInIdentityProvider.php
[edit]
[-] Bundle.php
[edit]
[-] CalculatedColumn.php
[edit]
[-] Calendar.php
[edit]
[-] CalendarColor.php
[edit]
[-] CalendarGroup.php
[edit]
[-] CalendarPermission.php
[edit]
[-] CalendarRoleType.php
[edit]
[-] CalendarSharingAction.php
[edit]
[-] CalendarSharingActionImportance.php
[edit]
[-] CalendarSharingActionType.php
[edit]
[-] CalendarSharingMessage.php
[edit]
[-] CalendarSharingMessageAction.php
[edit]
[-] Call.php
[edit]
[-] CallDirection.php
[edit]
[-] CallEndedEventMessageDetail.php
[edit]
[-] CallMediaState.php
[edit]
[-] CallOptions.php
[edit]
[-] CallParticipantInfo.php
[edit]
[-] CallRecordingEventMessageDetail.php
[edit]
[-] CallRecordingStatus.php
[edit]
[-] CallRoute.php
[edit]
[-] CallStartedEventMessageDetail.php
[edit]
[-] CallState.php
[edit]
[-] CallTranscriptEventMessageDetail.php
[edit]
[-] CallTranscriptionInfo.php
[edit]
[-] CallTranscriptionState.php
[edit]
[-] CancelMediaProcessingOperation.php
[edit]
[-] CategoryColor.php
[edit]
[-] CertificateAuthority.php
[edit]
[-] CertificateBasedAuthConfiguration.php
[edit]
[-] Certification.php
[edit]
[-] CertificationControl.php
[edit]
[-] ChangeNotification.php
[edit]
[-] ChangeNotificationCollection.php
[edit]
[-] ChangeNotificationEncryptedContent.php
[edit]
[-] ChangeTrackedEntity.php
[edit]
[-] ChangeType.php
[edit]
[-] Channel.php
[edit]
[-] ChannelAddedEventMessageDetail.php
[edit]
[-] ChannelDeletedEventMessageDetail.php
[edit]
[-] ChannelDescriptionUpdatedEventMessageDetail.php
[edit]
[-] ChannelIdentity.php
[edit]
[-] ChannelMembershipType.php
[edit]
[-] ChannelRenamedEventMessageDetail.php
[edit]
[-] ChannelSetAsFavoriteByDefaultEventMessageDetail.php
[edit]
[-] ChannelUnsetAsFavoriteByDefaultEventMessageDetail.php
[edit]
[-] Chat.php
[edit]
[-] ChatInfo.php
[edit]
[-] ChatMessage.php
[edit]
[-] ChatMessageAttachment.php
[edit]
[-] ChatMessageFromIdentitySet.php
[edit]
[-] ChatMessageHostedContent.php
[edit]
[-] ChatMessageImportance.php
[edit]
[-] ChatMessageMention.php
[edit]
[-] ChatMessageMentionedIdentitySet.php
[edit]
[-] ChatMessagePolicyViolation.php
[edit]
[-] ChatMessagePolicyViolationDlpActionTypes.php
[edit]
[-] ChatMessagePolicyViolationPolicyTip.php
[edit]
[-] ChatMessagePolicyViolationUserActionTypes.php
[edit]
[-] ChatMessageType.php
[edit]
[-] ChatMessagePolicyViolationVerdictDetailsTypes.php
[edit]
[-] ChatMessageReaction.php
[edit]
[-] ChatMessageReactionIdentitySet.php
[edit]
[-] ChatRenamedEventMessageDetail.php
[edit]
[-] ChatType.php
[edit]
[-] ChecklistItem.php
[edit]
[-] ChoiceColumn.php
[edit]
[-] ClaimsMappingPolicy.php
[edit]
[-] ClientCertificateAuthentication.php
[edit]
[-] ClonableTeamParts.php
[edit]
[-] CloudAppSecuritySessionControl.php
[edit]
[-] CloudAppSecuritySessionControlType.php
[edit]
[-] CloudAppSecurityState.php
[edit]
[-] CloudCommunications.php
[edit]
[-] ColumnDefinition.php
[edit]
[-] ColumnLink.php
[edit]
[-] ColumnTypes.php
[edit]
[-] ColumnValidation.php
[edit]
[-] CommsNotification.php
[edit]
[-] CommsNotifications.php
[edit]
[-] CommsOperation.php
[edit]
[-] ComplexExtensionValue.php
[edit]
[-] Compliance.php
[edit]
[-] ComplianceInformation.php
[edit]
[-] ComplianceManagementPartner.php
[edit]
[-] ComplianceManagementPartnerAssignment.php
[edit]
[-] ComplianceState.php
[edit]
[-] ComplianceStatus.php
[edit]
[-] ConditionalAccessApplications.php
[edit]
[-] ConditionalAccessClientApp.php
[edit]
[-] ConditionalAccessClientApplications.php
[edit]
[-] ConditionalAccessConditionSet.php
[edit]
[-] ConditionalAccessDevicePlatform.php
[edit]
[-] ConditionalAccessDevices.php
[edit]
[-] ConditionalAccessFilter.php
[edit]
[-] ConditionalAccessGrantControl.php
[edit]
[-] ConditionalAccessGrantControls.php
[edit]
[-] ConditionalAccessLocations.php
[edit]
[-] ConditionalAccessPlatforms.php
[edit]
[-] ConditionalAccessPolicy.php
[edit]
[-] ConditionalAccessPolicyState.php
[edit]
[-] ConditionalAccessRoot.php
[edit]
[-] ConditionalAccessSessionControl.php
[edit]
[-] ConditionalAccessSessionControls.php
[edit]
[-] ConditionalAccessStatus.php
[edit]
[-] ConditionalAccessUsers.php
[edit]
[-] ConfigurationManagerClientEnabledFeatures.php
[edit]
[-] ConfigurationManagerCollectionAssignmentTarget.php
[edit]
[-] ConnectedOrganization.php
[edit]
[-] ConnectedOrganizationMembers.php
[edit]
[-] ConnectedOrganizationState.php
[edit]
[-] ConnectionDirection.php
[edit]
[-] ConnectionInfo.php
[edit]
[-] ConnectionStatus.php
[edit]
[-] ConsentRequestFilterByCurrentUserOptions.php
[edit]
[-] Contact.php
[edit]
[-] ContactFolder.php
[edit]
[-] ContactRelationship.php
[edit]
[-] ContentApprovalStatusColumn.php
[edit]
[-] ContentType.php
[edit]
[-] ContentTypeInfo.php
[edit]
[-] ContentTypeOrder.php
[edit]
[-] Contract.php
[edit]
[-] ControlScore.php
[edit]
[-] Conversation.php
[edit]
[-] ConversationMember.php
[edit]
[-] ConversationMemberRoleUpdatedEventMessageDetail.php
[edit]
[-] ConversationThread.php
[edit]
[-] ConvertIdResult.php
[edit]
[-] CopyNotebookModel.php
[edit]
[-] CountryLookupMethodType.php
[edit]
[-] CountryNamedLocation.php
[edit]
[-] CrossTenantAccessPolicy.php
[edit]
[-] CrossTenantAccessPolicyB2BSetting.php
[edit]
[-] CrossTenantAccessPolicyConfigurationDefault.php
[edit]
[-] CrossTenantAccessPolicyConfigurationPartner.php
[edit]
[-] CrossTenantAccessPolicyInboundTrust.php
[edit]
[-] CrossTenantAccessPolicyTarget.php
[edit]
[-] CrossTenantAccessPolicyTargetConfiguration.php
[edit]
[-] CrossTenantAccessPolicyTargetConfigurationAccessType.php
[edit]
[-] CrossTenantAccessPolicyTargetType.php
[edit]
[-] CurrencyColumn.php
[edit]
[-] CustomTimeZone.php
[edit]
[-] DataPolicyOperation.php
[edit]
[-] DataPolicyOperationStatus.php
[edit]
[-] DataSubject.php
[edit]
[-] DataSubjectType.php
[edit]
[-] DateTimeColumn.php
[edit]
[-] DateTimeTimeZone.php
[edit]
[-] DayOfWeek.php
[edit]
[-] DaylightTimeZoneOffset.php
[edit]
[-] DefaultColumnValue.php
[edit]
[-] DefaultManagedAppProtection.php
[edit]
[-] DefaultUserRolePermissions.php
[edit]
[-] DefenderScanType.php
[edit]
[-] DefenderCloudBlockLevelType.php
[edit]
[-] DefenderDetectedMalwareActions.php
[edit]
[-] DefenderMonitorFileActivity.php
[edit]
[-] DefenderPromptForSampleSubmission.php
[edit]
[-] DefenderThreatAction.php
[edit]
[-] DelegateMeetingMessageDeliveryOptions.php
[edit]
[-] DelegatedPermissionClassification.php
[edit]
[-] DeleteUserFromSharedAppleDeviceActionResult.php
[edit]
[-] Deleted.php
[edit]
[-] DetailsInfo.php
[edit]
[-] DetectedApp.php
[edit]
[-] Device.php
[edit]
[-] DeviceActionResult.php
[edit]
[-] DeviceAndAppManagementAssignmentTarget.php
[edit]
[-] DeviceAndAppManagementRoleAssignment.php
[edit]
[-] DeviceAndAppManagementRoleDefinition.php
[edit]
[-] DeviceAppManagement.php
[edit]
[-] DeviceCategory.php
[edit]
[-] DeviceComplianceActionItem.php
[edit]
[-] DeviceComplianceActionType.php
[edit]
[-] DeviceComplianceDeviceOverview.php
[edit]
[-] DeviceComplianceDeviceStatus.php
[edit]
[-] DeviceCompliancePolicy.php
[edit]
[-] DeviceCompliancePolicyAssignment.php
[edit]
[-] DeviceCompliancePolicyDeviceStateSummary.php
[edit]
[-] DeviceCompliancePolicySettingState.php
[edit]
[-] DeviceCompliancePolicySettingStateSummary.php
[edit]
[-] DeviceCompliancePolicyState.php
[edit]
[-] DeviceComplianceScheduledActionForRule.php
[edit]
[-] DeviceComplianceSettingState.php
[edit]
[-] DeviceComplianceUserOverview.php
[edit]
[-] DeviceComplianceUserStatus.php
[edit]
[-] DeviceConfiguration.php
[edit]
[-] DeviceConfigurationAssignment.php
[edit]
[-] DeviceConfigurationDeviceOverview.php
[edit]
[-] DeviceConfigurationDeviceStateSummary.php
[edit]
[-] DeviceConfigurationDeviceStatus.php
[edit]
[-] DeviceConfigurationSettingState.php
[edit]
[-] DeviceConfigurationState.php
[edit]
[-] DeviceConfigurationUserOverview.php
[edit]
[-] DeviceConfigurationUserStatus.php
[edit]
[-] DeviceDetail.php
[edit]
[-] DeviceEnrollmentConfiguration.php
[edit]
[-] DeviceEnrollmentFailureReason.php
[edit]
[-] DeviceEnrollmentLimitConfiguration.php
[edit]
[-] DeviceEnrollmentPlatformRestriction.php
[edit]
[-] DeviceEnrollmentPlatformRestrictionsConfiguration.php
[edit]
[-] DeviceEnrollmentType.php
[edit]
[-] DeviceEnrollmentWindowsHelloForBusinessConfiguration.php
[edit]
[-] DeviceExchangeAccessStateSummary.php
[edit]
[-] DeviceGeoLocation.php
[edit]
[-] DeviceHealthAttestationState.php
[edit]
[-] DeviceInstallState.php
[edit]
[-] DeviceManagement.php
[edit]
[-] DeviceManagementExchangeAccessState.php
[edit]
[-] DeviceManagementExchangeAccessStateReason.php
[edit]
[-] DeviceManagementExchangeConnector.php
[edit]
[-] DeviceManagementExchangeConnectorStatus.php
[edit]
[-] DeviceManagementExchangeConnectorSyncType.php
[edit]
[-] DeviceManagementExchangeConnectorType.php
[edit]
[-] DeviceManagementExportJob.php
[edit]
[-] DeviceManagementExportJobLocalizationType.php
[edit]
[-] DeviceManagementPartner.php
[edit]
[-] DeviceManagementPartnerAppType.php
[edit]
[-] DeviceManagementPartnerTenantState.php
[edit]
[-] DeviceManagementReportFileFormat.php
[edit]
[-] DeviceManagementReportStatus.php
[edit]
[-] DeviceManagementReports.php
[edit]
[-] DeviceManagementSettings.php
[edit]
[-] DeviceManagementSubscriptionState.php
[edit]
[-] DeviceManagementTroubleshootingEvent.php
[edit]
[-] DeviceOperatingSystemSummary.php
[edit]
[-] DeviceRegistrationState.php
[edit]
[-] DeviceThreatProtectionLevel.php
[edit]
[-] Diagnostic.php
[edit]
[-] DiagnosticDataSubmissionMode.php
[edit]
[-] Dictionary.php
[edit]
[-] Directory.php
[edit]
[-] DirectoryAudit.php
[edit]
[-] DirectoryObject.php
[edit]
[-] DirectoryObjectPartnerReference.php
[edit]
[-] DirectoryRole.php
[edit]
[-] DirectoryRoleTemplate.php
[edit]
[-] DisableAndDeleteUserApplyAction.php
[edit]
[-] DisplayNameLocalization.php
[edit]
[-] DocumentSet.php
[edit]
[-] DocumentSetContent.php
[edit]
[-] Domain.php
[edit]
[-] DomainDnsCnameRecord.php
[edit]
[-] DomainDnsMxRecord.php
[edit]
[-] DomainDnsRecord.php
[edit]
[-] DomainDnsSrvRecord.php
[edit]
[-] DomainDnsTxtRecord.php
[edit]
[-] DomainDnsUnavailableRecord.php
[edit]
[-] DomainIdentitySource.php
[edit]
[-] DomainState.php
[edit]
[-] Drive.php
[edit]
[-] DriveItem.php
[edit]
[-] DriveItemUploadableProperties.php
[edit]
[-] DriveItemVersion.php
[edit]
[-] DriveRecipient.php
[edit]
[-] EBookInstallSummary.php
[edit]
[-] EdgeCookiePolicy.php
[edit]
[-] EdgeSearchEngine.php
[edit]
[-] EdgeSearchEngineBase.php
[edit]
[-] EdgeSearchEngineCustom.php
[edit]
[-] EdgeSearchEngineType.php
[edit]
[-] EditionUpgradeConfiguration.php
[edit]
[-] EditionUpgradeLicenseType.php
[edit]
[-] EducationAddToCalendarOptions.php
[edit]
[-] EducationAddedStudentAction.php
[edit]
[-] EducationAssignment.php
[edit]
[-] EducationAssignmentClassRecipient.php
[edit]
[-] EducationAssignmentDefaults.php
[edit]
[-] EducationAssignmentGrade.php
[edit]
[-] EducationAssignmentGradeType.php
[edit]
[-] EducationAssignmentGroupRecipient.php
[edit]
[-] EducationAssignmentIndividualRecipient.php
[edit]
[-] EducationAssignmentPointsGrade.php
[edit]
[-] EducationAssignmentPointsGradeType.php
[edit]
[-] EducationAssignmentRecipient.php
[edit]
[-] EducationAssignmentResource.php
[edit]
[-] EducationAssignmentSettings.php
[edit]
[-] EducationAssignmentStatus.php
[edit]
[-] EducationCategory.php
[edit]
[-] EducationClass.php
[edit]
[-] EducationCourse.php
[edit]
[-] EducationExcelResource.php
[edit]
[-] EducationExternalResource.php
[edit]
[-] EducationExternalSource.php
[edit]
[-] EducationFeedback.php
[edit]
[-] EducationFeedbackOutcome.php
[edit]
[-] EducationFileResource.php
[edit]
[-] EducationGender.php
[edit]
[-] EducationItemBody.php
[edit]
[-] EducationLinkResource.php
[edit]
[-] EducationMediaResource.php
[edit]
[-] EducationOnPremisesInfo.php
[edit]
[-] EducationOrganization.php
[edit]
[-] EducationOutcome.php
[edit]
[-] EducationPointsOutcome.php
[edit]
[-] EducationPowerPointResource.php
[edit]
[-] EducationResource.php
[edit]
[-] EducationRoot.php
[edit]
[-] EducationRubric.php
[edit]
[-] EducationRubricOutcome.php
[edit]
[-] EducationSchool.php
[edit]
[-] EducationStudent.php
[edit]
[-] EducationSubmission.php
[edit]
[-] EducationSubmissionIndividualRecipient.php
[edit]
[-] EducationSubmissionRecipient.php
[edit]
[-] EducationSubmissionResource.php
[edit]
[-] EducationSubmissionStatus.php
[edit]
[-] EducationTeacher.php
[edit]
[-] EducationTeamsAppResource.php
[edit]
[-] EducationTerm.php
[edit]
[-] EducationUser.php
[edit]
[-] EducationUserRole.php
[edit]
[-] EducationWordResource.php
[edit]
[-] EmailAddress.php
[edit]
[-] EmailAuthenticationMethod.php
[edit]
[-] EmailAuthenticationMethodConfiguration.php
[edit]
[-] EmailFileAssessmentRequest.php
[edit]
[-] EmailRole.php
[edit]
[-] EmployeeOrgData.php
[edit]
[-] Enablement.php
[edit]
[-] Endpoint.php
[edit]
[-] EndpointType.php
[edit]
[-] EnrollmentConfigurationAssignment.php
[edit]
[-] EnrollmentState.php
[edit]
[-] EnrollmentTroubleshootingEvent.php
[edit]
[-] EntitlementManagement.php
[edit]
[-] EntitlementManagementSchedule.php
[edit]
[-] EntitlementManagementSettings.php
[edit]
[-] Entity.php
[edit]
[-] EntityType.php
[edit]
[-] Event.php
[edit]
[-] EventMessage.php
[edit]
[-] EventMessageDetail.php
[edit]
[-] EventMessageRequest.php
[edit]
[-] EventMessageResponse.php
[edit]
[-] EventType.php
[edit]
[-] ExchangeIdFormat.php
[edit]
[-] ExcludeTarget.php
[edit]
[-] ExclusionGroupAssignmentTarget.php
[edit]
[-] ExpirationPattern.php
[edit]
[-] ExpirationPatternType.php
[edit]
[-] Extension.php
[edit]
[-] ExtensionProperty.php
[edit]
[-] ExtensionSchemaProperty.php
[edit]
[-] ExternalAudienceScope.php
[edit]
[-] ExternalDomainFederation.php
[edit]
[-] ExternalDomainName.php
[edit]
[-] ExternalEmailOtpState.php
[edit]
[-] ExternalLink.php
[edit]
[-] ExternalSponsors.php
[edit]
[-] FeatureRolloutPolicy.php
[edit]
[-] FederatedIdentityCredential.php
[edit]
[-] FederatedIdpMfaBehavior.php
[edit]
[-] Fido2AuthenticationMethod.php
[edit]
[-] Fido2AuthenticationMethodConfiguration.php
[edit]
[-] Fido2KeyRestrictions.php
[edit]
[-] Fido2RestrictionEnforcementType.php
[edit]
[-] FieldValueSet.php
[edit]
[-] File.php
[edit]
[-] FileAssessmentRequest.php
[edit]
[-] FileAttachment.php
[edit]
[-] FileEncryptionInfo.php
[edit]
[-] FileHash.php
[edit]
[-] FileHashType.php
[edit]
[-] FileSecurityState.php
[edit]
[-] FileSystemInfo.php
[edit]
[-] FilterMode.php
[edit]
[-] FirewallCertificateRevocationListCheckMethodType.php
[edit]
[-] FirewallPacketQueueingMethodType.php
[edit]
[-] FirewallPreSharedKeyEncodingMethodType.php
[edit]
[-] Folder.php
[edit]
[-] FolderView.php
[edit]
[-] FollowupFlag.php
[edit]
[-] FollowupFlagStatus.php
[edit]
[-] FreeBusyError.php
[edit]
[-] FreeBusyStatus.php
[edit]
[-] GenericError.php
[edit]
[-] GeoCoordinates.php
[edit]
[-] GeolocationColumn.php
[edit]
[-] GiphyRatingType.php
[edit]
[-] GraphList.php
[edit]
[-] GraphPrint.php
[edit]
[-] Group.php
[edit]
[-] GroupAssignmentTarget.php
[edit]
[-] GroupLifecyclePolicy.php
[edit]
[-] GroupMembers.php
[edit]
[-] GroupSetting.php
[edit]
[-] GroupSettingTemplate.php
[edit]
[-] GroupType.php
[edit]
[-] Hashes.php
[edit]
[-] HomeRealmDiscoveryPolicy.php
[edit]
[-] HostSecurityState.php
[edit]
[-] HyperlinkOrPictureColumn.php
[edit]
[-] IPv4CidrRange.php
[edit]
[-] IPv4Range.php
[edit]
[-] IPv6CidrRange.php
[edit]
[-] IPv6Range.php
[edit]
[-] Identity.php
[edit]
[-] IdentityApiConnector.php
[edit]
[-] IdentityBuiltInUserFlowAttribute.php
[edit]
[-] IdentityContainer.php
[edit]
[-] IdentityCustomUserFlowAttribute.php
[edit]
[-] IdentityGovernance.php
[edit]
[-] IdentityProtectionRoot.php
[edit]
[-] IdentityProvider.php
[edit]
[-] IdentityProviderBase.php
[edit]
[-] IdentitySecurityDefaultsEnforcementPolicy.php
[edit]
[-] IdentitySet.php
[edit]
[-] IdentitySource.php
[edit]
[-] IdentityUserFlow.php
[edit]
[-] IdentityUserFlowAttribute.php
[edit]
[-] IdentityUserFlowAttributeAssignment.php
[edit]
[-] IdentityUserFlowAttributeDataType.php
[edit]
[-] IdentityUserFlowAttributeInputType.php
[edit]
[-] IdentityUserFlowAttributeType.php
[edit]
[-] Image.php
[edit]
[-] ImageInfo.php
[edit]
[-] ImplicitGrantSettings.php
[edit]
[-] Importance.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentity.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentityImportStatus.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentityState.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentityUpload.php
[edit]
[-] ImportedWindowsAutopilotDeviceIdentityUploadStatus.php
[edit]
[-] IncomingCallOptions.php
[edit]
[-] IncomingContext.php
[edit]
[-] IncompleteData.php
[edit]
[-] InferenceClassification.php
[edit]
[-] InferenceClassificationOverride.php
[edit]
[-] InferenceClassificationType.php
[edit]
[-] InformationProtection.php
[edit]
[-] InformationalUrl.php
[edit]
[-] Initiator.php
[edit]
[-] InitiatorType.php
[edit]
[-] InsightIdentity.php
[edit]
[-] InstallIntent.php
[edit]
[-] InstallState.php
[edit]
[-] InstanceResourceAccess.php
[edit]
[-] IntegerRange.php
[edit]
[-] InternalDomainFederation.php
[edit]
[-] InternalSponsors.php
[edit]
[-] InternetMessageHeader.php
[edit]
[-] InternetSiteSecurityLevel.php
[edit]
[-] IntuneBrand.php
[edit]
[-] InvestigationSecurityState.php
[edit]
[-] Invitation.php
[edit]
[-] InvitationParticipantInfo.php
[edit]
[-] InviteNewBotResponse.php
[edit]
[-] InviteParticipantsOperation.php
[edit]
[-] InvitedUserMessageInfo.php
[edit]
[-] IosCertificateProfile.php
[edit]
[-] IosCompliancePolicy.php
[edit]
[-] IosCustomConfiguration.php
[edit]
[-] IosDeviceFeaturesConfiguration.php
[edit]
[-] IosDeviceType.php
[edit]
[-] IosGeneralDeviceConfiguration.php
[edit]
[-] IosHomeScreenApp.php
[edit]
[-] IosHomeScreenFolder.php
[edit]
[-] IosHomeScreenFolderPage.php
[edit]
[-] IosHomeScreenItem.php
[edit]
[-] IosHomeScreenPage.php
[edit]
[-] IosLobApp.php
[edit]
[-] IosLobAppAssignmentSettings.php
[edit]
[-] IosManagedAppProtection.php
[edit]
[-] IosManagedAppRegistration.php
[edit]
[-] IosMinimumOperatingSystem.php
[edit]
[-] IosMobileAppConfiguration.php
[edit]
[-] IosMobileAppIdentifier.php
[edit]
[-] IosNetworkUsageRule.php
[edit]
[-] IosNotificationAlertType.php
[edit]
[-] IosNotificationSettings.php
[edit]
[-] IosStoreApp.php
[edit]
[-] IosStoreAppAssignmentSettings.php
[edit]
[-] IosUpdateConfiguration.php
[edit]
[-] IosUpdateDeviceStatus.php
[edit]
[-] IosUpdatesInstallStatus.php
[edit]
[-] IosVppApp.php
[edit]
[-] IosVppAppAssignmentSettings.php
[edit]
[-] IosVppEBook.php
[edit]
[-] IosVppEBookAssignment.php
[edit]
[-] IpNamedLocation.php
[edit]
[-] IpRange.php
[edit]
[-] ItemActionStat.php
[edit]
[-] ItemActivity.php
[edit]
[-] ItemActivityStat.php
[edit]
[-] ItemAnalytics.php
[edit]
[-] ItemAttachment.php
[edit]
[-] ItemBody.php
[edit]
[-] ItemPreviewInfo.php
[edit]
[-] ItemReference.php
[edit]
[-] KeyCredential.php
[edit]
[-] KeyValue.php
[edit]
[-] KeyValuePair.php
[edit]
[-] LicenseAssignmentState.php
[edit]
[-] LicenseDetails.php
[edit]
[-] LicenseProcessingState.php
[edit]
[-] LicenseUnitsDetail.php
[edit]
[-] LifecycleEventType.php
[edit]
[-] LinkedResource.php
[edit]
[-] ListInfo.php
[edit]
[-] ListItem.php
[edit]
[-] ListItemVersion.php
[edit]
[-] LobbyBypassScope.php
[edit]
[-] LobbyBypassSettings.php
[edit]
[-] LocaleInfo.php
[edit]
[-] LocalizedNotificationMessage.php
[edit]
[-] LocateDeviceActionResult.php
[edit]
[-] Location.php
[edit]
[-] LocationConstraint.php
[edit]
[-] LocationConstraintItem.php
[edit]
[-] LocationType.php
[edit]
[-] LocationUniqueIdType.php
[edit]
[-] LogonType.php
[edit]
[-] LongRunningOperation.php
[edit]
[-] LongRunningOperationStatus.php
[edit]
[-] LookupColumn.php
[edit]
[-] MacOSCompliancePolicy.php
[edit]
[-] MacOSCustomConfiguration.php
[edit]
[-] MacOSDeviceFeaturesConfiguration.php
[edit]
[-] MacOSGeneralDeviceConfiguration.php
[edit]
[-] MacOSOfficeSuiteApp.php
[edit]
[-] MailAssessmentRequest.php
[edit]
[-] MailDestinationRoutingReason.php
[edit]
[-] MailFolder.php
[edit]
[-] MailSearchFolder.php
[edit]
[-] MailTips.php
[edit]
[-] MailTipsError.php
[edit]
[-] MailTipsType.php
[edit]
[-] MailboxSettings.php
[edit]
[-] Malware.php
[edit]
[-] MalwareState.php
[edit]
[-] ManagedAndroidLobApp.php
[edit]
[-] ManagedAndroidStoreApp.php
[edit]
[-] ManagedApp.php
[edit]
[-] ManagedAppAvailability.php
[edit]
[-] ManagedAppClipboardSharingLevel.php
[edit]
[-] ManagedAppConfiguration.php
[edit]
[-] ManagedAppDataEncryptionType.php
[edit]
[-] ManagedAppDataStorageLocation.php
[edit]
[-] ManagedAppDataTransferLevel.php
[edit]
[-] ManagedAppDiagnosticStatus.php
[edit]
[-] ManagedAppFlaggedReason.php
[edit]
[-] ManagedAppOperation.php
[edit]
[-] ManagedAppPinCharacterSet.php
[edit]
[-] ManagedAppPolicy.php
[edit]
[-] ManagedAppPolicyDeploymentSummary.php
[edit]
[-] ManagedAppPolicyDeploymentSummaryPerApp.php
[edit]
[-] ManagedAppProtection.php
[edit]
[-] Message.php
[edit]
[-] ManagedAppRegistration.php
[edit]
[-] ManagedAppStatus.php
[edit]
[-] ManagedAppStatusRaw.php
[edit]
[-] ManagedBrowserType.php
[edit]
[-] ManagedDevice.php
[edit]
[-] ManagedDeviceMobileAppConfiguration.php
[edit]
[-] ManagedDeviceMobileAppConfigurationAssignment.php
[edit]
[-] ManagedDeviceMobileAppConfigurationDeviceStatus.php
[edit]
[-] ManagedDeviceMobileAppConfigurationDeviceSummary.php
[edit]
[-] ManagedDeviceMobileAppConfigurationUserStatus.php
[edit]
[-] ManagedDeviceMobileAppConfigurationUserSummary.php
[edit]
[-] ManagedDeviceOverview.php
[edit]
[-] ManagedDeviceOwnerType.php
[edit]
[-] ManagedDevicePartnerReportedHealthState.php
[edit]
[-] ManagedEBook.php
[edit]
[-] ManagedEBookAssignment.php
[edit]
[-] ManagedIOSLobApp.php
[edit]
[-] ManagedIOSStoreApp.php
[edit]
[-] ManagedMobileApp.php
[edit]
[-] ManagedMobileLobApp.php
[edit]
[-] ManagementAgentType.php
[edit]
[-] MdmAppConfigKeyType.php
[edit]
[-] MdmAuthority.php
[edit]
[-] MdmWindowsInformationProtectionPolicy.php
[edit]
[-] MediaConfig.php
[edit]
[-] MediaContentRatingAustralia.php
[edit]
[-] MediaContentRatingCanada.php
[edit]
[-] MediaContentRatingFrance.php
[edit]
[-] MediaContentRatingGermany.php
[edit]
[-] MediaContentRatingIreland.php
[edit]
[-] MediaContentRatingJapan.php
[edit]
[-] MediaContentRatingNewZealand.php
[edit]
[-] MediaContentRatingUnitedKingdom.php
[edit]
[-] MediaContentRatingUnitedStates.php
[edit]
[-] MediaDirection.php
[edit]
[-] MediaInfo.php
[edit]
[-] MediaPrompt.php
[edit]
[-] MediaState.php
[edit]
[-] MediaStream.php
[edit]
[-] MeetingAttendanceReport.php
[edit]
[-] MeetingChatMode.php
[edit]
[-] MeetingInfo.php
[edit]
[-] MeetingMessageType.php
[edit]
[-] MeetingParticipantInfo.php
[edit]
[-] MeetingParticipants.php
[edit]
[-] MeetingPolicyUpdatedEventMessageDetail.php
[edit]
[-] MeetingRequestType.php
[edit]
[-] MeetingTimeSuggestion.php
[edit]
[-] MeetingTimeSuggestionsResult.php
[edit]
[-] MembersAddedEventMessageDetail.php
[edit]
[-] MembersDeletedEventMessageDetail.php
[edit]
[-] MembersJoinedEventMessageDetail.php
[edit]
[-] MembersLeftEventMessageDetail.php
[edit]
[-] MessageActionFlag.php
[edit]
[-] MessageRule.php
[edit]
[-] MessageRuleActions.php
[edit]
[-] MessageRulePredicates.php
[edit]
[-] MessageSecurityState.php
[edit]
[-] MicrosoftAuthenticatorAuthenticationMethod.php
[edit]
[-] MicrosoftAuthenticatorAuthenticationMethodConfiguration.php
[edit]
[-] MicrosoftAuthenticatorAuthenticationMethodTarget.php
[edit]
[-] MicrosoftAuthenticatorAuthenticationMode.php
[edit]
[-] MicrosoftStoreForBusinessApp.php
[edit]
[-] MicrosoftStoreForBusinessAppAssignmentSettings.php
[edit]
[-] MicrosoftStoreForBusinessLicenseType.php
[edit]
[-] MimeContent.php
[edit]
[-] MiracastChannel.php
[edit]
[-] MobileApp.php
[edit]
[-] MobileAppAssignment.php
[edit]
[-] MobileAppAssignmentSettings.php
[edit]
[-] MobileAppCategory.php
[edit]
[-] MobileAppContent.php
[edit]
[-] MobileAppContentFile.php
[edit]
[-] MobileAppContentFileUploadState.php
[edit]
[-] MobileAppIdentifier.php
[edit]
[-] MobileAppInstallTimeSettings.php
[edit]
[-] MobileAppPublishingState.php
[edit]
[-] MobileLobApp.php
[edit]
[-] MobileThreatDefenseConnector.php
[edit]
[-] MobileThreatPartnerTenantState.php
[edit]
[-] Modality.php
[edit]
[-] ModifiedProperty.php
[edit]
[-] MultiValueLegacyExtendedProperty.php
[edit]
[-] MuteParticipantOperation.php
[edit]
[-] NamedLocation.php
[edit]
[-] NetworkConnection.php
[edit]
[-] Notebook.php
[edit]
[-] NotebookLinks.php
[edit]
[-] NotificationMessageTemplate.php
[edit]
[-] NotificationTemplateBrandingOptions.php
[edit]
[-] NumberColumn.php
[edit]
[-] OAuth2PermissionGrant.php
[edit]
[-] ObjectIdentity.php
[edit]
[-] OfferShiftRequest.php
[edit]
[-] OfficeGraphInsights.php
[edit]
[-] OmaSetting.php
[edit]
[-] OmaSettingBase64.php
[edit]
[-] OmaSettingBoolean.php
[edit]
[-] OmaSettingDateTime.php
[edit]
[-] OmaSettingFloatingPoint.php
[edit]
[-] OmaSettingInteger.php
[edit]
[-] OmaSettingString.php
[edit]
[-] OmaSettingStringXml.php
[edit]
[-] OnPremisesConditionalAccessSettings.php
[edit]
[-] OnPremisesExtensionAttributes.php
[edit]
[-] OnPremisesProvisioningError.php
[edit]
[-] Onenote.php
[edit]
[-] OnenoteEntityBaseModel.php
[edit]
[-] OnenoteEntityHierarchyModel.php
[edit]
[-] OnenoteEntitySchemaObjectModel.php
[edit]
[-] OnenoteOperation.php
[edit]
[-] OnenoteOperationError.php
[edit]
[-] OnenotePage.php
[edit]
[-] OnenotePagePreview.php
[edit]
[-] OnenotePagePreviewLinks.php
[edit]
[-] OnenotePatchActionType.php
[edit]
[-] OnenotePatchContentCommand.php
[edit]
[-] OnenotePatchInsertPosition.php
[edit]
[-] OnenoteResource.php
[edit]
[-] OnenoteSection.php
[edit]
[-] OnenoteSourceService.php
[edit]
[-] OnenoteUserRole.php
[edit]
[-] OnlineMeeting.php
[edit]
[-] OnlineMeetingInfo.php
[edit]
[-] OnlineMeetingPresenters.php
[edit]
[-] OnlineMeetingProviderType.php
[edit]
[-] OnlineMeetingRole.php
[edit]
[-] OpenShift.php
[edit]
[-] OpenShiftChangeRequest.php
[edit]
[-] OpenShiftItem.php
[edit]
[-] OpenTypeExtension.php
[edit]
[-] Operation.php
[edit]
[-] OperationError.php
[edit]
[-] OperationResult.php
[edit]
[-] OperationStatus.php
[edit]
[-] OptionalClaim.php
[edit]
[-] OptionalClaims.php
[edit]
[-] OrgContact.php
[edit]
[-] Organization.php
[edit]
[-] OrganizationalBranding.php
[edit]
[-] OrganizationalBrandingLocalization.php
[edit]
[-] OrganizationalBrandingProperties.php
[edit]
[-] OrganizerMeetingInfo.php
[edit]
[-] OutgoingCallOptions.php
[edit]
[-] OutlookCategory.php
[edit]
[-] OutlookGeoCoordinates.php
[edit]
[-] OutlookItem.php
[edit]
[-] OutlookUser.php
[edit]
[-] Package.php
[edit]
[-] PageLinks.php
[edit]
[-] ParentalControlSettings.php
[edit]
[-] Participant.php
[edit]
[-] ParticipantInfo.php
[edit]
[-] ParticipantJoiningNotification.php
[edit]
[-] ParticipantJoiningResponse.php
[edit]
[-] ParticipantLeftNotification.php
[edit]
[-] PasswordAuthenticationMethod.php
[edit]
[-] PasswordCredential.php
[edit]
[-] PasswordProfile.php
[edit]
[-] PasswordResetResponse.php
[edit]
[-] PatternedRecurrence.php
[edit]
[-] PendingContentUpdate.php
[edit]
[-] PendingOperations.php
[edit]
[-] Permission.php
[edit]
[-] PermissionClassificationType.php
[edit]
[-] PermissionGrantConditionSet.php
[edit]
[-] PermissionGrantPolicy.php
[edit]
[-] PermissionScope.php
[edit]
[-] PermissionType.php
[edit]
[-] PersistentBrowserSessionControl.php
[edit]
[-] PersistentBrowserSessionMode.php
[edit]
[-] Person.php
[edit]
[-] PersonOrGroupColumn.php
[edit]
[-] PersonType.php
[edit]
[-] Phone.php
[edit]
[-] PhoneAuthenticationMethod.php
[edit]
[-] PhoneType.php
[edit]
[-] Photo.php
[edit]
[-] PhysicalAddress.php
[edit]
[-] PhysicalAddressType.php
[edit]
[-] PhysicalOfficeAddress.php
[edit]
[-] Pkcs12Certificate.php
[edit]
[-] Pkcs12CertificateInformation.php
[edit]
[-] Place.php
[edit]
[-] Planner.php
[edit]
[-] PlannerAppliedCategories.php
[edit]
[-] PlannerAssignedToTaskBoardTaskFormat.php
[edit]
[-] PlannerAssignment.php
[edit]
[-] PlannerAssignments.php
[edit]
[-] PlannerBucket.php
[edit]
[-] PlannerBucketTaskBoardTaskFormat.php
[edit]
[-] PlannerCategoryDescriptions.php
[edit]
[-] PlannerChecklistItem.php
[edit]
[-] PlannerChecklistItems.php
[edit]
[-] PlannerContainerType.php
[edit]
[-] PlannerExternalReference.php
[edit]
[-] PlannerExternalReferences.php
[edit]
[-] PlannerGroup.php
[edit]
[-] PlannerPlan.php
[edit]
[-] PlannerOrderHintsByAssignee.php
[edit]
[-] PlannerPlanContainer.php
[edit]
[-] PlannerPlanDetails.php
[edit]
[-] PlannerPreviewType.php
[edit]
[-] PlannerProgressTaskBoardTaskFormat.php
[edit]
[-] PlannerTask.php
[edit]
[-] PlannerTaskDetails.php
[edit]
[-] PlannerUser.php
[edit]
[-] PlannerUserIds.php
[edit]
[-] PlayPromptOperation.php
[edit]
[-] PolicyBase.php
[edit]
[-] PolicyPlatformType.php
[edit]
[-] PolicyRoot.php
[edit]
[-] Post.php
[edit]
[-] PostType.php
[edit]
[-] PreAuthorizedApplication.php
[edit]
[-] PrereleaseFeatures.php
[edit]
[-] Presence.php
[edit]
[-] PrincipalResourceMembershipsScope.php
[edit]
[-] PrintCertificateSigningRequest.php
[edit]
[-] PrintColorMode.php
[edit]
[-] PrintConnector.php
[edit]
[-] PrintDocument.php
[edit]
[-] PrintDocumentUploadProperties.php
[edit]
[-] PrintDuplexMode.php
[edit]
[-] PrintEvent.php
[edit]
[-] PrintFinishing.php
[edit]
[-] PrintJob.php
[edit]
[-] PrintJobConfiguration.php
[edit]
[-] PrintJobProcessingState.php
[edit]
[-] PrintJobStateDetail.php
[edit]
[-] PrintJobStatus.php
[edit]
[-] PrintMargin.php
[edit]
[-] PrintMultipageLayout.php
[edit]
[-] PrintOperation.php
[edit]
[-] PrintOperationProcessingState.php
[edit]
[-] PrintOperationStatus.php
[edit]
[-] PrintOrientation.php
[edit]
[-] PrintQuality.php
[edit]
[-] PrintScaling.php
[edit]
[-] PrintService.php
[edit]
[-] PrintServiceEndpoint.php
[edit]
[-] PrintSettings.php
[edit]
[-] PrintTask.php
[edit]
[-] PrintTaskDefinition.php
[edit]
[-] PrintTaskProcessingState.php
[edit]
[-] PrintTaskStatus.php
[edit]
[-] PrintTaskTrigger.php
[edit]
[-] PrintUsage.php
[edit]
[-] PrintUsageByPrinter.php
[edit]
[-] PrintUsageByUser.php
[edit]
[-] Printer.php
[edit]
[-] PrinterBase.php
[edit]
[-] PrinterCapabilities.php
[edit]
[-] PrinterCreateOperation.php
[edit]
[-] PrinterDefaults.php
[edit]
[-] PrinterFeedOrientation.php
[edit]
[-] PrinterLocation.php
[edit]
[-] PrinterProcessingState.php
[edit]
[-] PrinterProcessingStateDetail.php
[edit]
[-] PrinterShare.php
[edit]
[-] PrinterStatus.php
[edit]
[-] Privacy.php
[edit]
[-] PrivacyProfile.php
[edit]
[-] Process.php
[edit]
[-] ProcessIntegrityLevel.php
[edit]
[-] ProfilePhoto.php
[edit]
[-] Prompt.php
[edit]
[-] PromptLoginBehavior.php
[edit]
[-] ProvisionChannelEmailResult.php
[edit]
[-] ProvisionedIdentity.php
[edit]
[-] ProvisionedPlan.php
[edit]
[-] ProvisioningAction.php
[edit]
[-] ProvisioningErrorInfo.php
[edit]
[-] ProvisioningObjectSummary.php
[edit]
[-] ProvisioningResult.php
[edit]
[-] ProvisioningServicePrincipal.php
[edit]
[-] ProvisioningStatusErrorCategory.php
[edit]
[-] ProvisioningStatusInfo.php
[edit]
[-] ProvisioningStep.php
[edit]
[-] ProvisioningStepType.php
[edit]
[-] ProvisioningSystem.php
[edit]
[-] ProxiedDomain.php
[edit]
[-] PublicClientApplication.php
[edit]
[-] PublicError.php
[edit]
[-] PublicErrorDetail.php
[edit]
[-] PublicInnerError.php
[edit]
[-] PublicationFacet.php
[edit]
[-] Quota.php
[edit]
[-] RatingAppsType.php
[edit]
[-] RatingAustraliaMoviesType.php
[edit]
[-] RatingAustraliaTelevisionType.php
[edit]
[-] RatingCanadaMoviesType.php
[edit]
[-] RatingCanadaTelevisionType.php
[edit]
[-] RatingFranceMoviesType.php
[edit]
[-] RatingFranceTelevisionType.php
[edit]
[-] RatingGermanyMoviesType.php
[edit]
[-] RatingGermanyTelevisionType.php
[edit]
[-] RatingIrelandMoviesType.php
[edit]
[-] RatingIrelandTelevisionType.php
[edit]
[-] RatingJapanMoviesType.php
[edit]
[-] RatingJapanTelevisionType.php
[edit]
[-] RatingNewZealandMoviesType.php
[edit]
[-] RatingNewZealandTelevisionType.php
[edit]
[-] RatingUnitedKingdomMoviesType.php
[edit]
[-] RatingUnitedKingdomTelevisionType.php
[edit]
[-] RbacApplication.php
[edit]
[-] RatingUnitedStatesMoviesType.php
[edit]
[-] RatingUnitedStatesTelevisionType.php
[edit]
[-] RecentNotebook.php
[edit]
[-] RecentNotebookLinks.php
[edit]
[-] Recipient.php
[edit]
[-] RecipientScopeType.php
[edit]
[-] RecordOperation.php
[edit]
[-] RecordingInfo.php
[edit]
[-] RecordingStatus.php
[edit]
[-] RecurrencePattern.php
[edit]
[-] RecurrencePatternType.php
[edit]
[-] RecurrenceRange.php
[edit]
[-] RecurrenceRangeType.php
[edit]
[-] ReferenceAttachment.php
[edit]
[-] RegistrationEnforcement.php
[edit]
[-] RegistryHive.php
[edit]
[-] RegistryKeyState.php
[edit]
[-] RegistryOperation.php
[edit]
[-] RegistryValueType.php
[edit]
[-] RejectJoinResponse.php
[edit]
[-] RejectReason.php
[edit]
[-] RelatedContact.php
[edit]
[-] Reminder.php
[edit]
[-] RemoteAssistanceOnboardingStatus.php
[edit]
[-] RemoteAssistancePartner.php
[edit]
[-] RemoteItem.php
[edit]
[-] RemoteLockActionResult.php
[edit]
[-] RemoveAccessApplyAction.php
[edit]
[-] Report.php
[edit]
[-] ReportRoot.php
[edit]
[-] Request.php
[edit]
[-] RequestSchedule.php
[edit]
[-] RequestorManager.php
[edit]
[-] RequiredPasswordType.php
[edit]
[-] RequiredResourceAccess.php
[edit]
[-] ResetPasscodeActionResult.php
[edit]
[-] ResourceAccess.php
[edit]
[-] ResourceAction.php
[edit]
[-] ResourceData.php
[edit]
[-] ResourceOperation.php
[edit]
[-] ResourcePermission.php
[edit]
[-] ResourceReference.php
[edit]
[-] ResourceSpecificPermission.php
[edit]
[-] ResourceSpecificPermissionGrant.php
[edit]
[-] ResourceVisualization.php
[edit]
[-] ResponseStatus.php
[edit]
[-] ResponseType.php
[edit]
[-] RestrictedSignIn.php
[edit]
[-] ResultInfo.php
[edit]
[-] ResultTemplate.php
[edit]
[-] ResultTemplateDictionary.php
[edit]
[-] ResultTemplateOption.php
[edit]
[-] RgbColor.php
[edit]
[-] RichLongRunningOperation.php
[edit]
[-] RiskDetail.php
[edit]
[-] RiskDetection.php
[edit]
[-] RiskDetectionTimingType.php
[edit]
[-] RiskEventType.php
[edit]
[-] RiskLevel.php
[edit]
[-] RiskState.php
[edit]
[-] RiskUserActivity.php
[edit]
[-] RiskyUser.php
[edit]
[-] RiskyUserHistoryItem.php
[edit]
[-] RoleAssignment.php
[edit]
[-] RoleAssignmentScheduleFilterByCurrentUserOptions.php
[edit]
[-] RoleAssignmentScheduleInstanceFilterByCurrentUserOptions.php
[edit]
[-] RoleAssignmentScheduleRequestFilterByCurrentUserOptions.php
[edit]
[-] RoleDefinition.php
[edit]
[-] RoleEligibilityScheduleFilterByCurrentUserOptions.php
[edit]
[-] RoleEligibilityScheduleInstanceFilterByCurrentUserOptions.php
[edit]
[-] RoleEligibilityScheduleRequestFilterByCurrentUserOptions.php
[edit]
[-] RoleManagement.php
[edit]
[-] RolePermission.php
[edit]
[-] Room.php
[edit]
[-] RoomList.php
[edit]
[-] Root.php
[edit]
[-] RoutingMode.php
[edit]
[-] RoutingType.php
[edit]
[-] RubricCriterion.php
[edit]
[-] RubricLevel.php
[edit]
[-] RubricQuality.php
[edit]
[-] RubricQualityFeedbackModel.php
[edit]
[-] RubricQualitySelectedColumnModel.php
[edit]
[-] RunAsAccountType.php
[edit]
[-] SafeSearchFilterType.php
[edit]
[-] SamlOrWsFedExternalDomainFederation.php
[edit]
[-] SamlOrWsFedProvider.php
[edit]
[-] SamlSingleSignOnSettings.php
[edit]
[-] Schedule.php
[edit]
[-] ScheduleChangeRequest.php
[edit]
[-] ScheduleChangeRequestActor.php
[edit]
[-] ScheduleChangeState.php
[edit]
[-] ScheduleEntity.php
[edit]
[-] ScheduleEntityTheme.php
[edit]
[-] ScheduleInformation.php
[edit]
[-] ScheduleItem.php
[edit]
[-] SchedulingGroup.php
[edit]
[-] SchemaExtension.php
[edit]
[-] ScopedRoleMembership.php
[edit]
[-] ScoredEmailAddress.php
[edit]
[-] ScreenSharingRole.php
[edit]
[-] SearchAggregation.php
[edit]
[-] SearchAlteration.php
[edit]
[-] SearchAlterationOptions.php
[edit]
[-] SearchAlterationType.php
[edit]
[-] SearchBucket.php
[edit]
[-] SearchEntity.php
[edit]
[-] SearchHit.php
[edit]
[-] SearchHitsContainer.php
[edit]
[-] SearchQuery.php
[edit]
[-] SearchRequest.php
[edit]
[-] SearchResponse.php
[edit]
[-] SearchResult.php
[edit]
[-] SectionGroup.php
[edit]
[-] SectionLinks.php
[edit]
[-] SecureScore.php
[edit]
[-] SecureScoreControlProfile.php
[edit]
[-] SecureScoreControlStateUpdate.php
[edit]
[-] Security.php
[edit]
[-] SecurityNetworkProtocol.php
[edit]
[-] SecurityResource.php
[edit]
[-] SecurityResourceType.php
[edit]
[-] SecurityVendorInformation.php
[edit]
[-] SelectionLikelihoodInfo.php
[edit]
[-] SelfServiceSignUpAuthenticationFlowConfiguration.php
[edit]
[-] SelfSignedCertificate.php
[edit]
[-] Sensitivity.php
[edit]
[-] ServiceAnnouncement.php
[edit]
[-] ServiceAnnouncementAttachment.php
[edit]
[-] ServiceAnnouncementBase.php
[edit]
[-] ServiceHealth.php
[edit]
[-] ServiceHealthClassificationType.php
[edit]
[-] ServiceHealthIssue.php
[edit]
[-] ServiceHealthIssuePost.php
[edit]
[-] ServiceHealthOrigin.php
[edit]
[-] ServiceHealthStatus.php
[edit]
[-] ServiceHostedMediaConfig.php
[edit]
[-] ServicePlanInfo.php
[edit]
[-] ServicePrincipal.php
[edit]
[-] ServicePrincipalIdentity.php
[edit]
[-] ServiceUpdateCategory.php
[edit]
[-] ServiceUpdateMessage.php
[edit]
[-] ServiceUpdateMessageViewpoint.php
[edit]
[-] ServiceUpdateSeverity.php
[edit]
[-] SettingSource.php
[edit]
[-] SettingSourceType.php
[edit]
[-] SettingStateDeviceSummary.php
[edit]
[-] SettingTemplateValue.php
[edit]
[-] SettingValue.php
[edit]
[-] SharePointIdentity.php
[edit]
[-] SharePointIdentitySet.php
[edit]
[-] Shared.php
[edit]
[-] SharedDriveItem.php
[edit]
[-] SharedInsight.php
[edit]
[-] SharedPCAccountDeletionPolicyType.php
[edit]
[-] SharedPCAccountManagerPolicy.php
[edit]
[-] SharedPCAllowedAccountType.php
[edit]
[-] SharedPCConfiguration.php
[edit]
[-] SharedWithChannelTeamInfo.php
[edit]
[-] SharepointIds.php
[edit]
[-] SharingDetail.php
[edit]
[-] SharingInvitation.php
[edit]
[-] SharingLink.php
[edit]
[-] Shift.php
[edit]
[-] ShiftActivity.php
[edit]
[-] ShiftAvailability.php
[edit]
[-] ShiftItem.php
[edit]
[-] ShiftPreferences.php
[edit]
[-] SignIn.php
[edit]
[-] SignInFrequencySessionControl.php
[edit]
[-] SignInLocation.php
[edit]
[-] SignInStatus.php
[edit]
[-] SigninFrequencyType.php
[edit]
[-] SigningCertificateUpdateStatus.php
[edit]
[-] SingleServicePrincipal.php
[edit]
[-] SingleUser.php
[edit]
[-] SingleValueLegacyExtendedProperty.php
[edit]
[-] Site.php
[edit]
[-] SiteCollection.php
[edit]
[-] SiteSecurityLevel.php
[edit]
[-] SizeRange.php
[edit]
[-] SocialIdentityProvider.php
[edit]
[-] SoftwareOathAuthenticationMethod.php
[edit]
[-] SoftwareUpdateStatusSummary.php
[edit]
[-] SolutionsRoot.php
[edit]
[-] SortProperty.php
[edit]
[-] SpaApplication.php
[edit]
[-] SpecialFolder.php
[edit]
[-] StaffAvailabilityItem.php
[edit]
[-] StagedFeatureName.php
[edit]
[-] StandardTimeZoneOffset.php
[edit]
[-] StartHoldMusicOperation.php
[edit]
[-] StateManagementSetting.php
[edit]
[-] Status.php
[edit]
[-] StopHoldMusicOperation.php
[edit]
[-] StoragePlanInformation.php
[edit]
[-] StsPolicy.php
[edit]
[-] SubjectRightsRequest.php
[edit]
[-] SubjectRightsRequestDetail.php
[edit]
[-] SubjectRightsRequestHistory.php
[edit]
[-] SubjectRightsRequestStage.php
[edit]
[-] SubjectRightsRequestStageDetail.php
[edit]
[-] SubjectRightsRequestStageStatus.php
[edit]
[-] SubjectRightsRequestStatus.php
[edit]
[-] SubjectRightsRequestType.php
[edit]
[-] SubjectSet.php
[edit]
[-] SubscribeToToneOperation.php
[edit]
[-] SubscribedSku.php
[edit]
[-] Subscription.php
[edit]
[-] SwapShiftsChangeRequest.php
[edit]
[-] SystemFacet.php
[edit]
[-] TabUpdatedEventMessageDetail.php
[edit]
[-] TargetApplicationOwners.php
[edit]
[-] TargetManager.php
[edit]
[-] TargetResource.php
[edit]
[-] TargetedManagedAppConfiguration.php
[edit]
[-] TargetedManagedAppGroupType.php
[edit]
[-] TargetedManagedAppPolicyAssignment.php
[edit]
[-] TargetedManagedAppProtection.php
[edit]
[-] TaskStatus.php
[edit]
[-] Team.php
[edit]
[-] TeamArchivedEventMessageDetail.php
[edit]
[-] TeamClassSettings.php
[edit]
[-] TeamCreatedEventMessageDetail.php
[edit]
[-] TeamDescriptionUpdatedEventMessageDetail.php
[edit]
[-] TeamFunSettings.php
[edit]
[-] TeamGuestSettings.php
[edit]
[-] TeamInfo.php
[edit]
[-] TeamJoiningDisabledEventMessageDetail.php
[edit]
[-] TeamJoiningEnabledEventMessageDetail.php
[edit]
[-] TeamMemberSettings.php
[edit]
[-] TeamMessagingSettings.php
[edit]
[-] TeamRenamedEventMessageDetail.php
[edit]
[-] TeamSpecialization.php
[edit]
[-] TeamSummary.php
[edit]
[-] TeamUnarchivedEventMessageDetail.php
[edit]
[-] TeamVisibilityType.php
[edit]
[-] TeamsApp.php
[edit]
[-] TeamsAppDefinition.php
[edit]
[-] TeamsAppDistributionMethod.php
[edit]
[-] TeamsAppInstallation.php
[edit]
[-] TeamsAppInstalledEventMessageDetail.php
[edit]
[-] TeamsAppPublishingState.php
[edit]
[-] TeamsAppRemovedEventMessageDetail.php
[edit]
[-] TeamsAppUpgradedEventMessageDetail.php
[edit]
[-] TeamsAsyncOperation.php
[edit]
[-] TeamsAsyncOperationStatus.php
[edit]
[-] TeamsAsyncOperationType.php
[edit]
[-] TeamsTab.php
[edit]
[-] TeamsTabConfiguration.php
[edit]
[-] TeamsTemplate.php
[edit]
[-] Teamwork.php
[edit]
[-] TeamworkActivityTopic.php
[edit]
[-] TeamworkActivityTopicSource.php
[edit]
[-] TeamworkApplicationIdentity.php
[edit]
[-] TeamworkApplicationIdentityType.php
[edit]
[-] TeamworkBot.php
[edit]
[-] TeamworkCallEventType.php
[edit]
[-] TeamworkConversationIdentity.php
[edit]
[-] TeamworkConversationIdentityType.php
[edit]
[-] TeamworkHostedContent.php
[edit]
[-] TeamworkNotificationRecipient.php
[edit]
[-] TeamworkOnlineMeetingInfo.php
[edit]
[-] TeamworkTagIdentity.php
[edit]
[-] TeamworkUserIdentity.php
[edit]
[-] TeamworkUserIdentityType.php
[edit]
[-] TelecomExpenseManagementPartner.php
[edit]
[-] TeleconferenceDeviceAudioQuality.php
[edit]
[-] TeleconferenceDeviceMediaQuality.php
[edit]
[-] TeleconferenceDeviceQuality.php
[edit]
[-] TeleconferenceDeviceScreenSharingQuality.php
[edit]
[-] TeleconferenceDeviceVideoQuality.php
[edit]
[-] TemporaryAccessPassAuthenticationMethod.php
[edit]
[-] TemporaryAccessPassAuthenticationMethodConfiguration.php
[edit]
[-] TermColumn.php
[edit]
[-] TermsAndConditions.php
[edit]
[-] TermsAndConditionsAcceptanceStatus.php
[edit]
[-] TermsAndConditionsAssignment.php
[edit]
[-] TermsExpiration.php
[edit]
[-] TermsOfUseContainer.php
[edit]
[-] TextColumn.php
[edit]
[-] ThreatAssessmentContentType.php
[edit]
[-] ThreatAssessmentRequest.php
[edit]
[-] ThreatAssessmentRequestSource.php
[edit]
[-] ThreatAssessmentResult.php
[edit]
[-] ThreatAssessmentResultType.php
[edit]
[-] ThreatAssessmentStatus.php
[edit]
[-] ThreatCategory.php
[edit]
[-] ThreatExpectedAssessment.php
[edit]
[-] Thumbnail.php
[edit]
[-] ThumbnailColumn.php
[edit]
[-] ThumbnailSet.php
[edit]
[-] TicketInfo.php
[edit]
[-] TimeConstraint.php
[edit]
[-] TimeOff.php
[edit]
[-] TimeOffItem.php
[edit]
[-] TimeOffReason.php
[edit]
[-] TimeOffReasonIconType.php
[edit]
[-] TimeOffRequest.php
[edit]
[-] TimeRange.php
[edit]
[-] TimeSlot.php
[edit]
[-] TimeZoneBase.php
[edit]
[-] TimeZoneInformation.php
[edit]
[-] TimeZoneStandard.php
[edit]
[-] Todo.php
[edit]
[-] TodoTask.php
[edit]
[-] TodoTaskList.php
[edit]
[-] TokenIssuancePolicy.php
[edit]
[-] TokenIssuerType.php
[edit]
[-] TokenLifetimePolicy.php
[edit]
[-] TokenMeetingInfo.php
[edit]
[-] Tone.php
[edit]
[-] ToneInfo.php
[edit]
[-] Trending.php
[edit]
[-] UnifiedApprovalStage.php
[edit]
[-] UnifiedRoleAssignment.php
[edit]
[-] UnifiedRoleAssignmentSchedule.php
[edit]
[-] UnifiedRoleAssignmentScheduleInstance.php
[edit]
[-] UnifiedRoleAssignmentScheduleRequest.php
[edit]
[-] UnifiedRoleDefinition.php
[edit]
[-] UnifiedRoleEligibilitySchedule.php
[edit]
[-] UnifiedRoleEligibilityScheduleInstance.php
[edit]
[-] UnifiedRoleEligibilityScheduleRequest.php
[edit]
[-] UnifiedRoleManagementPolicy.php
[edit]
[-] UnifiedRoleManagementPolicyApprovalRule.php
[edit]
[-] UnifiedRoleManagementPolicyAssignment.php
[edit]
[-] UnifiedRoleManagementPolicyAuthenticationContextRule.php
[edit]
[-] UnifiedRoleManagementPolicyEnablementRule.php
[edit]
[-] UnifiedRoleManagementPolicyExpirationRule.php
[edit]
[-] UnifiedRoleManagementPolicyNotificationRule.php
[edit]
[-] UnifiedRoleManagementPolicyRule.php
[edit]
[-] UnifiedRoleManagementPolicyRuleTarget.php
[edit]
[-] UnifiedRoleManagementPolicyRuleTargetOperations.php
[edit]
[-] UnifiedRolePermission.php
[edit]
[-] UnifiedRoleScheduleBase.php
[edit]
[-] UnifiedRoleScheduleInstanceBase.php
[edit]
[-] UnifiedRoleScheduleRequestActions.php
[edit]
[-] UnmuteParticipantOperation.php
[edit]
[-] UpdateRecordingStatusOperation.php
[edit]
[-] UpdateWindowsDeviceAccountActionParameter.php
[edit]
[-] UploadSession.php
[edit]
[-] UriClickSecurityState.php
[edit]
[-] UrlAssessmentRequest.php
[edit]
[-] UsageDetails.php
[edit]
[-] UsedInsight.php
[edit]
[-] User.php
[edit]
[-] UserAccountSecurityType.php
[edit]
[-] UserActivity.php
[edit]
[-] UserAttributeValuesItem.php
[edit]
[-] UserConsentRequest.php
[edit]
[-] UserFlowApiConnectorConfiguration.php
[edit]
[-] UserFlowLanguageConfiguration.php
[edit]
[-] UserFlowLanguagePage.php
[edit]
[-] UserFlowType.php
[edit]
[-] UserIdentity.php
[edit]
[-] UserInstallStateSummary.php
[edit]
[-] UserPurpose.php
[edit]
[-] UserScopeTeamsAppInstallation.php
[edit]
[-] UserSecurityState.php
[edit]
[-] UserSettings.php
[edit]
[-] UserTeamwork.php
[edit]
[-] VerifiedDomain.php
[edit]
[-] VerifiedPublisher.php
[edit]
[-] Video.php
[edit]
[-] VisibilitySetting.php
[edit]
[-] VisualInfo.php
[edit]
[-] VolumeType.php
[edit]
[-] VppLicensingType.php
[edit]
[-] VppToken.php
[edit]
[-] VppTokenAccountType.php
[edit]
[-] VppTokenState.php
[edit]
[-] VppTokenSyncStatus.php
[edit]
[-] VulnerabilityState.php
[edit]
[-] WebApp.php
[edit]
[-] WebApplication.php
[edit]
[-] WebBrowserCookieSettings.php
[edit]
[-] Website.php
[edit]
[-] WebsiteType.php
[edit]
[-] WeekIndex.php
[edit]
[-] WeeklySchedule.php
[edit]
[-] WelcomeScreenMeetingInformation.php
[edit]
[-] WellknownListName.php
[edit]
[-] Win32LobApp.php
[edit]
[-] Win32LobAppAssignmentSettings.php
[edit]
[-] Win32LobAppDeliveryOptimizationPriority.php
[edit]
[-] Win32LobAppFileSystemOperationType.php
[edit]
[-] Win32LobAppFileSystemRule.php
[edit]
[-] Win32LobAppInstallExperience.php
[edit]
[-] Win32LobAppMsiInformation.php
[edit]
[-] Win32LobAppMsiPackageType.php
[edit]
[-] Win32LobAppNotification.php
[edit]
[-] Win32LobAppPowerShellScriptRule.php
[edit]
[-] Win32LobAppPowerShellScriptRuleOperationType.php
[edit]
[-] Win32LobAppProductCodeRule.php
[edit]
[-] Win32LobAppRegistryRule.php
[edit]
[-] Win32LobAppRegistryRuleOperationType.php
[edit]
[-] Win32LobAppRestartBehavior.php
[edit]
[-] Win32LobAppRestartSettings.php
[edit]
[-] Win32LobAppReturnCode.php
[edit]
[-] Win32LobAppReturnCodeType.php
[edit]
[-] Win32LobAppRule.php
[edit]
[-] Win32LobAppRuleOperator.php
[edit]
[-] Win32LobAppRuleType.php
[edit]
[-] Windows10CompliancePolicy.php
[edit]
[-] WindowsMobileMSI.php
[edit]
[-] Windows10CustomConfiguration.php
[edit]
[-] Windows10EditionType.php
[edit]
[-] Windows10EndpointProtectionConfiguration.php
[edit]
[-] Windows10EnterpriseModernAppManagementConfiguration.php
[edit]
[-] Windows10GeneralConfiguration.php
[edit]
[-] Windows10MobileCompliancePolicy.php
[edit]
[-] Windows10NetworkProxyServer.php
[edit]
[-] Windows10SecureAssessmentConfiguration.php
[edit]
[-] Windows10TeamGeneralConfiguration.php
[edit]
[-] Windows81CompliancePolicy.php
[edit]
[-] Windows81GeneralConfiguration.php
[edit]
[-] WindowsArchitecture.php
[edit]
[-] WindowsAutopilotDeviceIdentity.php
[edit]
[-] WindowsDefenderAdvancedThreatProtectionConfiguration.php
[edit]
[-] WindowsDefenderScanActionResult.php
[edit]
[-] WindowsDeliveryOptimizationMode.php
[edit]
[-] WindowsDeviceADAccount.php
[edit]
[-] WindowsDeviceAccount.php
[edit]
[-] WindowsDeviceAzureADAccount.php
[edit]
[-] WindowsDeviceType.php
[edit]
[-] WindowsFirewallNetworkProfile.php
[edit]
[-] WindowsHelloForBusinessAuthenticationMethod.php
[edit]
[-] WindowsHelloForBusinessPinUsage.php
[edit]
[-] WindowsInformationProtection.php
[edit]
[-] WindowsInformationProtectionApp.php
[edit]
[-] WindowsInformationProtectionAppLearningSummary.php
[edit]
[-] WindowsInformationProtectionAppLockerFile.php
[edit]
[-] WindowsInformationProtectionDataRecoveryCertificate.php
[edit]
[-] WindowsInformationProtectionDesktopApp.php
[edit]
[-] WindowsInformationProtectionEnforcementLevel.php
[edit]
[-] WindowsInformationProtectionIPRangeCollection.php
[edit]
[-] WindowsInformationProtectionNetworkLearningSummary.php
[edit]
[-] WindowsInformationProtectionPinCharacterRequirements.php
[edit]
[-] WindowsInformationProtectionPolicy.php
[edit]
[-] WindowsInformationProtectionProxiedDomainCollection.php
[edit]
[-] WindowsInformationProtectionResourceCollection.php
[edit]
[-] WindowsInformationProtectionStoreApp.php
[edit]
[-] WindowsMinimumOperatingSystem.php
[edit]
[-] WindowsPhone81CompliancePolicy.php
[edit]
[-] WindowsPhone81CustomConfiguration.php
[edit]
[-] WindowsPhone81GeneralConfiguration.php
[edit]
[-] WindowsSpotlightEnablementSettings.php
[edit]
[-] WindowsStartMenuAppListVisibilityType.php
[edit]
[-] WindowsStartMenuModeType.php
[edit]
[-] WindowsUniversalAppX.php
[edit]
[-] WindowsUpdateActiveHoursInstall.php
[edit]
[-] WindowsUpdateForBusinessConfiguration.php
[edit]
[-] WindowsUpdateInstallScheduleType.php
[edit]
[-] WindowsUpdateScheduledInstall.php
[edit]
[-] WindowsUpdateType.php
[edit]
[-] WindowsUserAccountControlSettings.php
[edit]
[-] Workbook.php
[edit]
[-] WorkbookApplication.php
[edit]
[-] WorkbookChart.php
[edit]
[-] WorkbookChartAreaFormat.php
[edit]
[-] WorkbookChartAxes.php
[edit]
[-] WorkbookChartAxis.php
[edit]
[-] WorkbookChartAxisFormat.php
[edit]
[-] WorkbookChartAxisTitle.php
[edit]
[-] WorkbookChartAxisTitleFormat.php
[edit]
[-] WorkbookChartDataLabelFormat.php
[edit]
[-] WorkbookChartDataLabels.php
[edit]
[-] WorkbookChartFill.php
[edit]
[-] WorkbookChartFont.php
[edit]
[-] WorkbookChartGridlines.php
[edit]
[-] WorkbookChartGridlinesFormat.php
[edit]
[-] WorkbookChartLegend.php
[edit]
[-] WorkbookChartLegendFormat.php
[edit]
[-] WorkbookChartLineFormat.php
[edit]
[-] WorkbookChartPoint.php
[edit]
[-] WorkbookChartPointFormat.php
[edit]
[-] WorkbookChartSeries.php
[edit]
[-] WorkbookChartSeriesFormat.php
[edit]
[-] WorkbookChartTitle.php
[edit]
[-] WorkbookChartTitleFormat.php
[edit]
[-] WorkbookComment.php
[edit]
[-] WorkbookCommentReply.php
[edit]
[-] WorkbookFilter.php
[edit]
[-] WorkbookFilterCriteria.php
[edit]
[-] WorkbookFilterDatetime.php
[edit]
[-] WorkbookFormatProtection.php
[edit]
[-] WorkbookFunctionResult.php
[edit]
[-] WorkbookFunctions.php
[edit]
[-] WorkbookIcon.php
[edit]
[-] WorkbookNamedItem.php
[edit]
[-] WorkbookOperation.php
[edit]
[-] WorkbookOperationError.php
[edit]
[-] WorkbookOperationStatus.php
[edit]
[-] WorkbookPivotTable.php
[edit]
[-] WorkbookRange.php
[edit]
[-] WorkbookRangeBorder.php
[edit]
[-] WorkbookRangeFill.php
[edit]
[-] WorkbookRangeFont.php
[edit]
[-] WorkbookRangeFormat.php
[edit]
[-] WorkbookRangeReference.php
[edit]
[-] WorkbookRangeSort.php
[edit]
[-] WorkbookRangeView.php
[edit]
[-] WorkbookSessionInfo.php
[edit]
[-] WorkbookSortField.php
[edit]
[-] WorkbookTable.php
[edit]
[-] WorkbookTableColumn.php
[edit]
[-] WorkbookTableRow.php
[edit]
[-] WorkbookTableSort.php
[edit]
[-] WorkbookWorksheet.php
[edit]
[-] WorkbookWorksheetProtection.php
[edit]
[-] WorkbookWorksheetProtectionOptions.php
[edit]
[-] WorkforceIntegration.php
[edit]
[-] WorkforceIntegrationEncryption.php
[edit]
[-] WorkforceIntegrationEncryptionProtocol.php
[edit]
[-] WorkforceIntegrationSupportedEntities.php
[edit]
[-] WorkingHours.php
[edit]
[-] .htaccess.disabled
[edit]