PATH:
home
/
centosnipponia
/
public_html
/
msg
/
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. * * SubjectRightsRequest 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; /** * SubjectRightsRequest 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 SubjectRightsRequest extends Entity { /** * Gets the assignedTo * Identity that the request is assigned to. * * @return Identity|null The assignedTo */ public function getAssignedTo() { if (array_key_exists("assignedTo", $this->_propDict)) { if (is_a($this->_propDict["assignedTo"], "\Microsoft\Graph\Model\Identity") || is_null($this->_propDict["assignedTo"])) { return $this->_propDict["assignedTo"]; } else { $this->_propDict["assignedTo"] = new Identity($this->_propDict["assignedTo"]); return $this->_propDict["assignedTo"]; } } return null; } /** * Sets the assignedTo * Identity that the request is assigned to. * * @param Identity $val The assignedTo * * @return SubjectRightsRequest */ public function setAssignedTo($val) { $this->_propDict["assignedTo"] = $val; return $this; } /** * Gets the closedDateTime * The date and time when the request was closed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @return \DateTime|null The closedDateTime */ public function getClosedDateTime() { if (array_key_exists("closedDateTime", $this->_propDict)) { if (is_a($this->_propDict["closedDateTime"], "\DateTime") || is_null($this->_propDict["closedDateTime"])) { return $this->_propDict["closedDateTime"]; } else { $this->_propDict["closedDateTime"] = new \DateTime($this->_propDict["closedDateTime"]); return $this->_propDict["closedDateTime"]; } } return null; } /** * Sets the closedDateTime * The date and time when the request was closed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @param \DateTime $val The closedDateTime * * @return SubjectRightsRequest */ public function setClosedDateTime($val) { $this->_propDict["closedDateTime"] = $val; return $this; } /** * Gets the createdBy * Identity information for the entity that created the request. * * @return IdentitySet|null The createdBy */ public function getCreatedBy() { if (array_key_exists("createdBy", $this->_propDict)) { if (is_a($this->_propDict["createdBy"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["createdBy"])) { return $this->_propDict["createdBy"]; } else { $this->_propDict["createdBy"] = new IdentitySet($this->_propDict["createdBy"]); return $this->_propDict["createdBy"]; } } return null; } /** * Sets the createdBy * Identity information for the entity that created the request. * * @param IdentitySet $val The createdBy * * @return SubjectRightsRequest */ public function setCreatedBy($val) { $this->_propDict["createdBy"] = $val; return $this; } /** * Gets the createdDateTime * The date and time when the request was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @return \DateTime|null The 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 when the request was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @param \DateTime $val The createdDateTime * * @return SubjectRightsRequest */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } /** * Gets the dataSubject * Information about the data subject. * * @return DataSubject|null The dataSubject */ public function getDataSubject() { if (array_key_exists("dataSubject", $this->_propDict)) { if (is_a($this->_propDict["dataSubject"], "\Microsoft\Graph\Model\DataSubject") || is_null($this->_propDict["dataSubject"])) { return $this->_propDict["dataSubject"]; } else { $this->_propDict["dataSubject"] = new DataSubject($this->_propDict["dataSubject"]); return $this->_propDict["dataSubject"]; } } return null; } /** * Sets the dataSubject * Information about the data subject. * * @param DataSubject $val The dataSubject * * @return SubjectRightsRequest */ public function setDataSubject($val) { $this->_propDict["dataSubject"] = $val; return $this; } /** * Gets the dataSubjectType * The type of the data subject. Possible values are: customer, currentEmployee, formerEmployee, prospectiveEmployee, student, teacher, faculty, other, unknownFutureValue. * * @return DataSubjectType|null The dataSubjectType */ public function getDataSubjectType() { if (array_key_exists("dataSubjectType", $this->_propDict)) { if (is_a($this->_propDict["dataSubjectType"], "\Microsoft\Graph\Model\DataSubjectType") || is_null($this->_propDict["dataSubjectType"])) { return $this->_propDict["dataSubjectType"]; } else { $this->_propDict["dataSubjectType"] = new DataSubjectType($this->_propDict["dataSubjectType"]); return $this->_propDict["dataSubjectType"]; } } return null; } /** * Sets the dataSubjectType * The type of the data subject. Possible values are: customer, currentEmployee, formerEmployee, prospectiveEmployee, student, teacher, faculty, other, unknownFutureValue. * * @param DataSubjectType $val The dataSubjectType * * @return SubjectRightsRequest */ public function setDataSubjectType($val) { $this->_propDict["dataSubjectType"] = $val; return $this; } /** * Gets the description * Description for the request. * * @return string|null The description */ public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * Description for the request. * * @param string $val The description * * @return SubjectRightsRequest */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * The name of the request. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The name of the request. * * @param string $val The displayName * * @return SubjectRightsRequest */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the history * Collection of history change events. * * @return array|null The history */ public function getHistory() { if (array_key_exists("history", $this->_propDict)) { return $this->_propDict["history"]; } else { return null; } } /** * Sets the history * Collection of history change events. * * @param SubjectRightsRequestHistory[] $val The history * * @return SubjectRightsRequest */ public function setHistory($val) { $this->_propDict["history"] = $val; return $this; } /** * Gets the insight * Insight about the request. * * @return SubjectRightsRequestDetail|null The insight */ public function getInsight() { if (array_key_exists("insight", $this->_propDict)) { if (is_a($this->_propDict["insight"], "\Microsoft\Graph\Model\SubjectRightsRequestDetail") || is_null($this->_propDict["insight"])) { return $this->_propDict["insight"]; } else { $this->_propDict["insight"] = new SubjectRightsRequestDetail($this->_propDict["insight"]); return $this->_propDict["insight"]; } } return null; } /** * Sets the insight * Insight about the request. * * @param SubjectRightsRequestDetail $val The insight * * @return SubjectRightsRequest */ public function setInsight($val) { $this->_propDict["insight"] = $val; return $this; } /** * Gets the internalDueDateTime * The date and time when the request is internally due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @return \DateTime|null The internalDueDateTime */ public function getInternalDueDateTime() { if (array_key_exists("internalDueDateTime", $this->_propDict)) { if (is_a($this->_propDict["internalDueDateTime"], "\DateTime") || is_null($this->_propDict["internalDueDateTime"])) { return $this->_propDict["internalDueDateTime"]; } else { $this->_propDict["internalDueDateTime"] = new \DateTime($this->_propDict["internalDueDateTime"]); return $this->_propDict["internalDueDateTime"]; } } return null; } /** * Sets the internalDueDateTime * The date and time when the request is internally due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @param \DateTime $val The internalDueDateTime * * @return SubjectRightsRequest */ public function setInternalDueDateTime($val) { $this->_propDict["internalDueDateTime"] = $val; return $this; } /** * Gets the lastModifiedBy * Identity information for the entity that last modified the request. * * @return IdentitySet|null The lastModifiedBy */ public function getLastModifiedBy() { if (array_key_exists("lastModifiedBy", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedBy"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["lastModifiedBy"])) { return $this->_propDict["lastModifiedBy"]; } else { $this->_propDict["lastModifiedBy"] = new IdentitySet($this->_propDict["lastModifiedBy"]); return $this->_propDict["lastModifiedBy"]; } } return null; } /** * Sets the lastModifiedBy * Identity information for the entity that last modified the request. * * @param IdentitySet $val The lastModifiedBy * * @return SubjectRightsRequest */ public function setLastModifiedBy($val) { $this->_propDict["lastModifiedBy"] = $val; return $this; } /** * Gets the lastModifiedDateTime * The date and time when the request was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @return \DateTime|null The lastModifiedDateTime */ public function getLastModifiedDateTime() { if (array_key_exists("lastModifiedDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) { return $this->_propDict["lastModifiedDateTime"]; } else { $this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]); return $this->_propDict["lastModifiedDateTime"]; } } return null; } /** * Sets the lastModifiedDateTime * The date and time when the request was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. * * @param \DateTime $val The lastModifiedDateTime * * @return SubjectRightsRequest */ public function setLastModifiedDateTime($val) { $this->_propDict["lastModifiedDateTime"] = $val; return $this; } /** * Gets the regulations * List of regulations that this request will fulfill. * * @return string|null The regulations */ public function getRegulations() { if (array_key_exists("regulations", $this->_propDict)) { return $this->_propDict["regulations"]; } else { return null; } } /** * Sets the regulations * List of regulations that this request will fulfill. * * @param string $val The regulations * * @return SubjectRightsRequest */ public function setRegulations($val) { $this->_propDict["regulations"] = $val; return $this; } /** * Gets the stages * Information about the different stages for the request. * * @return array|null The stages */ public function getStages() { if (array_key_exists("stages", $this->_propDict)) { return $this->_propDict["stages"]; } else { return null; } } /** * Sets the stages * Information about the different stages for the request. * * @param SubjectRightsRequestStageDetail[] $val The stages * * @return SubjectRightsRequest */ public function setStages($val) { $this->_propDict["stages"] = $val; return $this; } /** * Gets the status * The status of the request. Possible values are: active, closed, unknownFutureValue. * * @return SubjectRightsRequestStatus|null The status */ public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\SubjectRightsRequestStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new SubjectRightsRequestStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; } /** * Sets the status * The status of the request. Possible values are: active, closed, unknownFutureValue. * * @param SubjectRightsRequestStatus $val The status * * @return SubjectRightsRequest */ public function setStatus($val) { $this->_propDict["status"] = $val; return $this; } /** * Gets the type * The type of the request. Possible values are: export, delete, access, tagForAction, unknownFutureValue. * * @return SubjectRightsRequestType|null The type */ public function getType() { if (array_key_exists("type", $this->_propDict)) { if (is_a($this->_propDict["type"], "\Microsoft\Graph\Model\SubjectRightsRequestType") || is_null($this->_propDict["type"])) { return $this->_propDict["type"]; } else { $this->_propDict["type"] = new SubjectRightsRequestType($this->_propDict["type"]); return $this->_propDict["type"]; } } return null; } /** * Sets the type * The type of the request. Possible values are: export, delete, access, tagForAction, unknownFutureValue. * * @param SubjectRightsRequestType $val The type * * @return SubjectRightsRequest */ public function setType($val) { $this->_propDict["type"] = $val; return $this; } /** * Gets the notes * List of notes associated with the request. * * @return array|null The notes */ public function getNotes() { if (array_key_exists("notes", $this->_propDict)) { return $this->_propDict["notes"]; } else { return null; } } /** * Sets the notes * List of notes associated with the request. * * @param AuthoredNote[] $val The notes * * @return SubjectRightsRequest */ public function setNotes($val) { $this->_propDict["notes"] = $val; return $this; } /** * Gets the team * Information about the Microsoft Teams team that was created for the request. * * @return Team|null The team */ public function getTeam() { if (array_key_exists("team", $this->_propDict)) { if (is_a($this->_propDict["team"], "\Microsoft\Graph\Model\Team") || is_null($this->_propDict["team"])) { return $this->_propDict["team"]; } else { $this->_propDict["team"] = new Team($this->_propDict["team"]); return $this->_propDict["team"]; } } return null; } /** * Sets the team * Information about the Microsoft Teams team that was created for the request. * * @param Team $val The team * * @return SubjectRightsRequest */ public function setTeam($val) { $this->_propDict["team"] = $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]