Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/skills/connection-setup/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ Remove-Item $tempFile -ErrorAction SilentlyContinue

### Step 2: Create Connection

Supported SDK connector names: `azureblob`, `azureloganalytics`, `mq`, `office365`, `office365users`, `onedriveforbusiness`, `sharepointonline`, `smtp`, `teams`, `msgraphgroupsanduser` (and any `Microsoft.Web/connections` connector name).
Supported SDK connector names: `azureblob`, `kusto`, `mq`, `msgraphgroupsanduser`, `office365`, `office365users`, `onedriveforbusiness`, `sharepointonline`, `smtp`, `teams` (and any `Microsoft.Web/connections` connector name).

```powershell
$connectorName = "<connector-name>" # e.g., "mq", "azureloganalytics", "office365", "office365users", "onedriveforbusiness", "sharepointonline", "smtp", "teams", "msgraphgroupsanduser"
$connectorName = "<connector-name>" # e.g., "azureblob", "kusto", "mq", "msgraphgroupsanduser", "office365", "office365users", "onedriveforbusiness", "sharepointonline", "smtp", "teams"
$connectionName = "<connection-name>" # e.g., "office365-test", "sharepoint-test"

$gwId = "/subscriptions/$subscriptionId/resourceGroups/$resourceGroup/providers/Microsoft.Web/connectorGateways/$gatewayName"
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Removed

- Azure Log Analytics (`azureloganalytics`) connector removed — the connector and all its user-facing operations are deprecated by Microsoft (see [connector docs](https://learn.microsoft.com/en-us/connectors/azureloganalytics/)). Microsoft recommends the [Azure Monitor Logs](https://learn.microsoft.com/en-us/connectors/azuremonitorlogs/) connector as a replacement; this SDK does not yet include a generated client for it.

## [0.8.0-preview.1] - 2026-04-30

### Added

Comment thread
daviburg marked this conversation as resolved.
- Office 365 Users (`office365users`) generated typed client for user profile lookups, manager/reports chain, user search, and trending documents (#75)
- Azure Log Analytics (`azureloganalytics`) generated typed client for workspace discovery and query schema operations (#74)
- Azure Log Analytics (`azureloganalytics`) generated typed client for workspace discovery and query schema operations (#74) *(removed in next release — connector deprecated by Microsoft)*
- SMTP (`smtp`) generated typed client for sending email via SMTP connectors (#76)
- Azure Blob Storage (`azureblob`) generated typed client with file and container operations (#80)
- IBM MQ (`mq`) generated typed client for messaging queue operations (#81)
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ var categories = await client.GetOutlookCategoryNamesAsync();

| Connector | Status | Validated Operations |
|-----------|--------|----------------------|
| Azure Log Analytics | ✅ Validated | ListSubscriptions, ListResourceGroups, ListWorkspaceNames, ListArmQueryResultsSchema |
| IBM MQ | 🔄 SDK Generated | SendAsync, ReadAsync, ReadAllAsync, ReceiveAsync, ReceiveAllAsync, DeleteAsync, DeleteAllAsync |
| Office365 | ✅ Validated | SendEmail, GetOutlookCategoryNames, ExportEmail, CalendarPostItem |
| Office365 Users | ✅ Validated | MyProfile, UserProfile, Manager, DirectReports, SearchUser |
Expand Down
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Azure-native connectors (some may overlap with existing Functions bindings).
|----------|-----------|------------|--------------|-------|--------|
| 3.0 | **Azure Data Explorer (Kusto)** | — | — | KQL queries, control commands, chart rendering, MCP server | ✅ Complete |
| 3.1 | **Azure Blob Storage** | #8/#15 | — | May overlap with Functions binding | ⬜ Evaluate |
| 3.2 | **Azure Log Analytics** | #7 | — | Query/ingest operations | ⬜ Not started |
| 3.2 | ~~Azure Log Analytics~~ | #7 | — | Connector fully deprecated by Microsoft. Replacement is Azure Monitor Logs (no SDK client yet). | ❌ Deprecated |
| 3.3 | **Event Hubs** | #14 | — | May overlap with Functions binding | ⬜ Evaluate |
| 3.4 | **Service Bus** | #4/#13 | — | Functions already supports | ⚠️ Skip (native) |

Expand Down
Loading
Loading