internal PSOutputFileUploadOptions(Microsoft.Azure.Batch.OutputFileUploadOptions omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="OutputFile"/> class.
 /// </summary>
 /// <param name='filePattern'>A pattern indicating which file(s) to upload.</param>
 /// <param name='destination'>The destination for the output file(s).</param>
 /// <param name='uploadOptions'>Additional options for the upload operation, including under what conditions to perform the upload.</param>
 public OutputFile(
     string filePattern,
     OutputFileDestination destination,
     OutputFileUploadOptions uploadOptions)
 {
     this.FilePattern   = filePattern;
     this.Destination   = destination;
     this.UploadOptions = uploadOptions;
 }
 public PSOutputFileUploadOptions(Microsoft.Azure.Batch.Common.OutputFileUploadCondition uploadCondition)
 {
     this.omObject = new Microsoft.Azure.Batch.OutputFileUploadOptions(uploadCondition);
 }