Skip to content

Commit

Permalink
Update public_network_access_for_ingestion and public_network_access_…
Browse files Browse the repository at this point in the history
…for_query columns of azure_application_insight table to be of String data type (#769)
  • Loading branch information
Priyanka-Chatterjee-2000 authored Jun 6, 2024
1 parent adcb203 commit 09276e2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions azure/table_azure_application_insight.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,18 @@ func tableAzureApplicationInsight(_ context.Context) *plugin.Table {
Transform: transform.FromField("ApplicationInsightsComponentProperties.WorkspaceResourceID"),
Type: proto.ColumnType_STRING,
},
{
Name: "public_network_access_for_ingestion",
Description: "The network access type for accessing Application Insights ingestion.",
Transform: transform.FromField("ApplicationInsightsComponentProperties.PublicNetworkAccessForIngestion"),
Type: proto.ColumnType_STRING,
},
{
Name: "public_network_access_for_query",
Description: "The network access type for accessing Application Insights query.",
Transform: transform.FromField("ApplicationInsightsComponentProperties.PublicNetworkAccessForQuery"),
Type: proto.ColumnType_STRING,
},
{
Name: "application_type",
Description: "Type of application being monitored.",
Expand All @@ -161,18 +173,6 @@ func tableAzureApplicationInsight(_ context.Context) *plugin.Table {
Transform: transform.FromField("ApplicationInsightsComponentProperties.PrivateLinkScopedResources"),
Type: proto.ColumnType_JSON,
},
{
Name: "public_network_access_for_ingestion",
Description: "The network access type for accessing Application Insights ingestion.",
Transform: transform.FromField("ApplicationInsightsComponentProperties.PublicNetworkAccessForIngestion"),
Type: proto.ColumnType_JSON,
},
{
Name: "public_network_access_for_query",
Description: "The network access type for accessing Application Insights query.",
Transform: transform.FromField("ApplicationInsightsComponentProperties.PublicNetworkAccessForQuery"),
Type: proto.ColumnType_JSON,
},

// Steampipe standard columns
{
Expand Down

0 comments on commit 09276e2

Please sign in to comment.