internal GalleryDiskImage(int?sizeInGB, HostCaching?hostCaching, GalleryArtifactVersionSource source)
 {
     SizeInGB    = sizeInGB;
     HostCaching = hostCaching;
     Source      = source;
 }
예제 #2
0
 internal GalleryDataDiskImage(int?sizeInGB, HostCaching?hostCaching, GalleryArtifactVersionSource source, int lun) : base(sizeInGB, hostCaching, source)
 {
     Lun = lun;
 }
예제 #3
0
 internal GalleryOSDiskImage(int?sizeInGB, HostCaching?hostCaching, GalleryArtifactVersionSource source) : base(sizeInGB, hostCaching, source)
 {
 }