File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3030 <ItemGroup >
3131 <PackageReference Include =" Azure.Identity" Version =" 1.13.2" />
3232 <PackageReference Include =" Azure.ResourceManager.Resources" Version =" 1.9.0" />
33- <PackageReference Include =" Microsoft.Graph" Version =" 5.69 .0" />
34- <PackageReference Include =" Microsoft.Identity.Client" Version =" 4.67.2 " />
33+ <PackageReference Include =" Microsoft.Graph" Version =" 5.73 .0" />
34+ <PackageReference Include =" Microsoft.Identity.Client" Version =" 4.69.1 " />
3535 <PackageReference Include =" Azure.ResourceManager" Version =" 1.13.0" />
3636 <PackageReference Include =" Azure.ResourceManager.ResourceGraph" Version =" 1.0.1" />
3737 <PackageReference Include =" Serilog" Version =" 4.2.0" />
3838 <PackageReference Include =" Serilog.Sinks.File" Version =" 6.0.0" />
39- <PackageReference Include =" System.Text.Json" Version =" 9.0.1 " />
39+ <PackageReference Include =" System.Text.Json" Version =" 9.0.3 " />
4040 </ItemGroup >
4141
4242</Project >
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public partial class MainForm : Form
7171 | where type =~ ""microsoft.resources/subscriptions/resourcegroups""
7272 | project rg_subscriptionId = subscriptionId, resourceGroup = name, resourceGroupTags = tags
7373) on $left.subscriptionId == $right.rg_subscriptionId and $left.resourceGroup == $right.resourceGroup
74- | join kind=leftouter (
74+ | join kind=inner (
7575 resourcecontainers
7676 | where type =~ ""microsoft.resources/subscriptions"" and not(properties['state'] =~ 'disabled')
7777 | project sub_subscriptionId = subscriptionId, subscriptionTags = tags, subscriptionName = name
@@ -90,9 +90,9 @@ public partial class MainForm : Form
9090| union (
9191 resourcecontainers
9292 | where type =~ ""microsoft.resources/subscriptions/resourcegroups""
93- | join kind=leftouter (
93+ | join kind=inner (
9494 resourcecontainers
95- | where type =~ ""microsoft.resources/subscriptions""
95+ | where type =~ ""microsoft.resources/subscriptions"" and not(properties['state'] =~ 'disabled')
9696 | project subscriptionId, subscriptionTags = tags, subscriptionName = name
9797 ) on $left.subscriptionId == $right.subscriptionId
9898 | project
You can’t perform that action at this time.
0 commit comments