Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ powershell.exe -ExecutionPolicy Bypass `
-ResourceProvider "azsadmin/resource-manager/azurebridge" `
-PowershellInvoker `
-AutoRestVersion "latest" `
-SdkDirectory $PSScriptRoot
-SdkRootDirectory $PSScriptRoot
2 changes: 1 addition & 1 deletion src/AzureStack/BackupAdmin/Backup.Admin/generate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ powershell.exe -ExecutionPolicy Bypass `
-ResourceProvider "azsadmin/resource-manager/backup" `
-PowershellInvoker `
-AutoRestVersion "latest" `
-SdkDirectory $PSScriptRoot
-SdkRootDirectory $PSScriptRoot
12 changes: 1 addition & 11 deletions src/AzureStack/CommerceAdmin/Commerce.Admin/generate.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1 @@
# Remove old
Remove-Item -Path "$PSScriptRoot\Generated" -Force -Recurse

# Generate
powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File "$(split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)\..\..\..\..\tools\generateTool.ps1" -ResourceProvider "azsadmin/resource-manager/commerce" -PowershellInvoker -AutoRestVersion "latest" -SdkDirectory $PSScriptRoot

# Cleanup
$From = Join-Path -Path $PSScriptRoot -ChildPath "Commerce\Commerce.Admin\Generated"
$To = $PSScriptRoot
Move-Item -Path $From -Destination $To -Force
Remove-Item -Path "$PSScriptRoot\Commerce" -Recurse -Force
powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File "$(split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)\..\..\..\..\tools\generateTool.ps1" -ResourceProvider "azsadmin/resource-manager/commerce" -PowershellInvoker -AutoRestVersion "latest" -SdkRootDirectory $PSScriptRoot
2 changes: 1 addition & 1 deletion src/AzureStack/ComputeAdmin/Compute.Admin/generate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Remove-Item "$PSScriptRoot\Generated" -Force -Recurse -ErrorAction SilentlyContinue

# Generate new
powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File "$(split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)\..\..\..\..\tools\generateTool.ps1" -ResourceProvider "azsadmin/resource-manager/compute" -PowershellInvoker -AutoRestVersion "latest" -SdkDirectory $PSScriptRoot
powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File "$(split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)\..\..\..\..\tools\generateTool.ps1" -ResourceProvider "azsadmin/resource-manager/compute" -PowershellInvoker -AutoRestVersion "latest" -SdkRootDirectory $PSScriptRoot

