Skip to content

Commit dd5bf52

Browse files
jguadagnoeerhardt
andauthored
Queue document update (#11876)
* Changed reference from Blob to Queue * Fix up config schema --------- Co-authored-by: Eric Erhardt <[email protected]>
1 parent a8a72f0 commit dd5bf52

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Aspire.Hosting.Azure.Storage/AzureQueueStorageQueueResource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class AzureQueueStorageQueueResource(string name, string queueName, Azure
3636
/// <summary>
3737
/// Converts the current instance to a provisioning entity.
3838
/// </summary>
39-
/// <returns>A <see cref="global::Azure.Provisioning.Storage.BlobContainer"/> instance.</returns>
39+
/// <returns>A <see cref="global::Azure.Provisioning.Storage.StorageQueue"/> instance.</returns>
4040
internal global::Azure.Provisioning.Storage.StorageQueue ToProvisioningEntity()
4141
{
4242
global::Azure.Provisioning.Storage.StorageQueue queue = new(Infrastructure.NormalizeBicepIdentifier(Name))

src/Components/Aspire.Azure.Storage.Queues/AzureStorageQueueSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public sealed partial class AzureStorageQueueSettings : AzureStorageQueuesSettin
1616
private static partial Regex QueueNameRegex();
1717

1818
/// <summary>
19-
/// Gets or sets the name of the blob container.
19+
/// Gets or sets the name of the Queue.
2020
/// </summary>
2121
public string? QueueName { get; set; }
2222

src/Components/Aspire.Azure.Storage.Queues/AzureStorageQueuesSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Aspire.Azure.Storage.Queues;
1212
public class AzureStorageQueuesSettings : IConnectionStringSettings
1313
{
1414
/// <summary>
15-
/// Gets or sets the connection string used to connect to the blob service.
15+
/// Gets or sets the connection string used to connect to the queue service.
1616
/// </summary>
1717
/// <remarks>
1818
/// If <see cref="ConnectionString"/> is set, it overrides <see cref="ServiceUri"/> and <see cref="Credential"/>.

src/Components/Aspire.Azure.Storage.Queues/ConfigurationSchema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
},
133133
"ConnectionString": {
134134
"type": "string",
135-
"description": "Gets or sets the connection string used to connect to the blob service."
135+
"description": "Gets or sets the connection string used to connect to the queue service."
136136
},
137137
"DisableHealthChecks": {
138138
"type": "boolean",

0 commit comments

Comments
 (0)