Skip to content

Commit

Permalink
Fixing see href doc bug, some formatting, and a few links in Azure.St…
Browse files Browse the repository at this point in the history
…orage.* libraries (#13349)
  • Loading branch information
amnguye authored Jul 17, 2020
1 parent 68f207e commit 8451bb7
Show file tree
Hide file tree
Showing 41 changed files with 1,934 additions and 648 deletions.
16 changes: 10 additions & 6 deletions sdk/storage/Azure.Storage.Blobs.Batch/src/BlobBatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ namespace Azure.Storage.Blobs.Specialized
/// operations in a single request via <see cref="BlobBatchClient.SubmitBatch"/>.
///
/// For more information, see
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch" />.
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch">
/// Blob Batch</see>.
/// </summary>
public class BlobBatch : IDisposable
{
Expand Down Expand Up @@ -113,7 +114,7 @@ private void SetBatchOperationType(BlobBatchOperationType operationType)
/// <see cref="DeleteSnapshotsOption.IncludeSnapshots"/>.
///
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/delete-blob" />.
/// <see href="https://docs.microsoft.com/rest/api/storageservices/delete-blob">Delete Blob</see>.
/// </summary>
/// <param name="blobContainerName">
/// The name of the container containing the blob to delete.
Expand Down Expand Up @@ -160,7 +161,7 @@ public virtual Response DeleteBlob(
/// <see cref="DeleteSnapshotsOption.IncludeSnapshots"/>.
///
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/delete-blob" />.
/// <see href="https://docs.microsoft.com/rest/api/storageservices/delete-blob">Delete Blob</see>.
/// </summary>
/// <param name="blobUri">
/// The blob to delete's primary <see cref="Uri"/> endpoint.
Expand Down Expand Up @@ -206,8 +207,9 @@ public virtual Response DeleteBlob(
///
/// A block blob's tier determines Hot/Cool/Archive storage type. This
/// operation does not update the blob's ETag. For detailed
/// information about block blob level tiering
/// <see href="https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-storage-tiers" />.
/// information about block blob level tiering see
/// <see href="https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-storage-tiers">
/// Blob Storage Tiers</see>.
/// </summary>
/// <param name="blobContainerName">
/// The name of the container containing the blob to set the tier of.
Expand Down Expand Up @@ -258,7 +260,9 @@ public virtual Response SetBlobAccessTier(
/// A block blob's tier determines Hot/Cool/Archive storage type. This
/// operation does not update the blob's ETag. For detailed
/// information about block blob level tiering
/// <see href="https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-storage-tiers" />.
/// <see href="https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-storage-tiers">
/// Blob Storage Tiers</see>.
///
/// </summary>
/// <param name="blobUri">
/// The blob's primary <see cref="Uri"/> endpoint.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ internal BlobChangeFeedClient(BlobServiceClient blobServiceClient)
/// required for your application to access data in an Azure Storage
/// account at runtime.
///
/// For more information, <see href="https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string"/>.
/// For more information, see
/// <see href="https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string">
/// Configuring Azure Storage conneciton strings</see>.
/// </param>
public BlobChangeFeedClient(string connectionString)
{
Expand All @@ -53,7 +55,9 @@ public BlobChangeFeedClient(string connectionString)
/// required for your application to access data in an Azure Storage
/// account at runtime.
///
/// For more information, <see href="https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string"/>.
/// For more information, see
/// <see href="https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string">
/// Configuring Azure Storage conneciton strings</see>.
/// </param>
/// <param name="options">
/// Optional client options that define the transport pipeline
Expand Down
60 changes: 45 additions & 15 deletions sdk/storage/Azure.Storage.Blobs/src/AppendBlobClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,9 @@ private static void AssertNoClientSideEncryption(BlobClientOptions options)
/// class with an identical <see cref="Uri"/> source but the specified
/// <paramref name="snapshot"/> timestamp.
///
/// For more information, see <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/creating-a-snapshot-of-a-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/creating-a-snapshot-of-a-blob">
/// Create a snapshot of a blob</see>.
/// </summary>
/// <param name="snapshot">The snapshot identifier.</param>
/// <returns>A new <see cref="AppendBlobClient"/> instance.</returns>
Expand Down Expand Up @@ -349,7 +351,9 @@ await CreateInternal(
/// the newly initialized append blob. To add content to the append
/// blob, call the <see cref="AppendBlock"/> operation.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob">
/// Put Blob</see>.
/// </summary>
/// <param name="httpHeaders">
/// Optional standard HTTP header properties that can be set for the
Expand Down Expand Up @@ -395,7 +399,9 @@ public virtual Response<BlobContentInfo> Create(
/// the newly initialized append blob. To add content to the append
/// blob, call the <see cref="AppendBlockAsync"/> operation.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob">
/// Put Blob</see>.
/// </summary>
/// <param name="httpHeaders">
/// Optional standard HTTP header properties that can be set for the
Expand Down Expand Up @@ -441,7 +447,9 @@ await CreateInternal(
/// the content of the existing append blob will remain unchanged. To add content to
/// the append blob, call the <see cref="AppendBlockAsync"/> operation.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob">
/// Put Blob</see>.
/// </summary>
/// <param name="options">
/// Optional parameters.
Expand Down Expand Up @@ -475,7 +483,9 @@ public virtual Response<BlobContentInfo> CreateIfNotExists(
/// the content of the existing append blob will remain unchanged. To add content to
/// the append blob, call the <see cref="AppendBlockAsync"/> operation.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob">
/// Put Blob</see>.
/// </summary>
/// <param name="options">
/// Optional parameters.
Expand Down Expand Up @@ -509,7 +519,9 @@ await CreateIfNotExistsInternal(
/// the content of the existing append blob will remain unchanged. To add content to
/// the append blob, call the <see cref="AppendBlockAsync"/> operation.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob">
/// Put Blob</see>.
/// </summary>
/// <param name="httpHeaders">
/// Optional standard HTTP header properties that can be set for the
Expand Down Expand Up @@ -549,7 +561,9 @@ public virtual Response<BlobContentInfo> CreateIfNotExists(
/// the content of the existing append blob will remain unchanged. To add content to the append
/// blob, call the <see cref="AppendBlockAsync"/> operation.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob">
/// Put Blob</see>.
/// </summary>
/// <param name="httpHeaders">
/// Optional standard HTTP header properties that can be set for the
Expand Down Expand Up @@ -589,7 +603,9 @@ await CreateIfNotExistsInternal(
/// the existing append blob will remain unchanged. To add content to the append
/// blob, call the <see cref="AppendBlockAsync"/> operation.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob">
/// Put Blob</see>.
/// </summary>
/// <param name="httpHeaders">
/// Optional standard HTTP header properties that can be set for the
Expand Down Expand Up @@ -668,7 +684,9 @@ private async Task<Response<BlobContentInfo>> CreateIfNotExistsInternal(
/// the newly initialized append blob. To add content to the append
/// blob, call the <see cref="AppendBlockAsync"/> operation.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-blob">
/// Put Blob</see>.
/// </summary>
/// <param name="httpHeaders">
/// Optional standard HTTP header properties that can be set for the
Expand Down Expand Up @@ -771,7 +789,9 @@ private async Task<Response<BlobContentInfo>> CreateInternal(
/// operation is only permitted if the blob was created as an append
/// blob.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/append-block" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/append-block">
/// Append Block</see>.
/// </summary>
/// <param name="content">
/// A <see cref="Stream"/> containing the content of the block to
Expand Down Expand Up @@ -827,7 +847,9 @@ public virtual Response<BlobAppendInfo> AppendBlock(
/// operation is only permitted if the blob was created as an append
/// blob.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/append-block" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/append-block">
/// Append Block</see>.
/// </summary>
/// <param name="content">
/// A <see cref="Stream"/> containing the content of the block to
Expand Down Expand Up @@ -883,7 +905,9 @@ await AppendBlockInternal(
/// operation is only permitted if the blob was created as an append
/// blob.
///
/// For more information, see <see href="https://docs.microsoft.com/rest/api/storageservices/append-block" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/rest/api/storageservices/append-block">
/// Append Block</see>.
/// </summary>
/// <param name="content">
/// A <see cref="Stream"/> containing the content of the block to
Expand Down Expand Up @@ -985,7 +1009,9 @@ private async Task<Response<BlobAppendInfo>> AppendBlockInternal(
/// <see cref="AppendBlockFromUri"/> operation is only permitted
/// if the blob was created as an append blob.
///
/// For more information, see <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/append-block-from-url" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/append-block-from-url">
/// Append Block From URL</see>.
/// </summary>
/// <param name="sourceUri">
/// Specifies the <see cref="Uri"/> of the source blob. The value may
Expand Down Expand Up @@ -1054,7 +1080,9 @@ public virtual Response<BlobAppendInfo> AppendBlockFromUri(
/// <see cref="AppendBlockFromUriAsync"/> operation is only permitted
/// if the blob was created as an append blob.
///
/// For more information, see <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/append-block-from-url" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/append-block-from-url">
/// Append Block From URL</see>.
/// </summary>
/// <param name="sourceUri">
/// Specifies the <see cref="Uri"/> of the source blob. The value may
Expand Down Expand Up @@ -1123,7 +1151,9 @@ await AppendBlockFromUriInternal(
/// <see cref="AppendBlockFromUriInternal"/> operation is only permitted
/// if the blob was created as an append blob.
///
/// For more information, see <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/append-block-from-url" />.
/// For more information, see
/// <see href="https://docs.microsoft.com/en-us/rest/api/storageservices/append-block-from-url">
/// Append Block From URL</see>.
/// </summary>
/// <param name="sourceUri">
/// Specifies the <see cref="Uri"/> of the source blob. The value may
Expand Down
Loading

0 comments on commit 8451bb7

Please sign in to comment.