# Move
$From = "$PSScriptRoot\Compute\Compute.Admin\Generated"
Expand Down
2 changes: 1 addition & 1 deletion src/AzureStack/FabricAdmin/Fabric.Admin/generate.ps1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File "$(split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)\..\..\..\..\tools\generateTool.ps1" -ResourceProvider "azsadmin/resource-manager/fabric" -PowershellInvoker -AutoRestVersion "latest" -SdkDirectory $PSScriptRoot
powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File "$(split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)\..\..\..\..\tools\generateTool.ps1" -ResourceProvider "azsadmin/resource-manager/fabric" -PowershellInvoker -AutoRestVersion "latest" -SdkRootDirectory $PSScriptRoot
2 changes: 1 addition & 1 deletion src/AzureStack/GalleryAdmin/Gallery.Admin/generate.ps1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File "$(split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)\..\..\..\..\tools\generateTool.ps1" -ResourceProvider "azsadmin/resource-manager/gallery" -PowershellInvoker -AutoRestVersion "latest" -SdkDirectory $PSScriptRoot
powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File "$(split-path $SCRIPT:MyInvocation.MyCommand.Path -parent)\..\..\..\..\tools\generateTool.ps1" -ResourceProvider "azsadmin/resource-manager/gallery" -PowershellInvoker -AutoRestVersion "latest" -SdkRootDirectory $PSScriptRoot
2 changes: 1 addition & 1 deletion src/AzureStack/InfrastructureInsightsAdmin/AzSdk.RP.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--This file and it's contents are updated at build time moving or editing might result in build failure. Take due deligence while editing this file-->
<PropertyGroup>
<AzureApiTag />
<AzureApiTag>InfrastructureInsights.Admin_2016-05-01;</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ namespace InfrastructureInsights.Tests {
class InfrastructureInsightsCommon {

// TODO: Compare tags
public static bool ResourceAreSame(Resource expected, Resource found) {
public static bool ResourceAreSame(TrackedResource expected, TrackedResource found) {
if (expected == null) return found == null;
return expected.Id == found.Id &&
expected.Location == found.Location &&
expected.Name == found.Name &&
expected.Type == found.Type;
}

public static bool ValidateResource(Resource resource) {
public static bool ValidateResource(TrackedResource resource) {
return resource != null &&
resource.Id != null &&
resource.Location != null &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class InfrastructureInsightsTestBase : AzureStackTestBase<InfrastructureI
// Helpful funcs
protected static Func<Resource, string> ResourceName = (resource) => resource.Name;
protected static Func<Resource, string> ResourceId = (resource) => resource.Id;
protected static Func<Resource, string> ResourceLocation = (resource) => resource.Location;
protected static Func<TrackedResource, string> ResourceLocation = (resource) => resource.Location;
protected static Func<Resource, string> ResourceType = (resource) => resource.Type;

protected override void ValidateClient(InfrastructureInsightsAdminClient client) {
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"Entries": [
{
"RequestUri": "/subscriptions/1c0daa04-01ae-4df9-a5d8-491b755f5288/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths?api-version=2016-05-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWMwZGFhMDQtMDFhZS00ZGY5LWE1ZDgtNDkxYjc1NWY1Mjg4L3Jlc291cmNlR3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LkluZnJhc3RydWN0dXJlSW5zaWdodHMuQWRtaW4vcmVnaW9uSGVhbHRocz9hcGktdmVyc2lvbj0yMDE2LTA1LTAx",
"RequestUri": "/subscriptions/b7a57872-f429-4eb3-b26a-5108178380a5/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths?api-version=2016-05-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjdhNTc4NzItZjQyOS00ZWIzLWIyNmEtNTEwODE3ODM4MGE1L3Jlc291cmNlR3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LkluZnJhc3RydWN0dXJlSW5zaWdodHMuQWRtaW4vcmVnaW9uSGVhbHRocz9hcGktdmVyc2lvbj0yMDE2LTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
"78290843-393d-42d2-b51a-69af56ef2fb5"
"a2ac38f8-37c5-43c2-acd6-1b8acc3d7bf9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
"Microsoft.AzureStack.Management.Admin.InfrastructureInsights.InfrastructureInsightsAdminClient/1.0.0.0"
"Microsoft.AzureStack.Management.InfrastructureInsights.Admin.InfrastructureInsightsAdminClient/0.1.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/1c0daa04-01ae-4df9-a5d8-491b755f5288/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/local\",\r\n \"name\": \"local\",\r\n \"type\": \"Microsoft.InfrastructureInsights.Admin/regionHealths\",\r\n \"location\": \"local\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"usageMetrics\": [\r\n {\r\n \"name\": \"Physical memory\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"GB\",\r\n \"value\": 84.409721374511719\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"GB\",\r\n \"value\": 173.84765625\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Physical storage\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"TB\",\r\n \"value\": 0.30929161235690117\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"TB\",\r\n \"value\": 2.1573221571743488\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Public IP address pools\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"One\",\r\n \"value\": 32.0\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"One\",\r\n \"value\": 223.0\r\n }\r\n ]\r\n }\r\n ],\r\n \"alertSummary\": {\r\n \"criticalAlertCount\": 0,\r\n \"warningAlertCount\": 1\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b7a57872-f429-4eb3-b26a-5108178380a5/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/local\",\r\n \"name\": \"local\",\r\n \"type\": \"Microsoft.InfrastructureInsights.Admin/regionHealths\",\r\n \"location\": \"local\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"usageMetrics\": [\r\n {\r\n \"name\": \"Physical memory\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"GB\",\r\n \"value\": 87.113105773925781\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"GB\",\r\n \"value\": 426.9140625\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Physical storage\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"TB\",\r\n \"value\": 0.33942607790231705\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"TB\",\r\n \"value\": 2.141836129128933\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Public IP address pools\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"One\",\r\n \"value\": 35.0\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"One\",\r\n \"value\": 220.0\r\n }\r\n ]\r\n }\r\n ],\r\n \"alertSummary\": {\r\n \"criticalAlertCount\": 1,\r\n \"warningAlertCount\": 1\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"825"
"823"
],
"Content-Type": [
"application/json; charset=utf-8"
Expand All @@ -32,7 +32,7 @@
"no-cache"
],
"Date": [
"Fri, 01 Sep 2017 21:43:54 GMT"
"Sat, 03 Feb 2018 05:04:52 GMT"
],
"Pragma": [
"no-cache"
Expand All @@ -41,19 +41,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
"oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOoe4YG7a/SBIVR/yBOypfYkeiIkuBZKbHepvp+zNt5cVeRrE0+k36O5MJHUiuYWMSp7pDn+MkdV2Ya7JiySuuNvmWJwJUc7AI67DsVURwk4JaLjqx98OpI9JjbEuyPfSG4wzliMWGpRuG7k3bgvq"
"oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv72VqgaMxppwiwnqlS03UYCZ+aPTuvE7Xx2GkglZh32sYo3JTWqNIPyMJbL9pQHBcX0sUhopTL80aZOqtwPUdNxHe+JJfDazS674gQs5afTG8JWGlYMTYjZxEKtMb6Ckrue+jVSnqSTmTSDA8D0Wc"
],
"x-ms-correlation-request-id": [
"9ec4d88e-754f-4b15-b80f-d2420f33f21d"
"6f87f54b-2591-46d3-94ea-0dcea31b3b6c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14759"
"13915"
],
"x-ms-request-id": [
"9ec4d88e-754f-4b15-b80f-d2420f33f21d"
"6f87f54b-2591-46d3-94ea-0dcea31b3b6c"
],
"x-ms-routing-request-id": [
"LOCAL:20170901T214355Z:9ec4d88e-754f-4b15-b80f-d2420f33f21d"
"LOCAL:20180203T050452Z:6f87f54b-2591-46d3-94ea-0dcea31b3b6c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
Expand All @@ -65,26 +65,26 @@
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/1c0daa04-01ae-4df9-a5d8-491b755f5288/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/local?api-version=2016-05-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWMwZGFhMDQtMDFhZS00ZGY5LWE1ZDgtNDkxYjc1NWY1Mjg4L3Jlc291cmNlR3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LkluZnJhc3RydWN0dXJlSW5zaWdodHMuQWRtaW4vcmVnaW9uSGVhbHRocy9sb2NhbD9hcGktdmVyc2lvbj0yMDE2LTA1LTAx",
"RequestUri": "/subscriptions/b7a57872-f429-4eb3-b26a-5108178380a5/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/local?api-version=2016-05-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjdhNTc4NzItZjQyOS00ZWIzLWIyNmEtNTEwODE3ODM4MGE1L3Jlc291cmNlR3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LkluZnJhc3RydWN0dXJlSW5zaWdodHMuQWRtaW4vcmVnaW9uSGVhbHRocy9sb2NhbD9hcGktdmVyc2lvbj0yMDE2LTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
"4444196b-c487-4e91-86a5-4eb2947ce423"
"dc63b722-46d3-43d8-9d15-dbc75a133737"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
"Microsoft.AzureStack.Management.Admin.InfrastructureInsights.InfrastructureInsightsAdminClient/1.0.0.0"
"Microsoft.AzureStack.Management.InfrastructureInsights.Admin.InfrastructureInsightsAdminClient/0.1.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/1c0daa04-01ae-4df9-a5d8-491b755f5288/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/local\",\r\n \"name\": \"local\",\r\n \"type\": \"Microsoft.InfrastructureInsights.Admin/regionHealths\",\r\n \"location\": \"local\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"usageMetrics\": [\r\n {\r\n \"name\": \"Physical memory\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"GB\",\r\n \"value\": 84.409721374511719\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"GB\",\r\n \"value\": 173.84765625\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Physical storage\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"TB\",\r\n \"value\": 0.30929161235690117\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"TB\",\r\n \"value\": 2.1573221571743488\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Public IP address pools\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"One\",\r\n \"value\": 32.0\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"One\",\r\n \"value\": 223.0\r\n }\r\n ]\r\n }\r\n ],\r\n \"alertSummary\": {\r\n \"criticalAlertCount\": 0,\r\n \"warningAlertCount\": 1\r\n }\r\n }\r\n}",
"ResponseBody": "{\r\n \"id\": \"/subscriptions/b7a57872-f429-4eb3-b26a-5108178380a5/resourceGroups/System.local/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/local\",\r\n \"name\": \"local\",\r\n \"type\": \"Microsoft.InfrastructureInsights.Admin/regionHealths\",\r\n \"location\": \"local\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"usageMetrics\": [\r\n {\r\n \"name\": \"Physical memory\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"GB\",\r\n \"value\": 87.113105773925781\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"GB\",\r\n \"value\": 426.9140625\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Physical storage\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"TB\",\r\n \"value\": 0.33942607790231705\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"TB\",\r\n \"value\": 2.141836129128933\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Public IP address pools\",\r\n \"metricsValue\": [\r\n {\r\n \"name\": \"Used\",\r\n \"unit\": \"One\",\r\n \"value\": 35.0\r\n },\r\n {\r\n \"name\": \"Available\",\r\n \"unit\": \"One\",\r\n \"value\": 220.0\r\n }\r\n ]\r\n }\r\n ],\r\n \"alertSummary\": {\r\n \"criticalAlertCount\": 1,\r\n \"warningAlertCount\": 1\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"813"
"811"
],
"Content-Type": [
"application/json; charset=utf-8"
Expand All @@ -96,7 +96,7 @@
"no-cache"
],
"Date": [
"Fri, 01 Sep 2017 21:43:54 GMT"
"Sat, 03 Feb 2018 05:04:52 GMT"
],
"Pragma": [
"no-cache"
Expand All @@ -105,19 +105,19 @@
"Microsoft-HTTPAPI/2.0"
],
"WWW-Authenticate": [
"oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkt5I0iTA9rEOq6nSb+ZXgFQtlf3huLvPuopOB4p0ApubIOgrXit91R0poA/LaflhTaByU5x+RDUV1rYeAagOuWceLVOx1uIROc/A3HdOqTfKdp4OUendcKUC7QVzXF0/DlhlN+e0Sif+kZYvD/8E"
"oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCiAy5K8wfUjH5V3dIZLvcOavgf3NhuVHmv/6r911voQrw7+MVeW9/EIU7Yu+ePNBT7H+p3YMvSlo8qP3CzRD/8dczygEgsaE4Dwgokpa5kXfL59QHz/Yw/5tY03lwLevCHuDspn/ebPQz8Szidw+"
],
"x-ms-correlation-request-id": [
"c8c1f7da-65f6-4ff1-a415-c97275c70277"
"4eec2d3e-ff69-4a45-ba95-9ff07563904c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14758"
"13914"
],
"x-ms-request-id": [
"c8c1f7da-65f6-4ff1-a415-c97275c70277"
"4eec2d3e-ff69-4a45-ba95-9ff07563904c"
],
"x-ms-routing-request-id": [
"LOCAL:20170901T214355Z:c8c1f7da-65f6-4ff1-a415-c97275c70277"
"LOCAL:20180203T050453Z:4eec2d3e-ff69-4a45-ba95-9ff07563904c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
Expand All @@ -131,6 +131,6 @@
],
"Names": {},
"Variables": {
"SubscriptionId": "1c0daa04-01ae-4df9-a5d8-491b755f5288"
"SubscriptionId": "b7a57872-f429-4eb3-b26a-5108178380a5"
}
}
Loading