Example #1
0
 internal PSOutputFileBlobContainerDestination(Microsoft.Azure.Batch.OutputFileBlobContainerDestination omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
Example #2
0
 public PSOutputFileBlobContainerDestination(string containerUrl, PSComputeNodeIdentityReference identityReference, string path = null)
 {
     this.omObject = new Microsoft.Azure.Batch.OutputFileBlobContainerDestination(containerUrl, identityReference.omObject, path);
 }
Example #3
0
 public PSOutputFileBlobContainerDestination(string containerUrl, string path = null)
 {
     this.omObject = new Microsoft.Azure.Batch.OutputFileBlobContainerDestination(containerUrl, path);
 }