Paul Van Eck
Paul Van Eck
Environment variable tuples were moved outside of the `EnvironmentVariables` class and the `EnvironmentVariables` class was exported. Since these envvars are already publicly documented in various Azure docs and used by...
Here, we add a few new classes to core to support adding/using more data in access tokens received from credentials. - `AccessTokenInfo`: A new alternative class to `AccessToken` which isn't...
Closes: https://github.com/Azure/azure-sdk-for-python/issues/33129
**Describe the bug** Running the following script works on Windows with WAM, but not on macOS with Company Portal: https://gist.github.com/pvaneck/d304306a303c8d6ad8ccac52d995f4a8 Instead, on macOS, the request with the PoP token yields...
WIP Migration of Monitor Logs Ingestion swagger to TypeSpec.
Now users of DefaultAzureCredential can specify a specific credential in the DAC chain when using the AZURE_TOKEN_CREDENTIALS environment variable. Closes: https://github.com/Azure/azure-sdk-for-python/issues/39784
- Only add the `-AsSecureString` argument when available and needed. This argument is no longer needed for `Az.Accounts` versions 5.0.0 and above. - Update secure string parsing logic to allow...
This can be checked by SDK developers to see if non-stable attributes or semantic conventions should be emitted or not when tracing is enabled. (For example `gen_ai.*` attributes). Users can...
This is a protocol that custom models can implement to allow it to work with the SDK serialization/deserialization mechanisms. Ref: https://gist.github.com/pvaneck/3f7266c07828d0fb3bd15e8cfbc618d5#2-protocol-based-approach Open questions: - Are these method names too general?...
## Motivation In environments where multiple clients across multiple processes are sending requests, we want to avoid the [thundering herd problem](https://en.wikipedia.org/wiki/Thundering_herd_problem) where all these clients are retrying simultaneously. A service...