Azure DevTest Labs · Schema

ApplyArtifactsRequest

Request body for applying artifacts to a virtual machine.

AzureDevelopmentInfrastructureLabsTestingVirtual Machines

Properties

Name Type Description
artifacts array The list of artifacts to apply.
View JSON Schema on GitHub

JSON Schema

azure-test-labs-apply-artifacts-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-test-labs/refs/heads/main/json-schema/azure-test-labs-apply-artifacts-request-schema.json",
  "title": "ApplyArtifactsRequest",
  "description": "Request body for applying artifacts to a virtual machine.",
  "type": "object",
  "properties": {
    "artifacts": {
      "description": "The list of artifacts to apply.",
      "items": {
        "$ref": "#/definitions/ArtifactInstallProperties"
      },
      "type": "array"
    }
  }
}