From 89abd4904929dfcd59fca8780930aa3f42f40eda Mon Sep 17 00:00:00 2001 From: Preslav Gerchev Date: Mon, 22 Jan 2024 14:14:44 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Add=20id=20function=20for=20sql?= =?UTF-8?q?=20service=20firewall=20rules.=20(#3089)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Preslav --- providers/azure/resources/sql.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/providers/azure/resources/sql.go b/providers/azure/resources/sql.go index 6cca270a24..9a02ebbedb 100644 --- a/providers/azure/resources/sql.go +++ b/providers/azure/resources/sql.go @@ -56,6 +56,10 @@ func (a *mqlAzureSubscriptionSqlServiceServerVulnerabilityassessmentsettings) id return a.Id.Data, nil } +func (a *mqlAzureSubscriptionSqlServiceFirewallrule) id() (string, error) { + return a.Id.Data, nil +} + func (a *mqlAzureSubscriptionSqlService) servers() ([]interface{}, error) { conn := a.MqlRuntime.Connection.(*connection.AzureConnection) ctx := context.Background()