Remove deprecated Azure Log Analytics connector#92
Merged
Conversation
The Azure Log Analytics connector and all its user-facing operations are deprecated by Microsoft. The generated client contained only internal discovery methods (ListSubscriptions, ListResourceGroups, ListWorkspaceNames, ListArmQueryResultsSchema) with no user-facing API surface. Use Azure Monitor Logs connector instead. Co-authored-by: Dobby <dobby@microsoft.com>
There was a problem hiding this comment.
Pull request overview
Removes the deprecated Azure Log Analytics generated connector from the SDK so the public typed-client surface, connector registries, tests, and documentation match the set of currently supported connectors.
Changes:
- Deleted the generated
Azureloganalyticsclient and its dedicated unit tests. - Removed
azureloganalyticsfrom connector registries/constants used by SDK consumers. - Updated release/docs metadata to reflect the connector’s removal and deprecation status.
Reviewed changes
Copilot reviewed 5 out of 8 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
tests/Microsoft.Azure.Connectors.Sdk.Tests/AzureloganalyticsClientTests.cs |
Removes test coverage for the deleted connector client. |
src/Microsoft.Azure.Connectors.Sdk/Generated/ManagedConnectors.cs |
Removes the connector from the generated available-connectors registry. |
src/Microsoft.Azure.Connectors.Sdk/Generated/ConnectorNames.cs |
Removes the public SDK constant for the connector name. |
src/Microsoft.Azure.Connectors.Sdk/Generated/AzureloganalyticsExtensions.cs |
Deletes the generated Azure Log Analytics client and related types. |
ROADMAP.md |
Marks Azure Log Analytics as deprecated in roadmap tracking. |
README.md |
Removes the connector from the validated connectors table. |
CHANGELOG.md |
Records the connector removal in unreleased notes. |
.github/skills/connection-setup/SKILL.md |
Updates the connector-name list used by the connection setup skill. |
… connector list Co-authored-by: Dobby <dobby@microsoft.com>
…notes Co-authored-by: Dobby <dobby@microsoft.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Remove the deprecated Azure Log Analytics connector (
azureloganalytics) from the SDK.The Azure Log Analytics connector and all its user-facing operations are deprecated by Microsoft. The generated client contained only internal discovery methods (ListSubscriptions, ListResourceGroups, ListWorkspaceNames, ListArmQueryResultsSchema) — hidden helpers with no user-facing API surface. Users should use the Azure Monitor Logs connector instead.
Changes
AzureloganalyticsExtensions.cs(generated client) andAzureloganalyticsClientTests.cs(tests)AzureloganalyticsfromConnectorNames.csandManagedConnectors.csRelated PRs
Validation
dotnet build— 0 errors, 0 warningsdotnet test— 202 passed, 0 failed (ConnectorNames_AllConstantsAreRegistered sync test passes)