Class BlobCopyFromUriOptions
Optional parameters for Start Copy from URL.
Inheritance
System.Object
BlobCopyFromUriOptions
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Storage.Blobs.dll
Syntax
public class BlobCopyFromUriOptions
Constructors
BlobCopyFromUriOptions()
Declaration
public BlobCopyFromUriOptions ();
Properties
AccessTier
Optional AccessTier Indicates the tier to be set on the blob.
Declaration
public Nullable<Azure.Storage.Blobs.Models.AccessTier> AccessTier { get; set; }
Property Value
System.Nullable<AccessTier>
|
DestinationConditions
Optional BlobRequestConditions to add conditions on the copying of data to this blob.
Declaration
public Azure.Storage.Blobs.Models.BlobRequestConditions DestinationConditions { get; set; }
Property Value
BlobRequestConditions
|
Metadata
Optional custom metadata to set for this append blob.
Declaration
public System.Collections.Generic.IDictionary<string,string> Metadata { get; set; }
Property Value
System.Collections.Generic.IDictionary<System.String,System.String>
|
RehydratePriority
Optional RehydratePriority Indicates the priority with which to rehydrate an archived blob.
This parameter is not valid for synchronous copies.
Declaration
public Nullable<Azure.Storage.Blobs.Models.RehydratePriority> RehydratePriority { get; set; }
Property Value
System.Nullable<RehydratePriority>
|
ShouldSealDestination
If the destination blob should be sealed. Only applicable for Append Blobs.
This parameter is not valid for synchronous copies.
Declaration
public Nullable<bool> ShouldSealDestination { get; set; }
Property Value
System.Nullable<System.Boolean>
|
SourceConditions
Optional BlobRequestConditions to add conditions on the copying of data from this source blob.
Declaration
public Azure.Storage.Blobs.Models.BlobRequestConditions SourceConditions { get; set; }
Property Value
BlobRequestConditions
|
Tags
Options tags to set for this append blob.
Declaration
public System.Collections.Generic.IDictionary<string,string> Tags { get; set; }
Property Value
System.Collections.Generic.IDictionary<System.String,System.String>
|