Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
SqlFirewallRuleProperties.cs940 B
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System.Text.Json.Serialization; namespace AzureMcp.Sql.Services.Models { /// <summary> /// A class representing the SqlFirewallRule properties data model. /// A server firewall rule properties. /// </summary> internal sealed class SqlFirewallRuleProperties { /// <summary> The start IP address of the firewall rule. Must be IPv4 format. Use value '0.0.0.0' for all Azure-internal IP addresses. </summary> [JsonPropertyName("startIpAddress")] public string? StartIPAddress { get; set; } /// <summary> The end IP address of the firewall rule. Must be IPv4 format. Must be greater than or equal to startIpAddress. Use value '0.0.0.0' for all Azure-internal IP addresses. </summary> [JsonPropertyName("endIpAddress")] public string? EndIPAddress { get; set; } } }

MCP directory API

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