├── .editorconfig ├── .env.example ├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml └── workflows │ └── python-app.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README-dev.md ├── README.md ├── examples ├── README.md ├── auth │ ├── README.md │ ├── delegated.txt │ ├── gcc_high.py │ ├── interactive.py │ ├── interactive_custom.py │ ├── sharepoint │ │ ├── interactive.py │ │ ├── interactive_custom.py │ │ ├── list_permissions.py │ │ └── register_apponly.py │ ├── with_adal.py │ ├── with_client_cert.py │ ├── with_client_secret.py │ ├── with_client_secret_custom.py │ ├── with_user_creds.py │ └── with_user_creds_custom.py ├── data │ ├── Financial Sample.csv │ ├── Financial Sample.xlsx │ ├── Office_365_logo.png │ ├── Sample.html │ ├── Sample.pdf │ ├── SharePoint User Guide.docx │ ├── countries.json │ ├── office-logo-icon.jpg │ ├── reports │ │ └── report.csv │ └── templates │ │ ├── Expense trends budget.xlsx │ │ ├── Monthly budget tracker.xlsx │ │ ├── Simple invoice that calculates total.xlsx │ │ └── Weight loss tracker.xlsx ├── directory │ ├── applications │ │ ├── add_cert.py │ │ ├── app_password.py │ │ ├── find_consent_grants.py │ │ ├── get_by_app_id.py │ │ ├── grant_application_perms.py │ │ ├── grant_delegated_perms.py │ │ ├── has_application_perms.py │ │ ├── has_delegated_perms.py │ │ ├── list_application_perms.py │ │ ├── list_delegated_perms.py │ │ ├── revoke_application_perms.py │ │ └── revoke_delegated_perms.py │ ├── groups │ │ ├── create_m365.py │ │ ├── create_with_team.py │ │ ├── delete_batch.py │ │ ├── delete_groups.py │ │ └── list.py │ ├── identity │ │ └── list_provider.py │ ├── policies │ │ └── get_auth_settings.py │ ├── roles │ │ ├── for_user.py │ │ └── list.py │ └── users │ │ ├── assign_manager.py │ │ ├── disable_mfa.py │ │ ├── export_personal_data.py │ │ ├── get_licenses.py │ │ ├── get_my_activities.py │ │ ├── import.py │ │ ├── list.py │ │ ├── list_app_role_assignments.py │ │ ├── update.py │ │ └── update_batch.py ├── insights │ ├── list_shared.py │ └── list_used.py ├── onedrive │ ├── README.md │ ├── columns │ │ ├── create_lookup.py │ │ ├── create_text.py │ │ └── list_site.py │ ├── driveitems │ │ └── get_library_items.py │ ├── drives │ │ ├── get_by_path.py │ │ ├── get_for_user.py │ │ ├── list.py │ │ ├── list_followed_items.py │ │ ├── list_recent_files.py │ │ └── list_shared_with_me.py │ ├── excel │ │ ├── get_cell.py │ │ ├── list_worksheets.py │ │ ├── read_range.py │ │ └── read_table.py │ ├── files │ │ ├── copy_file.py │ │ ├── create_sharing_link.py │ │ ├── download.py │ │ ├── download_large.py │ │ ├── get_by_abs_url.py │ │ ├── get_details.py │ │ ├── get_permissions.py │ │ ├── list_versions.py │ │ ├── move_file.py │ │ ├── search.py │ │ ├── send_sharing_invitation.py │ │ ├── upload.py │ │ └── upload_large.py │ ├── folders │ │ ├── create.py │ │ ├── download.py │ │ ├── download_custom.py │ │ ├── export.py │ │ ├── get_by_path.py │ │ ├── list_files.py │ │ ├── list_folders.py │ │ ├── list_with_files.py │ │ ├── upload.py │ │ └── upload_custom.py │ ├── lists │ │ ├── create_list.py │ │ ├── get_props.py │ │ └── list_in_site.py │ ├── powerpoint │ │ └── create.py │ ├── sitepages │ │ ├── create.py │ │ └── list.py │ ├── sites │ │ ├── get_all.py │ │ ├── get_by_url.py │ │ ├── grant_permission.py │ │ ├── list_permissions.py │ │ ├── list_sites.py │ │ ├── revoke_permission.py │ │ └── search.py │ ├── termstore │ │ ├── export_term_store.py │ │ └── get_sets.py │ └── workbook │ │ ├── populate_template.py │ │ ├── read_workbook.py │ │ └── work_with_excel.py ├── onenote │ ├── create_notebook.py │ ├── create_page.py │ ├── list_notebooks.py │ └── list_pages.py ├── outlook │ ├── README.md │ ├── calendars │ │ ├── find_meeting_times.py │ │ ├── get_schedule.py │ │ ├── list_my.py │ │ └── share_with.py │ ├── events │ │ ├── create.py │ │ ├── delete.py │ │ └── list.py │ └── messages │ │ ├── create_draft.py │ │ ├── create_draft_with_attachments.py │ │ ├── create_property.py │ │ ├── create_subscription.py │ │ ├── download.py │ │ ├── download_with_attachments.py │ │ ├── empty_folder.py │ │ ├── get_basic_props.py │ │ ├── get_with_body.py │ │ ├── list_all.py │ │ ├── list_attachments.py │ │ ├── list_new.py │ │ ├── mark_all_as_read.py │ │ ├── mark_as_read.py │ │ ├── move.py │ │ ├── reply.py │ │ ├── search.py │ │ ├── search_custom.py │ │ ├── send.py │ │ ├── send_html.py │ │ ├── send_with_attachment.py │ │ ├── send_with_large_attachment.py │ │ └── update.py ├── planner │ ├── create_plan.py │ └── create_task.py ├── reports │ ├── get_app_user_counts.py │ └── get_user_mfa_status.py ├── security │ └── run_hunting_query.py ├── sharepoint │ ├── ConnectionWithCert.md │ ├── README.md │ ├── alm │ │ ├── README.md │ │ └── react-banner.sppkg │ ├── apps │ │ └── list_apps.py │ ├── audit │ │ └── __init__.py │ ├── auth │ │ ├── AppPermissionRequests.xml │ │ ├── capture_cookies_with_playwright.py │ │ ├── with_app_only.py │ │ ├── with_app_principal_aad.py │ │ ├── with_certificate.py │ │ ├── with_certificate_adal.py │ │ ├── with_certificate_passphrase.py │ │ ├── with_certificate_private_key.py │ │ ├── with_certificate_scopes.py │ │ ├── with_device_flow.py │ │ ├── with_interactive.py │ │ └── with_user_credential.py │ ├── auth_cookies.py │ ├── contenttypes │ │ ├── create.py │ │ ├── delete.py │ │ └── get_by_name.py │ ├── disable_ssl.py │ ├── features │ │ ├── activate_site.py │ │ └── ensure_activated.py │ ├── fields │ │ ├── copy_field.py │ │ ├── create_calculated.py │ │ ├── create_choice.py │ │ ├── create_date.py │ │ ├── create_lookup.py │ │ ├── create_taxonomy.py │ │ ├── get_from_list.py │ │ └── get_from_web.py │ ├── files │ │ ├── copy_file.py │ │ ├── copy_file_with_name.py │ │ ├── copy_using_path.py │ │ ├── create_anonymous_link.py │ │ ├── create_excel.py │ │ ├── create_wiki.py │ │ ├── create_word.py │ │ ├── delete.py │ │ ├── download.py │ │ ├── download_by_shared_link.py │ │ ├── download_deprecated.py │ │ ├── download_from_lib.py │ │ ├── download_from_url.py │ │ ├── download_large.py │ │ ├── download_recent.py │ │ ├── download_versions.py │ │ ├── exists.py │ │ ├── get_all_items.py │ │ ├── get_by_sharing_link.py │ │ ├── get_checked_out.py │ │ ├── get_checkout_type.py │ │ ├── get_content.py │ │ ├── get_download_link.py │ │ ├── get_extended_props.py │ │ ├── get_props.py │ │ ├── get_sharing_info.py │ │ ├── get_system_metadata.py │ │ ├── move_file.py │ │ ├── permissions │ │ │ ├── assign.py │ │ │ ├── check.py │ │ │ ├── get.py │ │ │ └── list.py │ │ ├── rename_page.py │ │ ├── replace.py │ │ ├── share.py │ │ ├── upload.py │ │ ├── upload_csv.py │ │ ├── upload_json.py │ │ ├── upload_large.py │ │ ├── upload_with_checksum.py │ │ └── versions │ │ │ ├── get_by_label.py │ │ │ └── list.py │ ├── folders │ │ ├── copy_folder.py │ │ ├── copy_folder_using_path.py │ │ ├── create.py │ │ ├── create_doc_set.py │ │ ├── create_if_not_exist.py │ │ ├── create_with_color.py │ │ ├── delete.py │ │ ├── download.py │ │ ├── download_as_zip.py │ │ ├── folder_exists.py │ │ ├── folder_exists_v2.py │ │ ├── get_by_path.py │ │ ├── get_by_shared_link.py │ │ ├── get_files.py │ │ ├── get_props.py │ │ ├── get_system_metadata.py │ │ ├── list_files.py │ │ ├── list_folders.py │ │ ├── list_folders_custom.py │ │ ├── move.py │ │ ├── move_alt.py │ │ ├── rename.py │ │ ├── set_properties.py │ │ ├── share.py │ │ └── share_with_external_user.py │ ├── groups │ │ ├── add_remove.py │ │ └── expand_to_principals.py │ ├── hubsites │ │ └── list_my.py │ ├── listitems │ │ ├── attachments │ │ │ ├── delete.py │ │ │ ├── download.py │ │ │ ├── download_per_attachment.py │ │ │ ├── list.py │ │ │ └── upload.py │ │ ├── copy_items.py │ │ ├── create.py │ │ ├── create_batch.py │ │ ├── delete.py │ │ ├── delete_batch.py │ │ ├── export_to_csv.py │ │ ├── filter.py │ │ ├── filter_by_filename.py │ │ ├── filter_by_folder.py │ │ ├── get_deleted.py │ │ ├── get_grouped.py │ │ ├── get_lookup_field_value.py │ │ ├── query_throttle.py │ │ ├── read.py │ │ ├── read_include_props.py │ │ ├── read_include_user.py │ │ ├── read_list_via_query_alt.py │ │ ├── read_with_props_alt.py │ │ ├── set_datetime_field_value.py │ │ ├── set_image_field_value.py │ │ ├── set_lookup_field_value.py │ │ ├── system_update.py │ │ ├── system_update_alt.py │ │ ├── update.py │ │ ├── update_batch.py │ │ └── versions │ │ │ └── list.py │ ├── lists │ │ ├── assessment │ │ │ └── broken_tax_field_value.py │ │ ├── clear.py │ │ ├── create.py │ │ ├── delete.py │ │ ├── export_list.py │ │ ├── filter.py │ │ ├── get_changes.py │ │ ├── get_data_as_stream.py │ │ ├── import_lib.py │ │ ├── import_list.py │ │ ├── read_all.py │ │ ├── read_items_with_caml_query.py │ │ ├── read_items_with_filter.py │ │ ├── read_lib_size.py │ │ ├── read_paged.py │ │ ├── read_properties.py │ │ ├── read_schema.py │ │ ├── save_as_template.py │ │ └── show_hide_columns.py │ ├── load_web_fluent_api.py │ ├── migration │ │ └── scanner.py │ ├── navigation │ │ └── list_top_nav.py │ ├── pages │ │ ├── create.py │ │ ├── create_and_publish.py │ │ ├── get_by_name.py │ │ ├── get_content.py │ │ └── list.py │ ├── permissions │ │ ├── get_for_file.py │ │ ├── get_for_list.py │ │ ├── get_for_site.py │ │ ├── grant_to_web.py │ │ └── revoke_from_web.py │ ├── print_server_settings.py │ ├── print_version.py │ ├── pushnotifications │ │ └── configure.py │ ├── read_resource_no_model.py │ ├── requirements.txt │ ├── run_test_perf.py │ ├── run_test_rate_limit.py │ ├── search │ │ ├── export_reports.py │ │ ├── search_documents.py │ │ ├── search_simple.py │ │ ├── search_site_only.py │ │ ├── search_sites.py │ │ └── search_sort_list.py │ ├── set_proxy.py │ ├── sharing │ │ ├── create_anon_link.py │ │ ├── get_folder_sharing_info.py │ │ ├── share_file.py │ │ ├── share_file_org.py │ │ ├── share_file_with_password.py │ │ ├── share_folder.py │ │ └── share_web.py │ ├── sitedesigns │ │ └── __init__.py │ ├── sites │ │ ├── create_classic.py │ │ ├── create_comm.py │ │ ├── create_comm_site_with_owner.py │ │ ├── create_team.py │ │ ├── download_logo.py │ │ ├── get_admins.py │ │ ├── get_basic_props.py │ │ ├── get_my_site.py │ │ ├── get_status.py │ │ └── grant_app_access.py │ ├── sitescripts │ │ ├── create.py │ │ ├── get_from_list.py │ │ └── get_from_web.py │ ├── taxonomy │ │ ├── create_field.py │ │ ├── export_term_store.py │ │ ├── get_field_value.py │ │ ├── get_group_by_name.py │ │ ├── get_term_by_id.py │ │ ├── get_term_set.py │ │ ├── get_term_store_info.py │ │ ├── search_term.py │ │ └── set_field_value.py │ ├── teams │ │ └── list_my.py │ ├── tenant │ │ ├── allow_custom_script.py │ │ ├── change_sharing_capability.py │ │ ├── check_licenses.py │ │ ├── enable_app_only_authentication.py │ │ ├── export_tenant_settings.py │ │ ├── get_all_sites.py │ │ ├── get_home_sites.py │ │ ├── get_my_sites.py │ │ ├── get_site.py │ │ ├── get_site_admin.py │ │ ├── print_tenant_settings.py │ │ └── set_site_admin.py │ ├── userprofile │ │ ├── export.py │ │ ├── get_followers.py │ │ └── get_properties.py │ ├── users │ │ ├── add_to_web.py │ │ ├── get_for_site.py │ │ ├── get_my_site.py │ │ ├── get_onedrive_quota_max.py │ │ ├── list_site_users.py │ │ ├── search_tenant_users.py │ │ └── whoami.py │ ├── views │ │ ├── export_items.py │ │ ├── export_view.py │ │ ├── read_custom.py │ │ └── read_default.py │ └── webs │ │ ├── clear_web.py │ │ ├── enable_doc_id.py │ │ ├── get_activities.py │ │ ├── get_all.py │ │ ├── get_changes.py │ │ ├── get_from_abs_url.py │ │ ├── get_lists.py │ │ ├── get_props.py │ │ ├── get_regional_settings.py │ │ └── get_roles.py └── teams │ ├── README.md │ ├── create_from_group.py │ ├── create_team.py │ ├── does_user_have_access.py │ ├── list_all.py │ ├── list_my_teams.py │ └── send_message.py ├── generator ├── __init__.py ├── builders │ ├── __init__.py │ ├── method_builder.py │ ├── property_builder.py │ ├── template_context.py │ └── type_builder.py ├── generate_model.py ├── import_metadata.py ├── metadata │ ├── Graph.xml │ ├── SharePoint.xml │ └── SharePoint2_1.xml ├── requirements.txt ├── settings.cfg └── templates │ ├── __init__.py │ ├── complex_type.py │ └── entity_type.py ├── office365 ├── __init__.py ├── admin │ ├── __init__.py │ ├── admin.py │ ├── microsoft365_apps.py │ ├── people_settings.py │ ├── report_settings.py │ ├── sharepoint.py │ ├── sharepoint_settings.py │ └── sharing_capabilities.py ├── azure_env.py ├── backuprestore │ ├── __init__.py │ ├── protection │ │ ├── __init__.py │ │ └── rule_base.py │ ├── root.py │ └── service_status.py ├── booking │ ├── __init__.py │ ├── appointment.py │ ├── business │ │ ├── __init__.py │ │ ├── business.py │ │ └── collection.py │ ├── currency.py │ ├── custom_question.py │ ├── customers │ │ ├── __init__.py │ │ └── base.py │ ├── service.py │ ├── solutions │ │ ├── __init__.py │ │ └── root.py │ ├── staff │ │ ├── __init__.py │ │ ├── availability_item.py │ │ ├── member.py │ │ └── member_base.py │ ├── work_hours.py │ └── work_time_slot.py ├── communications │ ├── __init__.py │ ├── callrecords │ │ ├── __init__.py │ │ ├── call_record.py │ │ ├── collection.py │ │ ├── direct_routing_log_row.py │ │ ├── endpoint.py │ │ ├── segment.py │ │ └── session.py │ ├── calls │ │ ├── __init__.py │ │ ├── call.py │ │ ├── collection.py │ │ ├── incoming_context.py │ │ ├── invitation_participant_info.py │ │ ├── options.py │ │ ├── participant.py │ │ ├── participant_info.py │ │ ├── route.py │ │ └── transcript.py │ ├── cloud_communications.py │ ├── meetings │ │ ├── __init__.py │ │ ├── info.py │ │ └── join_meeting_id_info.py │ ├── onlinemeetings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── broadcast_settings.py │ │ ├── collection.py │ │ ├── online_meeting.py │ │ ├── participant_info.py │ │ ├── participants.py │ │ ├── provider_type.py │ │ ├── recordings │ │ │ ├── __init__.py │ │ │ └── call.py │ │ ├── restricted.py │ │ └── transcripts │ │ │ └── __init__.py │ ├── operations │ │ ├── __init__.py │ │ ├── cancel_media_processing.py │ │ ├── comms.py │ │ ├── invite_participants.py │ │ ├── start_hold_music.py │ │ ├── stop_hold_music.py │ │ ├── unmute_participant.py │ │ └── update_recording_status.py │ ├── presences │ │ ├── __init__.py │ │ ├── presence.py │ │ └── status_message.py │ ├── result_info.py │ └── virtualevents │ │ ├── __init__.py │ │ ├── presenter.py │ │ ├── root.py │ │ ├── session.py │ │ ├── settings.py │ │ ├── townhall.py │ │ ├── virtual_event.py │ │ └── webinar.py ├── copilot │ ├── __init__.py │ ├── admin.py │ └── root.py ├── count_collection.py ├── delta_collection.py ├── delta_path.py ├── directory │ ├── __init__.py │ ├── administrative_unit.py │ ├── applications │ │ ├── __init__.py │ │ ├── api.py │ │ ├── app_identity.py │ │ ├── app_ids.py │ │ ├── application.py │ │ ├── collection.py │ │ ├── optional_claim.py │ │ ├── optional_claims.py │ │ ├── public_client.py │ │ ├── required_resource_access.py │ │ ├── resource_access.py │ │ ├── roles │ │ │ ├── __init__.py │ │ │ ├── assignment.py │ │ │ ├── assignment_collection.py │ │ │ ├── collection.py │ │ │ └── role.py │ │ ├── service_principal.py │ │ ├── spa.py │ │ ├── synchronization │ │ │ ├── __init__.py │ │ │ ├── jobs │ │ │ │ └── __init__.py │ │ │ └── templates │ │ │ │ └── __init__.py │ │ ├── template.py │ │ └── web.py │ ├── audit │ │ ├── __init__.py │ │ ├── activity_initiator.py │ │ ├── directory.py │ │ ├── log_root.py │ │ ├── provisioning │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── object_summary.py │ │ │ └── service_principal.py │ │ ├── signins │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── location.py │ │ │ ├── signin.py │ │ │ └── status.py │ │ └── target_resource.py │ ├── authentication │ │ ├── __init__.py │ │ ├── authentication.py │ │ ├── basic.py │ │ ├── client_certificate.py │ │ ├── conditions │ │ │ ├── __init__.py │ │ │ ├── application.py │ │ │ ├── applications.py │ │ │ ├── conditions.py │ │ │ └── event_listener.py │ │ ├── configuration_base.py │ │ ├── method_configuration.py │ │ ├── method_mode_detail.py │ │ ├── method_target.py │ │ ├── methods │ │ │ ├── __init__.py │ │ │ ├── details.py │ │ │ ├── email.py │ │ │ ├── fido.py │ │ │ ├── method.py │ │ │ ├── microsoft_authenticator.py │ │ │ ├── password.py │ │ │ ├── phone.py │ │ │ ├── root.py │ │ │ ├── sms.py │ │ │ └── sms_target.py │ │ ├── password_reset_response.py │ │ ├── strength_root.py │ │ └── strength_usage.py │ ├── certificates │ │ ├── __init__.py │ │ ├── auth_configuration.py │ │ ├── authority.py │ │ ├── certification.py │ │ ├── pkcs12_information.py │ │ ├── public_key_infrastructure_root.py │ │ └── self_signed.py │ ├── custom_security_attribute_definition.py │ ├── datapolicy │ │ ├── __init__.py │ │ └── operation.py │ ├── delegatedadmin │ │ ├── __init__.py │ │ └── relationship.py │ ├── device_local_credential_info.py │ ├── directory.py │ ├── domains │ │ ├── __init__.py │ │ ├── dns_cname_record.py │ │ ├── dns_record.py │ │ ├── domain.py │ │ ├── state.py │ │ └── verified.py │ ├── extensions │ │ ├── __init__.py │ │ ├── extended_property.py │ │ ├── extension.py │ │ ├── extension_property.py │ │ ├── open_type.py │ │ ├── schema.py │ │ └── schema_property.py │ ├── groups │ │ ├── __init__.py │ │ ├── assigned_label.py │ │ ├── collection.py │ │ ├── group.py │ │ ├── lifecycle_policy.py │ │ ├── profile.py │ │ ├── setting.py │ │ └── setting_template.py │ ├── identities │ │ ├── __init__.py │ │ ├── api_connector.py │ │ ├── conditional_access_root.py │ │ ├── container.py │ │ ├── named_location.py │ │ ├── object_identity.py │ │ ├── provider.py │ │ ├── provider_collection.py │ │ ├── providers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── base_collection.py │ │ │ ├── builtin_identity.py │ │ │ ├── saml_or_wsfed.py │ │ │ └── social_identity.py │ │ └── userflows │ │ │ ├── __init__.py │ │ │ ├── attribute.py │ │ │ ├── b2x │ │ │ ├── __init__.py │ │ │ └── user_flow.py │ │ │ ├── language_configuration.py │ │ │ ├── language_page.py │ │ │ ├── user_attribute_assignment.py │ │ │ └── user_flow.py │ ├── identitygovernance │ │ ├── __init__.py │ │ ├── accessreview │ │ │ ├── __init__.py │ │ │ ├── history │ │ │ │ ├── __init__.py │ │ │ │ └── definition.py │ │ │ ├── instance.py │ │ │ ├── schedule │ │ │ │ ├── __init__.py │ │ │ │ └── settings.py │ │ │ ├── scope.py │ │ │ ├── set.py │ │ │ ├── stage.py │ │ │ └── stages.py │ │ ├── appconsent │ │ │ ├── __init__.py │ │ │ ├── approval_route.py │ │ │ ├── request.py │ │ │ ├── request_collection.py │ │ │ └── request_scope.py │ │ ├── entitlementmanagement │ │ │ ├── __init__.py │ │ │ ├── accesspackage │ │ │ │ ├── __init__.py │ │ │ │ ├── catalog.py │ │ │ │ └── resource_request.py │ │ │ └── entitlement_management.py │ │ ├── governance.py │ │ ├── lifecycleworkflows │ │ │ └── __init__.py │ │ ├── privilegedaccess │ │ │ ├── __init__.py │ │ │ ├── approval.py │ │ │ ├── group.py │ │ │ ├── root.py │ │ │ ├── schedule │ │ │ │ ├── __init__.py │ │ │ │ ├── group_assignment_instance.py │ │ │ │ ├── instance.py │ │ │ │ └── schedule.py │ │ │ └── unified_role_assignment_schedule_request.py │ │ ├── termsofuse │ │ │ ├── __init__.py │ │ │ ├── agreement.py │ │ │ ├── agreement_acceptance.py │ │ │ └── container.py │ │ ├── userconsent │ │ │ ├── __init__.py │ │ │ ├── request.py │ │ │ └── request_collection.py │ │ └── workflow │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── custom_callout_extension.py │ │ │ └── template.py │ ├── insights │ │ ├── __init__.py │ │ ├── identity.py │ │ ├── office_graph.py │ │ ├── resource_reference.py │ │ ├── shared.py │ │ ├── sharing_detail.py │ │ ├── trending.py │ │ ├── usage_details.py │ │ └── used.py │ ├── internal │ │ ├── __init__.py │ │ └── paths │ │ │ ├── __init__.py │ │ │ └── me.py │ ├── invitations │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── invitation.py │ │ └── message_info.py │ ├── key_credential.py │ ├── licenses │ │ ├── __init__.py │ │ ├── assigned_license.py │ │ ├── assigned_plan.py │ │ ├── assignment_state.py │ │ ├── details.py │ │ ├── processing_state.py │ │ ├── service_plan_info.py │ │ ├── subscribed_sku.py │ │ └── units_detail.py │ ├── object.py │ ├── object_collection.py │ ├── password_credential.py │ ├── permissions │ │ ├── __init__.py │ │ ├── default_user_role.py │ │ ├── email_identity.py │ │ ├── grants │ │ │ ├── __init__.py │ │ │ ├── condition_set.py │ │ │ ├── oauth2.py │ │ │ └── resource_specific.py │ │ ├── identity.py │ │ ├── identity_set.py │ │ ├── scope.py │ │ └── scoped_role_membership.py │ ├── policies │ │ ├── __init__.py │ │ ├── admin_consent_request.py │ │ ├── app_management.py │ │ ├── applied_conditional_access.py │ │ ├── authentication_flows.py │ │ ├── authentication_methods.py │ │ ├── authentication_strength.py │ │ ├── authorization.py │ │ ├── base.py │ │ ├── conditional_access.py │ │ ├── cross_tenant_access.py │ │ ├── device_registration.py │ │ ├── feature_rollout.py │ │ ├── permission_grant.py │ │ ├── root.py │ │ ├── sts.py │ │ ├── template.py │ │ ├── tenant_app_management.py │ │ ├── token_issuance.py │ │ ├── unified_role_management.py │ │ └── update_allowed_combinations_result.py │ ├── profile_photo.py │ ├── protection │ │ ├── __init__.py │ │ ├── information.py │ │ ├── policy │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── one_drive_for_business.py │ │ ├── risk_detection.py │ │ ├── riskyusers │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── collection.py │ │ │ ├── history_item.py │ │ │ ├── risk_detail.py │ │ │ └── risky_user.py │ │ ├── root.py │ │ └── threatassessment │ │ │ ├── __init__.py │ │ │ └── requests │ │ │ ├── __init__.py │ │ │ ├── email_file.py │ │ │ ├── file.py │ │ │ ├── mail.py │ │ │ ├── request.py │ │ │ └── url.py │ ├── rolemanagement │ │ ├── __init__.py │ │ ├── app_scope.py │ │ ├── application.py │ │ ├── management.py │ │ ├── resource_action.py │ │ ├── role.py │ │ ├── role_permission.py │ │ ├── template.py │ │ └── unifiedrole │ │ │ ├── __init__.py │ │ │ ├── assignment.py │ │ │ ├── definition.py │ │ │ └── permission.py │ ├── security │ │ ├── __init__.py │ │ ├── alerts │ │ │ ├── __init__.py │ │ │ ├── alert.py │ │ │ ├── collection.py │ │ │ ├── comment.py │ │ │ ├── evidence.py │ │ │ ├── file_security_state.py │ │ │ ├── history_state.py │ │ │ ├── malware_evidence.py │ │ │ ├── process_evidence.py │ │ │ └── status.py │ │ ├── artifact.py │ │ ├── attacksimulations │ │ │ ├── __init__.py │ │ │ ├── automation.py │ │ │ ├── automation_run.py │ │ │ ├── event.py │ │ │ ├── landing_page.py │ │ │ ├── operation.py │ │ │ ├── repeat_offender.py │ │ │ ├── report.py │ │ │ ├── report_overview.py │ │ │ ├── root.py │ │ │ ├── simulation.py │ │ │ ├── user.py │ │ │ ├── user_coverage.py │ │ │ └── users │ │ │ │ ├── __init__.py │ │ │ │ └── details.py │ │ ├── cases │ │ │ ├── __init__.py │ │ │ ├── ediscovery.py │ │ │ ├── operation.py │ │ │ └── root.py │ │ ├── data_source.py │ │ ├── hunting_query_results.py │ │ ├── hunting_row_result.py │ │ ├── incidents │ │ │ ├── __init__.py │ │ │ └── incident.py │ │ ├── labels │ │ │ ├── __init__.py │ │ │ ├── retention.py │ │ │ └── root.py │ │ ├── scorecontrol │ │ │ ├── __init__.py │ │ │ └── profile.py │ │ ├── securescores │ │ │ └── __init__.py │ │ ├── security.py │ │ ├── subjectrightsrequests │ │ │ ├── __init__.py │ │ │ ├── request.py │ │ │ └── stage_detail.py │ │ ├── threatintelligence │ │ │ ├── __init__.py │ │ │ ├── article_indicator.py │ │ │ ├── profile.py │ │ │ └── threat_intelligence.py │ │ └── triggers │ │ │ ├── __init__.py │ │ │ └── root.py │ ├── serviceprincipals │ │ ├── __init__.py │ │ ├── collection.py │ │ └── service_principal.py │ ├── subscriptions │ │ ├── __init__.py │ │ └── company.py │ ├── synchronization │ │ ├── __init__.py │ │ ├── attribute_mapping_function_schema.py │ │ ├── directory_definition.py │ │ ├── error.py │ │ ├── job.py │ │ ├── job_restart_criteria.py │ │ ├── progress.py │ │ ├── quarantine.py │ │ ├── schema.py │ │ ├── status.py │ │ ├── synchronization.py │ │ ├── task_execution.py │ │ └── template.py │ ├── tenantinformation │ │ ├── __init__.py │ │ ├── information.py │ │ ├── multi_organization.py │ │ └── relationship.py │ └── users │ │ ├── __init__.py │ │ ├── activities │ │ ├── __init__.py │ │ ├── activity.py │ │ ├── collection.py │ │ └── history_item.py │ │ ├── collection.py │ │ ├── identity.py │ │ ├── insights_settings.py │ │ ├── password_profile.py │ │ ├── profile.py │ │ ├── settings.py │ │ ├── storage.py │ │ └── user.py ├── education │ ├── __init__.py │ ├── class_type.py │ ├── root.py │ └── user.py ├── entity.py ├── entity_collection.py ├── graph_client.py ├── graph_request.py ├── intune │ ├── __init__.py │ ├── audit │ │ ├── __init__.py │ │ ├── actor.py │ │ ├── event.py │ │ ├── event_collection.py │ │ ├── property.py │ │ └── resource.py │ ├── brand.py │ ├── browser │ │ └── __init__.py │ ├── devices │ │ ├── __init__.py │ │ ├── alternative_security_id.py │ │ ├── app_management.py │ │ ├── category.py │ │ ├── collection.py │ │ ├── compliance │ │ │ ├── __init__.py │ │ │ ├── policy.py │ │ │ └── policy_state.py │ │ ├── configuration.py │ │ ├── data.py │ │ ├── detail.py │ │ ├── device.py │ │ ├── enrollment │ │ │ ├── __init__.py │ │ │ ├── configuration.py │ │ │ ├── configuration_assignment.py │ │ │ └── limit_configuration.py │ │ ├── managed.py │ │ ├── managed_app_diagnostic_status.py │ │ ├── managed_app_registration.py │ │ ├── managed_ebook.py │ │ └── management │ │ │ ├── __init__.py │ │ │ ├── management.py │ │ │ ├── reports │ │ │ ├── __init__.py │ │ │ └── reports.py │ │ │ ├── settings.py │ │ │ ├── terms_and_conditions.py │ │ │ └── virtual_endpoint.py │ ├── organizations │ │ ├── __init__.py │ │ ├── branding.py │ │ ├── branding_properties.py │ │ ├── contact.py │ │ └── organization.py │ ├── policies │ │ ├── __init__.py │ │ └── managed_app.py │ ├── printing │ │ ├── __init__.py │ │ ├── base.py │ │ ├── capabilities.py │ │ ├── connectors │ │ │ ├── __init__.py │ │ │ └── connector.py │ │ ├── operations │ │ │ └── __init__.py │ │ ├── print.py │ │ ├── printer.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── endpoint.py │ │ │ └── service.py │ │ ├── share.py │ │ ├── shares │ │ │ └── __init__.py │ │ └── taskdefinitions │ │ │ └── __init__.py │ ├── provisioned_plan.py │ ├── servicecommunications │ │ ├── __init__.py │ │ ├── announcement.py │ │ ├── announcement_base.py │ │ ├── health │ │ │ ├── __init__.py │ │ │ └── health.py │ │ ├── issues │ │ │ ├── __init__.py │ │ │ └── issue.py │ │ └── messages │ │ │ ├── __init__.py │ │ │ └── update.py │ ├── termsandconditions │ │ └── __init__.py │ └── vpp_token.py ├── logger.py ├── migration │ ├── __init__.py │ └── assessment │ │ ├── __init__.py │ │ └── scanners │ │ ├── __init__.py │ │ ├── base.py │ │ ├── list.py │ │ └── site.py ├── onedrive │ ├── __init__.py │ ├── analytics │ │ ├── __init__.py │ │ ├── item_action_stat.py │ │ ├── item_activity.py │ │ ├── item_activity_stat.py │ │ └── item_analytics.py │ ├── base_item.py │ ├── columns │ │ ├── __init__.py │ │ ├── boolean.py │ │ ├── calculated.py │ │ ├── choice.py │ │ ├── column_link.py │ │ ├── content_approval_status.py │ │ ├── currency.py │ │ ├── datetime.py │ │ ├── default_value.py │ │ ├── definition.py │ │ ├── definition_collection.py │ │ ├── display_name_localization.py │ │ ├── geolocation.py │ │ ├── hyperlink_or_picture.py │ │ ├── lookup.py │ │ ├── number.py │ │ ├── person_or_group.py │ │ ├── term.py │ │ ├── text.py │ │ ├── thumbnail.py │ │ ├── types.py │ │ └── validation.py │ ├── contenttypes │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── content_type.py │ │ ├── info.py │ │ └── order.py │ ├── documentsets │ │ ├── __init__.py │ │ ├── content.py │ │ ├── document_set.py │ │ ├── version.py │ │ └── version_item.py │ ├── driveitems │ │ ├── __init__.py │ │ ├── album.py │ │ ├── audio.py │ │ ├── bundle.py │ │ ├── conflict_behavior.py │ │ ├── driveItem.py │ │ ├── geo_coordinates.py │ │ ├── image.py │ │ ├── item_preview_info.py │ │ ├── photo.py │ │ ├── publication_facet.py │ │ ├── remote_item.py │ │ ├── retention_label.py │ │ ├── retention_label_settings.py │ │ ├── special_folder.py │ │ ├── system_facet.py │ │ ├── thumbnail.py │ │ ├── thumbnail_set.py │ │ ├── uploadable_properties.py │ │ └── video.py │ ├── drives │ │ ├── __init__.py │ │ ├── drive.py │ │ ├── quota.py │ │ └── recipient.py │ ├── files │ │ ├── __init__.py │ │ ├── file.py │ │ ├── hashes.py │ │ └── system_info.py │ ├── filestorage │ │ ├── __init__.py │ │ ├── container.py │ │ ├── container_collection.py │ │ └── file_storage.py │ ├── folders │ │ ├── __init__.py │ │ ├── folder.py │ │ └── view.py │ ├── idle_session_signout.py │ ├── internal │ │ ├── __init__.py │ │ ├── paths │ │ │ ├── __init__.py │ │ │ ├── children.py │ │ │ ├── root.py │ │ │ ├── shared.py │ │ │ ├── site.py │ │ │ └── url.py │ │ └── queries │ │ │ ├── __init__.py │ │ │ └── get_activities_by_interval.py │ ├── listitems │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── field_value_set.py │ │ ├── item_reference.py │ │ └── list_item.py │ ├── lists │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── info.py │ │ ├── list.py │ │ └── template_type.py │ ├── operations │ │ ├── __init__.py │ │ ├── long_running.py │ │ ├── pending.py │ │ ├── pending_content_update.py │ │ ├── public_error_detail.py │ │ └── rich_long_running.py │ ├── permissions │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── permission.py │ │ ├── sharepoint_identity.py │ │ ├── sharepoint_identity_set.py │ │ ├── sharing_invitation.py │ │ └── sharing_link.py │ ├── recyclebin │ │ ├── __init__.py │ │ ├── item.py │ │ ├── recyclebin.py │ │ └── settings.py │ ├── root.py │ ├── sensitivitylabels │ │ ├── __init__.py │ │ ├── assignment.py │ │ ├── assignment_method.py │ │ └── extract_result.py │ ├── sharepoint_ids.py │ ├── shares │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── drive_item.py │ │ └── shared.py │ ├── sitepages │ │ ├── __init__.py │ │ ├── base.py │ │ ├── canvas_layout.py │ │ ├── collection.py │ │ ├── sections │ │ │ ├── __init__.py │ │ │ ├── horizontal.py │ │ │ ├── horizontal_column.py │ │ │ └── vertical.py │ │ ├── site_page.py │ │ ├── title_area.py │ │ └── webparts │ │ │ ├── __init__.py │ │ │ ├── data.py │ │ │ ├── position.py │ │ │ ├── standard.py │ │ │ ├── text.py │ │ │ └── web_part.py │ ├── sites │ │ ├── __init__.py │ │ ├── archival_details.py │ │ ├── site.py │ │ ├── site_collection.py │ │ └── sites_with_root.py │ ├── storage │ │ ├── __init__.py │ │ └── storage.py │ ├── termstore │ │ ├── __init__.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── group.py │ │ │ └── scope.py │ │ ├── relation.py │ │ ├── sets │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── name.py │ │ │ └── set.py │ │ ├── store.py │ │ └── terms │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── description.py │ │ │ ├── label.py │ │ │ └── term.py │ ├── versions │ │ ├── __init__.py │ │ ├── base_item.py │ │ ├── drive_item.py │ │ └── list_item.py │ └── workbooks │ │ ├── __init__.py │ │ ├── applications │ │ ├── __init__.py │ │ └── application.py │ │ ├── charts │ │ ├── __init__.py │ │ ├── area_format.py │ │ ├── axes.py │ │ ├── axis.py │ │ ├── chart.py │ │ ├── collection.py │ │ ├── data_labels.py │ │ ├── fill.py │ │ ├── font.py │ │ ├── legend │ │ │ ├── __init__.py │ │ │ ├── format.py │ │ │ └── legend.py │ │ ├── point.py │ │ ├── series │ │ │ ├── __init__.py │ │ │ ├── format.py │ │ │ └── series.py │ │ ├── title.py │ │ └── title_format.py │ │ ├── comments │ │ ├── __init__.py │ │ ├── comment.py │ │ └── reply.py │ │ ├── filter.py │ │ ├── filter_criteria.py │ │ ├── functions │ │ ├── __init__.py │ │ ├── functions.py │ │ └── result.py │ │ ├── icon.py │ │ ├── names │ │ ├── __init__.py │ │ ├── collection.py │ │ └── named_item.py │ │ ├── operations │ │ ├── __init__.py │ │ ├── error.py │ │ └── workbook.py │ │ ├── ranges │ │ ├── __init__.py │ │ ├── border.py │ │ ├── fill.py │ │ ├── font.py │ │ ├── format.py │ │ ├── format_protection.py │ │ ├── range.py │ │ ├── reference.py │ │ ├── sort.py │ │ └── view.py │ │ ├── session_info.py │ │ ├── sort_field.py │ │ ├── tables │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── columns │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ └── column.py │ │ ├── pivot_table.py │ │ ├── pivot_table_collection.py │ │ ├── rows │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ └── row.py │ │ ├── sort.py │ │ └── table.py │ │ ├── workbook.py │ │ └── worksheets │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── protection.py │ │ ├── protection_options.py │ │ └── worksheet.py ├── onenote │ ├── __init__.py │ ├── entity_base_model.py │ ├── entity_hierarchy_model.py │ ├── entity_schema_object_model.py │ ├── internal │ │ ├── __init__.py │ │ └── multipart_page_query.py │ ├── notebooks │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── copy_notebook_model.py │ │ ├── notebook.py │ │ ├── recent.py │ │ └── recent_links.py │ ├── onenote.py │ ├── operations │ │ ├── __init__.py │ │ ├── onenote.py │ │ ├── onenote_operation_error.py │ │ ├── operation.py │ │ └── operation_status.py │ ├── pages │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── external_link.py │ │ ├── links.py │ │ ├── page.py │ │ └── preview_links.py │ ├── resources │ │ ├── __init__.py │ │ └── resource.py │ ├── sectiongroups │ │ ├── __init__.py │ │ └── section_group.py │ └── sections │ │ ├── __init__.py │ │ └── section.py ├── outlook │ ├── __init__.py │ ├── calendar │ │ ├── __init__.py │ │ ├── attendees │ │ │ ├── __init__.py │ │ │ ├── attendee.py │ │ │ ├── availability.py │ │ │ └── base.py │ │ ├── calendar.py │ │ ├── dateTimeTimeZone.py │ │ ├── email_address.py │ │ ├── events │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── event.py │ │ │ └── reminder.py │ │ ├── group.py │ │ ├── location_constraint.py │ │ ├── meetingtimes │ │ │ ├── __init__.py │ │ │ ├── activity_domain.py │ │ │ ├── suggestion.py │ │ │ ├── suggestions_result.py │ │ │ ├── time_constraint.py │ │ │ └── time_slot.py │ │ ├── permissions │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ └── permission.py │ │ ├── place.py │ │ ├── response_status.py │ │ ├── role_type.py │ │ ├── rooms │ │ │ ├── __init__.py │ │ │ ├── list.py │ │ │ └── room.py │ │ ├── schedule │ │ │ ├── __init__.py │ │ │ ├── information.py │ │ │ └── item.py │ │ ├── sharing │ │ │ ├── __init__.py │ │ │ └── message_action.py │ │ ├── sharing_message.py │ │ ├── timezones │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── custom.py │ │ └── working_hours.py │ ├── category.py │ ├── contacts │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── contact.py │ │ └── folder.py │ ├── convert_id_result.py │ ├── geo_coordinates.py │ ├── internal │ │ ├── __init__.py │ │ ├── paths │ │ │ └── __init__.py │ │ └── queries │ │ │ └── __init__.py │ ├── item.py │ ├── locale_info.py │ ├── mail │ │ ├── __init__.py │ │ ├── attachments │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── attachment_item.py │ │ │ ├── attachment_type.py │ │ │ ├── collection.py │ │ │ ├── file.py │ │ │ ├── item.py │ │ │ └── reference.py │ │ ├── automatic_replies_mailtips.py │ │ ├── automatic_replies_setting.py │ │ ├── body_type.py │ │ ├── conversation.py │ │ ├── conversation_thread.py │ │ ├── folders │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── folder.py │ │ │ └── search.py │ │ ├── importance.py │ │ ├── item_body.py │ │ ├── location.py │ │ ├── location_constraint_item.py │ │ ├── mailbox_settings.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── event_message.py │ │ │ ├── followup_flag.py │ │ │ ├── internet_header.py │ │ │ ├── message.py │ │ │ └── rules │ │ │ │ ├── __init__.py │ │ │ │ ├── actions.py │ │ │ │ ├── collection.py │ │ │ │ ├── predicates.py │ │ │ │ └── rule.py │ │ ├── patterned_recurrence.py │ │ ├── physical_address.py │ │ ├── post.py │ │ ├── recipient.py │ │ ├── recurrence_pattern.py │ │ ├── recurrence_range.py │ │ └── tips │ │ │ ├── __init__.py │ │ │ ├── error.py │ │ │ └── tips.py │ ├── people │ │ ├── __init__.py │ │ └── profile_card_property.py │ ├── person.py │ ├── timezone_information.py │ └── user.py ├── partners │ ├── __init__.py │ ├── billing │ │ ├── __init__.py │ │ ├── azure_usage.py │ │ ├── billed_usage.py │ │ ├── billing.py │ │ └── operation.py │ └── partners.py ├── planner │ ├── __init__.py │ ├── buckets │ │ ├── __init__.py │ │ └── bucket.py │ ├── category_descriptions.py │ ├── external_references.py │ ├── group.py │ ├── planner.py │ ├── plans │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── container.py │ │ ├── details.py │ │ └── plan.py │ ├── tasks │ │ ├── __init__.py │ │ ├── check_list_item.py │ │ ├── check_list_items.py │ │ ├── collection.py │ │ ├── task.py │ │ └── task_details.py │ ├── user.py │ └── user_ids.py ├── project │ ├── __init__.py │ └── project.py ├── reports │ ├── __init__.py │ ├── internal │ │ ├── __init__.py │ │ └── queries │ │ │ ├── __init__.py │ │ │ └── create_report_query.py │ ├── report.py │ ├── root.py │ ├── security │ │ ├── __init__.py │ │ └── root.py │ └── userregistration │ │ ├── __init__.py │ │ ├── feature_summary.py │ │ ├── method_count.py │ │ └── method_summary.py ├── runtime │ ├── __init__.py │ ├── auth │ │ ├── __init__.py │ │ ├── auth_cookies.py │ │ ├── authentication_context.py │ │ ├── authentication_provider.py │ │ ├── client_credential.py │ │ ├── credential_type.py │ │ ├── entra │ │ │ ├── __init__.py │ │ │ └── authentication_context.py │ │ ├── providers │ │ │ ├── __init__.py │ │ │ ├── acs_token_provider.py │ │ │ ├── cookie_provider.py │ │ │ ├── network_credential_provider.py │ │ │ ├── ntlm_provider.py │ │ │ ├── saml_token_provider.py │ │ │ └── templates │ │ │ │ ├── FederatedSAML.xml │ │ │ │ ├── RST2.xml │ │ │ │ ├── SAML.xml │ │ │ │ └── __init__.py │ │ ├── sts_profile.py │ │ ├── token_response.py │ │ ├── user_credential.py │ │ └── user_realm_info.py │ ├── client_object.py │ ├── client_object_collection.py │ ├── client_object_meta.py │ ├── client_request.py │ ├── client_request_exception.py │ ├── client_result.py │ ├── client_runtime_context.py │ ├── client_value.py │ ├── client_value_collection.py │ ├── compat.py │ ├── csom │ │ ├── __init__.py │ │ └── request.py │ ├── http │ │ ├── __init__.py │ │ ├── http_method.py │ │ └── request_options.py │ ├── odata │ │ ├── __init__.py │ │ ├── json_format.py │ │ ├── method.py │ │ ├── model.py │ │ ├── parameter.py │ │ ├── property.py │ │ ├── query_options.py │ │ ├── reader.py │ │ ├── request.py │ │ ├── type.py │ │ ├── type_information.py │ │ ├── v3 │ │ │ ├── __init__.py │ │ │ ├── batch_request.py │ │ │ ├── json_light_format.py │ │ │ ├── metadata_level.py │ │ │ └── metadata_reader.py │ │ └── v4 │ │ │ ├── __init__.py │ │ │ ├── batch_request.py │ │ │ ├── json_format.py │ │ │ ├── metadata_level.py │ │ │ ├── metadata_reader.py │ │ │ ├── upload_session.py │ │ │ └── upload_session_request.py │ ├── paths │ │ ├── __init__.py │ │ ├── appid.py │ │ ├── builder.py │ │ ├── resource_path.py │ │ ├── service_operation.py │ │ ├── v3 │ │ │ ├── __init__.py │ │ │ └── entity.py │ │ └── v4 │ │ │ ├── __init__.py │ │ │ └── entity.py │ ├── queries │ │ ├── __init__.py │ │ ├── batch.py │ │ ├── client_query.py │ │ ├── create_entity.py │ │ ├── delete_entity.py │ │ ├── function.py │ │ ├── read_entity.py │ │ ├── service_operation.py │ │ ├── update_entity.py │ │ └── upload_session.py │ └── types │ │ ├── __init__.py │ │ ├── collections.py │ │ ├── event_handler.py │ │ └── exceptions.py ├── search │ ├── __init__.py │ ├── acronyms │ │ ├── __init__.py │ │ └── acronym.py │ ├── aggregation.py │ ├── aggregation_option.py │ ├── alteration_options.py │ ├── answer.py │ ├── bookmarks │ │ ├── __init__.py │ │ └── bookmark.py │ ├── bucket.py │ ├── entity.py │ ├── entity_type.py │ ├── external │ │ ├── __init__.py │ │ ├── configuration.py │ │ ├── connection.py │ │ ├── external.py │ │ ├── item.py │ │ └── search_settings.py │ ├── hit.py │ ├── hits_container.py │ ├── identity_set.py │ ├── qnas │ │ ├── __init__.py │ │ └── qna.py │ ├── query.py │ ├── request.py │ ├── response.py │ ├── sharepoint_onedrive_options.py │ └── sort_property.py ├── sharepoint │ ├── __init__.py │ ├── actionablemessages │ │ ├── __init__.py │ │ ├── adaptive_card_image.py │ │ ├── card_element.py │ │ └── container.py │ ├── activities │ │ ├── __init__.py │ │ ├── action_facet.py │ │ ├── capabilities.py │ │ ├── client_request.py │ │ ├── client_response.py │ │ ├── entity.py │ │ ├── facets │ │ │ ├── __init__.py │ │ │ ├── activity_time.py │ │ │ ├── add_to_onedrive.py │ │ │ ├── checkin.py │ │ │ ├── checkout.py │ │ │ ├── coalesced.py │ │ │ ├── create.py │ │ │ ├── delete.py │ │ │ ├── discard_checkout.py │ │ │ ├── edit.py │ │ │ ├── get_comment.py │ │ │ ├── get_mention.py │ │ │ ├── in_doc.py │ │ │ ├── move.py │ │ │ ├── point_in_time_restore.py │ │ │ ├── rename.py │ │ │ ├── resource.py │ │ │ ├── revision_set.py │ │ │ ├── sharing.py │ │ │ ├── task_completed.py │ │ │ └── version.py │ │ ├── identity.py │ │ ├── identity_item.py │ │ ├── logger.py │ │ ├── revision_info.py │ │ ├── tracked_item_service.py │ │ └── tracked_item_updates_request.py │ ├── administration │ │ ├── __init__.py │ │ ├── analytics │ │ │ ├── __init__.py │ │ │ └── usage_service.py │ │ ├── archiving │ │ │ ├── __init__.py │ │ │ └── file_size_metric.py │ │ ├── custom_fonts_resource.py │ │ ├── orgassets │ │ │ ├── __init__.py │ │ │ ├── library.py │ │ │ ├── library_collection.py │ │ │ └── org_assets.py │ │ ├── sitemove │ │ │ ├── __init__.py │ │ │ ├── service.py │ │ │ └── service_info.py │ │ ├── web_application.py │ │ └── web_service.py │ ├── alerts │ │ ├── __init__.py │ │ ├── alert.py │ │ ├── collection.py │ │ └── creation_information.py │ ├── analytics │ │ ├── __init__.py │ │ └── usage_entry.py │ ├── appprincipal │ │ ├── __init__.py │ │ ├── credential.py │ │ ├── identity_provider.py │ │ ├── manager.py │ │ └── name.py │ ├── apps │ │ ├── __init__.py │ │ ├── access_requests.py │ │ ├── app_collection.py │ │ ├── context_site.py │ │ ├── launcher.py │ │ ├── license.py │ │ ├── license_collection.py │ │ ├── license_manager.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── principal_info.py │ │ ├── properties.py │ │ ├── solution_exporter.py │ │ └── user_solution.py │ ├── attachments │ │ ├── __init__.py │ │ ├── attachment.py │ │ ├── collection.py │ │ └── creation_information.py │ ├── audit │ │ ├── __init__.py │ │ └── audit.py │ ├── authentication │ │ ├── __init__.py │ │ └── acs_service_principal_info.py │ ├── authpolicy │ │ ├── __init__.py │ │ └── events │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── event.py │ │ │ └── role_assignment_resource_payload.py │ ├── brandcenter │ │ ├── __init__.py │ │ ├── brand_center.py │ │ ├── configuration.py │ │ └── theme_data.py │ ├── businessdata │ │ ├── __init__.py │ │ ├── app_bdc_catalog.py │ │ └── infrastructure │ │ │ ├── __init__.py │ │ │ └── securestore │ │ │ ├── __init__.py │ │ │ └── connection_settings.py │ ├── campaigns │ │ ├── __init__.py │ │ ├── campaigns.py │ │ ├── communication_entity.py │ │ └── entity.py │ ├── changes │ │ ├── __init__.py │ │ ├── alert.py │ │ ├── app_consent_principal.py │ │ ├── change.py │ │ ├── collection.py │ │ ├── content_type.py │ │ ├── field.py │ │ ├── file.py │ │ ├── folder.py │ │ ├── group.py │ │ ├── item.py │ │ ├── list.py │ │ ├── log_item_query.py │ │ ├── query.py │ │ ├── site.py │ │ ├── token.py │ │ ├── type.py │ │ ├── user.py │ │ ├── view.py │ │ └── web.py │ ├── client_context.py │ ├── clientsidecomponent │ │ ├── __init__.py │ │ ├── component_context_info.py │ │ ├── hostedapps │ │ │ ├── __init__.py │ │ │ ├── add_response.py │ │ │ ├── app.py │ │ │ └── manager.py │ │ ├── identifier.py │ │ ├── query_result.py │ │ └── storage_entity.py │ ├── comments │ │ ├── __init__.py │ │ ├── client │ │ │ ├── __init__.py │ │ │ └── identity.py │ │ ├── collection.py │ │ ├── comment.py │ │ └── information.py │ ├── compliance │ │ ├── __init__.py │ │ ├── dlp_classification_result.py │ │ ├── pending_review_items_statistics.py │ │ ├── preserve_document_submitter.py │ │ ├── store_proxy.py │ │ ├── tag.py │ │ └── tag_info.py │ ├── contentcenter │ │ ├── __init__.py │ │ ├── machinelearning │ │ │ ├── __init__.py │ │ │ ├── enabled.py │ │ │ ├── hub.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── entity_data.py │ │ │ │ └── model.py │ │ │ ├── publications │ │ │ │ ├── __init__.py │ │ │ │ ├── publication.py │ │ │ │ └── result.py │ │ │ ├── samples │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── entity_data.py │ │ │ │ ├── meta.py │ │ │ │ └── sample.py │ │ │ └── workitems │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ └── item.py │ │ └── syntex_models_landing_info.py │ ├── contenttypes │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── content_type.py │ │ ├── content_type_id.py │ │ ├── creation_information.py │ │ ├── entity_data.py │ │ └── fieldlinks │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ └── field_link.py │ ├── convergence │ │ ├── __init__.py │ │ ├── consumer_permissions.py │ │ └── migration_complete_state_api.py │ ├── copilot │ │ ├── __init__.py │ │ ├── file_collection.py │ │ ├── file_collection_query_result.py │ │ ├── file_metadata.py │ │ └── list_item_extensions.py │ ├── customactions │ │ ├── __init__.py │ │ ├── action.py │ │ ├── element.py │ │ └── element_collection.py │ ├── directory │ │ ├── __init__.py │ │ ├── group.py │ │ ├── group_and_user_status.py │ │ ├── helper.py │ │ ├── link.py │ │ ├── members_info.py │ │ ├── membership_result.py │ │ ├── my_groups_result.py │ │ ├── provider │ │ │ ├── __init__.py │ │ │ ├── alternate_id_data.py │ │ │ ├── notification.py │ │ │ ├── object_changes.py │ │ │ ├── object_data.py │ │ │ ├── provider.py │ │ │ └── session_data.py │ │ ├── session.py │ │ └── user.py │ ├── documentmanagement │ │ ├── __init__.py │ │ ├── document_id.py │ │ └── document_set.py │ ├── entity.py │ ├── entity_collection.py │ ├── esign │ │ ├── __init__.py │ │ └── models │ │ │ └── __init__.py │ ├── eventreceivers │ │ ├── __init__.py │ │ ├── creation_information.py │ │ ├── definition.py │ │ └── definition_collection.py │ ├── excel │ │ ├── __init__.py │ │ └── excel_rest.py │ ├── features │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── definitions │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── definition.py │ │ │ └── scope.py │ │ ├── feature.py │ │ └── known_list.py │ ├── fields │ │ ├── __init__.py │ │ ├── add_field_options.py │ │ ├── builtin_field_id.py │ │ ├── calculated.py │ │ ├── choice.py │ │ ├── collection.py │ │ ├── computed.py │ │ ├── creation_information.py │ │ ├── currency.py │ │ ├── date_time.py │ │ ├── date_time_format.py │ │ ├── datetime_field_format_type.py │ │ ├── field.py │ │ ├── geolocation.py │ │ ├── geolocation_value.py │ │ ├── guid.py │ │ ├── image_value.py │ │ ├── location.py │ │ ├── lookup.py │ │ ├── lookup_value.py │ │ ├── multi_choice.py │ │ ├── multi_choice_value.py │ │ ├── multi_line_text.py │ │ ├── multi_lookup_value.py │ │ ├── multi_user_value.py │ │ ├── number.py │ │ ├── rating_scale.py │ │ ├── related_field.py │ │ ├── related_field_collection.py │ │ ├── string_values.py │ │ ├── text.py │ │ ├── thumbnail.py │ │ ├── type.py │ │ ├── url.py │ │ ├── urlFieldFormatType.py │ │ ├── url_value.py │ │ ├── user.py │ │ ├── user_value.py │ │ └── xmlSchemaFieldCreationInformation.py │ ├── files │ │ ├── __init__.py │ │ ├── checked_out_file.py │ │ ├── checked_out_file_collection.py │ │ ├── checkin_type.py │ │ ├── collection.py │ │ ├── creation_information.py │ │ ├── file.py │ │ ├── move_operations.py │ │ ├── publish │ │ │ ├── __init__.py │ │ │ └── status.py │ │ ├── recent_file_collection.py │ │ ├── system_object_type.py │ │ └── versions │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── event.py │ │ │ └── version.py │ ├── fileservices │ │ └── __init__.py │ ├── flows │ │ ├── __init__.py │ │ ├── connector_result.py │ │ ├── permissions.py │ │ └── synchronization_result.py │ ├── folders │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── coloring.py │ │ ├── coloring_information.py │ │ ├── delete_parameters.py │ │ └── folder.py │ ├── fontpackages │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── creation_parameters.py │ │ ├── font_package.py │ │ └── oob_settings.py │ ├── forms │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── customization.py │ │ └── form.py │ ├── gtp │ │ ├── __init__.py │ │ ├── base_request_options.py │ │ ├── base_response.py │ │ ├── message_entry.py │ │ └── request_options.py │ ├── internal │ │ ├── __init__.py │ │ ├── paths │ │ │ ├── __init__.py │ │ │ ├── static_operation.py │ │ │ └── web.py │ │ └── queries │ │ │ ├── __init__.py │ │ │ └── upload_file.py │ ├── ir │ │ ├── __init__.py │ │ └── migration.py │ ├── largeoperation │ │ ├── __init__.py │ │ └── operation.py │ ├── likes │ │ ├── __init__.py │ │ ├── liked_by_information.py │ │ └── user_entity.py │ ├── listhome │ │ ├── __init__.py │ │ ├── favorite_item.py │ │ ├── favorite_lists.py │ │ └── item.py │ ├── listitems │ │ ├── __init__.py │ │ ├── caml │ │ │ ├── __init__.py │ │ │ └── query.py │ │ ├── collection.py │ │ ├── collection_position.py │ │ ├── compliance_info.py │ │ ├── creation_information.py │ │ ├── creation_information_using_path.py │ │ ├── delete_parameters.py │ │ ├── form_update_value.py │ │ ├── listdata_validation_exception_value.py │ │ ├── listitem.py │ │ ├── update_parameters.py │ │ ├── user_info_item.py │ │ └── versions │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── collection_position.py │ │ │ ├── get_parameters.py │ │ │ └── version.py │ ├── lists │ │ ├── __init__.py │ │ ├── base_type.py │ │ ├── bloom_filter.py │ │ ├── collection.py │ │ ├── collection_position.py │ │ ├── creatable_item_info.py │ │ ├── creatables_info.py │ │ ├── creation_information.py │ │ ├── currency.py │ │ ├── currency_information.py │ │ ├── currency_information_collection.py │ │ ├── data_parameters.py │ │ ├── data_source.py │ │ ├── data_validation_failure.py │ │ ├── document_library_information.py │ │ ├── document_template_type.py │ │ ├── exporter.py │ │ ├── get_parameters.py │ │ ├── list.py │ │ ├── render_data_parameters.py │ │ ├── render_override_parameters.py │ │ ├── rule.py │ │ ├── template.py │ │ ├── template_collection.py │ │ ├── template_type.py │ │ ├── templatization_metadata.py │ │ └── version_policy_manager.py │ ├── logger │ │ ├── __init__.py │ │ ├── logFileInfo.py │ │ ├── logFileInfoCollection.py │ │ └── log_export.py │ ├── marketplace │ │ ├── __init__.py │ │ ├── app_metadata.py │ │ ├── app_metadata_collection.py │ │ ├── corporatecuratedgallery │ │ │ ├── __init__.py │ │ │ ├── addins │ │ │ │ ├── __init__.py │ │ │ │ ├── instance_info.py │ │ │ │ ├── permission_failed_info.py │ │ │ │ ├── permission_info.py │ │ │ │ ├── permission_request.py │ │ │ │ ├── permission_response.py │ │ │ │ └── principals_response.py │ │ │ ├── app_request_information.py │ │ │ ├── app_response_information.py │ │ │ ├── app_upgrade_availability.py │ │ │ ├── available_addins_response.py │ │ │ ├── card_design.py │ │ │ ├── card_designs.py │ │ │ └── teams_package_download.py │ │ ├── sitecollection │ │ │ ├── __init__.py │ │ │ └── appcatalog │ │ │ │ ├── __init__.py │ │ │ │ ├── accessor.py │ │ │ │ ├── allowed_item.py │ │ │ │ └── allowed_items.py │ │ └── tenant │ │ │ ├── __init__.py │ │ │ └── appcatalog │ │ │ ├── __init__.py │ │ │ └── accessor.py │ ├── microfeed │ │ ├── __init__.py │ │ ├── attachment_store.py │ │ ├── data.py │ │ ├── entity.py │ │ ├── manager.py │ │ └── post_definition.py │ ├── microservice │ │ ├── __init__.py │ │ └── manager.py │ ├── migration │ │ ├── __init__.py │ │ ├── copy_migration_options.py │ │ └── job_status.py │ ├── migrationcenter │ │ ├── __init__.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ ├── results │ │ │ │ ├── __init__.py │ │ │ │ └── batch_creation.py │ │ │ ├── task.py │ │ │ ├── task_definition.py │ │ │ ├── task_entity_data.py │ │ │ ├── teams │ │ │ │ ├── __init__.py │ │ │ │ ├── channel_resource.py │ │ │ │ └── team_resource.py │ │ │ └── url_parser.py │ │ ├── deploy_status.py │ │ └── service │ │ │ ├── __init__.py │ │ │ ├── credential.py │ │ │ ├── performance │ │ │ ├── __init__.py │ │ │ ├── dashboard_data.py │ │ │ ├── data.py │ │ │ ├── entity_data.py │ │ │ └── throughput_data.py │ │ │ ├── properties.py │ │ │ ├── property.py │ │ │ ├── services.py │ │ │ ├── storage.py │ │ │ └── teams.py │ ├── mount │ │ ├── __init__.py │ │ ├── folder_info.py │ │ ├── point.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ └── get_remote_item_Info.py │ │ └── service.py │ ├── multigeo │ │ ├── __init__.py │ │ ├── api_versions.py │ │ ├── move_job_entity_data.py │ │ ├── services.py │ │ ├── site_move_job_entity_data.py │ │ ├── storage_quota.py │ │ ├── tenant_information.py │ │ ├── unified_group.py │ │ └── user_personal_site_location.py │ ├── navigation │ │ ├── __init__.py │ │ ├── configured_metadata_items.py │ │ ├── home_site_navigation_settings.py │ │ ├── menu_node.py │ │ ├── menu_state.py │ │ ├── metadata_settings.py │ │ ├── navigation.py │ │ ├── navigation_service.py │ │ ├── node.py │ │ ├── node_collection.py │ │ ├── node_creation_information.py │ │ ├── provider_type.py │ │ └── publishing_navigation_provider_type.py │ ├── oauth │ │ ├── __init__.py │ │ ├── authentication.py │ │ ├── native_client.py │ │ ├── token.py │ │ └── token_response.py │ ├── onboarding │ │ ├── __init__.py │ │ ├── job_entity_data.py │ │ └── siterenamejobs │ │ │ └── __init__.py │ ├── orgnewssite │ │ ├── __init__.py │ │ ├── api.py │ │ └── info.py │ ├── packaging │ │ ├── __init__.py │ │ └── app_details.py │ ├── pageinstrumentation │ │ ├── __init__.py │ │ └── click_manager.py │ ├── pages │ │ ├── __init__.py │ │ ├── customized_page_status.py │ │ ├── page_type.py │ │ ├── template_file_type.py │ │ └── wiki_page_creation_information.py │ ├── permissions │ │ ├── __init__.py │ │ ├── base_permissions.py │ │ ├── irm │ │ │ ├── __init__.py │ │ │ ├── effective_settings.py │ │ │ ├── file_settings.py │ │ │ └── settings.py │ │ ├── kind.py │ │ ├── roles │ │ │ ├── __init__.py │ │ │ ├── assignments │ │ │ │ ├── __init__.py │ │ │ │ ├── assignment.py │ │ │ │ └── collection.py │ │ │ └── definitions │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── creation_information.py │ │ │ │ └── definition.py │ │ ├── securable_object.py │ │ └── utility.py │ ├── photos │ │ ├── __init__.py │ │ └── migration.py │ ├── policy │ │ ├── __init__.py │ │ ├── dlp_policy_tip.py │ │ ├── evaluation_info.py │ │ └── license_utilities.py │ ├── portal │ │ ├── __init__.py │ │ ├── channels │ │ │ ├── __init__.py │ │ │ ├── info.py │ │ │ └── info_collection.py │ │ ├── collaboration_mailbox.py │ │ ├── community_moderation.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ ├── creation_context.py │ │ │ ├── creation_information.py │ │ │ ├── creation_params.py │ │ │ ├── service.py │ │ │ ├── site_info.py │ │ │ └── site_manager.py │ │ ├── home │ │ │ ├── __init__.py │ │ │ ├── page_context.py │ │ │ ├── service_context.py │ │ │ └── service_context_builder.py │ │ ├── hub_sites_utility.py │ │ ├── linkedsites │ │ │ ├── __init__.py │ │ │ ├── contract.py │ │ │ ├── list_contract.py │ │ │ └── manager.py │ │ ├── mysite_recommendations.py │ │ ├── organization_news.py │ │ ├── orglabels │ │ │ ├── __init__.py │ │ │ ├── context.py │ │ │ └── context_list.py │ │ ├── project │ │ │ └── __init__.py │ │ ├── rating_settings.py │ │ ├── sites │ │ │ ├── __init__.py │ │ │ ├── creation_request.py │ │ │ ├── creation_response.py │ │ │ ├── icon_manager.py │ │ │ ├── manager.py │ │ │ └── status.py │ │ ├── suite_nav_data.py │ │ ├── teams │ │ │ ├── __init__.py │ │ │ └── recent_and_joined_response.py │ │ ├── theme_manager.py │ │ ├── userprofiles │ │ │ ├── __init__.py │ │ │ ├── documentsshared │ │ │ │ ├── __init__.py │ │ │ │ ├── with_group.py │ │ │ │ ├── with_me.py │ │ │ │ └── with_person.py │ │ │ └── sharedwithme │ │ │ │ ├── __init__.py │ │ │ │ ├── document.py │ │ │ │ ├── document_user.py │ │ │ │ ├── item_collection.py │ │ │ │ ├── items.py │ │ │ │ └── view_item_removal_result.py │ │ └── webcontrols │ │ │ └── __init__.py │ ├── principal │ │ ├── __init__.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── creation_information.py │ │ │ └── group.py │ │ ├── principal.py │ │ ├── source.py │ │ ├── type.py │ │ └── users │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── id_info.py │ │ │ └── user.py │ ├── publishing │ │ ├── __init__.py │ │ ├── announcements │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ └── data.py │ │ ├── client_side_page.py │ │ ├── customproperties │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── bigint.py │ │ ├── diagnostics │ │ │ ├── __init__.py │ │ │ ├── controller.py │ │ │ ├── page_details.py │ │ │ ├── page_diagnostics.py │ │ │ └── page_result.py │ │ ├── embed_data_v1.py │ │ ├── embed_service.py │ │ ├── file_picker_options.py │ │ ├── highlights_info.py │ │ ├── navigation │ │ │ ├── __init__.py │ │ │ └── structural_navigation_cache_wrapper.py │ │ ├── pagecopywithassets │ │ │ ├── __init__.py │ │ │ └── response.py │ │ ├── pages │ │ │ ├── 3d │ │ │ │ ├── __init__.py │ │ │ │ ├── page.py │ │ │ │ └── types.py │ │ │ ├── __init__.py │ │ │ ├── campaign │ │ │ │ ├── __init__.py │ │ │ │ ├── publication.py │ │ │ │ └── types.py │ │ │ ├── coauth_state.py │ │ │ ├── collection.py │ │ │ ├── dependency_metadata.py │ │ │ ├── fields_data.py │ │ │ ├── metadata.py │ │ │ ├── metadata_collection.py │ │ │ ├── move_response.py │ │ │ ├── page.py │ │ │ ├── reposts │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── metadata.py │ │ │ │ └── repost.py │ │ │ ├── service.py │ │ │ ├── stream_content.py │ │ │ ├── stream_data.py │ │ │ ├── topics │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── fields_data.py │ │ │ │ └── topic.py │ │ │ └── version_info.py │ │ ├── personmagazine │ │ │ ├── __init__.py │ │ │ └── person_magazine.py │ │ ├── point │ │ │ ├── __init__.py │ │ │ ├── site_manager.py │ │ │ └── site_status.py │ │ ├── portal_health_details.py │ │ ├── portal_health_status.py │ │ ├── portallaunch │ │ │ ├── __init__.py │ │ │ ├── wave.py │ │ │ └── waves_manager.py │ │ ├── primary_city_time.py │ │ ├── rich_sharing.py │ │ ├── search.py │ │ ├── sites │ │ │ ├── __init__.py │ │ │ └── communication │ │ │ │ ├── __init__.py │ │ │ │ ├── creation_request.py │ │ │ │ ├── creation_response.py │ │ │ │ └── site.py │ │ ├── user_info.py │ │ └── video │ │ │ ├── __init__.py │ │ │ ├── channel.py │ │ │ ├── channel_collection.py │ │ │ ├── item.py │ │ │ ├── item_collection.py │ │ │ ├── service_discoverer.py │ │ │ ├── service_manager.py │ │ │ └── view_data.py │ ├── pushnotifications │ │ ├── __init__.py │ │ ├── collection.py │ │ └── subscriber.py │ ├── quotamanagement │ │ ├── __init__.py │ │ └── consumer │ │ │ ├── __init__.py │ │ │ └── non_quota_backfill_api.py │ ├── recyclebin │ │ ├── __init__.py │ │ ├── item.py │ │ ├── item_collection.py │ │ └── query_information.py │ ├── reputationmodel │ │ ├── __init__.py │ │ └── reputation.py │ ├── request.py │ ├── request_context.py │ ├── request_user_context.py │ ├── search │ │ ├── __init__.py │ │ ├── administration │ │ │ ├── __init__.py │ │ │ ├── document_crawl_log.py │ │ │ └── providers │ │ │ │ ├── __init__.py │ │ │ │ ├── crawl_versions_info.py │ │ │ │ ├── recycle_bin_info.py │ │ │ │ ├── site_content_processing_info.py │ │ │ │ └── site_me_ta_info.py │ │ ├── analytics │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── actor.py │ │ │ ├── signal.py │ │ │ └── signal_store.py │ │ ├── context_condition.py │ │ ├── custom_result.py │ │ ├── endpoints.py │ │ ├── object_owner_result.py │ │ ├── promoted_result_query_rule.py │ │ ├── promoted_results_operations_result.py │ │ ├── query │ │ │ ├── __init__.py │ │ │ ├── auto_completion.py │ │ │ ├── auto_completion_match.py │ │ │ ├── auto_completion_results.py │ │ │ ├── condition.py │ │ │ ├── configuration.py │ │ │ ├── context.py │ │ │ ├── expanded_parameters.py │ │ │ ├── personal_result_suggestion.py │ │ │ ├── personalization_data.py │ │ │ ├── popular_tenant_query.py │ │ │ ├── property.py │ │ │ ├── property_value.py │ │ │ ├── reordering_rule.py │ │ │ ├── routing_info.py │ │ │ ├── sort │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ └── sort.py │ │ │ ├── suggestion_results.py │ │ │ └── tenant_custom_query_suggestions.py │ │ ├── query_result.py │ │ ├── ranking_labeling.py │ │ ├── refinement_results.py │ │ ├── refiner │ │ │ ├── __init__.py │ │ │ ├── entry.py │ │ │ └── refiner.py │ │ ├── relevant_results.py │ │ ├── reordering_rule_collection.py │ │ ├── reports │ │ │ ├── __init__.py │ │ │ ├── abandoned_queries.py │ │ │ ├── abandonedqueries │ │ │ │ ├── __init__.py │ │ │ │ ├── data.py │ │ │ │ └── item.py │ │ │ ├── base.py │ │ │ ├── noresult │ │ │ │ └── __init__.py │ │ │ ├── numberofqueries │ │ │ │ └── __init__.py │ │ │ ├── top_queries.py │ │ │ └── topqueries │ │ │ │ ├── __init__.py │ │ │ │ ├── data.py │ │ │ │ └── item.py │ │ ├── request.py │ │ ├── result.py │ │ ├── scs_endpoint.py │ │ ├── service.py │ │ ├── setting.py │ │ ├── simple_data_row.py │ │ ├── simple_data_table.py │ │ ├── special_term_result.py │ │ └── special_term_results.py │ ├── securestore │ │ ├── __init__.py │ │ ├── target_application.py │ │ └── target_application_field.py │ ├── server_settings.py │ ├── sharing │ │ ├── __init__.py │ │ ├── abilities.py │ │ ├── ability_status.py │ │ ├── access_request_settings.py │ │ ├── address_bar_link_settings.py │ │ ├── direct_abilities.py │ │ ├── document_manager.py │ │ ├── domain_restriction_settings.py │ │ ├── external_site_option.py │ │ ├── information.py │ │ ├── information_request.py │ │ ├── inherited_from.py │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── sharing_restrictions.py │ │ │ └── types.py │ │ ├── invitation │ │ │ ├── __init__.py │ │ │ ├── creation_result.py │ │ │ └── link.py │ │ ├── link_abilities.py │ │ ├── link_info.py │ │ ├── links │ │ │ ├── __init__.py │ │ │ ├── access_request.py │ │ │ ├── data.py │ │ │ ├── default_template.py │ │ │ ├── default_templates_collection.py │ │ │ ├── info.py │ │ │ ├── kind.py │ │ │ ├── partial_success_response.py │ │ │ ├── share_request.py │ │ │ ├── share_response.py │ │ │ └── share_settings.py │ │ ├── object_sharing_information.py │ │ ├── object_sharing_information_user.py │ │ ├── object_sharing_settings.py │ │ ├── operation_status_code.py │ │ ├── permission_collection.py │ │ ├── permission_information.py │ │ ├── personal_web.py │ │ ├── picker_settings.py │ │ ├── principal.py │ │ ├── recipient_limits.py │ │ ├── reports │ │ │ ├── __init__.py │ │ │ └── site_capabilities.py │ │ ├── result.py │ │ ├── role.py │ │ ├── role_type.py │ │ ├── securable_object_extensions.py │ │ ├── shared_document_info.py │ │ ├── shared_object_type.py │ │ ├── shared_with_user.py │ │ ├── sharepoint_sharing_settings.py │ │ ├── site_sharing_report_helper.py │ │ ├── site_sharing_report_status.py │ │ ├── user_directory_info.py │ │ ├── user_role_assignment.py │ │ ├── user_sharing_result.py │ │ ├── utility.py │ │ └── web_sharing_manager.py │ ├── sitedesigns │ │ ├── __init__.py │ │ ├── creation_info.py │ │ ├── design_package_menu_contents.py │ │ ├── image.py │ │ ├── metadata.py │ │ ├── principal.py │ │ ├── run.py │ │ └── task.py │ ├── sitehealth │ │ ├── __init__.py │ │ ├── result.py │ │ └── summary.py │ ├── sites │ │ ├── __init__.py │ │ ├── azure_container_Info.py │ │ ├── brand_center_configuration.py │ │ ├── copy_job_progress.py │ │ ├── copy_migration_iInfo.py │ │ ├── home │ │ │ ├── __init__.py │ │ │ ├── details.py │ │ │ ├── reference.py │ │ │ └── site.py │ │ ├── html_field_security_setting.py │ │ ├── language.py │ │ ├── language_collection.py │ │ ├── manager │ │ │ ├── __init__.py │ │ │ ├── service.py │ │ │ └── types.py │ │ ├── script_safe_domain.py │ │ ├── site.py │ │ ├── site_type.py │ │ ├── team_site_data.py │ │ ├── themes.py │ │ ├── upgrade_info.py │ │ ├── usage_info.py │ │ └── version_policy_manager.py │ ├── sitescripts │ │ ├── __init__.py │ │ ├── action_result.py │ │ ├── action_status.py │ │ ├── creation_info.py │ │ ├── metadata.py │ │ ├── serialization_info.py │ │ ├── serialization_result.py │ │ ├── update_info.py │ │ └── utility.py │ ├── smartcache │ │ ├── __init__.py │ │ └── item.py │ ├── social │ │ ├── __init__.py │ │ ├── actor.py │ │ ├── actor_info.py │ │ ├── announcement_manager.py │ │ ├── attachment.py │ │ ├── attachment_action.py │ │ ├── data_overlay.py │ │ ├── feed │ │ │ ├── __init__.py │ │ │ ├── feed.py │ │ │ ├── manager.py │ │ │ ├── rest.py │ │ │ └── rest_manager.py │ │ ├── following │ │ │ ├── __init__.py │ │ │ ├── manager.py │ │ │ └── rest_manager.py │ │ ├── link.py │ │ ├── microfeed │ │ │ ├── __init__.py │ │ │ ├── thread.py │ │ │ ├── thread_collection.py │ │ │ └── user_posts.py │ │ ├── posts │ │ │ ├── __init__.py │ │ │ ├── actor_info.py │ │ │ ├── creation_data.py │ │ │ ├── definition_data.py │ │ │ ├── definition_data_item.py │ │ │ ├── post.py │ │ │ └── reference.py │ │ ├── rest_actor.py │ │ ├── rest_thread.py │ │ ├── switch.py │ │ └── thread.py │ ├── storagemetrics │ │ ├── __init__.py │ │ └── storage_metrics.py │ ├── taxonomy │ │ ├── __init__.py │ │ ├── contenttypesync │ │ │ └── __init__.py │ │ ├── create_xml_parameters.py │ │ ├── field.py │ │ ├── field_value.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ └── group.py │ │ ├── item.py │ │ ├── item_collection.py │ │ ├── metadata.py │ │ ├── service.py │ │ ├── sets │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ ├── info.py │ │ │ ├── name.py │ │ │ └── set.py │ │ ├── stores │ │ │ ├── __init__.py │ │ │ └── store.py │ │ └── terms │ │ │ ├── __init__.py │ │ │ ├── label.py │ │ │ └── term.py │ ├── teams │ │ ├── __init__.py │ │ ├── channel.py │ │ ├── channel_manager.py │ │ └── site_owner_response.py │ ├── tenant │ │ ├── __init__.py │ │ ├── administration │ │ │ ├── __init__.py │ │ │ ├── app_service_principal_public.py │ │ │ ├── audit │ │ │ │ ├── __init__.py │ │ │ │ ├── data.py │ │ │ │ ├── search_request_status.py │ │ │ │ └── unified_record.py │ │ │ ├── collaboration │ │ │ │ ├── __init__.py │ │ │ │ ├── insights_data.py │ │ │ │ └── insights_overview.py │ │ │ ├── coms │ │ │ │ ├── __init__.py │ │ │ │ ├── messages_fields_data.py │ │ │ │ └── messages_service_proxy.py │ │ │ ├── container_properties.py │ │ │ ├── copilot │ │ │ │ ├── __init__.py │ │ │ │ ├── adaptive_card_config.py │ │ │ │ ├── agentinsights │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ └── report_metadata.py │ │ │ │ ├── base_raw_data_sources.py │ │ │ │ └── report_details.py │ │ │ ├── datagovernance │ │ │ │ ├── __init__.py │ │ │ │ ├── client_base.py │ │ │ │ ├── insight_client.py │ │ │ │ └── insight_metadata.py │ │ │ ├── default_time_zone_id.py │ │ │ ├── deny_add_and_customize_pages_status.py │ │ │ ├── endpoints.py │ │ │ ├── execution_history_response.py │ │ │ ├── group.py │ │ │ ├── hubsites │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── hub_site.py │ │ │ │ ├── permission.py │ │ │ │ └── properties.py │ │ │ ├── insights │ │ │ │ ├── __init__.py │ │ │ │ ├── onedrive_site_sharing.py │ │ │ │ ├── summary_response.py │ │ │ │ └── top_files_sharing.py │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── aad │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── permission_grant.py │ │ │ │ └── appservice │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── permission_grant.py │ │ │ │ │ ├── permission_request.py │ │ │ │ │ └── principal.py │ │ │ ├── malware │ │ │ │ ├── __init__.py │ │ │ │ └── file.py │ │ │ ├── modified_property.py │ │ │ ├── policies │ │ │ │ ├── __init__.py │ │ │ │ ├── app_billing_properties.py │ │ │ │ ├── content_security_configuration.py │ │ │ │ ├── definition.py │ │ │ │ ├── file_version_types.py │ │ │ │ ├── list_parameters.py │ │ │ │ └── resource_storage.py │ │ │ ├── powerapps │ │ │ │ ├── __init__.py │ │ │ │ ├── environment.py │ │ │ │ └── environment_context.py │ │ │ ├── ransomware │ │ │ │ ├── __init__.py │ │ │ │ ├── activity.py │ │ │ │ ├── event.py │ │ │ │ └── properties.py │ │ │ ├── recent_action.py │ │ │ ├── recent_admin_action_report.py │ │ │ ├── recent_admin_action_report_payload.py │ │ │ ├── reports │ │ │ │ └── __init__.py │ │ │ ├── response_message_center.py │ │ │ ├── response_service_health.py │ │ │ ├── secondary_administrators_fields_data.py │ │ │ ├── secondary_administrators_info.py │ │ │ ├── settings_service.py │ │ │ ├── sharing_capabilities.py │ │ │ ├── site_user_group_info.py │ │ │ ├── siteinfo_for_site_picker.py │ │ │ ├── sites │ │ │ │ ├── __init__.py │ │ │ │ ├── administrators_info.py │ │ │ │ ├── collection_management_service.py │ │ │ │ ├── creation_data.py │ │ │ │ ├── creation_default_storage_quota.py │ │ │ │ ├── creation_properties.py │ │ │ │ ├── creation_source.py │ │ │ │ ├── properties.py │ │ │ │ ├── properties_collection.py │ │ │ │ ├── properties_enumerable_filter.py │ │ │ │ └── state_properties.py │ │ │ ├── smtp_server.py │ │ │ ├── spo_operation.py │ │ │ ├── syntex │ │ │ │ ├── __init__.py │ │ │ │ ├── billing_context.py │ │ │ │ └── power_apps.py │ │ │ ├── tenant.py │ │ │ ├── theme_properties.py │ │ │ ├── types.py │ │ │ └── webs │ │ │ │ ├── __init__.py │ │ │ │ └── templates │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ └── template.py │ │ ├── apps │ │ │ ├── __init__.py │ │ │ ├── information.py │ │ │ ├── instance.py │ │ │ ├── user_experience_state.py │ │ │ └── utility.py │ │ ├── cdn_api.py │ │ ├── cdn_url.py │ │ ├── insights │ │ │ ├── __init__.py │ │ │ ├── report.py │ │ │ ├── report_manager.py │ │ │ └── report_metadata.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ ├── externalusers │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── external_user.py │ │ │ │ └── results │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── get.py │ │ │ │ │ ├── remove.py │ │ │ │ │ └── session_revocation.py │ │ │ └── office365_tenant.py │ │ └── settings.py │ ├── translation │ │ ├── __init__.py │ │ ├── item_info.py │ │ ├── job.py │ │ ├── job_info.py │ │ ├── job_status.py │ │ ├── notification_recipient.py │ │ ├── notification_recipient_set_request.py │ │ ├── notification_recipient_users.py │ │ ├── requested_translation.py │ │ ├── resource_entry.py │ │ ├── status.py │ │ ├── status_collection.py │ │ ├── status_creation_request.py │ │ ├── status_set_request.py │ │ ├── sync_translator.py │ │ ├── user_resource.py │ │ └── variations_timer_job.py │ ├── types │ │ ├── __init__.py │ │ ├── property_values.py │ │ ├── resource_path.py │ │ └── wopi_action.py │ ├── ui │ │ ├── __init__.py │ │ └── applicationpages │ │ │ ├── __init__.py │ │ │ └── peoplepicker │ │ │ ├── __init__.py │ │ │ ├── entity_information.py │ │ │ ├── entity_information_request.py │ │ │ ├── query_parameters.py │ │ │ ├── query_settings.py │ │ │ └── web_service_interface.py │ ├── usercustomactions │ │ ├── __init__.py │ │ ├── action.py │ │ └── collection.py │ ├── userprofiles │ │ ├── __init__.py │ │ ├── cross_geo_sync.py │ │ ├── cross_geo_sync_user_data_batch.py │ │ ├── follow_result.py │ │ ├── followed_content.py │ │ ├── followed_item.py │ │ ├── hash_tag.py │ │ ├── my_site_links.py │ │ ├── mysite │ │ │ ├── __init__.py │ │ │ └── dismiss_status_text.py │ │ ├── people_manager.py │ │ ├── person_properties.py │ │ ├── personal_cache.py │ │ ├── personal_cache_item.py │ │ ├── personal_site_creation_priority.py │ │ ├── profile_image_store.py │ │ ├── profile_loader.py │ │ ├── promoted_sites.py │ │ ├── properties_for_user.py │ │ └── user_profile.py │ ├── utilities │ │ ├── __init__.py │ │ ├── email_properties.py │ │ ├── file_handler_wopi_properties.py │ │ ├── move_copy_options.py │ │ ├── move_copy_util.py │ │ ├── principal_info.py │ │ ├── upload_status.py │ │ ├── utility.py │ │ ├── wopi_frame_action.py │ │ ├── wopi_host.py │ │ ├── wopi_properties.py │ │ └── wopi_web_app_properties.py │ ├── views │ │ ├── __init__.py │ │ ├── collection.py │ │ ├── create_information.py │ │ ├── field_collection.py │ │ ├── scope.py │ │ ├── type.py │ │ ├── view.py │ │ └── visualization │ │ │ ├── __init__.py │ │ │ ├── field.py │ │ │ ├── style_set.py │ │ │ └── visualization.py │ ├── viva │ │ ├── __init__.py │ │ ├── app_configuration.py │ │ ├── connections_page.py │ │ ├── connections_url_configuration.py │ │ ├── dashboard_configuration.py │ │ ├── employee_engagement.py │ │ ├── employee_experience_controller.py │ │ ├── home.py │ │ ├── home_title_region.py │ │ ├── resource_get_endpoint.py │ │ ├── resource_link.py │ │ ├── site_manager.py │ │ └── site_request_info.py │ ├── webhooks │ │ ├── __init__.py │ │ ├── subscription.py │ │ ├── subscription_collection.py │ │ └── subscription_information.py │ ├── webparts │ │ ├── __init__.py │ │ ├── client │ │ │ ├── __init__.py │ │ │ ├── collection.py │ │ │ └── webpart.py │ │ ├── definition.py │ │ ├── definition_collection.py │ │ ├── limited_manager.py │ │ ├── personalization_scope.py │ │ ├── tile_data.py │ │ └── webpart.py │ ├── webs │ │ ├── __init__.py │ │ ├── calendar_type.py │ │ ├── collection.py │ │ ├── context_web_information.py │ │ ├── creation_information.py │ │ ├── dataleakage_prevention_status_info.py │ │ ├── info_creation_information.py │ │ ├── information.py │ │ ├── information_collection.py │ │ ├── modernize_homepage_result.py │ │ ├── multilingual_settings.py │ │ ├── regional_settings.py │ │ ├── remote_web.py │ │ ├── subweb_query.py │ │ ├── template.py │ │ ├── template_collection.py │ │ ├── templates │ │ │ └── __init__.py │ │ ├── theme_info.py │ │ ├── time_zone.py │ │ ├── time_zone_information.py │ │ └── web.py │ ├── workflow │ │ ├── __init__.py │ │ ├── association.py │ │ ├── definition.py │ │ ├── manager.py │ │ ├── task.py │ │ └── template.py │ ├── workflowservices │ │ ├── __init__.py │ │ ├── deployment_service.py │ │ ├── instance.py │ │ ├── instance_service.py │ │ └── manager.py │ ├── workmanagement │ │ └── __init__.py │ └── yammer │ │ ├── __init__.py │ │ └── wac_api.py ├── subscriptions │ ├── __init__.py │ ├── change_notification.py │ ├── change_notification_collection.py │ ├── collection.py │ ├── encrypted_content.py │ ├── resource_data.py │ └── subscription.py ├── teams │ ├── __init__.py │ ├── aiinteractions │ │ ├── __init__.py │ │ └── history.py │ ├── apps │ │ ├── __init__.py │ │ ├── app.py │ │ ├── authorization.py │ │ ├── catalog.py │ │ ├── definition.py │ │ ├── installation.py │ │ ├── permission_set.py │ │ ├── resource_specific_permission.py │ │ └── user_scope_installation.py │ ├── associated_info.py │ ├── bots │ │ ├── __init__.py │ │ └── teamwork_bot.py │ ├── channels │ │ ├── __init__.py │ │ ├── channel.py │ │ ├── collection.py │ │ ├── iIdentity.py │ │ ├── membership_type.py │ │ ├── provision_email_result.py │ │ └── shared_team_info.py │ ├── chats │ │ ├── __init__.py │ │ ├── chat.py │ │ ├── collection.py │ │ ├── deleted.py │ │ ├── event_message_detail.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── info.py │ │ │ └── message.py │ │ ├── type.py │ │ └── viewpoint.py │ ├── collection.py │ ├── deleted.py │ ├── fun_settings.py │ ├── guest_settings.py │ ├── info.py │ ├── internal │ │ ├── __init__.py │ │ └── paths │ │ │ └── __init__.py │ ├── members │ │ ├── __init__.py │ │ ├── aad_user_conversation.py │ │ ├── conversation.py │ │ ├── conversation_collection.py │ │ └── settings.py │ ├── messaging_settings.py │ ├── operations │ │ ├── __init__.py │ │ ├── async_operation.py │ │ └── async_status.py │ ├── schedule │ │ ├── __init__.py │ │ ├── change_request.py │ │ ├── change_tracked_entity.py │ │ ├── entity.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ └── group.py │ │ ├── schedule.py │ │ ├── shifts │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── availability.py │ │ │ ├── item.py │ │ │ ├── offer │ │ │ │ ├── __init__.py │ │ │ │ └── request.py │ │ │ ├── open │ │ │ │ ├── __init__.py │ │ │ │ └── change_request.py │ │ │ ├── preferences.py │ │ │ ├── shift.py │ │ │ └── time_range.py │ │ └── time_off_reason.py │ ├── summary.py │ ├── tabs │ │ ├── __init__.py │ │ ├── configuration.py │ │ └── tab.py │ ├── team.py │ ├── teamwork │ │ ├── __init__.py │ │ ├── activity_topic.py │ │ ├── online_meeting_info.py │ │ ├── shiftmanagement │ │ │ ├── __init__.py │ │ │ └── user_solution_root.py │ │ ├── tags │ │ │ ├── __init__.py │ │ │ ├── identity.py │ │ │ ├── member.py │ │ │ └── tag.py │ │ ├── user.py │ │ └── user_identity.py │ ├── template.py │ ├── visibility_type.py │ ├── viva │ │ ├── __init__.py │ │ ├── community.py │ │ ├── employee_experience.py │ │ ├── employee_experience_user.py │ │ └── learning │ │ │ ├── __init__.py │ │ │ ├── content.py │ │ │ ├── courses │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ └── self_initiated.py │ │ │ └── provider.py │ └── work.py └── todo │ ├── __init__.py │ ├── attachments │ ├── __init__.py │ ├── base.py │ ├── collection.py │ ├── info.py │ ├── session.py │ ├── task_file.py │ └── type.py │ ├── checklist_item.py │ ├── linked_resource.py │ ├── tasks │ ├── __init__.py │ ├── list.py │ ├── list_collection.py │ └── task.py │ ├── todo.py │ └── wellknown_list_name.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements-examples.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── admin └── test_admin.py ├── backuprestore └── test_backuprestore.py ├── booking └── test_business.py ├── communications ├── test_callrecords.py ├── test_onlinemeetings.py └── test_presence.py ├── config.py ├── data ├── Financial Sample.xlsx ├── ImportTermSet.csv ├── Sample.txt ├── SharePoint User Guide.docx └── big_buck_bunny.mp4 ├── decorators.py ├── directory ├── test_application.py ├── test_audit.py ├── test_authentication.py ├── test_directory.py ├── test_domain.py ├── test_extensions.py ├── test_governance.py ├── test_group.py ├── test_identity.py ├── test_invitations.py ├── test_organization.py ├── test_reports.py ├── test_role_management.py ├── test_service_principal.py ├── test_synchronization.py ├── test_tenant.py └── test_user.py ├── graph_case.py ├── intune ├── test_device_management.py ├── test_devices.py ├── test_managed_devices.py └── test_reports.py ├── onedrive ├── test_column.py ├── test_content_type.py ├── test_drive.py ├── test_excel.py ├── test_file.py ├── test_file_storage.py ├── test_folder.py ├── test_list.py ├── test_listitem.py ├── test_permissions.py ├── test_shares.py ├── test_site.py ├── test_sitepage.py ├── test_taxonomy.py ├── test_webpart.py └── workbook │ ├── test_charts.py │ ├── test_functions.py │ ├── test_ranges.py │ ├── test_tables.py │ └── test_worksheets.py ├── onenote ├── test_notebook.py ├── test_page.py └── test_section.py ├── outlook ├── test_attachments.py ├── test_calendar.py ├── test_contacts.py ├── test_event.py ├── test_mail_folder.py ├── test_message_rules.py ├── test_messages.py ├── test_outlook_user.py ├── test_reports.py └── test_rooms.py ├── planner └── test_plans.py ├── reports ├── test_insights.py └── test_usage_reports.py ├── search └── test_search.py ├── security ├── test_reports.py ├── test_security.py └── test_threat_assessment.py ├── settings.cfg ├── sharepoint ├── sharepoint_case.py ├── test_admin.py ├── test_alert.py ├── test_app.py ├── test_attachment.py ├── test_bdc.py ├── test_brand.py ├── test_change.py ├── test_client.py ├── test_client_side_component.py ├── test_comminication_site.py ├── test_compliance.py ├── test_contenttype.py ├── test_directory_session.py ├── test_document_set.py ├── test_feature.py ├── test_field.py ├── test_field_value.py ├── test_file.py ├── test_flow.py ├── test_folder.py ├── test_group.py ├── test_home_sites.py ├── test_hub_site.py ├── test_library.py ├── test_list.py ├── test_listItem.py ├── test_machinelearning.py ├── test_migration.py ├── test_multigeo.py ├── test_multilingual.py ├── test_navigation.py ├── test_org_news.py ├── test_pages.py ├── test_people_picker.py ├── test_publishing.py ├── test_recycle_bin.py ├── test_roles.py ├── test_search.py ├── test_sharing.py ├── test_site.py ├── test_site_design.py ├── test_site_script.py ├── test_sitepages.py ├── test_social.py ├── test_taxonomy.py ├── test_team.py ├── test_team_site.py ├── test_tenant.py ├── test_user.py ├── test_user_profile.py ├── test_utility.py ├── test_view.py ├── test_viva.py ├── test_web.py ├── test_webhooks.py ├── test_webpart.py └── test_workflows.py ├── teams ├── test_apps.py ├── test_channel.py ├── test_chats.py ├── test_reports.py └── test_team.py ├── test_graph_client.py └── todo └── test_tasklist.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [tool.isort] 2 | profile = "black" 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/README-dev.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/README.md -------------------------------------------------------------------------------- /examples/auth/delegated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/delegated.txt -------------------------------------------------------------------------------- /examples/auth/gcc_high.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/gcc_high.py -------------------------------------------------------------------------------- /examples/auth/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/interactive.py -------------------------------------------------------------------------------- /examples/auth/interactive_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/interactive_custom.py -------------------------------------------------------------------------------- /examples/auth/sharepoint/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/sharepoint/interactive.py -------------------------------------------------------------------------------- /examples/auth/with_adal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/with_adal.py -------------------------------------------------------------------------------- /examples/auth/with_client_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/with_client_cert.py -------------------------------------------------------------------------------- /examples/auth/with_client_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/with_client_secret.py -------------------------------------------------------------------------------- /examples/auth/with_user_creds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/with_user_creds.py -------------------------------------------------------------------------------- /examples/auth/with_user_creds_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/auth/with_user_creds_custom.py -------------------------------------------------------------------------------- /examples/data/Financial Sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/data/Financial Sample.csv -------------------------------------------------------------------------------- /examples/data/Financial Sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/data/Financial Sample.xlsx -------------------------------------------------------------------------------- /examples/data/Office_365_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/data/Office_365_logo.png -------------------------------------------------------------------------------- /examples/data/Sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/data/Sample.html -------------------------------------------------------------------------------- /examples/data/Sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/data/Sample.pdf -------------------------------------------------------------------------------- /examples/data/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/data/countries.json -------------------------------------------------------------------------------- /examples/data/office-logo-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/data/office-logo-icon.jpg -------------------------------------------------------------------------------- /examples/data/reports/report.csv: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /examples/directory/groups/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/directory/groups/list.py -------------------------------------------------------------------------------- /examples/directory/roles/for_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/directory/roles/for_user.py -------------------------------------------------------------------------------- /examples/directory/roles/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/directory/roles/list.py -------------------------------------------------------------------------------- /examples/directory/users/disable_mfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/directory/users/disable_mfa.py -------------------------------------------------------------------------------- /examples/directory/users/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/directory/users/import.py -------------------------------------------------------------------------------- /examples/directory/users/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/directory/users/list.py -------------------------------------------------------------------------------- /examples/directory/users/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/directory/users/update.py -------------------------------------------------------------------------------- /examples/insights/list_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/insights/list_shared.py -------------------------------------------------------------------------------- /examples/insights/list_used.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/insights/list_used.py -------------------------------------------------------------------------------- /examples/onedrive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/README.md -------------------------------------------------------------------------------- /examples/onedrive/columns/list_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/columns/list_site.py -------------------------------------------------------------------------------- /examples/onedrive/drives/get_by_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/drives/get_by_path.py -------------------------------------------------------------------------------- /examples/onedrive/drives/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/drives/list.py -------------------------------------------------------------------------------- /examples/onedrive/excel/get_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/excel/get_cell.py -------------------------------------------------------------------------------- /examples/onedrive/excel/read_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/excel/read_range.py -------------------------------------------------------------------------------- /examples/onedrive/excel/read_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/excel/read_table.py -------------------------------------------------------------------------------- /examples/onedrive/files/copy_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/files/copy_file.py -------------------------------------------------------------------------------- /examples/onedrive/files/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/files/download.py -------------------------------------------------------------------------------- /examples/onedrive/files/get_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/files/get_details.py -------------------------------------------------------------------------------- /examples/onedrive/files/move_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/files/move_file.py -------------------------------------------------------------------------------- /examples/onedrive/files/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/files/search.py -------------------------------------------------------------------------------- /examples/onedrive/files/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/files/upload.py -------------------------------------------------------------------------------- /examples/onedrive/files/upload_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/files/upload_large.py -------------------------------------------------------------------------------- /examples/onedrive/folders/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/folders/create.py -------------------------------------------------------------------------------- /examples/onedrive/folders/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/folders/download.py -------------------------------------------------------------------------------- /examples/onedrive/folders/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/folders/export.py -------------------------------------------------------------------------------- /examples/onedrive/folders/list_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/folders/list_files.py -------------------------------------------------------------------------------- /examples/onedrive/folders/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/folders/upload.py -------------------------------------------------------------------------------- /examples/onedrive/lists/create_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/lists/create_list.py -------------------------------------------------------------------------------- /examples/onedrive/lists/get_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/lists/get_props.py -------------------------------------------------------------------------------- /examples/onedrive/lists/list_in_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/lists/list_in_site.py -------------------------------------------------------------------------------- /examples/onedrive/powerpoint/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/powerpoint/create.py -------------------------------------------------------------------------------- /examples/onedrive/sitepages/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/sitepages/create.py -------------------------------------------------------------------------------- /examples/onedrive/sitepages/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/sitepages/list.py -------------------------------------------------------------------------------- /examples/onedrive/sites/get_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/sites/get_all.py -------------------------------------------------------------------------------- /examples/onedrive/sites/get_by_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/sites/get_by_url.py -------------------------------------------------------------------------------- /examples/onedrive/sites/list_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/sites/list_sites.py -------------------------------------------------------------------------------- /examples/onedrive/sites/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onedrive/sites/search.py -------------------------------------------------------------------------------- /examples/onenote/create_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onenote/create_notebook.py -------------------------------------------------------------------------------- /examples/onenote/create_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onenote/create_page.py -------------------------------------------------------------------------------- /examples/onenote/list_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onenote/list_notebooks.py -------------------------------------------------------------------------------- /examples/onenote/list_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/onenote/list_pages.py -------------------------------------------------------------------------------- /examples/outlook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/README.md -------------------------------------------------------------------------------- /examples/outlook/events/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/events/create.py -------------------------------------------------------------------------------- /examples/outlook/events/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/events/delete.py -------------------------------------------------------------------------------- /examples/outlook/events/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/events/list.py -------------------------------------------------------------------------------- /examples/outlook/messages/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/messages/move.py -------------------------------------------------------------------------------- /examples/outlook/messages/reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/messages/reply.py -------------------------------------------------------------------------------- /examples/outlook/messages/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/messages/search.py -------------------------------------------------------------------------------- /examples/outlook/messages/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/messages/send.py -------------------------------------------------------------------------------- /examples/outlook/messages/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/outlook/messages/update.py -------------------------------------------------------------------------------- /examples/planner/create_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/planner/create_plan.py -------------------------------------------------------------------------------- /examples/planner/create_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/planner/create_task.py -------------------------------------------------------------------------------- /examples/sharepoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/README.md -------------------------------------------------------------------------------- /examples/sharepoint/alm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/alm/README.md -------------------------------------------------------------------------------- /examples/sharepoint/audit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/sharepoint/auth_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/auth_cookies.py -------------------------------------------------------------------------------- /examples/sharepoint/disable_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/disable_ssl.py -------------------------------------------------------------------------------- /examples/sharepoint/files/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/files/delete.py -------------------------------------------------------------------------------- /examples/sharepoint/files/exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/files/exists.py -------------------------------------------------------------------------------- /examples/sharepoint/files/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/files/replace.py -------------------------------------------------------------------------------- /examples/sharepoint/files/share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/files/share.py -------------------------------------------------------------------------------- /examples/sharepoint/files/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/files/upload.py -------------------------------------------------------------------------------- /examples/sharepoint/folders/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/folders/move.py -------------------------------------------------------------------------------- /examples/sharepoint/folders/share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/folders/share.py -------------------------------------------------------------------------------- /examples/sharepoint/lists/clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/lists/clear.py -------------------------------------------------------------------------------- /examples/sharepoint/lists/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/lists/create.py -------------------------------------------------------------------------------- /examples/sharepoint/lists/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/lists/delete.py -------------------------------------------------------------------------------- /examples/sharepoint/lists/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/lists/filter.py -------------------------------------------------------------------------------- /examples/sharepoint/pages/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/pages/create.py -------------------------------------------------------------------------------- /examples/sharepoint/pages/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/pages/list.py -------------------------------------------------------------------------------- /examples/sharepoint/print_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/print_version.py -------------------------------------------------------------------------------- /examples/sharepoint/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | -------------------------------------------------------------------------------- /examples/sharepoint/run_test_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/run_test_perf.py -------------------------------------------------------------------------------- /examples/sharepoint/set_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/set_proxy.py -------------------------------------------------------------------------------- /examples/sharepoint/sitedesigns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/sharepoint/teams/list_my.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/teams/list_my.py -------------------------------------------------------------------------------- /examples/sharepoint/users/whoami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/users/whoami.py -------------------------------------------------------------------------------- /examples/sharepoint/webs/get_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/sharepoint/webs/get_all.py -------------------------------------------------------------------------------- /examples/teams/README.md: -------------------------------------------------------------------------------- 1 | # Working with Microsoft Teams API 2 | -------------------------------------------------------------------------------- /examples/teams/create_from_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/teams/create_from_group.py -------------------------------------------------------------------------------- /examples/teams/create_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/teams/create_team.py -------------------------------------------------------------------------------- /examples/teams/list_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/teams/list_all.py -------------------------------------------------------------------------------- /examples/teams/list_my_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/teams/list_my_teams.py -------------------------------------------------------------------------------- /examples/teams/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/examples/teams/send_message.py -------------------------------------------------------------------------------- /generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/__init__.py -------------------------------------------------------------------------------- /generator/builders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/builders/method_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/builders/method_builder.py -------------------------------------------------------------------------------- /generator/builders/type_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/builders/type_builder.py -------------------------------------------------------------------------------- /generator/generate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/generate_model.py -------------------------------------------------------------------------------- /generator/import_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/import_metadata.py -------------------------------------------------------------------------------- /generator/metadata/Graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/metadata/Graph.xml -------------------------------------------------------------------------------- /generator/metadata/SharePoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/metadata/SharePoint.xml -------------------------------------------------------------------------------- /generator/metadata/SharePoint2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/metadata/SharePoint2_1.xml -------------------------------------------------------------------------------- /generator/requirements.txt: -------------------------------------------------------------------------------- 1 | astunparse==1.6.3 2 | -------------------------------------------------------------------------------- /generator/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/settings.cfg -------------------------------------------------------------------------------- /generator/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/templates/complex_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/templates/complex_type.py -------------------------------------------------------------------------------- /generator/templates/entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/generator/templates/entity_type.py -------------------------------------------------------------------------------- /office365/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/admin/admin.py -------------------------------------------------------------------------------- /office365/admin/microsoft365_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/admin/microsoft365_apps.py -------------------------------------------------------------------------------- /office365/admin/people_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/admin/people_settings.py -------------------------------------------------------------------------------- /office365/admin/report_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/admin/report_settings.py -------------------------------------------------------------------------------- /office365/admin/sharepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/admin/sharepoint.py -------------------------------------------------------------------------------- /office365/azure_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/azure_env.py -------------------------------------------------------------------------------- /office365/backuprestore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/backuprestore/protection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/backuprestore/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/backuprestore/root.py -------------------------------------------------------------------------------- /office365/booking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/booking/appointment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/appointment.py -------------------------------------------------------------------------------- /office365/booking/business/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/booking/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/currency.py -------------------------------------------------------------------------------- /office365/booking/custom_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/custom_question.py -------------------------------------------------------------------------------- /office365/booking/customers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/booking/customers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/customers/base.py -------------------------------------------------------------------------------- /office365/booking/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/service.py -------------------------------------------------------------------------------- /office365/booking/solutions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/booking/solutions/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/solutions/root.py -------------------------------------------------------------------------------- /office365/booking/staff/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/booking/staff/member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/staff/member.py -------------------------------------------------------------------------------- /office365/booking/work_hours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/work_hours.py -------------------------------------------------------------------------------- /office365/booking/work_time_slot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/booking/work_time_slot.py -------------------------------------------------------------------------------- /office365/communications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/callrecords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/calls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/meetings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/onlinemeetings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/onlinemeetings/recordings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/onlinemeetings/transcripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/presences/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/communications/virtualevents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/copilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/copilot/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/copilot/admin.py -------------------------------------------------------------------------------- /office365/copilot/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/copilot/root.py -------------------------------------------------------------------------------- /office365/count_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/count_collection.py -------------------------------------------------------------------------------- /office365/delta_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/delta_collection.py -------------------------------------------------------------------------------- /office365/delta_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/delta_path.py -------------------------------------------------------------------------------- /office365/directory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/applications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/applications/roles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/applications/synchronization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/applications/synchronization/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/applications/synchronization/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/audit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/audit/provisioning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/audit/signins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/authentication/conditions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/authentication/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/certificates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/datapolicy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/delegatedadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/directory.py -------------------------------------------------------------------------------- /office365/directory/domains/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/domains/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/domains/state.py -------------------------------------------------------------------------------- /office365/directory/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/groups/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/groups/group.py -------------------------------------------------------------------------------- /office365/directory/identities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identities/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identities/userflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identities/userflows/b2x/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/accessreview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/accessreview/history/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/accessreview/schedule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/appconsent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/entitlementmanagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/entitlementmanagement/accesspackage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/lifecycleworkflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/privilegedaccess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/privilegedaccess/schedule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/termsofuse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/userconsent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/identitygovernance/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/insights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/insights/used.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/insights/used.py -------------------------------------------------------------------------------- /office365/directory/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/internal/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/invitations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/licenses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/object.py -------------------------------------------------------------------------------- /office365/directory/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/permissions/grants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/policies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/policies/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/policies/base.py -------------------------------------------------------------------------------- /office365/directory/policies/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/policies/root.py -------------------------------------------------------------------------------- /office365/directory/policies/sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/policies/sts.py -------------------------------------------------------------------------------- /office365/directory/profile_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/profile_photo.py -------------------------------------------------------------------------------- /office365/directory/protection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/protection/policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/protection/riskyusers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/protection/threatassessment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/protection/threatassessment/requests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/rolemanagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/rolemanagement/unifiedrole/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/alerts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/attacksimulations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/attacksimulations/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/cases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/incidents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/labels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/scorecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/securescores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/subjectrightsrequests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/threatintelligence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/security/triggers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/serviceprincipals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/subscriptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/synchronization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/tenantinformation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/users/activities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/directory/users/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/users/profile.py -------------------------------------------------------------------------------- /office365/directory/users/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/users/storage.py -------------------------------------------------------------------------------- /office365/directory/users/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/directory/users/user.py -------------------------------------------------------------------------------- /office365/education/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/education/class_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/education/class_type.py -------------------------------------------------------------------------------- /office365/education/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/education/root.py -------------------------------------------------------------------------------- /office365/education/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/education/user.py -------------------------------------------------------------------------------- /office365/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/entity.py -------------------------------------------------------------------------------- /office365/entity_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/entity_collection.py -------------------------------------------------------------------------------- /office365/graph_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/graph_client.py -------------------------------------------------------------------------------- /office365/graph_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/graph_request.py -------------------------------------------------------------------------------- /office365/intune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/audit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/audit/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/audit/actor.py -------------------------------------------------------------------------------- /office365/intune/audit/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/audit/event.py -------------------------------------------------------------------------------- /office365/intune/audit/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/audit/property.py -------------------------------------------------------------------------------- /office365/intune/audit/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/audit/resource.py -------------------------------------------------------------------------------- /office365/intune/brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/brand.py -------------------------------------------------------------------------------- /office365/intune/browser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/devices/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/devices/category.py -------------------------------------------------------------------------------- /office365/intune/devices/compliance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/devices/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/devices/data.py -------------------------------------------------------------------------------- /office365/intune/devices/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/devices/detail.py -------------------------------------------------------------------------------- /office365/intune/devices/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/devices/device.py -------------------------------------------------------------------------------- /office365/intune/devices/enrollment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/devices/managed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/devices/managed.py -------------------------------------------------------------------------------- /office365/intune/devices/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/devices/management/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/organizations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/policies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/printing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/printing/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/printing/base.py -------------------------------------------------------------------------------- /office365/intune/printing/connectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/printing/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/printing/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/printing/print.py -------------------------------------------------------------------------------- /office365/intune/printing/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/printing/printer.py -------------------------------------------------------------------------------- /office365/intune/printing/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/printing/share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/printing/share.py -------------------------------------------------------------------------------- /office365/intune/printing/shares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/printing/taskdefinitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/provisioned_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/provisioned_plan.py -------------------------------------------------------------------------------- /office365/intune/servicecommunications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/servicecommunications/health/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/servicecommunications/issues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/servicecommunications/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/termsandconditions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/intune/vpp_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/intune/vpp_token.py -------------------------------------------------------------------------------- /office365/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/logger.py -------------------------------------------------------------------------------- /office365/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/migration/assessment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/migration/assessment/scanners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/base_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/base_item.py -------------------------------------------------------------------------------- /office365/onedrive/columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/columns/choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/columns/choice.py -------------------------------------------------------------------------------- /office365/onedrive/columns/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/columns/lookup.py -------------------------------------------------------------------------------- /office365/onedrive/columns/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/columns/number.py -------------------------------------------------------------------------------- /office365/onedrive/columns/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/columns/term.py -------------------------------------------------------------------------------- /office365/onedrive/columns/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/columns/text.py -------------------------------------------------------------------------------- /office365/onedrive/columns/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/columns/types.py -------------------------------------------------------------------------------- /office365/onedrive/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/documentsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/driveitems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/drives/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/drives/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/drives/drive.py -------------------------------------------------------------------------------- /office365/onedrive/drives/quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/drives/quota.py -------------------------------------------------------------------------------- /office365/onedrive/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/files/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/files/file.py -------------------------------------------------------------------------------- /office365/onedrive/files/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/files/hashes.py -------------------------------------------------------------------------------- /office365/onedrive/filestorage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/folders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/folders/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/folders/folder.py -------------------------------------------------------------------------------- /office365/onedrive/folders/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/folders/view.py -------------------------------------------------------------------------------- /office365/onedrive/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/internal/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/internal/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/listitems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/lists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/lists/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/lists/info.py -------------------------------------------------------------------------------- /office365/onedrive/lists/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/lists/list.py -------------------------------------------------------------------------------- /office365/onedrive/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/recyclebin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/root.py -------------------------------------------------------------------------------- /office365/onedrive/sensitivitylabels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/sharepoint_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/sharepoint_ids.py -------------------------------------------------------------------------------- /office365/onedrive/shares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/shares/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/shares/shared.py -------------------------------------------------------------------------------- /office365/onedrive/sitepages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/sitepages/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/sitepages/base.py -------------------------------------------------------------------------------- /office365/onedrive/sitepages/sections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/sitepages/webparts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/sites/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/sites/site.py -------------------------------------------------------------------------------- /office365/onedrive/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/termstore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/termstore/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/termstore/sets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/termstore/terms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/versions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/applications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/charts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/charts/legend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/charts/series/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/comments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onedrive/workbooks/icon.py -------------------------------------------------------------------------------- /office365/onedrive/workbooks/names/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/ranges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/tables/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/tables/columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/tables/rows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onedrive/workbooks/worksheets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/notebooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/onenote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onenote/onenote.py -------------------------------------------------------------------------------- /office365/onenote/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/operations/operation_status.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/pages/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onenote/pages/links.py -------------------------------------------------------------------------------- /office365/onenote/pages/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/onenote/pages/page.py -------------------------------------------------------------------------------- /office365/onenote/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/sectiongroups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/onenote/sections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/attendees/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/calendar/group.py -------------------------------------------------------------------------------- /office365/outlook/calendar/meetingtimes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/calendar/place.py -------------------------------------------------------------------------------- /office365/outlook/calendar/rooms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/schedule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/sharing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/calendar/timezones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/category.py -------------------------------------------------------------------------------- /office365/outlook/contacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/contacts/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/contacts/folder.py -------------------------------------------------------------------------------- /office365/outlook/geo_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/geo_coordinates.py -------------------------------------------------------------------------------- /office365/outlook/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/internal/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/internal/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/item.py -------------------------------------------------------------------------------- /office365/outlook/locale_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/locale_info.py -------------------------------------------------------------------------------- /office365/outlook/mail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/mail/attachments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/mail/body_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/mail/body_type.py -------------------------------------------------------------------------------- /office365/outlook/mail/folders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/mail/importance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/mail/importance.py -------------------------------------------------------------------------------- /office365/outlook/mail/item_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/mail/item_body.py -------------------------------------------------------------------------------- /office365/outlook/mail/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/mail/location.py -------------------------------------------------------------------------------- /office365/outlook/mail/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/mail/messages/rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/mail/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/mail/post.py -------------------------------------------------------------------------------- /office365/outlook/mail/recipient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/mail/recipient.py -------------------------------------------------------------------------------- /office365/outlook/mail/tips/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/mail/tips/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/mail/tips/error.py -------------------------------------------------------------------------------- /office365/outlook/mail/tips/tips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/mail/tips/tips.py -------------------------------------------------------------------------------- /office365/outlook/people/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/outlook/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/person.py -------------------------------------------------------------------------------- /office365/outlook/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/outlook/user.py -------------------------------------------------------------------------------- /office365/partners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/partners/billing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/partners/partners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/partners/partners.py -------------------------------------------------------------------------------- /office365/planner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/planner/buckets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/planner/buckets/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/buckets/bucket.py -------------------------------------------------------------------------------- /office365/planner/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/group.py -------------------------------------------------------------------------------- /office365/planner/planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/planner.py -------------------------------------------------------------------------------- /office365/planner/plans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/planner/plans/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/plans/container.py -------------------------------------------------------------------------------- /office365/planner/plans/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/plans/details.py -------------------------------------------------------------------------------- /office365/planner/plans/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/plans/plan.py -------------------------------------------------------------------------------- /office365/planner/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/planner/tasks/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/tasks/task.py -------------------------------------------------------------------------------- /office365/planner/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/user.py -------------------------------------------------------------------------------- /office365/planner/user_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/planner/user_ids.py -------------------------------------------------------------------------------- /office365/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/project/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/project/project.py -------------------------------------------------------------------------------- /office365/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/reports/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/reports/internal/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/reports/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/reports/report.py -------------------------------------------------------------------------------- /office365/reports/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/reports/root.py -------------------------------------------------------------------------------- /office365/reports/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/reports/security/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/reports/security/root.py -------------------------------------------------------------------------------- /office365/reports/userregistration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/auth/entra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/auth/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/auth/providers/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/client_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/client_object.py -------------------------------------------------------------------------------- /office365/runtime/client_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/client_request.py -------------------------------------------------------------------------------- /office365/runtime/client_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/client_result.py -------------------------------------------------------------------------------- /office365/runtime/client_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/client_value.py -------------------------------------------------------------------------------- /office365/runtime/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/compat.py -------------------------------------------------------------------------------- /office365/runtime/csom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/csom/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/csom/request.py -------------------------------------------------------------------------------- /office365/runtime/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/odata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/odata/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/odata/method.py -------------------------------------------------------------------------------- /office365/runtime/odata/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/odata/model.py -------------------------------------------------------------------------------- /office365/runtime/odata/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/odata/parameter.py -------------------------------------------------------------------------------- /office365/runtime/odata/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/odata/property.py -------------------------------------------------------------------------------- /office365/runtime/odata/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/odata/reader.py -------------------------------------------------------------------------------- /office365/runtime/odata/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/odata/request.py -------------------------------------------------------------------------------- /office365/runtime/odata/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/odata/type.py -------------------------------------------------------------------------------- /office365/runtime/odata/v3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/odata/v4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/paths/appid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/paths/appid.py -------------------------------------------------------------------------------- /office365/runtime/paths/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/paths/builder.py -------------------------------------------------------------------------------- /office365/runtime/paths/v3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/paths/v3/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/paths/v3/entity.py -------------------------------------------------------------------------------- /office365/runtime/paths/v4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/paths/v4/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/paths/v4/entity.py -------------------------------------------------------------------------------- /office365/runtime/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/runtime/queries/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/runtime/queries/batch.py -------------------------------------------------------------------------------- /office365/runtime/types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/search/acronyms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/search/acronyms/acronym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/acronyms/acronym.py -------------------------------------------------------------------------------- /office365/search/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/aggregation.py -------------------------------------------------------------------------------- /office365/search/answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/answer.py -------------------------------------------------------------------------------- /office365/search/bookmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/search/bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/bucket.py -------------------------------------------------------------------------------- /office365/search/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/entity.py -------------------------------------------------------------------------------- /office365/search/entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/entity_type.py -------------------------------------------------------------------------------- /office365/search/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/search/external/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/external/item.py -------------------------------------------------------------------------------- /office365/search/hit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/hit.py -------------------------------------------------------------------------------- /office365/search/hits_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/hits_container.py -------------------------------------------------------------------------------- /office365/search/identity_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/identity_set.py -------------------------------------------------------------------------------- /office365/search/qnas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/search/qnas/qna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/qnas/qna.py -------------------------------------------------------------------------------- /office365/search/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/query.py -------------------------------------------------------------------------------- /office365/search/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/request.py -------------------------------------------------------------------------------- /office365/search/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/response.py -------------------------------------------------------------------------------- /office365/search/sort_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/search/sort_property.py -------------------------------------------------------------------------------- /office365/sharepoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/actionablemessages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/activities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/activities/facets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/administration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/administration/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/administration/archiving/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/administration/orgassets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/administration/sitemove/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/alerts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/alerts/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/alerts/alert.py -------------------------------------------------------------------------------- /office365/sharepoint/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/appprincipal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/apps/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/apps/license.py -------------------------------------------------------------------------------- /office365/sharepoint/apps/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/attachments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/audit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/audit/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/audit/audit.py -------------------------------------------------------------------------------- /office365/sharepoint/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/authpolicy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/authpolicy/events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/brandcenter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/businessdata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/businessdata/infrastructure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/businessdata/infrastructure/securestore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/campaigns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/changes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/changes/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/changes/file.py -------------------------------------------------------------------------------- /office365/sharepoint/changes/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/changes/item.py -------------------------------------------------------------------------------- /office365/sharepoint/changes/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/changes/list.py -------------------------------------------------------------------------------- /office365/sharepoint/changes/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/changes/site.py -------------------------------------------------------------------------------- /office365/sharepoint/changes/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/changes/type.py -------------------------------------------------------------------------------- /office365/sharepoint/changes/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/changes/user.py -------------------------------------------------------------------------------- /office365/sharepoint/changes/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/changes/view.py -------------------------------------------------------------------------------- /office365/sharepoint/changes/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/changes/web.py -------------------------------------------------------------------------------- /office365/sharepoint/clientsidecomponent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/clientsidecomponent/hostedapps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/comments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/comments/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/compliance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/contentcenter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/contentcenter/machinelearning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/contentcenter/machinelearning/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/contentcenter/machinelearning/publications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/contentcenter/machinelearning/samples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/contentcenter/machinelearning/workitems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/contenttypes/fieldlinks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/convergence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/copilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/customactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/directory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/directory/provider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/documentmanagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/entity.py -------------------------------------------------------------------------------- /office365/sharepoint/esign/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/esign/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/eventreceivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/excel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/features/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/fields/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/fields/field.py -------------------------------------------------------------------------------- /office365/sharepoint/fields/guid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/fields/guid.py -------------------------------------------------------------------------------- /office365/sharepoint/fields/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/fields/text.py -------------------------------------------------------------------------------- /office365/sharepoint/fields/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/fields/type.py -------------------------------------------------------------------------------- /office365/sharepoint/fields/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/fields/url.py -------------------------------------------------------------------------------- /office365/sharepoint/fields/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/fields/user.py -------------------------------------------------------------------------------- /office365/sharepoint/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/files/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/files/file.py -------------------------------------------------------------------------------- /office365/sharepoint/files/publish/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/files/versions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/fileservices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/flows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/folders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/fontpackages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/forms/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/forms/form.py -------------------------------------------------------------------------------- /office365/sharepoint/gtp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/internal/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/internal/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/ir/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/ir/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/ir/migration.py -------------------------------------------------------------------------------- /office365/sharepoint/largeoperation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/likes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/listhome/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/listitems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/listitems/caml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/listitems/versions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/lists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/lists/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/lists/list.py -------------------------------------------------------------------------------- /office365/sharepoint/lists/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/lists/rule.py -------------------------------------------------------------------------------- /office365/sharepoint/logger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/marketplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/marketplace/corporatecuratedgallery/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/marketplace/corporatecuratedgallery/addins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/marketplace/sitecollection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/marketplace/sitecollection/appcatalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/marketplace/tenant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/marketplace/tenant/appcatalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/microfeed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/microservice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/migrationcenter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/migrationcenter/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/migrationcenter/common/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/migrationcenter/common/teams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/migrationcenter/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/migrationcenter/service/performance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/mount/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/mount/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/mount/point.py -------------------------------------------------------------------------------- /office365/sharepoint/mount/requests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/multigeo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/navigation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/oauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/oauth/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/oauth/token.py -------------------------------------------------------------------------------- /office365/sharepoint/onboarding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/onboarding/siterenamejobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/orgnewssite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/pageinstrumentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/permissions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/permissions/irm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/permissions/roles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/permissions/roles/assignments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/permissions/roles/definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/photos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/policy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/channels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/linkedsites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/orglabels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/teams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/userprofiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/userprofiles/documentsshared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/userprofiles/sharedwithme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/portal/webcontrols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/principal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/principal/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/principal/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/announcements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/customproperties/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/diagnostics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/navigation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/pagecopywithassets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/pages/3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/pages/campaign/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/pages/reposts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/pages/topics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/personmagazine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/point/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/portallaunch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/sites/communication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/publishing/video/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/pushnotifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/quotamanagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/quotamanagement/consumer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/recyclebin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/reputationmodel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/request.py -------------------------------------------------------------------------------- /office365/sharepoint/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/administration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/administration/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/analytics/actor.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/query/sort/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/refiner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/reports/abandonedqueries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/reports/abandonedqueries/data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/reports/noresult/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/reports/numberofqueries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/search/reports/topqueries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/securestore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sharing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sharing/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sharing/invitation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sharing/links/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sharing/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sharing/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/sharing/role.py -------------------------------------------------------------------------------- /office365/sharepoint/sitedesigns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sitehealth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sites/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sites/manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/sites/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/sites/site.py -------------------------------------------------------------------------------- /office365/sharepoint/sites/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/sites/themes.py -------------------------------------------------------------------------------- /office365/sharepoint/sitescripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/smartcache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/social/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/social/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/social/actor.py -------------------------------------------------------------------------------- /office365/sharepoint/social/feed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/social/following/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/social/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/social/link.py -------------------------------------------------------------------------------- /office365/sharepoint/social/microfeed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/social/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/storagemetrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/taxonomy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/taxonomy/contenttypesync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/taxonomy/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/taxonomy/sets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/taxonomy/stores/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/taxonomy/terms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/teams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/audit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/collaboration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/coms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/copilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/copilot/agentinsights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/datagovernance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/hubsites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/insights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/internal/aad/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/internal/appservice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/malware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/policies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/powerapps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/ransomware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/syntex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/webs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/administration/webs/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/insights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/management/externalusers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/tenant/management/externalusers/results/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/translation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/ui/applicationpages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/ui/applicationpages/peoplepicker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/usercustomactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/userprofiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/userprofiles/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/views/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/views/scope.py -------------------------------------------------------------------------------- /office365/sharepoint/views/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/views/type.py -------------------------------------------------------------------------------- /office365/sharepoint/views/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/views/view.py -------------------------------------------------------------------------------- /office365/sharepoint/views/visualization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/viva/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/viva/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/viva/home.py -------------------------------------------------------------------------------- /office365/sharepoint/webhooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/webparts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/webparts/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/webs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/webs/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/webs/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/sharepoint/webs/web.py -------------------------------------------------------------------------------- /office365/sharepoint/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/workflowservices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/workmanagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/sharepoint/yammer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/subscriptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/aiinteractions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/apps/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/apps/app.py -------------------------------------------------------------------------------- /office365/teams/apps/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/apps/catalog.py -------------------------------------------------------------------------------- /office365/teams/apps/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/apps/definition.py -------------------------------------------------------------------------------- /office365/teams/apps/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/apps/installation.py -------------------------------------------------------------------------------- /office365/teams/associated_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/associated_info.py -------------------------------------------------------------------------------- /office365/teams/bots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/bots/teamwork_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/bots/teamwork_bot.py -------------------------------------------------------------------------------- /office365/teams/channels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/channels/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/channels/channel.py -------------------------------------------------------------------------------- /office365/teams/chats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/chats/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/chats/chat.py -------------------------------------------------------------------------------- /office365/teams/chats/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/chats/collection.py -------------------------------------------------------------------------------- /office365/teams/chats/deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/chats/deleted.py -------------------------------------------------------------------------------- /office365/teams/chats/messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/chats/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/chats/type.py -------------------------------------------------------------------------------- /office365/teams/chats/viewpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/chats/viewpoint.py -------------------------------------------------------------------------------- /office365/teams/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/collection.py -------------------------------------------------------------------------------- /office365/teams/deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/deleted.py -------------------------------------------------------------------------------- /office365/teams/fun_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/fun_settings.py -------------------------------------------------------------------------------- /office365/teams/guest_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/guest_settings.py -------------------------------------------------------------------------------- /office365/teams/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/info.py -------------------------------------------------------------------------------- /office365/teams/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/internal/paths/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/members/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/members/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/members/settings.py -------------------------------------------------------------------------------- /office365/teams/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/schedule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/schedule/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/schedule/entity.py -------------------------------------------------------------------------------- /office365/teams/schedule/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/schedule/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/schedule/schedule.py -------------------------------------------------------------------------------- /office365/teams/schedule/shifts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/schedule/shifts/offer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/schedule/shifts/open/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/summary.py -------------------------------------------------------------------------------- /office365/teams/tabs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/tabs/tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/tabs/tab.py -------------------------------------------------------------------------------- /office365/teams/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/team.py -------------------------------------------------------------------------------- /office365/teams/teamwork/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/teamwork/shiftmanagement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/teamwork/tags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/teamwork/tags/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/teamwork/tags/tag.py -------------------------------------------------------------------------------- /office365/teams/teamwork/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/teamwork/user.py -------------------------------------------------------------------------------- /office365/teams/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/template.py -------------------------------------------------------------------------------- /office365/teams/visibility_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/visibility_type.py -------------------------------------------------------------------------------- /office365/teams/viva/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/viva/community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/viva/community.py -------------------------------------------------------------------------------- /office365/teams/viva/learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/viva/learning/courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/teams/work.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/teams/work.py -------------------------------------------------------------------------------- /office365/todo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/todo/attachments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/todo/attachments/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/todo/attachments/base.py -------------------------------------------------------------------------------- /office365/todo/attachments/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/todo/attachments/info.py -------------------------------------------------------------------------------- /office365/todo/attachments/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/todo/attachments/type.py -------------------------------------------------------------------------------- /office365/todo/checklist_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/todo/checklist_item.py -------------------------------------------------------------------------------- /office365/todo/linked_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/todo/linked_resource.py -------------------------------------------------------------------------------- /office365/todo/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office365/todo/tasks/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/todo/tasks/list.py -------------------------------------------------------------------------------- /office365/todo/tasks/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/todo/tasks/task.py -------------------------------------------------------------------------------- /office365/todo/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/office365/todo/todo.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-examples.txt: -------------------------------------------------------------------------------- 1 | -r requirements-dev.txt 2 | 3 | faker 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/admin/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/admin/test_admin.py -------------------------------------------------------------------------------- /tests/booking/test_business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/booking/test_business.py -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/data/Financial Sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/data/Financial Sample.xlsx -------------------------------------------------------------------------------- /tests/data/ImportTermSet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/data/ImportTermSet.csv -------------------------------------------------------------------------------- /tests/data/Sample.txt: -------------------------------------------------------------------------------- 1 | Initial Content -------------------------------------------------------------------------------- /tests/data/big_buck_bunny.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/data/big_buck_bunny.mp4 -------------------------------------------------------------------------------- /tests/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/decorators.py -------------------------------------------------------------------------------- /tests/directory/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_application.py -------------------------------------------------------------------------------- /tests/directory/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_audit.py -------------------------------------------------------------------------------- /tests/directory/test_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_directory.py -------------------------------------------------------------------------------- /tests/directory/test_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_domain.py -------------------------------------------------------------------------------- /tests/directory/test_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_extensions.py -------------------------------------------------------------------------------- /tests/directory/test_governance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_governance.py -------------------------------------------------------------------------------- /tests/directory/test_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_group.py -------------------------------------------------------------------------------- /tests/directory/test_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_identity.py -------------------------------------------------------------------------------- /tests/directory/test_invitations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_invitations.py -------------------------------------------------------------------------------- /tests/directory/test_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_organization.py -------------------------------------------------------------------------------- /tests/directory/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_reports.py -------------------------------------------------------------------------------- /tests/directory/test_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_tenant.py -------------------------------------------------------------------------------- /tests/directory/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/directory/test_user.py -------------------------------------------------------------------------------- /tests/graph_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/graph_case.py -------------------------------------------------------------------------------- /tests/intune/test_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/intune/test_devices.py -------------------------------------------------------------------------------- /tests/intune/test_managed_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/intune/test_managed_devices.py -------------------------------------------------------------------------------- /tests/intune/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/intune/test_reports.py -------------------------------------------------------------------------------- /tests/onedrive/test_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_column.py -------------------------------------------------------------------------------- /tests/onedrive/test_content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_content_type.py -------------------------------------------------------------------------------- /tests/onedrive/test_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_drive.py -------------------------------------------------------------------------------- /tests/onedrive/test_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_excel.py -------------------------------------------------------------------------------- /tests/onedrive/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_file.py -------------------------------------------------------------------------------- /tests/onedrive/test_file_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_file_storage.py -------------------------------------------------------------------------------- /tests/onedrive/test_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_folder.py -------------------------------------------------------------------------------- /tests/onedrive/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_list.py -------------------------------------------------------------------------------- /tests/onedrive/test_listitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_listitem.py -------------------------------------------------------------------------------- /tests/onedrive/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_permissions.py -------------------------------------------------------------------------------- /tests/onedrive/test_shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_shares.py -------------------------------------------------------------------------------- /tests/onedrive/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_site.py -------------------------------------------------------------------------------- /tests/onedrive/test_sitepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_sitepage.py -------------------------------------------------------------------------------- /tests/onedrive/test_taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_taxonomy.py -------------------------------------------------------------------------------- /tests/onedrive/test_webpart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onedrive/test_webpart.py -------------------------------------------------------------------------------- /tests/onenote/test_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onenote/test_notebook.py -------------------------------------------------------------------------------- /tests/onenote/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onenote/test_page.py -------------------------------------------------------------------------------- /tests/onenote/test_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/onenote/test_section.py -------------------------------------------------------------------------------- /tests/outlook/test_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_attachments.py -------------------------------------------------------------------------------- /tests/outlook/test_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_calendar.py -------------------------------------------------------------------------------- /tests/outlook/test_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_contacts.py -------------------------------------------------------------------------------- /tests/outlook/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_event.py -------------------------------------------------------------------------------- /tests/outlook/test_mail_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_mail_folder.py -------------------------------------------------------------------------------- /tests/outlook/test_message_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_message_rules.py -------------------------------------------------------------------------------- /tests/outlook/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_messages.py -------------------------------------------------------------------------------- /tests/outlook/test_outlook_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_outlook_user.py -------------------------------------------------------------------------------- /tests/outlook/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_reports.py -------------------------------------------------------------------------------- /tests/outlook/test_rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/outlook/test_rooms.py -------------------------------------------------------------------------------- /tests/planner/test_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/planner/test_plans.py -------------------------------------------------------------------------------- /tests/reports/test_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/reports/test_insights.py -------------------------------------------------------------------------------- /tests/reports/test_usage_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/reports/test_usage_reports.py -------------------------------------------------------------------------------- /tests/search/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/search/test_search.py -------------------------------------------------------------------------------- /tests/security/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/security/test_reports.py -------------------------------------------------------------------------------- /tests/security/test_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/security/test_security.py -------------------------------------------------------------------------------- /tests/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/settings.cfg -------------------------------------------------------------------------------- /tests/sharepoint/sharepoint_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/sharepoint_case.py -------------------------------------------------------------------------------- /tests/sharepoint/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_admin.py -------------------------------------------------------------------------------- /tests/sharepoint/test_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_alert.py -------------------------------------------------------------------------------- /tests/sharepoint/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_app.py -------------------------------------------------------------------------------- /tests/sharepoint/test_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_attachment.py -------------------------------------------------------------------------------- /tests/sharepoint/test_bdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_bdc.py -------------------------------------------------------------------------------- /tests/sharepoint/test_brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_brand.py -------------------------------------------------------------------------------- /tests/sharepoint/test_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_change.py -------------------------------------------------------------------------------- /tests/sharepoint/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_client.py -------------------------------------------------------------------------------- /tests/sharepoint/test_compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_compliance.py -------------------------------------------------------------------------------- /tests/sharepoint/test_contenttype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_contenttype.py -------------------------------------------------------------------------------- /tests/sharepoint/test_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_feature.py -------------------------------------------------------------------------------- /tests/sharepoint/test_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_field.py -------------------------------------------------------------------------------- /tests/sharepoint/test_field_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_field_value.py -------------------------------------------------------------------------------- /tests/sharepoint/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_file.py -------------------------------------------------------------------------------- /tests/sharepoint/test_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_flow.py -------------------------------------------------------------------------------- /tests/sharepoint/test_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_folder.py -------------------------------------------------------------------------------- /tests/sharepoint/test_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_group.py -------------------------------------------------------------------------------- /tests/sharepoint/test_home_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_home_sites.py -------------------------------------------------------------------------------- /tests/sharepoint/test_hub_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_hub_site.py -------------------------------------------------------------------------------- /tests/sharepoint/test_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_library.py -------------------------------------------------------------------------------- /tests/sharepoint/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_list.py -------------------------------------------------------------------------------- /tests/sharepoint/test_listItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_listItem.py -------------------------------------------------------------------------------- /tests/sharepoint/test_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_migration.py -------------------------------------------------------------------------------- /tests/sharepoint/test_multigeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_multigeo.py -------------------------------------------------------------------------------- /tests/sharepoint/test_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_navigation.py -------------------------------------------------------------------------------- /tests/sharepoint/test_org_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_org_news.py -------------------------------------------------------------------------------- /tests/sharepoint/test_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_pages.py -------------------------------------------------------------------------------- /tests/sharepoint/test_publishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_publishing.py -------------------------------------------------------------------------------- /tests/sharepoint/test_recycle_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_recycle_bin.py -------------------------------------------------------------------------------- /tests/sharepoint/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_roles.py -------------------------------------------------------------------------------- /tests/sharepoint/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_search.py -------------------------------------------------------------------------------- /tests/sharepoint/test_sharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_sharing.py -------------------------------------------------------------------------------- /tests/sharepoint/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_site.py -------------------------------------------------------------------------------- /tests/sharepoint/test_site_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_site_design.py -------------------------------------------------------------------------------- /tests/sharepoint/test_site_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_site_script.py -------------------------------------------------------------------------------- /tests/sharepoint/test_sitepages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_sitepages.py -------------------------------------------------------------------------------- /tests/sharepoint/test_social.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_social.py -------------------------------------------------------------------------------- /tests/sharepoint/test_taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_taxonomy.py -------------------------------------------------------------------------------- /tests/sharepoint/test_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_team.py -------------------------------------------------------------------------------- /tests/sharepoint/test_team_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_team_site.py -------------------------------------------------------------------------------- /tests/sharepoint/test_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_tenant.py -------------------------------------------------------------------------------- /tests/sharepoint/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_user.py -------------------------------------------------------------------------------- /tests/sharepoint/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_utility.py -------------------------------------------------------------------------------- /tests/sharepoint/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_view.py -------------------------------------------------------------------------------- /tests/sharepoint/test_viva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_viva.py -------------------------------------------------------------------------------- /tests/sharepoint/test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_web.py -------------------------------------------------------------------------------- /tests/sharepoint/test_webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_webhooks.py -------------------------------------------------------------------------------- /tests/sharepoint/test_webpart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_webpart.py -------------------------------------------------------------------------------- /tests/sharepoint/test_workflows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/sharepoint/test_workflows.py -------------------------------------------------------------------------------- /tests/teams/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/teams/test_apps.py -------------------------------------------------------------------------------- /tests/teams/test_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/teams/test_channel.py -------------------------------------------------------------------------------- /tests/teams/test_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/teams/test_chats.py -------------------------------------------------------------------------------- /tests/teams/test_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/teams/test_reports.py -------------------------------------------------------------------------------- /tests/teams/test_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/teams/test_team.py -------------------------------------------------------------------------------- /tests/test_graph_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/test_graph_client.py -------------------------------------------------------------------------------- /tests/todo/test_tasklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgrem/office365-rest-python-client/HEAD/tests/todo/test_tasklist.py --------------------------------------------------------------------------------