Azure Monitor · Arazzo Workflow

Azure Monitor Autoscale Inventory And Reconfigure

Version 1.0.0

List autoscale settings in a resource group, branch on whether any exist, then inspect and disable a named setting.

1 workflow 1 source API 1 provider
View Spec View on GitHub Application InsightsCloudLogsMetricsMonitoringObservabilityArazzoWorkflows

Provider

microsoft-azure-monitor

Workflows

reconfigure-autoscale-settings
List autoscale settings and disable a named setting when present.
Lists the autoscale settings in a resource group and, when any exist, reads the named setting and patches it to disable autoscaling.
3 steps inputs: autoscaleSettingName, resourceGroupName, subscriptionId outputs: settingId, settings, updatedEnabled
1
listAutoscaleSettings
List the autoscale settings in the resource group and branch on whether any exist.
2
getAutoscaleSetting
Read the named autoscale setting in detail to capture its enabled state and profiles before reconfiguring it.
3
disableAutoscaleSetting
Patch the autoscale setting to disable autoscaling while leaving its profiles intact.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Azure Monitor Autoscale Inventory And Reconfigure
  summary: List autoscale settings in a resource group, branch on whether any exist, then inspect and disable a named setting.
  description: >-
    The autoscale governance flow. The workflow lists the autoscale settings in a
    resource group and branches: when at least one exists it reads a named
    setting in detail and then patches it to disable autoscaling, and when none
    exist it ends. Every step spells out its request inline so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: autoscaleSettingsApi
  url: ../openapi/microsoft-azure-monitor-autoscale-settings-api-openapi.yml
  type: openapi
workflows:
- workflowId: reconfigure-autoscale-settings
  summary: List autoscale settings and disable a named setting when present.
  description: >-
    Lists the autoscale settings in a resource group and, when any exist, reads
    the named setting and patches it to disable autoscaling.
  inputs:
    type: object
    required:
    - subscriptionId
    - resourceGroupName
    - autoscaleSettingName
    properties:
      subscriptionId:
        type: string
        description: The ID of the target subscription.
      resourceGroupName:
        type: string
        description: The name of the resource group.
      autoscaleSettingName:
        type: string
        description: The autoscale setting to inspect and disable when settings are present.
  steps:
  - stepId: listAutoscaleSettings
    description: >-
      List the autoscale settings in the resource group and branch on whether
      any exist.
    operationId: AutoscaleSettings_ListByResourceGroup
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: api-version
      in: query
      value: '2022-10-01'
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      settings: $response.body#/value
      firstSettingName: $response.body#/value/0/name
    onSuccess:
    - name: settingsExist
      type: goto
      stepId: getAutoscaleSetting
      criteria:
      - context: $response.body
        condition: $.value.length > 0
        type: jsonpath
    - name: noSettings
      type: end
      criteria:
      - context: $response.body
        condition: $.value.length == 0
        type: jsonpath
  - stepId: getAutoscaleSetting
    description: >-
      Read the named autoscale setting in detail to capture its enabled state
      and profiles before reconfiguring it.
    operationId: AutoscaleSettings_Get
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: autoscaleSettingName
      in: path
      value: $inputs.autoscaleSettingName
    - name: api-version
      in: query
      value: '2022-10-01'
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      settingId: $response.body#/id
      enabled: $response.body#/properties/enabled
      profiles: $response.body#/properties/profiles
  - stepId: disableAutoscaleSetting
    description: >-
      Patch the autoscale setting to disable autoscaling while leaving its
      profiles intact.
    operationId: AutoscaleSettings_Update
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: autoscaleSettingName
      in: path
      value: $inputs.autoscaleSettingName
    - name: api-version
      in: query
      value: '2022-10-01'
    requestBody:
      contentType: application/json
      payload:
        properties:
          enabled: false
          profiles: $steps.getAutoscaleSetting.outputs.profiles
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedEnabled: $response.body#/properties/enabled
  outputs:
    settings: $steps.listAutoscaleSettings.outputs.settings
    settingId: $steps.getAutoscaleSetting.outputs.settingId
    updatedEnabled: $steps.disableAutoscaleSetting.outputs.updatedEnabled

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/microsoft-azure-monitor-autoscale-inventory-reconfigure-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.