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. * * AccessReviewScheduleSettings 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; /** * AccessReviewScheduleSettings 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 AccessReviewScheduleSettings extends Entity { /** * Gets the applyActions * Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. * * @return AccessReviewApplyAction|null The applyActions */ public function getApplyActions() { if (array_key_exists("applyActions", $this->_propDict)) { if (is_a($this->_propDict["applyActions"], "\Microsoft\Graph\Model\AccessReviewApplyAction") || is_null($this->_propDict["applyActions"])) { return $this->_propDict["applyActions"]; } else { $this->_propDict["applyActions"] = new AccessReviewApplyAction($this->_propDict["applyActions"]); return $this->_propDict["applyActions"]; } } return null; } /** * Sets the applyActions * Optional field. Describes the actions to take once a review is complete. There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction. Field only needs to be specified in the case of disableAndDeleteUserApplyAction. * * @param AccessReviewApplyAction $val The value to assign to the applyActions * * @return AccessReviewScheduleSettings The AccessReviewScheduleSettings */ public function setApplyActions($val) { $this->_propDict["applyActions"] = $val; return $this; } /** * Gets the autoApplyDecisionsEnabled * Indicates whether decisions are automatically applied. When set to false, an admin must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false. * * @return bool|null The autoApplyDecisionsEnabled */ public function getAutoApplyDecisionsEnabled() { if (array_key_exists("autoApplyDecisionsEnabled", $this->_propDict)) { return $this->_propDict["autoApplyDecisionsEnabled"]; } else { return null; } } /** * Sets the autoApplyDecisionsEnabled * Indicates whether decisions are automatically applied. When set to false, an admin must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false. * * @param bool $val The value of the autoApplyDecisionsEnabled * * @return AccessReviewScheduleSettings */ public function setAutoApplyDecisionsEnabled($val) { $this->_propDict["autoApplyDecisionsEnabled"] = $val; return $this; } /** * Gets the decisionHistoriesForReviewersEnabled * Indicates whether decisions on previous access review stages are available for reviewers on an accessReviewInstance with multiple subsequent stages. If not provided, the default is disabled (false). * * @return bool|null The decisionHistoriesForReviewersEnabled */ public function getDecisionHistoriesForReviewersEnabled() { if (array_key_exists("decisionHistoriesForReviewersEnabled", $this->_propDict)) { return $this->_propDict["decisionHistoriesForReviewersEnabled"]; } else { return null; } } /** * Sets the decisionHistoriesForReviewersEnabled * Indicates whether decisions on previous access review stages are available for reviewers on an accessReviewInstance with multiple subsequent stages. If not provided, the default is disabled (false). * * @param bool $val The value of the decisionHistoriesForReviewersEnabled * * @return AccessReviewScheduleSettings */ public function setDecisionHistoriesForReviewersEnabled($val) { $this->_propDict["decisionHistoriesForReviewersEnabled"] = $val; return $this; } /** * Gets the defaultDecision * Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation. * * @return string|null The defaultDecision */ public function getDefaultDecision() { if (array_key_exists("defaultDecision", $this->_propDict)) { return $this->_propDict["defaultDecision"]; } else { return null; } } /** * Sets the defaultDecision * Decision chosen if defaultDecisionEnabled is enabled. Can be one of Approve, Deny, or Recommendation. * * @param string $val The value of the defaultDecision * * @return AccessReviewScheduleSettings */ public function setDefaultDecision($val) { $this->_propDict["defaultDecision"] = $val; return $this; } /** * Gets the defaultDecisionEnabled * Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. * * @return bool|null The defaultDecisionEnabled */ public function getDefaultDecisionEnabled() { if (array_key_exists("defaultDecisionEnabled", $this->_propDict)) { return $this->_propDict["defaultDecisionEnabled"]; } else { return null; } } /** * Sets the defaultDecisionEnabled * Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. * * @param bool $val The value of the defaultDecisionEnabled * * @return AccessReviewScheduleSettings */ public function setDefaultDecisionEnabled($val) { $this->_propDict["defaultDecisionEnabled"] = $val; return $this; } /** * Gets the instanceDurationInDays * Duration of each recurrence of review (accessReviewInstance) in number of days. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its durationInDays setting will be used instead of the value of this property. * * @return int|null The instanceDurationInDays */ public function getInstanceDurationInDays() { if (array_key_exists("instanceDurationInDays", $this->_propDict)) { return $this->_propDict["instanceDurationInDays"]; } else { return null; } } /** * Sets the instanceDurationInDays * Duration of each recurrence of review (accessReviewInstance) in number of days. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its durationInDays setting will be used instead of the value of this property. * * @param int $val The value of the instanceDurationInDays * * @return AccessReviewScheduleSettings */ public function setInstanceDurationInDays($val) { $this->_propDict["instanceDurationInDays"] = $val; return $this; } /** * Gets the justificationRequiredOnApproval * Indicates whether reviewers are required to provide justification with their decision. Default value is false. * * @return bool|null The justificationRequiredOnApproval */ public function getJustificationRequiredOnApproval() { if (array_key_exists("justificationRequiredOnApproval", $this->_propDict)) { return $this->_propDict["justificationRequiredOnApproval"]; } else { return null; } } /** * Sets the justificationRequiredOnApproval * Indicates whether reviewers are required to provide justification with their decision. Default value is false. * * @param bool $val The value of the justificationRequiredOnApproval * * @return AccessReviewScheduleSettings */ public function setJustificationRequiredOnApproval($val) { $this->_propDict["justificationRequiredOnApproval"] = $val; return $this; } /** * Gets the mailNotificationsEnabled * Indicates whether emails are enabled or disabled. Default value is false. * * @return bool|null The mailNotificationsEnabled */ public function getMailNotificationsEnabled() { if (array_key_exists("mailNotificationsEnabled", $this->_propDict)) { return $this->_propDict["mailNotificationsEnabled"]; } else { return null; } } /** * Sets the mailNotificationsEnabled * Indicates whether emails are enabled or disabled. Default value is false. * * @param bool $val The value of the mailNotificationsEnabled * * @return AccessReviewScheduleSettings */ public function setMailNotificationsEnabled($val) { $this->_propDict["mailNotificationsEnabled"] = $val; return $this; } /** * Gets the recommendationsEnabled * Indicates whether decision recommendations are enabled or disabled. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationsEnabled setting will be used instead of the value of this property. * * @return bool|null The recommendationsEnabled */ public function getRecommendationsEnabled() { if (array_key_exists("recommendationsEnabled", $this->_propDict)) { return $this->_propDict["recommendationsEnabled"]; } else { return null; } } /** * Sets the recommendationsEnabled * Indicates whether decision recommendations are enabled or disabled. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationsEnabled setting will be used instead of the value of this property. * * @param bool $val The value of the recommendationsEnabled * * @return AccessReviewScheduleSettings */ public function setRecommendationsEnabled($val) { $this->_propDict["recommendationsEnabled"] = $val; return $this; } /** * Gets the recurrence * Detailed settings for recurrence using the standard Outlook recurrence object. Note: Only dayOfMonth, interval, and type (weekly, absoluteMonthly) properties are supported. Use the property startDate on recurrenceRange to determine the day the review starts. * * @return PatternedRecurrence|null The recurrence */ public function getRecurrence() { if (array_key_exists("recurrence", $this->_propDict)) { if (is_a($this->_propDict["recurrence"], "\Microsoft\Graph\Model\PatternedRecurrence") || is_null($this->_propDict["recurrence"])) { return $this->_propDict["recurrence"]; } else { $this->_propDict["recurrence"] = new PatternedRecurrence($this->_propDict["recurrence"]); return $this->_propDict["recurrence"]; } } return null; } /** * Sets the recurrence * Detailed settings for recurrence using the standard Outlook recurrence object. Note: Only dayOfMonth, interval, and type (weekly, absoluteMonthly) properties are supported. Use the property startDate on recurrenceRange to determine the day the review starts. * * @param PatternedRecurrence $val The value to assign to the recurrence * * @return AccessReviewScheduleSettings The AccessReviewScheduleSettings */ public function setRecurrence($val) { $this->_propDict["recurrence"] = $val; return $this; } /** * Gets the reminderNotificationsEnabled * Indicates whether reminders are enabled or disabled. Default value is false. * * @return bool|null The reminderNotificationsEnabled */ public function getReminderNotificationsEnabled() { if (array_key_exists("reminderNotificationsEnabled", $this->_propDict)) { return $this->_propDict["reminderNotificationsEnabled"]; } else { return null; } } /** * Sets the reminderNotificationsEnabled * Indicates whether reminders are enabled or disabled. Default value is false. * * @param bool $val The value of the reminderNotificationsEnabled * * @return AccessReviewScheduleSettings */ public function setReminderNotificationsEnabled($val) { $this->_propDict["reminderNotificationsEnabled"] = $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]