Azure Softwareplan
Azure Software Plan is an API connector for managing Azure software plan information associated with marketplace-based cloud resources.
- Base URL:
https://management.azure.com - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
hybridusebenefit_list— GET /{scope}/providers/Microsoft.SoftwarePlan/hybridUseBenefits — Get all hybrid use benefits associated with an ARM resource.hybridusebenefit_get— GET /{scope}/providers/Microsoft.SoftwarePlan/hybridUseBenefits/{planId} — Gets a given plan IDhybridusebenefitrevision_list— GET /{scope}/providers/Microsoft.SoftwarePlan/hybridUseBenefits/{planId}/revisions — Gets the version history of a hybrid use benefitoperations_list— GET /{scope}/providers/Microsoft.SoftwarePlan/operations — Get operations.softwareplan_register— POST /subscriptions/{subscriptionId}/providers/Microsoft.SoftwarePlan/register — Register to Microsoft.SoftwarePlan resource provider.hybridusebenefit_create— PUT /{scope}/providers/Microsoft.SoftwarePlan/hybridUseBenefits/{planId} — Create a new hybrid use benefit under a given scope
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: hybridusebenefit_list
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: hybridusebenefit_list, hybridusebenefit_get, hybridusebenefitrevision_list, operations_list, softwareplan_register, hybridusebenefit_create |
planId |
string | no | — | Path parameter planId (required by some operations). |
scope |
string | no | — | Path parameter scope (required by some operations). |
subscriptionId |
string | no | — | Path parameter subscriptionId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |
body |
string | no | — | Request body as a JSON object string (for create/update operations). |