QuarantinePolicy

The quarantine policy for a container registry.

AzureContainer ImagesContainersDockerRegistry

Properties

Name Type Description
status string The value that indicates whether the policy is enabled or not.
View JSON Schema on GitHub

JSON Schema

azure-container-registry-quarantine-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-registry/refs/heads/main/json-schema/azure-container-registry-quarantine-policy-schema.json",
  "title": "QuarantinePolicy",
  "description": "The quarantine policy for a container registry.",
  "type": "object",
  "properties": {
    "status": {
      "default": "disabled",
      "description": "The value that indicates whether the policy is enabled or not.",
      "enum": [
        "enabled",
        "disabled"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": true,
        "name": "PolicyStatus"
      }
    }
  }
}