We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Azure/azure-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
TestScriptFileInfo.cs•1.17 KiB
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Text.Json.Serialization;
namespace AzureMcp.LoadTesting.Models.LoadTest;
public class TestScriptFileInfo
{
/// <summary>
/// Gets or sets the URL where the test script file can be accessed.
/// </summary>
[JsonPropertyName("url")]
public string? Url { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the name of the test script file.
/// </summary>
[JsonPropertyName("fileName")]
public string? FileName { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the type of the test script file (e.g., "JMX_FILE", "USER_PROPERTIES").
/// </summary>
[JsonPropertyName("fileType")]
public string? FileType { get; set; } = string.Empty;
/// <summary>
/// Gets or sets when the file URL expires.
/// </summary>
[JsonPropertyName("expireDateTime")]
public DateTimeOffset? ExpireDateTime { get; set; }
/// <summary>
/// Gets or sets the validation status of the test script file.
/// </summary>
[JsonPropertyName("validationStatus")]
public string? ValidationStatus { get; set; } = string.Empty;
}