From a1fcc3079e1e90aaaaf897f35307f5971d07708d Mon Sep 17 00:00:00 2001 From: Michael Flanakin Date: Sun, 26 Jan 2025 11:27:07 -0800 Subject: [PATCH] Add DNS resolver resource type display names (#1249) --- docs/_resources/changelog.md | 8 + src/open-data/ResourceTypes.Overrides.json | 14 + .../Private/Get-FinOpsPricingUnitsData.ps1 | 373 ---------------- .../Private/Get-FinOpsRegionsData.ps1 | 414 ------------------ .../Private/Get-FinOpsServicesData.ps1 | 320 -------------- .../Unit/Get-FinOpsPricingUnitsData.Tests.ps1 | 16 - .../Unit/Get-FinOpsRegionsData.Tests.ps1 | 16 - .../Unit/Get-FinOpsServicesData.Tests.ps1 | 16 - src/scripts/Build-OpenData.ps1 | 3 + 9 files changed, 25 insertions(+), 1155 deletions(-) delete mode 100644 src/powershell/Private/Get-FinOpsPricingUnitsData.ps1 delete mode 100644 src/powershell/Private/Get-FinOpsRegionsData.ps1 delete mode 100644 src/powershell/Private/Get-FinOpsServicesData.ps1 delete mode 100644 src/powershell/Tests/Unit/Get-FinOpsPricingUnitsData.Tests.ps1 delete mode 100644 src/powershell/Tests/Unit/Get-FinOpsRegionsData.Tests.ps1 delete mode 100644 src/powershell/Tests/Unit/Get-FinOpsServicesData.Tests.ps1 diff --git a/docs/_resources/changelog.md b/docs/_resources/changelog.md index 4aa509544..b1be52dab 100644 --- a/docs/_resources/changelog.md +++ b/docs/_resources/changelog.md @@ -175,6 +175,14 @@ Legend: > > 1. Improved multi-tenancy support with Azure Lighthouse guidance ([#1036](https://github.com/microsoft/finops-toolkit/issues/1036)) +🌐 Open data +{: .fs-5 .fw-500 .mt-4 mb-0 } + +> ➕ Added: +> +> - [Resource types](../_reporting/data/README.md#-resource-types) +> 1. Added 2 new Microsoft.Network DNS resolver resource types. +
## 🪛 v0.7 Update 1 diff --git a/src/open-data/ResourceTypes.Overrides.json b/src/open-data/ResourceTypes.Overrides.json index 0ab981da1..582401236 100644 --- a/src/open-data/ResourceTypes.Overrides.json +++ b/src/open-data/ResourceTypes.Overrides.json @@ -277,6 +277,20 @@ "type": "microsoft.network/applicationgateways", "icon": "" }, + { + "type": "microsoft.network/dnsresolvers/inboundendpoints", + "singular": "DNS resolver inbound endpoint", + "plural": "DNS resolver inbound endpoints", + "lowerSingular": "DNS resolver inbound endpoint", + "lowerPlural": "DNS resolver inbound endpoints" + }, + { + "type": "microsoft.network/dnsresolvers/outboundendpoints", + "singular": "DNS resolver outbound endpoint", + "plural": "DNS resolver outbound endpoints", + "lowerSingular": "DNS resolver outbound endpoint", + "lowerPlural": "DNS resolver outbound endpoints" + }, { "type": "microsoft.network/networkinterfaces", "icon": "" diff --git a/src/powershell/Private/Get-FinOpsPricingUnitsData.ps1 b/src/powershell/Private/Get-FinOpsPricingUnitsData.ps1 deleted file mode 100644 index 66bfd3e56..000000000 --- a/src/powershell/Private/Get-FinOpsPricingUnitsData.ps1 +++ /dev/null @@ -1,373 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -function Get-FinOpsPricingUnitsData { - return [PSCustomObject]@( - [PSCustomObject]@{ UnitOfMeasure = '1'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 '; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 /Day'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 /Month'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 /Year'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Year'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 1 Hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 API Calls'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Requests'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Agents'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Agents'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Annual Domain'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Domains/Year'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Annual Domains'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Domains/Year'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Annual Subscriptions'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Subscriptions/Year'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Border Routers'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Routers'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Certificate'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Certificates'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Concurrent DVC'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Configurations'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Connection'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Connections'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Connections'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Connections'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Content Hours'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Count'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Count'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Cubic Meter/Month'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Cubic Meters/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily App'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Apps/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily Connection'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Connections/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily Connections'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Connections/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily Pack'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Packs/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily Reserved Unit'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily Reserved Units'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily Unit'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily Units'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Daily User'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Users/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Database Unit'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Database Units (DU)'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Day'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Days'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Days'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Days'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Device'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Devices'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Devices'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Devices'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Executions'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Executions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB Hour'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB Second'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB/Day'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GB/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB/Hour'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB/Month'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB/hora'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB/月'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Gb'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GiB'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GiB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GiB Hour'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GiB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GiB Minute'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GiB Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GiB Second'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GiB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GiB/Day'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GiB/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GiB/Hour'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GiB/Month'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'GiB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Hour'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Hourly Connection'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Connections/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Hourly Unit'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Hourly Units'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Hours'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 IOPS/Month'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'IOPS/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Key'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Keys'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Key Use'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Keys'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 MB'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'MB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 MB/Day'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'MB/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 MB/Month'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'MB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Maps'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Maps'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Messaging Unit'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Million'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Million'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Minute'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Month'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Months'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Named Users'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Users'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Node'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Nodes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Nodes'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Nodes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 PB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'PB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 PiB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'PiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Pipeline'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Pipelines'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Plan'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Plans'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Plans'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Plans'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Policies'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Policies'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Resource'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Resources'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Rotation'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Rotation'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Second'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Sites'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Sites'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Subscription'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Subscriptions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Subscriptions'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Subscriptions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TB'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'TB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TB Hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'TB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TB Second'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'TB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'TB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TB/Month'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'TB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TiB'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'TiB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TiB Hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'TiB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TiB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'TiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 TiB/Month'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'TiB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Unit'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Units'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 User'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Users'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Users'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Users'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 VM'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Virtual Machines'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Virtual Machine'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Virtual Machines'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Website'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Websites'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 Zones'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Zones'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 day'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 hora'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 hour'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 por mes'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Months'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 user'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'User'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 小时'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/10 Days'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Units/10 Days'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/3 Months'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Units/3 Months'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/6 Months'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Units/6 Months'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/Day'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/Hour'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/Month'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/Second'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Units/Second'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/Year'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Units/Year'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1/小时'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10'; AccountTypes = 'MCA, EA'; PricingBlockSize = 10; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 '; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 /Day'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 /Month'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Activities'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Activities'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 DB Hours'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'DB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 DBU Hours'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'DBU Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Database Unit'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Database Units (DU)'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Days'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Days'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Devices'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Devices'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 GB'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 GB/Day'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'GB/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 GB/Month'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 GiB'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'GiB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 GiB/Month'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'GiB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Hour'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Hourly Units'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Hours'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Instance Hours'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Minutes'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Month'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Months'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Months'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Months'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 PB Seconds'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'PB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 PB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'PB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 PiB Seconds'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'PiB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Pipelines'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Pipelines'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Rotations'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Rotations'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Service Endpoints'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Endpoints'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TB'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TB Hours'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TB/Day'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TB/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TB/Month'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TiB'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TiB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TiB Hours'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TiB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TiB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 TiB/Month'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'TiB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Unit'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Unit Hours'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Unit Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 Units'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10 day'; AccountTypes = 'EA'; PricingBlockSize = 10; DistinctUnits = 'Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100'; AccountTypes = 'MCA, EA'; PricingBlockSize = 100; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 '; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 /Day'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 /Month'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 API Calls'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Requests'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Authentications'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Authentications'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Connections'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Connections'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Core Hours'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Core Hrs'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Days'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Days'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 GB'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 GB Seconds'; AccountTypes = 'MCA'; PricingBlockSize = 100; DistinctUnits = 'GB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 GB/Day'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'GB/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 GB/Month'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 GiB'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'GiB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 GiB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'GiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 GiB/Month'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'GiB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Hour'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Hourly Units'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Hours'; AccountTypes = 'MCA, EA'; PricingBlockSize = 100; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 IOPS/Month'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'IOPS/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 MB'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'MB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 MB/Month'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'MB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Mbps'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Mbps'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Minutes'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Months'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Months'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Seconds'; AccountTypes = 'MCA'; PricingBlockSize = 100; DistinctUnits = 'Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 TB'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'TB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 TB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'TB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 TB/Month'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'TB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 TiB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'TiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Unit'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Units'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100 Users'; AccountTypes = 'EA'; PricingBlockSize = 100; DistinctUnits = 'Users'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100/Month'; AccountTypes = 'MCA'; PricingBlockSize = 100; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 '; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 /Day'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 /Month'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 APIs'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'APIs'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Activity Runs'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Runs'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Checks'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Checks'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Executions'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Executions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 GB'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 GB Hours'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'GB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 GB/Month'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Hours'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 IOPS/Month'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'IOPS/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Keys'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Keys'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Licenses'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Licenses'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 MAUS'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Users/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 MAUs'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Users/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 MB/Month'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'MB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Minutes'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Months'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Months'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Relay Hours'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Relay Hrs'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Renders'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Renders'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000 Transactions'; AccountTypes = 'EA'; PricingBlockSize = 1000; DistinctUnits = 'Transactions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 '; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 /Day'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 /Month'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 1,000s'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Transactions in Thousands'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Actions'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Actions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Authentications'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Authentications'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Executions'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Executions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Faces'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Faces'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 GB'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 GB Hours'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'GB Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 GB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'GB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 GB/Month'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 GiB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'GiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Hours'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Minutes'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Operations'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Operations'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Predictions'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Predictions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Seconds'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Transactions'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Transactions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Users'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Users'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000 Virtual User Minutes'; AccountTypes = 'EA'; PricingBlockSize = 10000; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 '; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 /Day'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 Executions'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'Executions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 GB'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 GB Seconds'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'GB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 GB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'GB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 GiB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'GiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 Hours'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 Seconds'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000 Transactions'; AccountTypes = 'EA'; PricingBlockSize = 100000; DistinctUnits = 'Transactions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 '; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 /Month'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 Data Points'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Data Points'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 GB Seconds'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'GB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 Messages'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Messages'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 Operations'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Operations'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 Pushes'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Pushes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 Requests'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Requests'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 Seconds'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000 Transactions'; AccountTypes = 'EA'; PricingBlockSize = 1000000; DistinctUnits = 'Transactions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 '; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 /Month'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 GB Seconds'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'GB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 Operations'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Operations'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 Pushes'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Pushes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 Queries'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Queries'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 Seconds'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000 Transactions'; AccountTypes = 'EA'; PricingBlockSize = 10000000; DistinctUnits = 'Transactions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000'; AccountTypes = 'EA'; PricingBlockSize = 100000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000 '; AccountTypes = 'EA'; PricingBlockSize = 100000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000 /Month'; AccountTypes = 'EA'; PricingBlockSize = 100000000; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000 Events'; AccountTypes = 'EA'; PricingBlockSize = 100000000; DistinctUnits = 'Events'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000 Operation Units'; AccountTypes = 'EA'; PricingBlockSize = 100000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000 Operations'; AccountTypes = 'EA'; PricingBlockSize = 100000000; DistinctUnits = 'Operations'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000 Pushes'; AccountTypes = 'EA'; PricingBlockSize = 100000000; DistinctUnits = 'Pushes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000 Transactions'; AccountTypes = 'EA'; PricingBlockSize = 100000000; DistinctUnits = 'Transactions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000000'; AccountTypes = 'EA'; PricingBlockSize = 1000000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1000000000 '; AccountTypes = 'EA'; PricingBlockSize = 1000000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000000'; AccountTypes = 'EA'; PricingBlockSize = 10000000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000000000 '; AccountTypes = 'EA'; PricingBlockSize = 10000000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000000'; AccountTypes = 'EA'; PricingBlockSize = 100000000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100000000000 '; AccountTypes = 'EA'; PricingBlockSize = 100000000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10000s'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'S'; } - ,[PSCustomObject]@{ UnitOfMeasure = '100K'; AccountTypes = 'MCA'; PricingBlockSize = 100000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1024 GB'; AccountTypes = 'EA'; PricingBlockSize = 1024; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '102400 TiB/Hour'; AccountTypes = 'EA'; PricingBlockSize = 102400; DistinctUnits = 'TiB/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10K'; AccountTypes = 'MCA, EA'; PricingBlockSize = 10000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10K Transactions'; AccountTypes = 'MCA'; PricingBlockSize = 10000; DistinctUnits = 'Transactions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10K/Hour'; AccountTypes = 'MCA'; PricingBlockSize = 10000; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10K/Month'; AccountTypes = 'MCA, EA'; PricingBlockSize = 10000; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '10M'; AccountTypes = 'MCA'; PricingBlockSize = 10000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '128 MB'; AccountTypes = 'MCA, EA'; PricingBlockSize = 128; DistinctUnits = 'MB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '150 Hours'; AccountTypes = 'EA'; PricingBlockSize = 150; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1B'; AccountTypes = 'MCA'; PricingBlockSize = 1000000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1K'; AccountTypes = 'MCA'; PricingBlockSize = 1000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1K/Hour'; AccountTypes = 'MCA'; PricingBlockSize = 1000; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1K/Month'; AccountTypes = 'MCA'; PricingBlockSize = 1000; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1M'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1M/Month'; AccountTypes = 'MCA'; PricingBlockSize = 1000000; DistinctUnits = 'Units/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '1 GB/mes'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '2'; AccountTypes = 'EA'; PricingBlockSize = 2; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '2 '; AccountTypes = 'EA'; PricingBlockSize = 2; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '2 Hosted Zones'; AccountTypes = 'EA'; PricingBlockSize = 2; DistinctUnits = 'Zones'; } - ,[PSCustomObject]@{ UnitOfMeasure = '20 GB/Month'; AccountTypes = 'EA'; PricingBlockSize = 20; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200'; AccountTypes = 'EA'; PricingBlockSize = 200; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200 '; AccountTypes = 'EA'; PricingBlockSize = 200; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200 /Hour'; AccountTypes = 'EA'; PricingBlockSize = 200; DistinctUnits = 'Units/Hour'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200 GB'; AccountTypes = 'EA'; PricingBlockSize = 200; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200 Hours'; AccountTypes = 'EA'; PricingBlockSize = 200; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200 minutes'; AccountTypes = 'EA'; PricingBlockSize = 200; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '2000 Hours'; AccountTypes = 'EA'; PricingBlockSize = 2000; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200000'; AccountTypes = 'EA'; PricingBlockSize = 200000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200000 '; AccountTypes = 'EA'; PricingBlockSize = 200000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '200000 Transactions'; AccountTypes = 'EA'; PricingBlockSize = 200000; DistinctUnits = 'Transactions'; } - ,[PSCustomObject]@{ UnitOfMeasure = '2000000'; AccountTypes = 'EA'; PricingBlockSize = 2000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '2000000 '; AccountTypes = 'EA'; PricingBlockSize = 2000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '25000 '; AccountTypes = 'EA'; PricingBlockSize = 25000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '250000'; AccountTypes = 'EA'; PricingBlockSize = 250000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '250000 '; AccountTypes = 'EA'; PricingBlockSize = 250000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '2500000 '; AccountTypes = 'EA'; PricingBlockSize = 2500000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '25K'; AccountTypes = 'MCA'; PricingBlockSize = 25000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '30 /Day'; AccountTypes = 'EA'; PricingBlockSize = 30; DistinctUnits = 'Units/Day'; } - ,[PSCustomObject]@{ UnitOfMeasure = '30 Days'; AccountTypes = 'EA'; PricingBlockSize = 30; DistinctUnits = 'Days'; } - ,[PSCustomObject]@{ UnitOfMeasure = '31 Connections'; AccountTypes = 'EA'; PricingBlockSize = 31; DistinctUnits = 'Connections'; } - ,[PSCustomObject]@{ UnitOfMeasure = '5 Connections'; AccountTypes = 'EA'; PricingBlockSize = 5; DistinctUnits = 'Connections'; } - ,[PSCustomObject]@{ UnitOfMeasure = '5 GB'; AccountTypes = 'MCA, EA'; PricingBlockSize = 5; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '5 TB'; AccountTypes = 'EA'; PricingBlockSize = 5; DistinctUnits = 'TB'; } - ,[PSCustomObject]@{ UnitOfMeasure = '50 Hours'; AccountTypes = 'EA'; PricingBlockSize = 50; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '500'; AccountTypes = 'EA'; PricingBlockSize = 500; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '500 '; AccountTypes = 'EA'; PricingBlockSize = 500; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '500 Hours'; AccountTypes = 'EA'; PricingBlockSize = 500; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = '500 Minute'; AccountTypes = 'EA'; PricingBlockSize = 500; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '500 Minutes'; AccountTypes = 'EA'; PricingBlockSize = 500; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '50000'; AccountTypes = 'EA'; PricingBlockSize = 50000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '50000 '; AccountTypes = 'EA'; PricingBlockSize = 50000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '50000 GB Seconds'; AccountTypes = 'EA'; PricingBlockSize = 50000; DistinctUnits = 'GB Seconds'; } - ,[PSCustomObject]@{ UnitOfMeasure = '500000 Requests'; AccountTypes = 'EA'; PricingBlockSize = 500000; DistinctUnits = 'Requests'; } - ,[PSCustomObject]@{ UnitOfMeasure = '5000000'; AccountTypes = 'EA'; PricingBlockSize = 5000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '5000000 '; AccountTypes = 'EA'; PricingBlockSize = 5000000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '5000000 Requests'; AccountTypes = 'EA'; PricingBlockSize = 5000000; DistinctUnits = 'Requests'; } - ,[PSCustomObject]@{ UnitOfMeasure = '5000000000 Requests'; AccountTypes = 'EA'; PricingBlockSize = 5000000000; DistinctUnits = 'Requests'; } - ,[PSCustomObject]@{ UnitOfMeasure = '50K'; AccountTypes = 'MCA'; PricingBlockSize = 50000; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '60'; AccountTypes = 'EA'; PricingBlockSize = 60; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '60 '; AccountTypes = 'EA'; PricingBlockSize = 60; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = '60 Minutes'; AccountTypes = 'EA'; PricingBlockSize = 60; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = '744 Connections'; AccountTypes = 'EA'; PricingBlockSize = 744; DistinctUnits = 'Connections'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'CallingMinutes'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'Days'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Days'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'GB'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GB'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'Gb / Month'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'GB/Month'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'Hours'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Hours'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'MB/month'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'MB/month'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'Minute(s)'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Minutes'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'Per Call'; AccountTypes = 'MCA, EA'; PricingBlockSize = 1; DistinctUnits = 'Calls'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'Unassigned'; AccountTypes = 'EA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'Units'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Units'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'per Privacy Subject Rights Request'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Requests'; } - ,[PSCustomObject]@{ UnitOfMeasure = 'print job'; AccountTypes = 'MCA'; PricingBlockSize = 1; DistinctUnits = 'Requests'; } - ) -} diff --git a/src/powershell/Private/Get-FinOpsRegionsData.ps1 b/src/powershell/Private/Get-FinOpsRegionsData.ps1 deleted file mode 100644 index 44edfefb6..000000000 --- a/src/powershell/Private/Get-FinOpsRegionsData.ps1 +++ /dev/null @@ -1,414 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -function Get-FinOpsRegionsData { - return [PSCustomObject]@( - [PSCustomObject]@{ OriginalValue = 'AE Central'; RegionId = 'uaecentral'; RegionName = 'UAE Central'; } - ,[PSCustomObject]@{ OriginalValue = 'AE North'; RegionId = 'uaenorth'; RegionName = 'UAE North'; } - ,[PSCustomObject]@{ OriginalValue = 'am'; RegionId = 'westeurope'; RegionName = 'West Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'AP East'; RegionId = 'eastasia'; RegionName = 'East Asia'; } - ,[PSCustomObject]@{ OriginalValue = 'AP Southeast'; RegionId = 'southeastasia'; RegionName = 'Southeast Asia'; } - ,[PSCustomObject]@{ OriginalValue = 'apacsoutheast2'; RegionId = 'apacsoutheast2'; RegionName = 'APAC Southeast 2'; } - ,[PSCustomObject]@{ OriginalValue = 'arlem'; RegionId = 'arlem'; RegionName = 'Arlem'; } - ,[PSCustomObject]@{ OriginalValue = 'asiaeast'; RegionId = 'eastasia'; RegionName = 'East Asia'; } - ,[PSCustomObject]@{ OriginalValue = 'asiasoutheast'; RegionId = 'southeastasia'; RegionName = 'Southeast Asia'; } - ,[PSCustomObject]@{ OriginalValue = 'asiasoutheast2'; RegionId = 'apacsoutheast2'; RegionName = 'APAC Southeast 2'; } - ,[PSCustomObject]@{ OriginalValue = 'AT East'; RegionId = 'austriaeast'; RegionName = 'Austria East'; } - ,[PSCustomObject]@{ OriginalValue = 'ate'; RegionId = 'austriaeast'; RegionName = 'Austria East'; } - ,[PSCustomObject]@{ OriginalValue = 'AU Central'; RegionId = 'australiacentral'; RegionName = 'Australia Central'; } - ,[PSCustomObject]@{ OriginalValue = 'AU Central 2'; RegionId = 'australiacentral2'; RegionName = 'Australia Central 2'; } - ,[PSCustomObject]@{ OriginalValue = 'AU East'; RegionId = 'australiaeast'; RegionName = 'Australia East'; } - ,[PSCustomObject]@{ OriginalValue = 'AU Southeast'; RegionId = 'australiasoutheast'; RegionName = 'Australia Southeast'; } - ,[PSCustomObject]@{ OriginalValue = 'auh'; RegionId = 'uaecentral'; RegionName = 'UAE Central'; } - ,[PSCustomObject]@{ OriginalValue = 'australiac'; RegionId = 'australiacentral'; RegionName = 'Australia Central'; } - ,[PSCustomObject]@{ OriginalValue = 'australiac2'; RegionId = 'australiacentral2'; RegionName = 'Australia Central 2'; } - ,[PSCustomObject]@{ OriginalValue = 'australiacentral'; RegionId = 'australiacentral'; RegionName = 'Australia Central'; } - ,[PSCustomObject]@{ OriginalValue = 'australiacentral2'; RegionId = 'australiacentral2'; RegionName = 'Australia Central 2'; } - ,[PSCustomObject]@{ OriginalValue = 'australiaeast'; RegionId = 'australiaeast'; RegionName = 'Australia East'; } - ,[PSCustomObject]@{ OriginalValue = 'australiasoutheast'; RegionId = 'australiasoutheast'; RegionName = 'Australia Southeast'; } - ,[PSCustomObject]@{ OriginalValue = 'austriae'; RegionId = 'austriaeast'; RegionName = 'Austria East'; } - ,[PSCustomObject]@{ OriginalValue = 'austriaeast'; RegionId = 'austriaeast'; RegionName = 'Austria East'; } - ,[PSCustomObject]@{ OriginalValue = 'bd'; RegionId = 'usdodeast'; RegionName = 'USDoD East'; } - ,[PSCustomObject]@{ OriginalValue = 'BE Central'; RegionId = 'belgiumcentral'; RegionName = 'Belgium Central'; } - ,[PSCustomObject]@{ OriginalValue = 'bec'; RegionId = 'belgiumcentral'; RegionName = 'Belgium Central'; } - ,[PSCustomObject]@{ OriginalValue = 'belgiumc'; RegionId = 'belgiumcentral'; RegionName = 'Belgium Central'; } - ,[PSCustomObject]@{ OriginalValue = 'belgiumcentral'; RegionId = 'belgiumcentral'; RegionName = 'Belgium Central'; } - ,[PSCustomObject]@{ OriginalValue = 'bj'; RegionId = 'chinanorth'; RegionName = 'China North'; } - ,[PSCustomObject]@{ OriginalValue = 'bjs'; RegionId = 'chinanorth2'; RegionName = 'China North 2'; } - ,[PSCustomObject]@{ OriginalValue = 'bl'; RegionId = 'eastus'; RegionName = 'East US'; } - ,[PSCustomObject]@{ OriginalValue = 'Bleu France Central'; RegionId = 'bleufrancecentral'; RegionName = 'Bleu France Central'; } - ,[PSCustomObject]@{ OriginalValue = 'Bleu France South'; RegionId = 'bleufrancesouth'; RegionName = 'Bleu France South'; } - ,[PSCustomObject]@{ OriginalValue = 'bleuc'; RegionId = 'bleufrancecentral'; RegionName = 'Bleu France Central'; } - ,[PSCustomObject]@{ OriginalValue = 'bleufrancecentral'; RegionId = 'bleufrancecentral'; RegionName = 'Bleu France Central'; } - ,[PSCustomObject]@{ OriginalValue = 'bleufrancesouth'; RegionId = 'bleufrancesouth'; RegionName = 'Bleu France South'; } - ,[PSCustomObject]@{ OriginalValue = 'bleus'; RegionId = 'bleufrancesouth'; RegionName = 'Bleu France South'; } - ,[PSCustomObject]@{ OriginalValue = 'bm'; RegionId = 'westindia'; RegionName = 'West India'; } - ,[PSCustomObject]@{ OriginalValue = 'bn'; RegionId = 'eastus2'; RegionName = 'East US 2'; } - ,[PSCustomObject]@{ OriginalValue = 'bn'; RegionId = 'usgovvirginia'; RegionName = 'USGov Virginia'; } - ,[PSCustomObject]@{ OriginalValue = 'BR South'; RegionId = 'brazilsouth'; RegionName = 'Brazil South'; } - ,[PSCustomObject]@{ OriginalValue = 'BR Southeast'; RegionId = 'brazilsoutheast'; RegionName = 'Brazil Southeast'; } - ,[PSCustomObject]@{ OriginalValue = 'brazilne'; RegionId = 'brazilnortheast'; RegionName = 'Brazil Northeast'; } - ,[PSCustomObject]@{ OriginalValue = 'brazilnortheast'; RegionId = 'brazilnortheast'; RegionName = 'Brazil Northeast'; } - ,[PSCustomObject]@{ OriginalValue = 'brazilse'; RegionId = 'brazilsoutheast'; RegionName = 'Brazil Southeast'; } - ,[PSCustomObject]@{ OriginalValue = 'brazilsouth'; RegionId = 'brazilsouth'; RegionName = 'Brazil South'; } - ,[PSCustomObject]@{ OriginalValue = 'brazilsoutheast'; RegionId = 'brazilsoutheast'; RegionName = 'Brazil Southeast'; } - ,[PSCustomObject]@{ OriginalValue = 'brne'; RegionId = 'brazilnortheast'; RegionName = 'Brazil Northeast'; } - ,[PSCustomObject]@{ OriginalValue = 'brse'; RegionId = 'brazilsoutheast'; RegionName = 'Brazil Southeast'; } - ,[PSCustomObject]@{ OriginalValue = 'by'; RegionId = 'westus'; RegionName = 'West US'; } - ,[PSCustomObject]@{ OriginalValue = 'CA Central'; RegionId = 'canadacentral'; RegionName = 'Canada Central'; } - ,[PSCustomObject]@{ OriginalValue = 'CA East'; RegionId = 'canadaeast'; RegionName = 'Canada East'; } - ,[PSCustomObject]@{ OriginalValue = 'canadacentral'; RegionId = 'canadacentral'; RegionName = 'Canada Central'; } - ,[PSCustomObject]@{ OriginalValue = 'canadaeast'; RegionId = 'canadaeast'; RegionName = 'Canada East'; } - ,[PSCustomObject]@{ OriginalValue = 'cbn'; RegionId = 'eastus2euap'; RegionName = 'East US 2 EUAP'; } - ,[PSCustomObject]@{ OriginalValue = 'cbr'; RegionId = 'australiacentral'; RegionName = 'Australia Central'; } - ,[PSCustomObject]@{ OriginalValue = 'cbr2'; RegionId = 'australiacentral2'; RegionName = 'Australia Central 2'; } - ,[PSCustomObject]@{ OriginalValue = 'cdm'; RegionId = 'centraluseuap'; RegionName = 'Central US EUAP'; } - ,[PSCustomObject]@{ OriginalValue = 'centralindia'; RegionId = 'centralindia'; RegionName = 'Central India'; } - ,[PSCustomObject]@{ OriginalValue = 'centralus'; RegionId = 'centralus'; RegionName = 'Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'centraluseuap'; RegionId = 'centraluseuap'; RegionName = 'Central US EUAP'; } - ,[PSCustomObject]@{ OriginalValue = 'ch'; RegionId = 'northcentralus'; RegionName = 'North Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'CH North'; RegionId = 'switzerlandnorth'; RegionName = 'Switzerland North'; } - ,[PSCustomObject]@{ OriginalValue = 'CH West'; RegionId = 'switzerlandwest'; RegionName = 'Switzerland West'; } - ,[PSCustomObject]@{ OriginalValue = 'chilec'; RegionId = 'chilecentral'; RegionName = 'Chile Central'; } - ,[PSCustomObject]@{ OriginalValue = 'chilecentral'; RegionId = 'chilecentral'; RegionName = 'Chile Central'; } - ,[PSCustomObject]@{ OriginalValue = 'chilenc'; RegionId = 'chilenorthcentral'; RegionName = 'Chile North Central'; } - ,[PSCustomObject]@{ OriginalValue = 'chilenorthcentral'; RegionId = 'chilenorthcentral'; RegionName = 'Chile North Central'; } - ,[PSCustomObject]@{ OriginalValue = 'chinae2'; RegionId = 'chinaeast2'; RegionName = 'China East 2'; } - ,[PSCustomObject]@{ OriginalValue = 'chinae3'; RegionId = 'chinaeast3'; RegionName = 'China East 3'; } - ,[PSCustomObject]@{ OriginalValue = 'chinaeast'; RegionId = 'chinaeast'; RegionName = 'China East'; } - ,[PSCustomObject]@{ OriginalValue = 'chinaeast2'; RegionId = 'chinaeast2'; RegionName = 'China East 2'; } - ,[PSCustomObject]@{ OriginalValue = 'chinaeast3'; RegionId = 'chinaeast3'; RegionName = 'China East 3'; } - ,[PSCustomObject]@{ OriginalValue = 'chinan10'; RegionId = 'chinanorth10'; RegionName = 'China North 10'; } - ,[PSCustomObject]@{ OriginalValue = 'chinan2'; RegionId = 'chinanorth2'; RegionName = 'China North 2'; } - ,[PSCustomObject]@{ OriginalValue = 'chinan3'; RegionId = 'chinanorth3'; RegionName = 'China North 3'; } - ,[PSCustomObject]@{ OriginalValue = 'chinanorth'; RegionId = 'chinanorth'; RegionName = 'China North'; } - ,[PSCustomObject]@{ OriginalValue = 'chinanorth10'; RegionId = 'chinanorth10'; RegionName = 'China North 10'; } - ,[PSCustomObject]@{ OriginalValue = 'chinanorth2'; RegionId = 'chinanorth2'; RegionName = 'China North 2'; } - ,[PSCustomObject]@{ OriginalValue = 'chinanorth3'; RegionId = 'chinanorth3'; RegionName = 'China North 3'; } - ,[PSCustomObject]@{ OriginalValue = 'chn'; RegionId = 'switzerlandnorth'; RegionName = 'Switzerland North'; } - ,[PSCustomObject]@{ OriginalValue = 'chw'; RegionId = 'switzerlandwest'; RegionName = 'Switzerland West'; } - ,[PSCustomObject]@{ OriginalValue = 'CL Central'; RegionId = 'chilecentral'; RegionName = 'Chile Central'; } - ,[PSCustomObject]@{ OriginalValue = 'CL North Central'; RegionId = 'chilenorthcentral'; RegionName = 'Chile North Central'; } - ,[PSCustomObject]@{ OriginalValue = 'clc'; RegionId = 'chilecentral'; RegionName = 'Chile Central'; } - ,[PSCustomObject]@{ OriginalValue = 'clnc'; RegionId = 'chilenorthcentral'; RegionName = 'Chile North Central'; } - ,[PSCustomObject]@{ OriginalValue = 'CN East'; RegionId = 'chinaeast'; RegionName = 'China East'; } - ,[PSCustomObject]@{ OriginalValue = 'CN East 2'; RegionId = 'chinaeast2'; RegionName = 'China East 2'; } - ,[PSCustomObject]@{ OriginalValue = 'CN East 3'; RegionId = 'chinaeast3'; RegionName = 'China East 3'; } - ,[PSCustomObject]@{ OriginalValue = 'CN North'; RegionId = 'chinanorth'; RegionName = 'China North'; } - ,[PSCustomObject]@{ OriginalValue = 'CN North 2'; RegionId = 'chinanorth2'; RegionName = 'China North 2'; } - ,[PSCustomObject]@{ OriginalValue = 'CN North 3'; RegionId = 'chinanorth3'; RegionName = 'China North 3'; } - ,[PSCustomObject]@{ OriginalValue = 'cne3'; RegionId = 'chinaeast3'; RegionName = 'China East 3'; } - ,[PSCustomObject]@{ OriginalValue = 'cnn10'; RegionId = 'chinanorth10'; RegionName = 'China North 10'; } - ,[PSCustomObject]@{ OriginalValue = 'cnn3'; RegionId = 'chinanorth3'; RegionName = 'China North 3'; } - ,[PSCustomObject]@{ OriginalValue = 'cpt'; RegionId = 'southafricawest'; RegionName = 'South Africa West'; } - ,[PSCustomObject]@{ OriginalValue = 'cq'; RegionId = 'brazilsouth'; RegionName = 'Brazil South'; } - ,[PSCustomObject]@{ OriginalValue = 'cw'; RegionId = 'ukwest'; RegionName = 'UK West'; } - ,[PSCustomObject]@{ OriginalValue = 'cy'; RegionId = 'usgovwyoming'; RegionName = 'USGov Wyoming'; } - ,[PSCustomObject]@{ OriginalValue = 'cy'; RegionId = 'westcentralus'; RegionName = 'West Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'db'; RegionId = 'northeurope'; RegionName = 'North Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'dd'; RegionId = 'usdodcentral'; RegionName = 'USDoD Central'; } - ,[PSCustomObject]@{ OriginalValue = 'DE Central'; RegionId = 'germanycentral'; RegionName = 'Germany Central'; } - ,[PSCustomObject]@{ OriginalValue = 'DE North'; RegionId = 'germanynorth'; RegionName = 'Germany North'; } - ,[PSCustomObject]@{ OriginalValue = 'DE Northeast'; RegionId = 'germanynortheast'; RegionName = 'Germany NorthEast'; } - ,[PSCustomObject]@{ OriginalValue = 'DE West Central'; RegionId = 'germanywestcentral'; RegionName = 'Germany West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'delc'; RegionId = 'deloscloudgermanycentral'; RegionName = 'Delos Cloud Germany Central'; } - ,[PSCustomObject]@{ OriginalValue = 'deln'; RegionId = 'deloscloudgermanynorth'; RegionName = 'Delos Cloud Germany North'; } - ,[PSCustomObject]@{ OriginalValue = 'Delos Cloud Germany Central'; RegionId = 'deloscloudgermanycentral'; RegionName = 'Delos Cloud Germany Central'; } - ,[PSCustomObject]@{ OriginalValue = 'Delos Cloud Germany North'; RegionId = 'deloscloudgermanynorth'; RegionName = 'Delos Cloud Germany North'; } - ,[PSCustomObject]@{ OriginalValue = 'delosc'; RegionId = 'deloscloudgermanycentral'; RegionName = 'Delos Cloud Germany Central'; } - ,[PSCustomObject]@{ OriginalValue = 'deloscloudgermanycentral'; RegionId = 'deloscloudgermanycentral'; RegionName = 'Delos Cloud Germany Central'; } - ,[PSCustomObject]@{ OriginalValue = 'deloscloudgermanynorth'; RegionId = 'deloscloudgermanynorth'; RegionName = 'Delos Cloud Germany North'; } - ,[PSCustomObject]@{ OriginalValue = 'delosn'; RegionId = 'deloscloudgermanynorth'; RegionName = 'Delos Cloud Germany North'; } - ,[PSCustomObject]@{ OriginalValue = 'den'; RegionId = 'germanynorth'; RegionName = 'Germany North'; } - ,[PSCustomObject]@{ OriginalValue = 'Denmark East'; RegionId = 'denmarkeast'; RegionName = 'Denmark East'; } - ,[PSCustomObject]@{ OriginalValue = 'denmarke'; RegionId = 'denmarkeast'; RegionName = 'Denmark East'; } - ,[PSCustomObject]@{ OriginalValue = 'denmarkeast'; RegionId = 'denmarkeast'; RegionName = 'Denmark East'; } - ,[PSCustomObject]@{ OriginalValue = 'dewc'; RegionId = 'germanywestcentral'; RegionName = 'Germany West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'dke'; RegionId = 'denmarkeast'; RegionName = 'Denmark East'; } - ,[PSCustomObject]@{ OriginalValue = 'dm'; RegionId = 'centralus'; RegionName = 'Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'dm'; RegionId = 'usgoviowa'; RegionName = 'USGov Iowa'; } - ,[PSCustomObject]@{ OriginalValue = 'dxb'; RegionId = 'uaenorth'; RegionName = 'UAE North'; } - ,[PSCustomObject]@{ OriginalValue = 'eastasia'; RegionId = 'eastasia'; RegionName = 'East Asia'; } - ,[PSCustomObject]@{ OriginalValue = 'easteurope'; RegionId = 'easteurope'; RegionName = 'East Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'eastus'; RegionId = 'eastus'; RegionName = 'East US'; } - ,[PSCustomObject]@{ OriginalValue = 'eastus2'; RegionId = 'eastus2'; RegionName = 'East US 2'; } - ,[PSCustomObject]@{ OriginalValue = 'eastus2euap'; RegionId = 'eastus2euap'; RegionName = 'East US 2 EUAP'; } - ,[PSCustomObject]@{ OriginalValue = 'eastusslv'; RegionId = 'eastusslv'; RegionName = 'East US SLV'; } - ,[PSCustomObject]@{ OriginalValue = 'eastusstg'; RegionId = 'eastusstg'; RegionName = 'East US STG'; } - ,[PSCustomObject]@{ OriginalValue = 'ES Central'; RegionId = 'spaincentral'; RegionName = 'Spain Central'; } - ,[PSCustomObject]@{ OriginalValue = 'esc'; RegionId = 'spaincentral'; RegionName = 'Spain Central'; } - ,[PSCustomObject]@{ OriginalValue = 'EU North'; RegionId = 'northeurope'; RegionName = 'North Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'EU West'; RegionId = 'westeurope'; RegionName = 'West Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'europeeast'; RegionId = 'easteurope'; RegionName = 'East Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'europenorth'; RegionId = 'northeurope'; RegionName = 'North Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'europenorth2'; RegionId = 'northeurope2'; RegionName = 'North Europe 2'; } - ,[PSCustomObject]@{ OriginalValue = 'europewest'; RegionId = 'westeurope'; RegionName = 'West Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'eusslv'; RegionId = 'eastusslv'; RegionName = 'East US SLV'; } - ,[PSCustomObject]@{ OriginalValue = 'FI Central'; RegionId = 'finlandcentral'; RegionName = 'Finland Central'; } - ,[PSCustomObject]@{ OriginalValue = 'finlandc'; RegionId = 'finlandcentral'; RegionName = 'Finland Central'; } - ,[PSCustomObject]@{ OriginalValue = 'finlandcentral'; RegionId = 'finlandcentral'; RegionName = 'Finland Central'; } - ,[PSCustomObject]@{ OriginalValue = 'flc'; RegionId = 'finlandcentral'; RegionName = 'Finland Central'; } - ,[PSCustomObject]@{ OriginalValue = 'fr'; RegionId = 'germanycentral'; RegionName = 'Germany Central'; } - ,[PSCustomObject]@{ OriginalValue = 'FR Central'; RegionId = 'francecentral'; RegionName = 'France Central'; } - ,[PSCustomObject]@{ OriginalValue = 'FR South'; RegionId = 'francesouth'; RegionName = 'France South'; } - ,[PSCustomObject]@{ OriginalValue = 'francec'; RegionId = 'francecentral'; RegionName = 'France Central'; } - ,[PSCustomObject]@{ OriginalValue = 'francecentral'; RegionId = 'francecentral'; RegionName = 'France Central'; } - ,[PSCustomObject]@{ OriginalValue = 'frances'; RegionId = 'francesouth'; RegionName = 'France South'; } - ,[PSCustomObject]@{ OriginalValue = 'francesouth'; RegionId = 'francesouth'; RegionName = 'France South'; } - ,[PSCustomObject]@{ OriginalValue = 'germanycentral'; RegionId = 'germanycentral'; RegionName = 'Germany Central'; } - ,[PSCustomObject]@{ OriginalValue = 'germanyn'; RegionId = 'germanynorth'; RegionName = 'Germany North'; } - ,[PSCustomObject]@{ OriginalValue = 'germanynorth'; RegionId = 'germanynorth'; RegionName = 'Germany North'; } - ,[PSCustomObject]@{ OriginalValue = 'germanynortheast'; RegionId = 'germanynortheast'; RegionName = 'Germany NorthEast'; } - ,[PSCustomObject]@{ OriginalValue = 'germanywc'; RegionId = 'germanywestcentral'; RegionName = 'Germany West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'germanywestcentral'; RegionId = 'germanywestcentral'; RegionName = 'Germany West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'grn'; RegionId = 'usnatwest'; RegionName = 'USNat West'; } - ,[PSCustomObject]@{ OriginalValue = 'hel'; RegionId = 'northeurope2'; RegionName = 'North Europe 2'; } - ,[PSCustomObject]@{ OriginalValue = 'hk'; RegionId = 'eastasia'; RegionName = 'East Asia'; } - ,[PSCustomObject]@{ OriginalValue = 'ID Central'; RegionId = 'indonesiacentral'; RegionName = 'Indonesia Central'; } - ,[PSCustomObject]@{ OriginalValue = 'idc'; RegionId = 'indonesiacentral'; RegionName = 'Indonesia Central'; } - ,[PSCustomObject]@{ OriginalValue = 'IL Central'; RegionId = 'israelcentral'; RegionName = 'Israel Central'; } - ,[PSCustomObject]@{ OriginalValue = 'IL Northwest'; RegionId = 'israelnorthwest'; RegionName = 'Israel Northwest'; } - ,[PSCustomObject]@{ OriginalValue = 'ilc'; RegionId = 'israelcentral'; RegionName = 'Israel Central'; } - ,[PSCustomObject]@{ OriginalValue = 'ilnw'; RegionId = 'israelnorthwest'; RegionName = 'Israel Northwest'; } - ,[PSCustomObject]@{ OriginalValue = 'IN Central'; RegionId = 'centralindia'; RegionName = 'Central India'; } - ,[PSCustomObject]@{ OriginalValue = 'IN Central Jio'; RegionId = 'jioindiacentral'; RegionName = 'Jio India Central'; } - ,[PSCustomObject]@{ OriginalValue = 'IN South'; RegionId = 'southindia'; RegionName = 'South India'; } - ,[PSCustomObject]@{ OriginalValue = 'IN South Central'; RegionId = 'indiasouthcentral'; RegionName = 'India South Central'; } - ,[PSCustomObject]@{ OriginalValue = 'IN West'; RegionId = 'westindia'; RegionName = 'West India'; } - ,[PSCustomObject]@{ OriginalValue = 'IN West Jio'; RegionId = 'jioindiawest'; RegionName = 'Jio India West'; } - ,[PSCustomObject]@{ OriginalValue = 'indiacentral'; RegionId = 'centralindia'; RegionName = 'Central India'; } - ,[PSCustomObject]@{ OriginalValue = 'indiasc'; RegionId = 'indiasouthcentral'; RegionName = 'India South Central'; } - ,[PSCustomObject]@{ OriginalValue = 'indiasouth'; RegionId = 'southindia'; RegionName = 'South India'; } - ,[PSCustomObject]@{ OriginalValue = 'indiasouthcentral'; RegionId = 'indiasouthcentral'; RegionName = 'India South Central'; } - ,[PSCustomObject]@{ OriginalValue = 'indiawest'; RegionId = 'westindia'; RegionName = 'West India'; } - ,[PSCustomObject]@{ OriginalValue = 'indonesiac'; RegionId = 'indonesiacentral'; RegionName = 'Indonesia Central'; } - ,[PSCustomObject]@{ OriginalValue = 'indonesiacentral'; RegionId = 'indonesiacentral'; RegionName = 'Indonesia Central'; } - ,[PSCustomObject]@{ OriginalValue = 'insc'; RegionId = 'indiasouthcentral'; RegionName = 'India South Central'; } - ,[PSCustomObject]@{ OriginalValue = 'israelc'; RegionId = 'israelcentral'; RegionName = 'Israel Central'; } - ,[PSCustomObject]@{ OriginalValue = 'israelcentral'; RegionId = 'israelcentral'; RegionName = 'Israel Central'; } - ,[PSCustomObject]@{ OriginalValue = 'israelnorthwest'; RegionId = 'israelnorthwest'; RegionName = 'Israel Northwest'; } - ,[PSCustomObject]@{ OriginalValue = 'israelnw'; RegionId = 'israelnorthwest'; RegionName = 'Israel Northwest'; } - ,[PSCustomObject]@{ OriginalValue = 'IT North'; RegionId = 'italynorth'; RegionName = 'Italy North'; } - ,[PSCustomObject]@{ OriginalValue = 'italyn'; RegionId = 'italynorth'; RegionName = 'Italy North'; } - ,[PSCustomObject]@{ OriginalValue = 'italynorth'; RegionId = 'italynorth'; RegionName = 'Italy North'; } - ,[PSCustomObject]@{ OriginalValue = 'itn'; RegionId = 'italynorth'; RegionName = 'Italy North'; } - ,[PSCustomObject]@{ OriginalValue = 'JA East'; RegionId = 'japaneast'; RegionName = 'Japan East'; } - ,[PSCustomObject]@{ OriginalValue = 'JA West'; RegionId = 'japanwest'; RegionName = 'Japan West'; } - ,[PSCustomObject]@{ OriginalValue = 'japaneast'; RegionId = 'japaneast'; RegionName = 'Japan East'; } - ,[PSCustomObject]@{ OriginalValue = 'japanwest'; RegionId = 'japanwest'; RegionName = 'Japan West'; } - ,[PSCustomObject]@{ OriginalValue = 'jinc'; RegionId = 'jioindiacentral'; RegionName = 'Jio India Central'; } - ,[PSCustomObject]@{ OriginalValue = 'jinw'; RegionId = 'jioindiawest'; RegionName = 'Jio India West'; } - ,[PSCustomObject]@{ OriginalValue = 'jioinc'; RegionId = 'jioindiacentral'; RegionName = 'Jio India Central'; } - ,[PSCustomObject]@{ OriginalValue = 'jioindiacentral'; RegionId = 'jioindiacentral'; RegionName = 'Jio India Central'; } - ,[PSCustomObject]@{ OriginalValue = 'jioindiawest'; RegionId = 'jioindiawest'; RegionName = 'Jio India West'; } - ,[PSCustomObject]@{ OriginalValue = 'jioinw'; RegionId = 'jioindiawest'; RegionName = 'Jio India West'; } - ,[PSCustomObject]@{ OriginalValue = 'jnb'; RegionId = 'southafricanorth'; RegionName = 'South Africa North'; } - ,[PSCustomObject]@{ OriginalValue = 'koreacentral'; RegionId = 'koreacentral'; RegionName = 'Korea Central'; } - ,[PSCustomObject]@{ OriginalValue = 'koreas2'; RegionId = 'koreasouth2'; RegionName = 'Korea South 2'; } - ,[PSCustomObject]@{ OriginalValue = 'koreasouth'; RegionId = 'koreasouth'; RegionName = 'Korea South'; } - ,[PSCustomObject]@{ OriginalValue = 'koreasouth2'; RegionId = 'koreasouth2'; RegionName = 'Korea South 2'; } - ,[PSCustomObject]@{ OriginalValue = 'KR Central'; RegionId = 'koreacentral'; RegionName = 'Korea Central'; } - ,[PSCustomObject]@{ OriginalValue = 'KR South'; RegionId = 'koreasouth'; RegionName = 'Korea South'; } - ,[PSCustomObject]@{ OriginalValue = 'krs2'; RegionId = 'koreasouth2'; RegionName = 'Korea South 2'; } - ,[PSCustomObject]@{ OriginalValue = 'kul'; RegionId = 'apacsoutheast2'; RegionName = 'APAC Southeast 2'; } - ,[PSCustomObject]@{ OriginalValue = 'lg'; RegionId = 'germanynortheast'; RegionName = 'Germany NorthEast'; } - ,[PSCustomObject]@{ OriginalValue = 'ln'; RegionId = 'uksouth'; RegionName = 'UK South'; } - ,[PSCustomObject]@{ OriginalValue = 'lo'; RegionId = 'uksouth2'; RegionName = 'UK South 2'; } - ,[PSCustomObject]@{ OriginalValue = 'ma'; RegionId = 'southindia'; RegionName = 'South India'; } - ,[PSCustomObject]@{ OriginalValue = 'malaysias'; RegionId = 'malaysiasouth'; RegionName = 'Malaysia South'; } - ,[PSCustomObject]@{ OriginalValue = 'malaysiasouth'; RegionId = 'malaysiasouth'; RegionName = 'Malaysia South'; } - ,[PSCustomObject]@{ OriginalValue = 'malaysiaw'; RegionId = 'malaysiawest'; RegionName = 'Malaysia West'; } - ,[PSCustomObject]@{ OriginalValue = 'malaysiawest'; RegionId = 'malaysiawest'; RegionName = 'Malaysia West'; } - ,[PSCustomObject]@{ OriginalValue = 'mexicoc'; RegionId = 'mexicocentral'; RegionName = 'Mexico Central'; } - ,[PSCustomObject]@{ OriginalValue = 'mexicocentral'; RegionId = 'mexicocentral'; RegionName = 'Mexico Central'; } - ,[PSCustomObject]@{ OriginalValue = 'ml'; RegionId = 'australiasoutheast'; RegionName = 'Australia Southeast'; } - ,[PSCustomObject]@{ OriginalValue = 'mm'; RegionId = 'uknorth'; RegionName = 'UK North'; } - ,[PSCustomObject]@{ OriginalValue = 'mrs'; RegionId = 'francesouth'; RegionName = 'France South'; } - ,[PSCustomObject]@{ OriginalValue = 'mwh'; RegionId = 'westus2'; RegionName = 'West US 2'; } - ,[PSCustomObject]@{ OriginalValue = 'MX Central'; RegionId = 'mexicocentral'; RegionName = 'Mexico Central'; } - ,[PSCustomObject]@{ OriginalValue = 'mxc'; RegionId = 'mexicocentral'; RegionName = 'Mexico Central'; } - ,[PSCustomObject]@{ OriginalValue = 'MY South'; RegionId = 'malaysiasouth'; RegionName = 'Malaysia South'; } - ,[PSCustomObject]@{ OriginalValue = 'MY West'; RegionId = 'malaysiawest'; RegionName = 'Malaysia West'; } - ,[PSCustomObject]@{ OriginalValue = 'mys'; RegionId = 'malaysiasouth'; RegionName = 'Malaysia South'; } - ,[PSCustomObject]@{ OriginalValue = 'myw'; RegionId = 'malaysiawest'; RegionName = 'Malaysia West'; } - ,[PSCustomObject]@{ OriginalValue = 'newzealandn'; RegionId = 'newzealandnorth'; RegionName = 'New Zealand North'; } - ,[PSCustomObject]@{ OriginalValue = 'newzealandnorth'; RegionId = 'newzealandnorth'; RegionName = 'New Zealand North'; } - ,[PSCustomObject]@{ OriginalValue = 'NO East'; RegionId = 'norwayeast'; RegionName = 'Norway East'; } - ,[PSCustomObject]@{ OriginalValue = 'NO West'; RegionId = 'norwaywest'; RegionName = 'Norway West'; } - ,[PSCustomObject]@{ OriginalValue = 'noe'; RegionId = 'norwayeast'; RegionName = 'Norway East'; } - ,[PSCustomObject]@{ OriginalValue = 'northcentralus'; RegionId = 'northcentralus'; RegionName = 'North Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'northeurope'; RegionId = 'northeurope'; RegionName = 'North Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'northeurope2'; RegionId = 'northeurope2'; RegionName = 'North Europe 2'; } - ,[PSCustomObject]@{ OriginalValue = 'norwaye'; RegionId = 'norwayeast'; RegionName = 'Norway East'; } - ,[PSCustomObject]@{ OriginalValue = 'norwayeast'; RegionId = 'norwayeast'; RegionName = 'Norway East'; } - ,[PSCustomObject]@{ OriginalValue = 'norwayw'; RegionId = 'norwaywest'; RegionName = 'Norway West'; } - ,[PSCustomObject]@{ OriginalValue = 'norwaywest'; RegionId = 'norwaywest'; RegionName = 'Norway West'; } - ,[PSCustomObject]@{ OriginalValue = 'now'; RegionId = 'norwaywest'; RegionName = 'Norway West'; } - ,[PSCustomObject]@{ OriginalValue = 'NZ North'; RegionId = 'newzealandnorth'; RegionName = 'New Zealand North'; } - ,[PSCustomObject]@{ OriginalValue = 'nzn'; RegionId = 'newzealandnorth'; RegionName = 'New Zealand North'; } - ,[PSCustomObject]@{ OriginalValue = 'ocave'; RegionId = 'ocave'; RegionName = 'Ocave'; } - ,[PSCustomObject]@{ OriginalValue = 'os'; RegionId = 'japanwest'; RegionName = 'Japan West'; } - ,[PSCustomObject]@{ OriginalValue = 'par'; RegionId = 'francecentral'; RegionName = 'France Central'; } - ,[PSCustomObject]@{ OriginalValue = 'phx'; RegionId = 'usgovarizona'; RegionName = 'USGov Arizona'; } - ,[PSCustomObject]@{ OriginalValue = 'phxd'; RegionId = 'usdodsouthwest'; RegionName = 'USDoD Southwest'; } - ,[PSCustomObject]@{ OriginalValue = 'PL Central'; RegionId = 'polandcentral'; RegionName = 'Poland Central'; } - ,[PSCustomObject]@{ OriginalValue = 'plc'; RegionId = 'polandcentral'; RegionName = 'Poland Central'; } - ,[PSCustomObject]@{ OriginalValue = 'pn'; RegionId = 'centralindia'; RegionName = 'Central India'; } - ,[PSCustomObject]@{ OriginalValue = 'polandc'; RegionId = 'polandcentral'; RegionName = 'Poland Central'; } - ,[PSCustomObject]@{ OriginalValue = 'polandcentral'; RegionId = 'polandcentral'; RegionName = 'Poland Central'; } - ,[PSCustomObject]@{ OriginalValue = 'ps'; RegionId = 'koreasouth'; RegionName = 'Korea South'; } - ,[PSCustomObject]@{ OriginalValue = 'QA Central'; RegionId = 'qatarcentral'; RegionName = 'Qatar Central'; } - ,[PSCustomObject]@{ OriginalValue = 'qac'; RegionId = 'qatarcentral'; RegionName = 'Qatar Central'; } - ,[PSCustomObject]@{ OriginalValue = 'qatarc'; RegionId = 'qatarcentral'; RegionName = 'Qatar Central'; } - ,[PSCustomObject]@{ OriginalValue = 'qatarcentral'; RegionId = 'qatarcentral'; RegionName = 'Qatar Central'; } - ,[PSCustomObject]@{ OriginalValue = 'red'; RegionId = 'usnateast'; RegionName = 'USNat East'; } - ,[PSCustomObject]@{ OriginalValue = 'se'; RegionId = 'koreacentral'; RegionName = 'Korea Central'; } - ,[PSCustomObject]@{ OriginalValue = 'SE Central'; RegionId = 'swedencentral'; RegionName = 'Sweden Central'; } - ,[PSCustomObject]@{ OriginalValue = 'SE South'; RegionId = 'swedensouth'; RegionName = 'Sweden South'; } - ,[PSCustomObject]@{ OriginalValue = 'sec'; RegionId = 'swedencentral'; RegionName = 'Sweden Central'; } - ,[PSCustomObject]@{ OriginalValue = 'ses'; RegionId = 'swedensouth'; RegionName = 'Sweden South'; } - ,[PSCustomObject]@{ OriginalValue = 'sg'; RegionId = 'southeastasia'; RegionName = 'Southeast Asia'; } - ,[PSCustomObject]@{ OriginalValue = 'SG Gov'; RegionId = 'singaporegov'; RegionName = 'Singapore Gov'; } - ,[PSCustomObject]@{ OriginalValue = 'sgg'; RegionId = 'singaporegov'; RegionName = 'Singapore Gov'; } - ,[PSCustomObject]@{ OriginalValue = 'sh'; RegionId = 'chinaeast'; RegionName = 'China East'; } - ,[PSCustomObject]@{ OriginalValue = 'sha'; RegionId = 'chinaeast2'; RegionName = 'China East 2'; } - ,[PSCustomObject]@{ OriginalValue = 'Singapore Central'; RegionId = 'singaporecentral'; RegionName = 'Singapore Central'; } - ,[PSCustomObject]@{ OriginalValue = 'Singapore North'; RegionId = 'singaporenorth'; RegionName = 'Singapore North'; } - ,[PSCustomObject]@{ OriginalValue = 'singaporec'; RegionId = 'singaporecentral'; RegionName = 'Singapore Central'; } - ,[PSCustomObject]@{ OriginalValue = 'singaporecentral'; RegionId = 'singaporecentral'; RegionName = 'Singapore Central'; } - ,[PSCustomObject]@{ OriginalValue = 'singaporegov'; RegionId = 'singaporegov'; RegionName = 'Singapore Gov'; } - ,[PSCustomObject]@{ OriginalValue = 'singaporen'; RegionId = 'singaporenorth'; RegionName = 'Singapore North'; } - ,[PSCustomObject]@{ OriginalValue = 'singaporenorth'; RegionId = 'singaporenorth'; RegionName = 'Singapore North'; } - ,[PSCustomObject]@{ OriginalValue = 'singc'; RegionId = 'singaporecentral'; RegionName = 'Singapore Central'; } - ,[PSCustomObject]@{ OriginalValue = 'singn'; RegionId = 'singaporenorth'; RegionName = 'Singapore North'; } - ,[PSCustomObject]@{ OriginalValue = 'sn'; RegionId = 'southcentralus'; RegionName = 'South Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'sn'; RegionId = 'usgovtexas'; RegionName = 'USGov Texas'; } - ,[PSCustomObject]@{ OriginalValue = 'southafrican'; RegionId = 'southafricanorth'; RegionName = 'South Africa North'; } - ,[PSCustomObject]@{ OriginalValue = 'southafricanorth'; RegionId = 'southafricanorth'; RegionName = 'South Africa North'; } - ,[PSCustomObject]@{ OriginalValue = 'southafricaw'; RegionId = 'southafricawest'; RegionName = 'South Africa West'; } - ,[PSCustomObject]@{ OriginalValue = 'southafricawest'; RegionId = 'southafricawest'; RegionName = 'South Africa West'; } - ,[PSCustomObject]@{ OriginalValue = 'southcentralus'; RegionId = 'southcentralus'; RegionName = 'South Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'southcentralusstg'; RegionId = 'southcentralusstg'; RegionName = 'South Central US STG'; } - ,[PSCustomObject]@{ OriginalValue = 'southeastasia'; RegionId = 'southeastasia'; RegionName = 'Southeast Asia'; } - ,[PSCustomObject]@{ OriginalValue = 'southindia'; RegionId = 'southindia'; RegionName = 'South India'; } - ,[PSCustomObject]@{ OriginalValue = 'spainc'; RegionId = 'spaincentral'; RegionName = 'Spain Central'; } - ,[PSCustomObject]@{ OriginalValue = 'spaincentral'; RegionId = 'spaincentral'; RegionName = 'Spain Central'; } - ,[PSCustomObject]@{ OriginalValue = 'swedenc'; RegionId = 'swedencentral'; RegionName = 'Sweden Central'; } - ,[PSCustomObject]@{ OriginalValue = 'swedencentral'; RegionId = 'swedencentral'; RegionName = 'Sweden Central'; } - ,[PSCustomObject]@{ OriginalValue = 'swedens'; RegionId = 'swedensouth'; RegionName = 'Sweden South'; } - ,[PSCustomObject]@{ OriginalValue = 'swedensouth'; RegionId = 'swedensouth'; RegionName = 'Sweden South'; } - ,[PSCustomObject]@{ OriginalValue = 'switzerlandn'; RegionId = 'switzerlandnorth'; RegionName = 'Switzerland North'; } - ,[PSCustomObject]@{ OriginalValue = 'switzerlandnorth'; RegionId = 'switzerlandnorth'; RegionName = 'Switzerland North'; } - ,[PSCustomObject]@{ OriginalValue = 'switzerlandw'; RegionId = 'switzerlandwest'; RegionName = 'Switzerland West'; } - ,[PSCustomObject]@{ OriginalValue = 'switzerlandwest'; RegionId = 'switzerlandwest'; RegionName = 'Switzerland West'; } - ,[PSCustomObject]@{ OriginalValue = 'sy'; RegionId = 'australiaeast'; RegionName = 'Australia East'; } - ,[PSCustomObject]@{ OriginalValue = 'taiwann'; RegionId = 'taiwannorth'; RegionName = 'Taiwan North'; } - ,[PSCustomObject]@{ OriginalValue = 'taiwannorth'; RegionId = 'taiwannorth'; RegionName = 'Taiwan North'; } - ,[PSCustomObject]@{ OriginalValue = 'taiwannorthwest'; RegionId = 'taiwannorthwest'; RegionName = 'Taiwan Northwest'; } - ,[PSCustomObject]@{ OriginalValue = 'taiwannw'; RegionId = 'taiwannorthwest'; RegionName = 'Taiwan Northwest'; } - ,[PSCustomObject]@{ OriginalValue = 'TW North'; RegionId = 'taiwannorth'; RegionName = 'Taiwan North'; } - ,[PSCustomObject]@{ OriginalValue = 'TW Northwest'; RegionId = 'taiwannorthwest'; RegionName = 'Taiwan Northwest'; } - ,[PSCustomObject]@{ OriginalValue = 'twn'; RegionId = 'taiwannorth'; RegionName = 'Taiwan North'; } - ,[PSCustomObject]@{ OriginalValue = 'twnw'; RegionId = 'taiwannorthwest'; RegionName = 'Taiwan Northwest'; } - ,[PSCustomObject]@{ OriginalValue = 'ty'; RegionId = 'japaneast'; RegionName = 'Japan East'; } - ,[PSCustomObject]@{ OriginalValue = 'uaec'; RegionId = 'uaecentral'; RegionName = 'UAE Central'; } - ,[PSCustomObject]@{ OriginalValue = 'uaecentral'; RegionId = 'uaecentral'; RegionName = 'UAE Central'; } - ,[PSCustomObject]@{ OriginalValue = 'uaen'; RegionId = 'uaenorth'; RegionName = 'UAE North'; } - ,[PSCustomObject]@{ OriginalValue = 'uaenorth'; RegionId = 'uaenorth'; RegionName = 'UAE North'; } - ,[PSCustomObject]@{ OriginalValue = 'UK North'; RegionId = 'uknorth'; RegionName = 'UK North'; } - ,[PSCustomObject]@{ OriginalValue = 'UK South'; RegionId = 'uksouth'; RegionName = 'UK South'; } - ,[PSCustomObject]@{ OriginalValue = 'UK South 2'; RegionId = 'uksouth2'; RegionName = 'UK South 2'; } - ,[PSCustomObject]@{ OriginalValue = 'UK West'; RegionId = 'ukwest'; RegionName = 'UK West'; } - ,[PSCustomObject]@{ OriginalValue = 'uknorth'; RegionId = 'uknorth'; RegionName = 'UK North'; } - ,[PSCustomObject]@{ OriginalValue = 'uksouth'; RegionId = 'uksouth'; RegionName = 'UK South'; } - ,[PSCustomObject]@{ OriginalValue = 'uksouth2'; RegionId = 'uksouth2'; RegionName = 'UK South 2'; } - ,[PSCustomObject]@{ OriginalValue = 'ukwest'; RegionId = 'ukwest'; RegionName = 'UK West'; } - ,[PSCustomObject]@{ OriginalValue = 'US Central'; RegionId = 'centralus'; RegionName = 'Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'US Central'; RegionId = 'centraluseuap'; RegionName = 'Central US EUAP'; } - ,[PSCustomObject]@{ OriginalValue = 'US DoD'; RegionId = 'usdodcentral'; RegionName = 'USDoD Central'; } - ,[PSCustomObject]@{ OriginalValue = 'US DoD'; RegionId = 'usdodeast'; RegionName = 'USDoD East'; } - ,[PSCustomObject]@{ OriginalValue = 'US East'; RegionId = 'eastus'; RegionName = 'East US'; } - ,[PSCustomObject]@{ OriginalValue = 'US East 2'; RegionId = 'eastus2'; RegionName = 'East US 2'; } - ,[PSCustomObject]@{ OriginalValue = 'US East 2'; RegionId = 'eastus2euap'; RegionName = 'East US 2 EUAP'; } - ,[PSCustomObject]@{ OriginalValue = 'US Gov'; RegionId = 'usgoviowa'; RegionName = 'USGov Iowa'; } - ,[PSCustomObject]@{ OriginalValue = 'US Gov'; RegionId = 'usgovvirginia'; RegionName = 'USGov Virginia'; } - ,[PSCustomObject]@{ OriginalValue = 'US Gov AZ'; RegionId = 'usgovarizona'; RegionName = 'USGov Arizona'; } - ,[PSCustomObject]@{ OriginalValue = 'US Gov TX'; RegionId = 'usgovtexas'; RegionName = 'USGov Texas'; } - ,[PSCustomObject]@{ OriginalValue = 'US Nat East'; RegionId = 'usnateast'; RegionName = 'USNat East'; } - ,[PSCustomObject]@{ OriginalValue = 'US Nat West'; RegionId = 'usnatwest'; RegionName = 'USNat West'; } - ,[PSCustomObject]@{ OriginalValue = 'US North Central'; RegionId = 'northcentralus'; RegionName = 'North Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'US Sec Central'; RegionId = 'usseccentral'; RegionName = 'USSec Central'; } - ,[PSCustomObject]@{ OriginalValue = 'US Sec East'; RegionId = 'usseceast'; RegionName = 'USSec East'; } - ,[PSCustomObject]@{ OriginalValue = 'US Sec West'; RegionId = 'ussecwest'; RegionName = 'USSec West'; } - ,[PSCustomObject]@{ OriginalValue = 'US Sec West Central'; RegionId = 'ussecwestcentral'; RegionName = 'USSec West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'US South Central'; RegionId = 'southcentralus'; RegionName = 'South Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'US West'; RegionId = 'westus'; RegionName = 'West US'; } - ,[PSCustomObject]@{ OriginalValue = 'US West 2'; RegionId = 'westus2'; RegionName = 'West US 2'; } - ,[PSCustomObject]@{ OriginalValue = 'US West 3'; RegionId = 'westus3'; RegionName = 'West US 3'; } - ,[PSCustomObject]@{ OriginalValue = 'US West Central'; RegionId = 'westcentralus'; RegionName = 'West Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'uscentral'; RegionId = 'centralus'; RegionName = 'Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'uscentraleuap'; RegionId = 'centraluseuap'; RegionName = 'Central US EUAP'; } - ,[PSCustomObject]@{ OriginalValue = 'usdodcentral'; RegionId = 'usdodcentral'; RegionName = 'USDoD Central'; } - ,[PSCustomObject]@{ OriginalValue = 'usdodeast'; RegionId = 'usdodeast'; RegionName = 'USDoD East'; } - ,[PSCustomObject]@{ OriginalValue = 'usdodsc'; RegionId = 'usdodsouthcentral'; RegionName = 'USDoD South Central'; } - ,[PSCustomObject]@{ OriginalValue = 'usdodsouthcentral'; RegionId = 'usdodsouthcentral'; RegionName = 'USDoD South Central'; } - ,[PSCustomObject]@{ OriginalValue = 'usdodsouthwest'; RegionId = 'usdodsouthwest'; RegionName = 'USDoD Southwest'; } - ,[PSCustomObject]@{ OriginalValue = 'usdodsw'; RegionId = 'usdodsouthwest'; RegionName = 'USDoD Southwest'; } - ,[PSCustomObject]@{ OriginalValue = 'usdodwc'; RegionId = 'usdodwestcentral'; RegionName = 'USDoD West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'usdodwestcentral'; RegionId = 'usdodwestcentral'; RegionName = 'USDoD West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'usdsc'; RegionId = 'usdodsouthcentral'; RegionName = 'USDoD South Central'; } - ,[PSCustomObject]@{ OriginalValue = 'usdwc'; RegionId = 'usdodwestcentral'; RegionName = 'USDoD West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'use'; RegionId = 'eastusslv'; RegionName = 'East US SLV'; } - ,[PSCustomObject]@{ OriginalValue = 'useast'; RegionId = 'eastus'; RegionName = 'East US'; } - ,[PSCustomObject]@{ OriginalValue = 'useast2'; RegionId = 'eastus2'; RegionName = 'East US 2'; } - ,[PSCustomObject]@{ OriginalValue = 'useast2euap'; RegionId = 'eastus2euap'; RegionName = 'East US 2 EUAP'; } - ,[PSCustomObject]@{ OriginalValue = 'usgovarizona'; RegionId = 'usgovarizona'; RegionName = 'USGov Arizona'; } - ,[PSCustomObject]@{ OriginalValue = 'usgovcentral'; RegionId = 'usgoviowa'; RegionName = 'USGov Iowa'; } - ,[PSCustomObject]@{ OriginalValue = 'usgoveast'; RegionId = 'usgovvirginia'; RegionName = 'USGov Virginia'; } - ,[PSCustomObject]@{ OriginalValue = 'usgoviowa'; RegionId = 'usgoviowa'; RegionName = 'USGov Iowa'; } - ,[PSCustomObject]@{ OriginalValue = 'usgovsc'; RegionId = 'usgovtexas'; RegionName = 'USGov Texas'; } - ,[PSCustomObject]@{ OriginalValue = 'usgovsw'; RegionId = 'usgovarizona'; RegionName = 'USGov Arizona'; } - ,[PSCustomObject]@{ OriginalValue = 'usgovtexas'; RegionId = 'usgovtexas'; RegionName = 'USGov Texas'; } - ,[PSCustomObject]@{ OriginalValue = 'usgovvirginia'; RegionId = 'usgovvirginia'; RegionName = 'USGov Virginia'; } - ,[PSCustomObject]@{ OriginalValue = 'usgovwc'; RegionId = 'usgovwyoming'; RegionName = 'USGov Wyoming'; } - ,[PSCustomObject]@{ OriginalValue = 'usgovwyoming'; RegionId = 'usgovwyoming'; RegionName = 'USGov Wyoming'; } - ,[PSCustomObject]@{ OriginalValue = 'usnate'; RegionId = 'usnateast'; RegionName = 'USNat East'; } - ,[PSCustomObject]@{ OriginalValue = 'usnateast'; RegionId = 'usnateast'; RegionName = 'USNat East'; } - ,[PSCustomObject]@{ OriginalValue = 'usnatw'; RegionId = 'usnatwest'; RegionName = 'USNat West'; } - ,[PSCustomObject]@{ OriginalValue = 'usnatwest'; RegionId = 'usnatwest'; RegionName = 'USNat West'; } - ,[PSCustomObject]@{ OriginalValue = 'usnorth'; RegionId = 'northcentralus'; RegionName = 'North Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'ussc'; RegionId = 'usseccentral'; RegionName = 'USSec Central'; } - ,[PSCustomObject]@{ OriginalValue = 'usse'; RegionId = 'usseceast'; RegionName = 'USSec East'; } - ,[PSCustomObject]@{ OriginalValue = 'ussecc'; RegionId = 'usseccentral'; RegionName = 'USSec Central'; } - ,[PSCustomObject]@{ OriginalValue = 'usseccentral'; RegionId = 'usseccentral'; RegionName = 'USSec Central'; } - ,[PSCustomObject]@{ OriginalValue = 'ussece'; RegionId = 'usseceast'; RegionName = 'USSec East'; } - ,[PSCustomObject]@{ OriginalValue = 'usseceast'; RegionId = 'usseceast'; RegionName = 'USSec East'; } - ,[PSCustomObject]@{ OriginalValue = 'ussecw'; RegionId = 'ussecwest'; RegionName = 'USSec West'; } - ,[PSCustomObject]@{ OriginalValue = 'ussecwc'; RegionId = 'ussecwestcentral'; RegionName = 'USSec West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'ussecwest'; RegionId = 'ussecwest'; RegionName = 'USSec West'; } - ,[PSCustomObject]@{ OriginalValue = 'ussecwestcentral'; RegionId = 'ussecwestcentral'; RegionName = 'USSec West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'ussouth'; RegionId = 'southcentralus'; RegionName = 'South Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'usstagee'; RegionId = 'eastusstg'; RegionName = 'East US STG'; } - ,[PSCustomObject]@{ OriginalValue = 'usstagesc'; RegionId = 'southcentralusstg'; RegionName = 'South Central US STG'; } - ,[PSCustomObject]@{ OriginalValue = 'ussw'; RegionId = 'ussecwest'; RegionName = 'USSec West'; } - ,[PSCustomObject]@{ OriginalValue = 'usswc'; RegionId = 'ussecwestcentral'; RegionName = 'USSec West Central'; } - ,[PSCustomObject]@{ OriginalValue = 'uste'; RegionId = 'eastusstg'; RegionName = 'East US STG'; } - ,[PSCustomObject]@{ OriginalValue = 'ustsc'; RegionId = 'southcentralusstg'; RegionName = 'South Central US STG'; } - ,[PSCustomObject]@{ OriginalValue = 'usw3'; RegionId = 'westus3'; RegionName = 'West US 3'; } - ,[PSCustomObject]@{ OriginalValue = 'uswest'; RegionId = 'westus'; RegionName = 'West US'; } - ,[PSCustomObject]@{ OriginalValue = 'uswest2'; RegionId = 'westus2'; RegionName = 'West US 2'; } - ,[PSCustomObject]@{ OriginalValue = 'uswest3'; RegionId = 'westus3'; RegionName = 'West US 3'; } - ,[PSCustomObject]@{ OriginalValue = 'uswestcentral'; RegionId = 'westcentralus'; RegionName = 'West Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'westcentralus'; RegionId = 'westcentralus'; RegionName = 'West Central US'; } - ,[PSCustomObject]@{ OriginalValue = 'westeurope'; RegionId = 'westeurope'; RegionName = 'West Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'westindia'; RegionId = 'westindia'; RegionName = 'West India'; } - ,[PSCustomObject]@{ OriginalValue = 'westus'; RegionId = 'westus'; RegionName = 'West US'; } - ,[PSCustomObject]@{ OriginalValue = 'westus2'; RegionId = 'westus2'; RegionName = 'West US 2'; } - ,[PSCustomObject]@{ OriginalValue = 'westus3'; RegionId = 'westus3'; RegionName = 'West US 3'; } - ,[PSCustomObject]@{ OriginalValue = 'yq'; RegionId = 'canadaeast'; RegionName = 'Canada East'; } - ,[PSCustomObject]@{ OriginalValue = 'yt'; RegionId = 'canadacentral'; RegionName = 'Canada Central'; } - ,[PSCustomObject]@{ OriginalValue = 'yyy'; RegionId = 'easteurope'; RegionName = 'East Europe'; } - ,[PSCustomObject]@{ OriginalValue = 'ZA North'; RegionId = 'southafricanorth'; RegionName = 'South Africa North'; } - ,[PSCustomObject]@{ OriginalValue = 'ZA West'; RegionId = 'southafricawest'; RegionName = 'South Africa West'; } - ) -} diff --git a/src/powershell/Private/Get-FinOpsServicesData.ps1 b/src/powershell/Private/Get-FinOpsServicesData.ps1 deleted file mode 100644 index 691e984c8..000000000 --- a/src/powershell/Private/Get-FinOpsServicesData.ps1 +++ /dev/null @@ -1,320 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -function Get-FinOpsServicesData { - return [PSCustomObject]@( - [PSCustomObject]@{ ConsumedService = 'Citrix.Services'; ResourceType = 'citrix.services/xenappessentials'; ServiceName = 'Citrix Virtual App Essentials'; ServiceCategory = 'Compute'; PublisherName = 'Citrix'; PublisherType = 'Marketplace'; } - ,[PSCustomObject]@{ ConsumedService = 'Citrix.Services'; ResourceType = 'citrix.services/xendesktopessentials'; ServiceName = 'Citrix Virtual Desktop Essentials'; ServiceCategory = 'Compute'; PublisherName = 'Citrix'; PublisherType = 'Marketplace'; } - ,[PSCustomObject]@{ ConsumedService = 'GitHub.Enterprise'; ResourceType = 'github.enterprise/accounts'; ServiceName = 'GitHub Enterprise Cloud'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'GitHub'; ResourceType = 'github/enterpriseaccount'; ServiceName = 'GitHub Enterprise Cloud'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Marketplace'; ResourceType = 'marketplace/account'; ServiceName = 'Azure Marketplace'; ServiceCategory = 'Other'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MFA'; ResourceType = 'mfa/perauthentication'; ServiceName = 'Microsoft Entra ID'; ServiceCategory = 'Identity'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MFA'; ResourceType = 'mfa/peruser'; ServiceName = 'Microsoft Entra ID'; ServiceCategory = 'Identity'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AAD'; ResourceType = 'microsoft.aad/domainservices'; ServiceName = 'Azure Active Directory Domain Services'; ServiceCategory = 'Identity'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AgFoodPlatform'; ResourceType = 'microsoft.agfoodplatform/farmbeats'; ServiceName = 'Azure Data Manager for Agriculture'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AnalysisServices'; ResourceType = 'microsoft.analysisservices/servers'; ServiceName = 'Azure Analysis Services'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ApiManagement'; ResourceType = 'microsoft.apimanagement/service'; ServiceName = 'API Management'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.apimanagement/service'; ServiceName = 'API Management'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.App'; ResourceType = 'microsoft.app/containerapps'; ServiceName = 'Azure Container Apps'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.App'; ResourceType = 'microsoft.app/managedenvironments'; ServiceName = 'Azure Container Apps'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.appcenter'; ResourceType = 'microsoft.appcenter/accounts'; ServiceName = 'App Center'; ServiceCategory = 'Mobile'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AppConfiguration'; ResourceType = 'microsoft.appconfiguration/configurationstores'; ServiceName = 'App Configuration'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.appconfiguration/configurationstores'; ServiceName = 'App Configuration'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AppPlatform'; ResourceType = 'microsoft.appplatform/spring'; ServiceName = 'Azure Spring Apps'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.automation'; ResourceType = 'microsoft.automation/automationaccounts'; ServiceName = 'Azure Automation'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AutonomousDevelopmentPlatform'; ResourceType = 'microsoft.autonomousdevelopmentplatform/workspaces'; ServiceName = 'Microsoft Autonomous Systems'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.autonomousdevelopmentplatform/workspaces'; ServiceName = 'Microsoft Autonomous Systems'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AVS'; ResourceType = 'microsoft.avs/privateclouds'; ServiceName = 'Azure VMware Solution'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AzureActiveDirectory'; ResourceType = 'microsoft.azureactivedirectory/b2cdirectories'; ServiceName = 'Azure Active Directory External Identities'; ServiceCategory = 'Identity'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AzureActiveDirectory'; ResourceType = 'microsoft.azureactivedirectory/guestusages'; ServiceName = 'Azure Active Directory External Identities'; ServiceCategory = 'Identity'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AzureArcData'; ResourceType = 'microsoft.azurearcdata/postgresinstances'; ServiceName = 'Azure Arc'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AzureArcData'; ResourceType = 'microsoft.azurearcdata/sqlmanagedinstances'; ServiceName = 'Azure Arc'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AzureArcData'; ResourceType = 'microsoft.azurearcdata/sqlserverinstances'; ServiceName = 'Azure Arc'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.AzureStackHCI'; ResourceType = 'microsoft.azurestackhci/clusters'; ServiceName = 'Azure Stack HCI'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.BareMetalInfrastructure'; ResourceType = 'microsoft.baremetalinfrastructure/baremetalstorageinstances'; ServiceName = 'BareMetal Infrastructure'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Batch'; ResourceType = 'microsoft.batch/batchaccounts'; ServiceName = 'Batch'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Bing'; ResourceType = 'microsoft.bing/accounts'; ServiceName = 'Microsoft Bing'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.BotService'; ResourceType = 'microsoft.botservice/botservices'; ServiceName = 'Azure AI Bot Service'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Cache'; ResourceType = 'microsoft.cache/redis'; ServiceName = 'Azure Cache for Redis'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.cache/redis'; ServiceName = 'Azure Cache for Redis'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Cache'; ResourceType = 'microsoft.cache/redisenterprise'; ServiceName = 'Azure Cache for Redis'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.cdn'; ResourceType = 'microsoft.cdn/cdnwebapplicationfirewallpolicies'; ServiceName = 'Content Delivery Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Cdn'; ResourceType = 'microsoft.cdn/profiles'; ServiceName = 'Content Delivery Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.certificateregistration'; ResourceType = 'microsoft.certificateregistration/certificateorders'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.classiccompute'; ResourceType = 'microsoft.classiccompute/domainnames'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.classiccompute'; ResourceType = 'microsoft.classiccompute/virtualmachines'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ClassicNetwork'; ResourceType = 'microsoft.classicnetwork/ipv4vip'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ClassicNetwork'; ResourceType = 'microsoft.classicnetwork/publicip'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ClassicNetwork'; ResourceType = 'microsoft.classicnetwork/publicipaddresses'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ClassicStorage'; ResourceType = 'microsoft.classicstorage/storageaccounts'; ServiceName = 'Storage Accounts'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.CognitiveServices'; ResourceType = 'microsoft.cognitiveservices/accounts'; ServiceName = 'Azure AI Services'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.communication'; ResourceType = 'microsoft.communication/communicationservices'; ServiceName = 'Azure Communication Services'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.communication/communicationservices'; ServiceName = 'Azure Communication Services'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/capacityreservationgroups'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/cloudservices'; ServiceName = 'Cloud Services'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/disks'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/galleries'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/hostgroups'; ServiceName = 'Azure Dedicated Host'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/images'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/restorepointcollections'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/sharedvmimages'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Compute'; ResourceType = 'microsoft.compute/snapshots'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.compute'; ResourceType = 'microsoft.compute/virtualmachines'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.compute'; ResourceType = 'microsoft.compute/virtualmachinescalesets'; ServiceName = 'Virtual Machine Scale Sets'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ConfidentialLedger'; ResourceType = 'microsoft.confidentialledger/ledgers'; ServiceName = 'Azure Confidential Ledger'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ContainerInstance'; ResourceType = 'microsoft.containerinstance/containergroups'; ServiceName = 'Azure Container Instances'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.containerregistry'; ResourceType = 'microsoft.containerregistry/registries'; ServiceName = 'Azure Container Registry'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.containerregistry/registries'; ServiceName = 'Azure Container Registry'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ContainerService'; ResourceType = 'microsoft.containerservice/containerservices'; ServiceName = 'Azure Container Service'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ContainerService'; ResourceType = 'microsoft.containerservice/managedclusters'; ServiceName = 'Azure Kubernetes Service'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.containerservice/managedclusters'; ServiceName = 'Azure Kubernetes Service'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.KubernetesConfiguration'; ResourceType = 'microsoft.containerservice/managedclusters'; ServiceName = 'Azure Kubernetes Service'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.DASHBOARD'; ResourceType = 'microsoft.dashboard/grafana'; ServiceName = 'Azure Managed Grafana'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DataBox'; ResourceType = 'microsoft.databox/jobs'; ServiceName = 'Azure Data Box'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DataBoxEdge'; ResourceType = 'microsoft.databoxedge/databoxedgedevices'; ServiceName = 'Azure Data Box'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Databricks'; ResourceType = 'microsoft.databricks/workspaces'; ServiceName = 'Azure Databricks'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DataCatalog'; ResourceType = 'microsoft.datacatalog/catalogs'; ServiceName = 'Data Catalog'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DataFactory'; ResourceType = 'microsoft.datafactory/datafactories'; ServiceName = 'Azure Data Factory'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.DATAFACTORY'; ResourceType = 'microsoft.datafactory/factories'; ServiceName = 'Azure Data Factory'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DataLakeAnalytics'; ResourceType = 'microsoft.datalakeanalytics/accounts'; ServiceName = 'Azure Data Lake Analytics'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DataLakeStore'; ResourceType = 'microsoft.datalakestore/accounts'; ServiceName = 'Azure Data Lake Store'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.DATAMIGRATION'; ResourceType = 'microsoft.datamigration/sqlmigrationservices'; ServiceName = 'Azure Database Migration Service'; ServiceCategory = 'Migration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DataProtection'; ResourceType = 'microsoft.dataprotection/backupvaults'; ServiceName = 'Azure Backup'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DataShare'; ResourceType = 'microsoft.datashare/accounts'; ServiceName = 'Azure Data Share'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DBforMariaDB'; ResourceType = 'microsoft.dbformariadb/servers'; ServiceName = 'Azure DB for MariaDB'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DBforMySQL'; ResourceType = 'microsoft.dbformysql/flexibleservers'; ServiceName = 'Azure DB for MySQL'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DBforMySQL'; ResourceType = 'microsoft.dbformysql/servers'; ServiceName = 'Azure DB for MySQL'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DBforPostgreSQL'; ResourceType = 'microsoft.dbforpostgresql/flexibleservers'; ServiceName = 'Azure DB for PostgreSQL'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DBforPostgreSQL'; ResourceType = 'microsoft.dbforpostgresql/servergroupsv2'; ServiceName = 'Azure DB for PostgreSQL'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DBforPostgreSQL'; ResourceType = 'microsoft.dbforpostgresql/servers'; ServiceName = 'Azure DB for PostgreSQL'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DesktopVirtualization'; ResourceType = 'microsoft.desktopvirtualization/hostpools'; ServiceName = 'Azure Virtual Desktop'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.devcenter'; ResourceType = 'microsoft.devcenter/projects'; ServiceName = 'Microsoft Dev Box'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.devices'; ResourceType = 'microsoft.devices/iothubs'; ServiceName = 'Azure IoT Hub'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.devices/iothubs'; ServiceName = 'Azure IoT Hub'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.DEVICES'; ResourceType = 'microsoft.devices/provisioningservices'; ServiceName = 'Azure IoT Hub'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DeviceUpdate'; ResourceType = 'microsoft.deviceupdate/accounts'; ServiceName = 'Azure IoT Hub'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DigitalTwins'; ResourceType = 'microsoft.digitaltwins/digitaltwinsinstances'; ServiceName = 'Azure Digital Twins'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DocumentDB'; ResourceType = 'microsoft.documentdb/cassandraclusters'; ServiceName = 'Cosmos DB'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.documentdb'; ResourceType = 'microsoft.documentdb/databaseaccounts'; ServiceName = 'Cosmos DB'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DocumentDB'; ResourceType = 'microsoft.documentdb/mongocluster'; ServiceName = 'Cosmos DB'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.DocumentDB'; ResourceType = 'microsoft.documentdb/mongoclusters'; ServiceName = 'Cosmos DB'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.domainregistration'; ResourceType = 'microsoft.domainregistration/domains'; ServiceName = 'App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Easm'; ResourceType = 'microsoft.easm/workspaces'; ServiceName = 'Microsoft Defender for Cloud'; ServiceCategory = 'Security'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EdgeOrder'; ResourceType = 'microsoft.edgeorder/orderitems'; ServiceName = 'Azure Stack Edge'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ElasticSan'; ResourceType = 'microsoft.elasticsan/elasticsans'; ServiceName = 'Azure Elastic SAN'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.eventgrid/domains'; ServiceName = 'Event Grid'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.eventgrid/extensiontopics'; ServiceName = 'Event Grid'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.eventgrid/namespaces'; ServiceName = 'Event Grid'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.EVENTGRID'; ResourceType = 'microsoft.eventgrid/partnertopics'; ServiceName = 'Event Grid'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.EVENTGRID'; ResourceType = 'microsoft.eventgrid/systemtopics'; ServiceName = 'Event Grid'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.eventgrid/topics'; ServiceName = 'Event Grid'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventHub'; ResourceType = 'microsoft.eventhub/clusters'; ServiceName = 'Event Hubs'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.eventhub/namespaces'; ServiceName = 'Event Hubs'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventHub'; ResourceType = 'microsoft.eventhub/namespaces'; ServiceName = 'Event Hubs'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Fabric'; ResourceType = 'microsoft.fabric/capacities'; ServiceName = 'Microsoft.Fabric'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.FluidRelay'; ResourceType = 'microsoft.fluidrelay/fluidrelayservers'; ServiceName = 'Azure Fluid Relay'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Genomics'; ResourceType = 'microsoft.genomics/accounts'; ServiceName = 'Microsoft Genomics'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Graph'; ResourceType = 'microsoft.graph/azureadapplications'; ServiceName = 'Microsoft Graph Data Connect'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.GraphServices'; ResourceType = 'microsoft.graphservices/accounts'; ServiceName = 'Microsoft Graph'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.HanaOnAzure'; ResourceType = 'microsoft.hanaonazure/hanainstances'; ServiceName = 'SAP on Azure'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.HardwareSecurityModules'; ResourceType = 'microsoft.hardwaresecuritymodules/dedicatedhsms'; ServiceName = 'Azure Dedicated HSM'; ServiceCategory = 'Security'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.HDInsight'; ResourceType = 'microsoft.hdinsight/clusters'; ServiceName = 'HDInsight'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.HDInsightFairfax'; ResourceType = 'microsoft.hdinsightfairfax/clusters'; ServiceName = 'HDInsight'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.HealthBot'; ResourceType = 'microsoft.healthbot/healthbots'; ServiceName = 'Health Bot'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.HealthcareApis'; ResourceType = 'microsoft.healthcareapis/services'; ServiceName = 'Azure Health Data Services'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.healthcareapis/workspaces'; ServiceName = 'Azure Health Data Services'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.HealthcareApis'; ResourceType = 'microsoft.healthcareapis/workspaces'; ServiceName = 'Azure Health Data Services'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.hybridcompute'; ResourceType = 'microsoft.hybridcompute/machines'; ServiceName = 'Azure Arc'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = ''; ResourceType = 'microsoft.hybridnetwork/devices'; ServiceName = 'Azure Network Function Manager'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ImportExport'; ResourceType = 'microsoft.importexport/jobs'; ServiceName = 'Azure Storage'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.insights'; ResourceType = 'microsoft.insights/actiongroups'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.insights'; ResourceType = 'microsoft.insights/components'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.insights'; ResourceType = 'microsoft.insights/metricalerts'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Insights'; ResourceType = 'microsoft.insights/pricings'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.insights'; ResourceType = 'microsoft.insights/scheduledqueryrules'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.IoTCentral'; ResourceType = 'microsoft.iotcentral/iotapps'; ServiceName = 'Azure IoT Central'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'default'; ResourceType = 'microsoft.iotsecurity/defendersettings'; ServiceName = 'Microsoft Defender for IoT'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.IoTSecurity'; ResourceType = 'microsoft.iotsecurity/defendersettings'; ServiceName = 'Microsoft Defender for IoT'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.KeyVault'; ResourceType = 'microsoft.keyvault/hsmpools'; ServiceName = 'Key Vault'; ServiceCategory = 'Security'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.KeyVault'; ResourceType = 'microsoft.keyvault/managedhsms'; ServiceName = 'Key Vault'; ServiceCategory = 'Security'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.keyvault/vaults'; ServiceName = 'Azure KeyVault'; ServiceCategory = 'Security'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.KEYVAULT'; ResourceType = 'microsoft.keyvault/vaults'; ServiceName = 'Key Vault'; ServiceCategory = 'Security'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.kubernetes'; ResourceType = 'microsoft.kubernetes/connectedclusters'; ServiceName = 'Azure Arc'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Kusto'; ResourceType = 'microsoft.kusto/clusters'; ServiceName = 'Azure Data Explorer'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.labservices'; ResourceType = 'microsoft.labservices/labaccounts'; ServiceName = 'Azure Lab Services'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.LabServices'; ResourceType = 'microsoft.labservices/labs'; ServiceName = 'Azure Lab Services'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.loadtestservice'; ResourceType = 'microsoft.loadtestservice/loadtests'; ServiceName = 'Azure Load Testing'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Logic'; ResourceType = 'microsoft.logic/integrationaccounts'; ServiceName = 'Logic Apps'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Logic'; ResourceType = 'microsoft.logic/integrationserviceenvironments'; ServiceName = 'Logic Apps'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.LOGIC'; ResourceType = 'microsoft.logic/workflows'; ServiceName = 'Logic Apps'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.MachineLearning'; ResourceType = 'microsoft.machinelearning/commitmentplans'; ServiceName = 'Azure Machine Learning'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.MachineLearning'; ResourceType = 'microsoft.machinelearning/workspaces'; ServiceName = 'Azure Machine Learning'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.machinelearningservices/workspaces'; ServiceName = 'Azure Machine Learning'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.MachineLearningServices'; ResourceType = 'microsoft.machinelearningservices/workspaces'; ServiceName = 'Azure Machine Learning'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.maintenance/maintenanceconfigurations'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.maps/accounts'; ServiceName = 'Azure Maps'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Maps'; ResourceType = 'microsoft.maps/accounts'; ServiceName = 'Azure Maps'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.media/mediaservices'; ServiceName = 'Azure Media Services'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Media'; ResourceType = 'microsoft.media/mediaservices'; ServiceName = 'Azure Media Services'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Media'; ResourceType = 'microsoft.media/videoanalyzers'; ServiceName = 'Azure Media Services'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Migrate'; ResourceType = 'microsoft.migrate/movecollections'; ServiceName = 'Azure Migrate'; ServiceCategory = 'Migration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.MixedReality'; ResourceType = 'microsoft.mixedreality/objectanchorsaccounts'; ServiceName = 'Object Anchors'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.MixedReality'; ResourceType = 'microsoft.mixedreality/remoterenderingaccounts'; ServiceName = 'Remote Rendering'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.MixedReality'; ResourceType = 'microsoft.mixedreality/spatialanchorsaccounts'; ServiceName = 'Spatial Anchors'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.MobileNetwork'; ResourceType = 'microsoft.mobilenetwork/mobilenetworks'; ServiceName = 'Azure Private 5G Core'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.mobilenetwork'; ResourceType = 'microsoft.mobilenetwork/packetcorecontrolplanes'; ServiceName = 'Azure Private 5G Core'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.monitor'; ResourceType = 'microsoft.monitor/accounts'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.NetApp'; ResourceType = 'microsoft.netapp/netappaccounts'; ServiceName = 'Azure NetApp Files'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.network'; ResourceType = 'microsoft.network/applicationgateways'; ServiceName = 'Application Gateway'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/azurefirewalls'; ServiceName = 'Azure Firewall'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/bastionhosts'; ServiceName = 'Azure Bastion'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.network'; ResourceType = 'microsoft.network/connections'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/ddosprotectionplans'; ServiceName = 'Azure DDoS Protection'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/dnsforwardingrulesets'; ServiceName = 'Azure DNS'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/dnsresolvers'; ServiceName = 'Azure DNS'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/dnszones'; ServiceName = 'Azure DNS'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.network'; ResourceType = 'microsoft.network/expressroutecircuits'; ServiceName = 'Azure ExpressRoute'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/expressroutegateways'; ServiceName = 'Azure ExpressRoute'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/expressrouteports'; ServiceName = 'Azure ExpressRoute'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/firewallpolicies'; ServiceName = 'Azure Firewall Manager'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/frontdoors'; ServiceName = 'Azure Front Door'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/frontdoorwebapplicationfirewallpolicies'; ServiceName = 'Azure Front Door'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = ''; ResourceType = 'microsoft.network/internetanalyzerprofiles'; ServiceName = 'Azure Internet Analyzer'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/loadbalancers'; ServiceName = 'Load Balancer'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/natgateways'; ServiceName = 'Azure NAT Gateway'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.network'; ResourceType = 'microsoft.network/networkinterfaces'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.network'; ResourceType = 'microsoft.network/networkmanagers'; ServiceName = 'Azure Virtual Network Manager'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.network'; ResourceType = 'microsoft.network/networksecuritygroups'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.network'; ResourceType = 'microsoft.network/networkvirtualappliances'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.network'; ResourceType = 'microsoft.network/networkwatchers'; ServiceName = 'Network Watcher'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/p2svpngateways'; ServiceName = 'VPN Gateway'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/privatednszones'; ServiceName = 'Azure Private Link'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/privateendpoints'; ServiceName = 'Azure Private Link'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/publicipaddresses'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/publicipprefixes'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/trafficmanagerprofiles'; ServiceName = 'Traffic Manager'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/virtualhubs'; ServiceName = 'Virtual WAN'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/virtualnetworkgateways'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/virtualnetworks'; ServiceName = 'Virtual Network'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Network'; ResourceType = 'microsoft.network/vpngateways'; ServiceName = 'VPN Gateway'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.NetworkAnalytics'; ResourceType = 'microsoft.networkanalytics/dataconnectors'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.NotificationHubs'; ResourceType = 'microsoft.notificationhubs/namespaces'; ServiceName = 'Notification Hubs'; ServiceCategory = 'Mobile'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.nutanix'; ResourceType = 'microsoft.nutanix/nodes'; ServiceName = 'Azure VMWare Solution'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.OpenEnergyPlatform'; ResourceType = 'microsoft.openenergyplatform/energyservices'; ServiceName = 'Azure Data manager for Energy'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.OperationalInsights'; ResourceType = 'microsoft.operationalinsights/azurefirewall'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.OperationalInsights'; ResourceType = 'microsoft.operationalinsights/clusters'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.OperationalInsights'; ResourceType = 'microsoft.operationalinsights/networksecuritygroups'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.OperationalInsights'; ResourceType = 'microsoft.operationalinsights/p2svpngateways'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.OperationalInsights'; ResourceType = 'microsoft.operationalinsights/virtualnetworkgateways'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.operationalinsights'; ResourceType = 'microsoft.operationalinsights/workspaces'; ServiceName = 'Azure Monitor'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Orbital'; ResourceType = 'microsoft.orbital/spacecrafts'; ServiceName = 'Azure Orbital'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.ORBITAL'; ResourceType = 'microsoft.orbital/terminals'; ServiceName = 'Azure Orbital'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Peering'; ResourceType = 'microsoft.peering/peerings'; ServiceName = 'Azure Peering Service'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.PowerBIDedicated'; ResourceType = 'microsoft.powerbidedicated/autoscalevcores'; ServiceName = 'Power BI Embedded'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.PowerBIDedicated'; ResourceType = 'microsoft.powerbidedicated/capacities'; ServiceName = 'Power BI Embedded'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.PowerPlatform'; ResourceType = 'microsoft.powerplatform/accounts'; ServiceName = 'Power Platform'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Purview'; ResourceType = 'microsoft.purview/accounts'; ServiceName = 'Microsoft Purview'; ServiceCategory = 'Management and Governance'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Quantum'; ResourceType = 'microsoft.quantum/workspaces'; ServiceName = 'Azure Quantum'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.RecoveryServices'; ResourceType = 'microsoft.recoveryservices/vaults'; ServiceName = 'Azure Site Recovery'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Relay'; ResourceType = 'microsoft.relay/namespaces'; ServiceName = 'Azure Relay'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.SaaS'; ResourceType = 'microsoft.saas/resources'; ServiceName = 'Azure Marketplace'; ServiceCategory = 'Other'; PublisherName = 'Microsoft'; PublisherType = 'Marketplace'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.SaaS'; ResourceType = 'microsoft.saas/saasresources'; ServiceName = 'Azure Marketplace'; ServiceCategory = 'Other'; PublisherName = 'Microsoft'; PublisherType = 'Marketplace'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Search'; ResourceType = 'microsoft.search/searchservices'; ServiceName = 'Azure Cognitive Search'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Security'; ResourceType = 'microsoft.security/mdeservers'; ServiceName = 'Microsoft Defender for Endpoint'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'AppServices'; ResourceType = 'microsoft.security/pricings'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'ContainerRegistry'; ResourceType = 'microsoft.security/pricings'; ServiceName = 'Azure Container Registry'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'KubernetesService'; ResourceType = 'microsoft.security/pricings'; ServiceName = 'Azure Kubernetes Service'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Security'; ResourceType = 'microsoft.security/pricings'; ServiceName = 'Microsoft Defender for Cloud'; ServiceCategory = 'Security'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'VirtualMachines'; ResourceType = 'microsoft.security/pricings'; ServiceName = 'Virtual Machines'; ServiceCategory = 'Compute'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Security'; ResourceType = 'microsoft.security/securityconnectors'; ServiceName = 'Microsoft Defender for Cloud'; ServiceCategory = 'Security'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.servicebus/namespaces'; ServiceName = 'Service Bus'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.ServiceBus'; ResourceType = 'microsoft.servicebus/namespaces'; ServiceName = 'Service Bus'; ServiceCategory = 'Integration'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.signalrservice/signalr'; ServiceName = 'Azure SignalR Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.SignalRService'; ResourceType = 'microsoft.signalrservice/signalr'; ServiceName = 'Azure SignalR Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.SignalRService'; ResourceType = 'microsoft.signalrservice/webpubsub'; ServiceName = 'Azure SignalR Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.solutions'; ResourceType = 'microsoft.solutions/applications'; ServiceName = 'Azure Managed Applications'; ServiceCategory = 'Other'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Sql'; ResourceType = 'microsoft.sql/instancepools'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'australiacentral'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'australiaeast'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'australiasoutheast'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'brazilsouth'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'canadacentral'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'canadaeast'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'centralindia'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'centralus'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'eastasia'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'eastus'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'eastus2'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'francecentral'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'japaneast'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'japanwest'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'koreacentral'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'koreasouth'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Sql'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'northcentralus'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'northeurope'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'southafricanorth'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'southcentralus'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'southeastasia'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'southindia'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'uaenorth'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'uksouth'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'ukwest'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'westcentralus'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'westeurope'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'westindia'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'westus'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'westus2'; ResourceType = 'microsoft.sql/locations'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Sql'; ResourceType = 'microsoft.sql/managedinstances'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Sql'; ResourceType = 'microsoft.sql/servers'; ServiceName = 'Azure SQL Database'; ServiceCategory = 'Databases'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.storage/storageaccounts'; ServiceName = 'Storage Accounts'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.STORAGE'; ResourceType = 'microsoft.storage/storageaccounts'; ServiceName = 'Storage Accounts'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.StorageCache'; ResourceType = 'microsoft.storagecache/amlfilesystems'; ServiceName = 'Azure HPC Cache'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.StorageCache'; ResourceType = 'microsoft.storagecache/caches'; ServiceName = 'Azure HPC Cache'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.StorageSync'; ResourceType = 'microsoft.storagesync/storagesyncservices'; ServiceName = 'Azure File Sync'; ServiceCategory = 'Storage'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.StorSimple'; ResourceType = 'microsoft.storsimple/managers'; ServiceName = 'Azure StorSimple'; ServiceCategory = 'Multicloud'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.StreamAnalytics'; ResourceType = 'microsoft.streamanalytics/clusters'; ServiceName = 'Azure Stream Analytics'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.StreamAnalytics'; ResourceType = 'microsoft.streamanalytics/streamingjobs'; ServiceName = 'Azure Stream Analytics'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.SYNAPSE'; ResourceType = 'microsoft.synapse/workspaces'; ServiceName = 'Azure Synapse Analytics'; ServiceCategory = 'Analytics'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Syntex'; ResourceType = 'microsoft.syntex/accounts'; ServiceName = 'Microsoft Syntex'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Syntex'; ResourceType = 'microsoft.syntex/documentprocessors'; ServiceName = 'Microsoft Syntex'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.TESTBASE'; ResourceType = 'microsoft.testbase/testbaseaccounts'; ServiceName = 'Test Base for Microsoft 365'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.TimeSeriesInsights'; ResourceType = 'microsoft.timeseriesinsights/environments'; ServiceName = 'Azure Time Series Insights'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.VideoIndexer'; ResourceType = 'microsoft.videoindexer/accounts'; ServiceName = 'Azure AI Video Indexer'; ServiceCategory = 'AI and Machine Learning'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.visualstudio'; ResourceType = 'microsoft.visualstudio/organizations'; ServiceName = 'Visual Studio'; ServiceCategory = 'Developer Tools'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.VoiceServices'; ResourceType = 'microsoft.voiceservices/communicationsgateways'; ServiceName = 'Azure Communitcations Gateway'; ServiceCategory = 'Networking'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Web.Admin'; ResourceType = 'microsoft.web.admin/role'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'MICROSOFT.WEB'; ResourceType = 'microsoft.web/connections'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Web'; ResourceType = 'microsoft.web/containerapps'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.web'; ResourceType = 'microsoft.web/hostingenvironments'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.web/serverfarms'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.web'; ResourceType = 'microsoft.web/serverfarms'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.EventGrid'; ResourceType = 'microsoft.web/sites'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.Web'; ResourceType = 'microsoft.web/sites'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'microsoft.web'; ResourceType = 'microsoft.web/staticsites'; ServiceName = 'Azure App Service'; ServiceCategory = 'Web'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'Microsoft.WindowsIoT'; ResourceType = 'microsoft.windowsiot/deviceservices'; ServiceName = 'Windows for IoT'; ServiceCategory = 'Internet of Things'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'NGINX.NGINXPLUS'; ResourceType = 'nginx.nginxplus/nginxdeployments'; ServiceName = 'NGINX Plus'; ServiceCategory = 'Networking'; PublisherName = 'NGINX'; PublisherType = 'Marketplace'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/blobs'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/catalogrequests'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/compute'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/egress'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/events'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/executiontimegbs'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/filestorage'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/flatfee'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/insightscredits'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/inventoryreadrequests'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/inventorywriterequests'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/itemstorage'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/lobbyrequests'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/matchmakingrequests'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/messages'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/partyconnectivity'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/playstream'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/reads'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/storage'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/telemetry'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/totalexecution'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ,[PSCustomObject]@{ ConsumedService = 'PlayFabBillingService'; ResourceType = 'playfabbillingservice/writes'; ServiceName = 'Azure PlayFab'; ServiceCategory = 'Media'; PublisherName = 'Microsoft'; PublisherType = 'Cloud Provider'; } - ) -} diff --git a/src/powershell/Tests/Unit/Get-FinOpsPricingUnitsData.Tests.ps1 b/src/powershell/Tests/Unit/Get-FinOpsPricingUnitsData.Tests.ps1 deleted file mode 100644 index 98a1c37ba..000000000 --- a/src/powershell/Tests/Unit/Get-FinOpsPricingUnitsData.Tests.ps1 +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -Describe 'Get-FinOpsPricingUnitsData' { - It 'Should return same rows as the CSV file' { - # Arrange - . "$PSScriptRoot/../../Private/Get-FinOpsPricingUnitsData.ps1" - $csv = Import-Csv "$PSScriptRoot/../../../open-data/PricingUnits.csv" - - # Act - $cmd = Get-FinOpsPricingUnitsData - - # Assert - $cmd.Count | Should -Be $csv.Count - } -} diff --git a/src/powershell/Tests/Unit/Get-FinOpsRegionsData.Tests.ps1 b/src/powershell/Tests/Unit/Get-FinOpsRegionsData.Tests.ps1 deleted file mode 100644 index d5b321e59..000000000 --- a/src/powershell/Tests/Unit/Get-FinOpsRegionsData.Tests.ps1 +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -Describe 'Get-FinOpsRegionsData' { - It 'Should return same rows as the CSV file' { - # Arrange - . "$PSScriptRoot/../../Private/Get-FinOpsRegionsData.ps1" - $csv = Import-Csv "$PSScriptRoot/../../../open-data/Regions.csv" - - # Act - $cmd = Get-FinOpsRegionsData - - # Assert - $cmd.Count | Should -Be $csv.Count - } -} diff --git a/src/powershell/Tests/Unit/Get-FinOpsServicesData.Tests.ps1 b/src/powershell/Tests/Unit/Get-FinOpsServicesData.Tests.ps1 deleted file mode 100644 index 530912968..000000000 --- a/src/powershell/Tests/Unit/Get-FinOpsServicesData.Tests.ps1 +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -Describe 'Get-FinOpsServicesData' { - It 'Should return same rows as the CSV file' { - # Arrange - . "$PSScriptRoot/../../Private/Get-FinOpsServicesData.ps1" - $csv = Import-Csv "$PSScriptRoot/../../../open-data/Services.csv" - - # Act - $cmd = Get-FinOpsServicesData - - # Assert - $cmd.Count | Should -Be $csv.Count - } -} diff --git a/src/scripts/Build-OpenData.ps1 b/src/scripts/Build-OpenData.ps1 index 514ed7f10..bc3075484 100644 --- a/src/scripts/Build-OpenData.ps1 +++ b/src/scripts/Build-OpenData.ps1 @@ -87,9 +87,12 @@ function Write-Command($Command, $File) Write-Output " param()" Write-Output " return [PSCustomObject]@(" + $script:rowNum = 0 $first = $true $data | ForEach-Object { $row = $_ + $script:rowNum++ + Write-Debug "Row $($script:rowNum) = '$($row.UnitOfMeasure)'" $props = $columns | ForEach-Object { $column = $_ $value = $row.$column