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
4 changes: 2 additions & 2 deletions docs/storage/azure-storage-blobs-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion docs/storage/azure-storage-queues-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The .NET Aspire Azure Queue Storage component provides multiple options to confi

### Use configuration providers

The Service Bus component supports <xref:Microsoft.Extensions.Configuration?displayProperty=fullName>. 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 <xref:Microsoft.Extensions.Configuration?displayProperty=fullName>. 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
{
Expand Down
6 changes: 3 additions & 3 deletions docs/storage/azure-storage-tables-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <xref:Microsoft.Extensions.Configuration?displayProperty=fullName>. 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 <xref:Microsoft.Extensions.Configuration?displayProperty=fullName>. It loads the `AzureDataTablesSettings` from _appsettings.json_ or other configuration files using `Aspire:Azure:Data:Tables` key.

```json
{
Expand Down Expand Up @@ -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
Expand Down