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