Microsoft Azure · Schema

RepositoryChangeableAttributes

Changeable attributes for a repository.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
deleteEnabled boolean Whether delete is enabled.
writeEnabled boolean Whether write is enabled.
listEnabled boolean Whether list is enabled.
readEnabled boolean Whether read is enabled.
teleportEnabled boolean Whether teleport is enabled.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-repositorychangeableattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RepositoryChangeableAttributes",
  "title": "RepositoryChangeableAttributes",
  "type": "object",
  "description": "Changeable attributes for a repository.",
  "properties": {
    "deleteEnabled": {
      "type": "boolean",
      "description": "Whether delete is enabled.",
      "example": true
    },
    "writeEnabled": {
      "type": "boolean",
      "description": "Whether write is enabled.",
      "example": true
    },
    "listEnabled": {
      "type": "boolean",
      "description": "Whether list is enabled.",
      "example": true
    },
    "readEnabled": {
      "type": "boolean",
      "description": "Whether read is enabled.",
      "example": true
    },
    "teleportEnabled": {
      "type": "boolean",
      "description": "Whether teleport is enabled.",
      "example": true
    }
  }
}