internal PSOutputFileDestination(Microsoft.Azure.Batch.OutputFileDestination omObject) { if ((omObject == null)) { throw new System.ArgumentNullException("omObject"); } this.omObject = omObject; }
/// <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 PSOutputFileDestination(PSOutputFileBlobContainerDestination container) { this.omObject = new Microsoft.Azure.Batch.OutputFileDestination(container.omObject); }