Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class AzureQueueStorageQueueResource(string name, string queueName, Azure
/// <summary>
/// Converts the current instance to a provisioning entity.
/// </summary>
/// <returns>A <see cref="global::Azure.Provisioning.Storage.BlobContainer"/> instance.</returns>
/// <returns>A <see cref="global::Azure.Provisioning.Storage.StorageQueue"/> instance.</returns>
internal global::Azure.Provisioning.Storage.StorageQueue ToProvisioningEntity()
{
global::Azure.Provisioning.Storage.StorageQueue queue = new(Infrastructure.NormalizeBicepIdentifier(Name))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed partial class AzureStorageQueueSettings : AzureStorageQueuesSettin
private static partial Regex QueueNameRegex();

/// <summary>
/// Gets or sets the name of the blob container.
/// Gets or sets the name of the Queue.
/// </summary>
public string? QueueName { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Aspire.Azure.Storage.Queues;
public class AzureStorageQueuesSettings : IConnectionStringSettings
{
/// <summary>
/// Gets or sets the connection string used to connect to the blob service.
/// Gets or sets the connection string used to connect to the queue service.
/// </summary>
/// <remarks>
/// If <see cref="ConnectionString"/> is set, it overrides <see cref="ServiceUri"/> and <see cref="Credential"/>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
},
"ConnectionString": {
"type": "string",
"description": "Gets or sets the connection string used to connect to the blob service."
"description": "Gets or sets the connection string used to connect to the queue service."
},
"DisableHealthChecks": {
"type": "boolean",
Expand Down