1 instantiation of AzureAIFoundryDeploymentResource
Aspire.Hosting.Azure.AIFoundry (1)
18 references to AzureAIFoundryDeploymentResource
Aspire.Hosting.Azure.AIFoundry (15)
AzureAIFoundryExtensions.cs (11)
48public static IResourceBuilder<AzureAIFoundryDeploymentResource> AddDeployment(this IResourceBuilder<AzureAIFoundryResource> builder, [ResourceName] string name, string modelName, string modelVersion, string format)
56var deployment = new AzureAIFoundryDeploymentResource(name, modelName, modelVersion, format, builder.Resource);
77/// <param name="configure">A method that can be used for customizing the <see cref="AzureAIFoundryDeploymentResource"/>.</param>
79public static IResourceBuilder<AzureAIFoundryDeploymentResource> WithProperties(this IResourceBuilder<AzureAIFoundryDeploymentResource> builder, Action<AzureAIFoundryDeploymentResource> configure)
110foreach (var deployment in resource.Deployments)
183internal static IResourceBuilder<AzureAIFoundryDeploymentResource> AsLocalDeployment(this IResourceBuilder<AzureAIFoundryDeploymentResource> builder, AzureAIFoundryDeploymentResource deployment)
327foreach (var deployment in resource.Deployments)
Aspire.Hosting.Azure.Tests (3)