Exemplo n.º 1
0
 internal PSImageReference(Microsoft.Azure.Batch.ImageReference omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
Exemplo n.º 2
0
 internal PSImageReference(Microsoft.Azure.Batch.ImageReference omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
Exemplo n.º 3
0
 public PSImageReference(string virtualMachineImageId)
 {
     this.omObject = new Microsoft.Azure.Batch.ImageReference(virtualMachineImageId);
 }
Exemplo n.º 4
0
 public PSImageReference(string offer, string publisher, string sku, string version = null)
 {
     this.omObject = new Microsoft.Azure.Batch.ImageReference(offer, publisher, sku, version);
 }
Exemplo n.º 5
0
 public PSImageReference()
 {
     this.omObject = new Microsoft.Azure.Batch.ImageReference();
 }
Exemplo n.º 6
0
 public PSImageReference(string offer, string publisher, string sku, string version = null)
 {
     this.omObject = new Microsoft.Azure.Batch.ImageReference(offer, publisher, sku, version);
 }