@@ -17,8 +17,7 @@ namespace Aspire.Hosting;
1717/// <param name="parent">The <see cref="AzureBlobStorageResource"/> that the resource is stored in.</param>
1818public class AzureBlobStorageContainerResource ( string name , string blobContainerName , AzureBlobStorageResource parent ) : Resource ( name ) ,
1919 IResourceWithConnectionString ,
20- IResourceWithParent < AzureBlobStorageResource > ,
21- IResourceWithAzureFunctionsConfig
20+ IResourceWithParent < AzureBlobStorageResource >
2221{
2322
2423 /// <summary>
@@ -36,9 +35,6 @@ public class AzureBlobStorageContainerResource(string name, string blobContainer
3635 /// </summary>
3736 public AzureBlobStorageResource Parent => parent ?? throw new ArgumentNullException ( nameof ( parent ) ) ;
3837
39- internal void ApplyAzureFunctionsConfiguration ( IDictionary < string , object > target , string connectionName )
40- => Parent . ApplyAzureFunctionsConfiguration ( target , connectionName , Name ) ;
41-
4238 /// <summary>
4339 /// Converts the current instance to a provisioning entity.
4440 /// </summary>
@@ -58,7 +54,4 @@ private static string ThrowIfNullOrEmpty([NotNull] string? argument, [CallerArgu
5854 ArgumentException . ThrowIfNullOrEmpty ( argument , paramName ) ;
5955 return argument ;
6056 }
61-
62- void IResourceWithAzureFunctionsConfig . ApplyAzureFunctionsConfiguration ( IDictionary < string , object > target , string connectionName )
63- => ApplyAzureFunctionsConfiguration ( target , connectionName ) ;
6457}
0 commit comments