Skip to content

GalleryImageVersion

Represents Azure Compute Gallery Image Versions.

Labels: :ArmResource:GalleryImageVersion

Properties:

  • id - Resource ID (primary key)
  • excludedFromLatest - Whether excluded from latest
  • publishedDate - Published date
  • replicaCount - Replica count
  • storageAccountType - Storage account type

Relationships

Outgoing

  • GalleryImageVersionHAS_SOURCEDisk - Source OS disk image
  • GalleryImageVersionHAS_SOURCEComputeImage - Source compute image

Examples

// Find gallery image versions and their sources
MATCH (giv:GalleryImageVersion)-[:HAS_SOURCE]->(src)
RETURN giv.name, giv.publishedDate, labels(src), src.id