Exemple #1
0
 internal PSJobConstraints(Microsoft.Azure.Batch.JobConstraints omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
 internal PSJobConstraints(Microsoft.Azure.Batch.JobConstraints omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
Exemple #3
0
 public PSJobConstraints(System.Nullable <System.TimeSpan> maxWallClockTime, System.Nullable <int> maxTaskRetryCount)
 {
     this.omObject = new Microsoft.Azure.Batch.JobConstraints(maxWallClockTime, maxTaskRetryCount);
 }
 public PSJobConstraints(System.Nullable<System.TimeSpan> maxWallClockTime = null, System.Nullable<int> maxTaskRetryCount = null)
 {
     this.omObject = new Microsoft.Azure.Batch.JobConstraints(maxWallClockTime, maxTaskRetryCount);
 }