msgraph-beta-sdk-python
msgraph-beta-sdk-python copied to clipboard
This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR.
Bumps [importlib-metadata](https://github.com/python/importlib_metadata) from 6.8.0 to 7.1.0. Changelog Sourced from importlib-metadata's changelog. v7.1.0 Features python/cpython#114664 Bugfixes Make MetadataPathFinder.find_distributions a classmethod for consistency with CPython. Closes #484. (#484) Allow MetadataPathFinder.invalidate_caches to be...
I am trying to figure out how to get and create user flows. This is as far as I've figured out the code for getting a userflow by a filtered...
**Is your feature request related to a problem? Please describe.** graph.get_configuration_settings_for_definition(setting_instance_template.setting_definition_id) returns an error In the graph API expolorer it returns values that are not in the DeviceManagementConfigurationWIndowsSkus ```json {...
While fetching managed devices with the following call : _GraphServiceClient -> device_management.managed_devices.get()_ ``` File "[...]\msgraph_beta\generated\models\managed_device.py", line 400, in "managementAgent": lambda n : setattr(self, 'management_agent', n.get_enum_value(ManagementAgentType)), File "[...]\kiota_serialization_json\json_parse_node.py", line 201, in...
When using the sample from https://github.com/microsoftgraph/msgraph-beta-sdk-python?tab=readme-ov-file#3-make-requests-against-the-service to fetch a user you get the following error (after applying the workaround from #194) ``` Exception has occurred: ImportError cannot import name 'alert_record'...
Hey Folks, I am getting this error : `AzureIdentityAccessTokenProvider.get_authorization_token() takes 2 positional arguments but 3 were given` Here is the sample code: ```python import asyncio from azure.identity import ClientSecretCredential from...
The current unzipped pip package size is >600MB making it unusable for deployment on systems like e.g. AWS lambda in my case. It would be good if e.g. the package...
There's some rather confusing and annoying property names being generated. Even my github copilot gets this wrong. Example: msgraph.generated.models.ti_indicator.TiIndicator has translated the field "networkIPv4" to the class property `network_i_pv4`. There's...
client_drive = await client.drives.by_drive_id("CLIENT_ID").get() >>> client_drive.name 'OneDrive' >>> client_drive.items >>> client_drive.root >>> type(client_drive.root) >>> type(client_drive.items) But Querying from Graph Explorer can return the right files.