Microsoft Azure Target Types

Microsoft Azure Target Types allows users to define the specific targets they want to monitor and manage within their Azure environment. This feature provides a way to classify and organize different types of resources based on their function, location, or any other relevant criteria.

OpenAPI Specification

target-types-openapi-original.yml Raw ↑
swagger: '2.0'
info:
  title: Microsoft Azure Target Types
  version: 2023-10-27-preview
paths: {}
definitions:
  target:
    type: object
    description: Model that represents a Target resource.
    allOf:
      - $ref: >-
          ../../../../../../common-types/resource-management/v2/types.json#/definitions/Resource
    properties:
      systemData:
        description: The system metadata of the target resource.
        $ref: >-
          ../../../../../../common-types/resource-management/v2/types.json#/definitions/systemData
        readOnly: true
      location:
        type: string
        description: Location of the target resource.
      properties:
        description: The properties of the target resource.
        x-ms-client-flatten: true
        $ref: '#/definitions/targetProperties'
    required:
      - properties
  targetProperties:
    type: object
    description: Model that represents the base Target properties model.
    properties: {}
    additionalProperties: true
  targetListResult:
    type: object
    description: >-
      Model that represents a list of Target resources and a link for
      pagination.
    properties:
      value:
        type: array
        items:
          $ref: '#/definitions/target'
        description: List of Target resources.
        readOnly: true
      nextLink:
        $ref: ./common.json#/definitions/urlNullable
        description: URL to retrieve the next page of Target resources.
        readOnly: true
    additionalProperties: false