Microsoft Azure Workbook Client

Microsoft Azure Workbook Client is a powerful tool that allows users to visualize and analyze data from their Azure environment. This tool enables users to create custom interactive dashboards and reports to monitor the performance and health of their resources. With Azure Workbook Client, users can easily track key metrics, trends, and anomalies, making it easier to identify and address issues before they impact the overall system.

OpenAPI Specification

workbookclient-openapi-original.yml Raw ↑
swagger: '2.0'
info:
  version: 2018-06-17-preview
  title: Microsoft Azure WorkbookClient
  description: Azure client for Workbook.
host: management.azure.com
schemes:
  - https
security:
  - azure_auth:
      - user_impersonation
securityDefinitions:
  azure_auth:
    type: oauth2
    authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
    flow: implicit
    description: Azure Active Directory OAuth2 Flow.
    scopes:
      user_impersonation: impersonate your user account
paths:
  /providers/Microsoft.Insights/operations:
    get:
      tags:
        - Operations
      description: Lists all of the available insights REST API operations.
      operationId: microsoftAzureOperationsList
      parameters:
        - $ref: >-
            ../../../../../common-types/resource-management/v1/types.json#/parameters/ApiVersionParameter
      responses:
        '200':
          description: OK. The request has succeeded.
          schema:
            $ref: '#/definitions/OperationListResult'
        default:
          description: Insights error response describing why the operation failed.
          schema:
            $ref: '#/definitions/ErrorResponse'
      x-ms-pageable:
        nextLinkName: nextLink
      produces:
        - application/json
      consumes:
        - application/json
      summary: Microsoft Azure Get Providers Microsoft Insights Operations
definitions:
  ErrorResponse:
    description: >-
      Error response indicates Insights service is not able to process the
      incoming request. The reason is provided in the error message.
    type: object
    properties:
      code:
        description: Error code.
        type: string
      message:
        description: Error message indicating why the operation failed.
        type: string
  Operation:
    description: CDN REST API operation
    type: object
    properties:
      name:
        description: 'Operation name: {provider}/{resource}/{operation}'
        type: string
      display:
        description: The object that represents the operation.
        properties:
          provider:
            description: 'Service provider: Microsoft.Cdn'
            type: string
          resource:
            description: >-
              Resource on which the operation is performed: Profile, endpoint,
              etc.
            type: string
          operation:
            description: 'Operation type: Read, write, delete, etc.'
            type: string
  OperationListResult:
    description: >-
      Result of the request to list CDN operations. It contains a list of
      operations and a URL link to get the next set of results.
    properties:
      value:
        type: array
        items:
          $ref: '#/definitions/Operation'
        description: List of CDN operations supported by the CDN resource provider.
      nextLink:
        type: string
        description: URL to get the next set of operation list results if there are any.
tags:
  - name: Operations