/// <summary>
 /// Initializes a new instance of the PatchJobParameters class.
 /// </summary>
 public PatchJobParameters(string friendlyName = default(string), string description = default(string), string metadata = default(string), bool?cancelRequested = default(bool?), string state = default(string), ReturnAddress returnAddress = default(ReturnAddress), ReturnShipping returnShipping = default(ReturnShipping), PackageInfomation deliveryPackage = default(PackageInfomation), bool?enableVerboseLog = default(bool?), bool?backupDriveManifest = default(bool?))
 {
     FriendlyName        = friendlyName;
     Description         = description;
     Metadata            = metadata;
     CancelRequested     = cancelRequested;
     State               = state;
     ReturnAddress       = returnAddress;
     ReturnShipping      = returnShipping;
     DeliveryPackage     = deliveryPackage;
     EnableVerboseLog    = enableVerboseLog;
     BackupDriveManifest = backupDriveManifest;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the PutJobProperties class.
 /// </summary>
 public PutJobProperties(string location, string storageAccountName, JobType?type, string storageAccountKey = default(string), string containerSas = default(string), string friendlyName = default(string), string description = default(string), string metadata = default(string), ReturnAddress returnAddress = default(ReturnAddress), ReturnShipping returnShipping = default(ReturnShipping), string importExportStatesPath = default(string), bool?enableVerboseLog = default(bool?), bool?backupDriveManifest = default(bool?))
 {
     Location           = location;
     StorageAccountName = storageAccountName;
     StorageAccountKey  = storageAccountKey;
     ContainerSas       = containerSas;
     Type                   = type;
     FriendlyName           = friendlyName;
     Description            = description;
     Metadata               = metadata;
     ReturnAddress          = returnAddress;
     ReturnShipping         = returnShipping;
     ImportExportStatesPath = importExportStatesPath;
     EnableVerboseLog       = enableVerboseLog;
     BackupDriveManifest    = backupDriveManifest;
 }
 /// <summary>
 /// Initializes a new instance of the JobProperties class.
 /// </summary>
 public JobProperties(string location = default(string), JobType?type = default(JobType?), string friendlyName = default(string), string description = default(string), string metadata = default(string), string state = default(string), bool?cancelRequested = default(bool?), int?percentComplete = default(int?), ReturnAddress returnAddress = default(ReturnAddress), ReturnShipping returnShipping = default(ReturnShipping), ShippingInformation shippingInformation = default(ShippingInformation), PackageInfomation deliveryPackage = default(PackageInfomation), PackageInfomation returnPackage = default(PackageInfomation), string importExportStatesPath = default(string), bool?enableVerboseLog = default(bool?), bool?backupDriveManifest = default(bool?), string incompleteBlobListUri = default(string), string verboseLogUri = default(string), string errorLogUri = default(string), string manifestUri = default(string))
 {
     Location               = location;
     Type                   = type;
     FriendlyName           = friendlyName;
     Description            = description;
     Metadata               = metadata;
     State                  = state;
     CancelRequested        = cancelRequested;
     PercentComplete        = percentComplete;
     ReturnAddress          = returnAddress;
     ReturnShipping         = returnShipping;
     ShippingInformation    = shippingInformation;
     DeliveryPackage        = deliveryPackage;
     ReturnPackage          = returnPackage;
     ImportExportStatesPath = importExportStatesPath;
     EnableVerboseLog       = enableVerboseLog;
     BackupDriveManifest    = backupDriveManifest;
     IncompleteBlobListUri  = incompleteBlobListUri;
     VerboseLogUri          = verboseLogUri;
     ErrorLogUri            = errorLogUri;
     ManifestUri            = manifestUri;
 }