Skip to content
Merged
2 changes: 2 additions & 0 deletions sdk/storage/azblob/appendblob/client.go
Comment thread
jhendrixMSFT marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ func (ab *Client) SetLegalHold(ctx context.Context, legalHold bool, options *blo
return ab.BlobClient().SetLegalHold(ctx, legalHold, options)
}

// Deprecated: SetTier only works for page blob in premium storage account and block blob in block storage account.
Comment thread
siminsavani-msft marked this conversation as resolved.
Outdated
// SetTier operation sets the tier on a blob. The operation is allowed on a page
// blob in a premium storage account and on a block blob in a blob storage account (locally
// redundant storage only). A premium page blob's tier determines the allowed size, IOPS, and
Expand Down Expand Up @@ -326,6 +327,7 @@ func (ab *Client) GetTags(ctx context.Context, o *blob.GetTagsOptions) (blob.Get
return ab.BlobClient().GetTags(ctx, o)
}

// Deprecated: CopyFromURL works only with block blob
Comment thread
siminsavani-msft marked this conversation as resolved.
// CopyFromURL synchronously copies the data at the source URL to a block blob, with sizes up to 256 MB.
// For more information, see https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url.
func (ab *Client) CopyFromURL(ctx context.Context, copySource string, o *blob.CopyFromURLOptions) (blob.CopyFromURLResponse, error) {
Comment thread
siminsavani-msft marked this conversation as resolved.
Expand Down
Loading