diff --git a/docs/storage/azure-storage-blobs-component.md b/docs/storage/azure-storage-blobs-component.md index c1dd8e4a13..31701cfbb2 100644 --- a/docs/storage/azure-storage-blobs-component.md +++ b/docs/storage/azure-storage-blobs-component.md @@ -49,7 +49,7 @@ public class ExampleService(BlobServiceClient client) ## Configuration -The .NET Aspire Service Bus component provides multiple options to configure the `BlobServiceClient` based on the requirements and conventions of your project. +The .NET Aspire Azure Blob Storage component provides multiple options to configure the `BlobServiceClient` based on the requirements and conventions of your project. ### Use a connection string @@ -130,7 +130,7 @@ builder.AddAzureBlobService( ## Orchestration -In your orchestrator project, register the Service Bus component and consume the service using the following methods: +In your orchestrator project, register the Azure Blob Storage component and consume the service using the following methods: ```csharp var blobs = builder.AddAzureStorage("storage") diff --git a/docs/storage/azure-storage-queues-component.md b/docs/storage/azure-storage-queues-component.md index e32e62d9db..c5684b5289 100644 --- a/docs/storage/azure-storage-queues-component.md +++ b/docs/storage/azure-storage-queues-component.md @@ -87,7 +87,7 @@ The .NET Aspire Azure Queue Storage component provides multiple options to confi ### Use configuration providers -The Service Bus component supports . It loads the `AzureStorageQueuesSettings` and `QueueClientOptions` from configuration by using the `Aspire:Azure:Storage:Queues` key. Example `appsettings.json` that configures some of the options: +The .NET Aspire Azure Queue Storage component supports . It loads the `AzureStorageQueuesSettings` and `QueueClientOptions` from configuration by using the `Aspire:Azure:Storage:Queues` key. Example `appsettings.json` that configures some of the options: ```json { diff --git a/docs/storage/azure-storage-tables-component.md b/docs/storage/azure-storage-tables-component.md index c9fd0c6ef9..0545d3d22e 100644 --- a/docs/storage/azure-storage-tables-component.md +++ b/docs/storage/azure-storage-tables-component.md @@ -56,11 +56,11 @@ public class ExampleService(TableServiceClient client) ## Configuration -The .NET Aspire Service Bus component provides multiple options to configure the `TableServiceClient` based on the requirements and conventions of your project. +The .NET Aspire Azure Table Storage component provides multiple options to configure the `TableServiceClient` based on the requirements and conventions of your project. ### Use configuration providers -The Service Bus component supports . It loads the `AzureDataTablesSettings` from _appsettings.json_ or other configuration files using `Aspire:Azure:Data:Tables` key. +The .NET Aspire Azure Table Storage component supports . It loads the `AzureDataTablesSettings` from _appsettings.json_ or other configuration files using `Aspire:Azure:Data:Tables` key. ```json { @@ -145,7 +145,7 @@ The following configurable options are exposed through the `AzureDataTablesSetti ## Orchestration -In your orchestrator project, register the Service Bus component and consume the service using the following methods: +In your orchestrator project, register the Azure Table Storage component and consume the service using the following methods: ```csharp // Service registration