2024-03-21 20:52:05 +01:00
|
|
|
namespace Microsoft.AI.DevTeam;
|
2023-08-28 20:57:56 +02:00
|
|
|
public class AzureOptions
|
|
|
|
{
|
|
|
|
public string SubscriptionId { get; set; }
|
|
|
|
public string Location { get; set; }
|
|
|
|
public string ContainerInstancesResourceGroup { get; set; }
|
|
|
|
public string FilesShareName { get; set; }
|
|
|
|
public string FilesAccountName { get; set; }
|
|
|
|
public string FilesAccountKey { get; set; }
|
2023-10-11 21:40:35 +02:00
|
|
|
public string CosmosConnectionString { get; set; }
|
|
|
|
public string SandboxImage { get; set; }
|
2023-10-26 22:09:18 +02:00
|
|
|
public string ManagedIdentity { get; set; }
|
2023-08-28 20:57:56 +02:00
|
|
|
}
|