Microsoft Azure Common Referenced Parameters File

The Microsoft Azure Common Referenced Parameters File provides a centralized location for storing commonly used parameters that can be referenced in multiple Azure Resource Manager templates. This file helps streamline the deployment process by allowing users to define and manage parameters in one place, making it easier to update and maintain configurations across different resources and deployments.

OpenAPI Specification

common-referenced-parameters-file-openapi-original.yml Raw ↑
swagger: '2.0'
info:
  version: '2017-08-30'
  title: Microsoft Azure Common Referenced Parameters File
  description: File containing commonly referenced parameters.
paths: {}
parameters:
  GlobalEndpoint:
    name: Endpoint
    description: >-
      Supported Cognitive Services endpoints (protocol and hostname, for
      example: "https://westus.api.cognitive.microsoft.com",
      "https://api.cognitive.microsoft.com").
    x-ms-parameter-location: client
    required: true
    type: string
    in: path
    x-ms-skip-url-encoding: true
    default: https://api.cognitive.microsoft.com
  ImageStream:
    name: Image
    in: body
    required: true
    x-ms-parameter-location: method
    description: An image stream.
    schema:
      type: object
      format: file
  ImageUrl:
    name: ImageUrl
    in: body
    required: true
    x-ms-parameter-location: method
    x-ms-client-flatten: true
    description: A JSON document with a URL pointing to the image that is to be analyzed.
    schema:
      $ref: '#/definitions/ImageUrl'
definitions:
  ImageUrl:
    type: object
    required:
      - url
    properties:
      url:
        description: Publicly reachable URL of an image
        type: string