Add IBM MQ connector client#81
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds an SDK-generated IBM MQ (mq) DirectClient connector, registers it in the SDK’s known connector lists, and updates docs/tests to reflect the new connector.
Changes:
- Added generated IBM MQ client (
MqClient) and models undersrc/Microsoft.Azure.Connectors.Sdk/Generated/. - Registered
mqinConnectorNamesandDirectClientConnectors.AvailableConnectors. - Added MQ unit tests and updated connection setup skill + README connector table.
Reviewed changes
Copilot reviewed 3 out of 6 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/Microsoft.Azure.Connectors.Sdk.Tests/MqClientTests.cs | Adds unit tests for the generated MqClient behavior (ctor, dispose, mocked calls, serialization). |
| src/Microsoft.Azure.Connectors.Sdk/Generated/MqExtensions.cs | Introduces the generated MQ client, request/response models, and connector exception type. |
| src/Microsoft.Azure.Connectors.Sdk/Generated/ManagedConnectors.cs | Registers mq in the available connector list and usage comment header. |
| src/Microsoft.Azure.Connectors.Sdk/Generated/ConnectorNames.cs | Adds the ConnectorNames.Mq = "mq" constant for compile-time connector name usage. |
| README.md | Adds IBM MQ to the “Validated Connectors” table. |
| .github/skills/connection-setup/SKILL.md | Adds mq to the supported connector names list in Step 2. |
Generated MqClient from BPM CodefulSdkGenerator with the following operations: - SendAsync: Send a message to a queue - ReadAsync/ReadAllAsync: Browse (peek) messages - ReceiveAsync/ReceiveAllAsync: Destructive get messages - DeleteAsync/DeleteAllAsync: Delete messages Includes: - Generated MqExtensions.cs (auto-generated, do not hand-edit) - ConnectorNames.cs updated with Mq constant - ManagedConnectors.cs updated with mq in available connectors - 13 unit tests covering constructor, dispose, mocked API calls, error handling, and serialization round-trips - connection-setup skill updated with mq - README.md validated connectors table updated Depends on BPM PR #15575176 (C# generator deduplication fix).
29a0d3e to
53a72c0
Compare
daviburg
added a commit
that referenced
this pull request
May 1, 2026
## Release 0.8.0-preview.1 Version bump and CHANGELOG update for the upcoming release. ### New in this release - **Office 365 Users** (\office365users\) — 12 operations (#75) - **Azure Log Analytics** (\�zureloganalytics\) — 4 operations (#74) - **SMTP** (\smtp\) — email sending (#76) - **Azure Blob Storage** (\�zureblob\) — file and container operations (#80) - **IBM MQ** (\mq\) — messaging queue operations (#81) - **OpenTelemetry instrumentation** — \ActivitySource\ tracing in \ConnectorHttpClient\ (#73) ### Release steps after merge 1. Tag: \git tag v0.8.0-preview.1 && git push origin v0.8.0-preview.1\ 2. Code mirror syncs to ADO (pipeline 1717) 3. Official build triggers on tag (pipeline 1718) 4. Queue release pipeline (1719) to publish to nuget.org
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
Add generated IBM MQ (\mq) connector client to the SDK.
Operations
Changes
Dependencies
Validation
Closes #8